
    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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_93ea7662e8d4cd5f314f48b1.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_98da8bf099a7519f33b6d9a7.woff2')format("woff");}.ff3_c00000{font-family:ff3_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;}
.m1_c00000{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m0_c00000{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00000{margin-left:-1.265283px;}
._0_c00000{width:1.566602px;}
.fc1_c00000{color:transparent;}
.fc0_c00000{color:rgb(0,0,0);}
.fs5_c00000{font-size:71.999971px;}
.fs2_c00000{font-size:84.239966px;}
.fs1_c00000{font-size:95.759962px;}
.fs4_c00000{font-size:107.999957px;}
.fs3_c00000{font-size:131.759947px;}
.fs0_c00000{font-size:156.239938px;}
.y0_c00000{bottom:0.000000px;}
.y1a_c00000{bottom:117.839953px;}
.y19_c00000{bottom:156.539937px;}
.y18_c00000{bottom:195.419922px;}
.y17_c00000{bottom:234.119906px;}
.y16_c00000{bottom:272.999891px;}
.y15_c00000{bottom:311.879875px;}
.y14_c00000{bottom:350.579860px;}
.y13_c00000{bottom:392.699843px;}
.y12_c00000{bottom:443.459823px;}
.y11_c00000{bottom:494.039802px;}
.y10_c00000{bottom:524.459790px;}
.yf_c00000{bottom:551.999779px;}
.ye_c00000{bottom:594.659762px;}
.yd_c00000{bottom:622.199751px;}
.yc_c00000{bottom:649.739740px;}
.yb_c00000{bottom:694.379722px;}
.ya_c00000{bottom:732.359707px;}
.y9_c00000{bottom:783.119687px;}
.y8_c00000{bottom:822.179671px;}
.y7_c00000{bottom:861.419655px;}
.y6_c00000{bottom:900.479640px;}
.y5_c00000{bottom:939.899624px;}
.y4_c00000{bottom:982.379607px;}
.y3_c00000{bottom:1025.039590px;}
.y2_c00000{bottom:1067.699573px;}
.y1_c00000{bottom:1120.079552px;}
.h7_c00000{height:70.664034px;}
.h8_c00000{height:72.562471px;}
.h3_c00000{height:82.676920px;}
.h2_c00000{height:96.508086px;}
.h6_c00000{height:108.843706px;}
.h5_c00000{height:129.315183px;}
.h4_c00000{height:132.789322px;}
.h1_c00000{height:162.953372px;}
.h0_c00000{height:1263.000000px;}
.w0_c00000{width:892.500000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:127.799949px;}
.x6_c00000{left:131.939869px;}
.x3_c00000{left:144.539292px;}
.x9_c00000{left:147.239933px;}
.x8_c00000{left:149.579940px;}
.xd_c00000{left:167.219982px;}
.xe_c00000{left:210.778929px;}
.x5_c00000{left:214.199916px;}
.x4_c00000{left:225.179910px;}
.xb_c00000{left:239.039860px;}
.xa_c00000{left:247.319862px;}
.xc_c00000{left:268.199851px;}
.x7_c00000{left:300.419880px;}
.x2_c00000{left:446.579821px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
._1_c00000{margin-left:-1.124696pt;}
._0_c00000{width:1.392535pt;}
.fs5_c00000{font-size:63.999974pt;}
.fs2_c00000{font-size:74.879970pt;}
.fs1_c00000{font-size:85.119966pt;}
.fs4_c00000{font-size:95.999962pt;}
.fs3_c00000{font-size:117.119953pt;}
.fs0_c00000{font-size:138.879944pt;}
.y0_c00000{bottom:0.000000pt;}
.y1a_c00000{bottom:104.746625pt;}
.y19_c00000{bottom:139.146611pt;}
.y18_c00000{bottom:173.706597pt;}
.y17_c00000{bottom:208.106583pt;}
.y16_c00000{bottom:242.666570pt;}
.y15_c00000{bottom:277.226556pt;}
.y14_c00000{bottom:311.626542pt;}
.y13_c00000{bottom:349.066527pt;}
.y12_c00000{bottom:394.186509pt;}
.y11_c00000{bottom:439.146491pt;}
.y10_c00000{bottom:466.186480pt;}
.yf_c00000{bottom:490.666470pt;}
.ye_c00000{bottom:528.586455pt;}
.yd_c00000{bottom:553.066445pt;}
.yc_c00000{bottom:577.546436pt;}
.yb_c00000{bottom:617.226420pt;}
.ya_c00000{bottom:650.986406pt;}
.y9_c00000{bottom:696.106388pt;}
.y8_c00000{bottom:730.826374pt;}
.y7_c00000{bottom:765.706360pt;}
.y6_c00000{bottom:800.426346pt;}
.y5_c00000{bottom:835.466332pt;}
.y4_c00000{bottom:873.226317pt;}
.y3_c00000{bottom:911.146302pt;}
.y2_c00000{bottom:949.066287pt;}
.y1_c00000{bottom:995.626268pt;}
.h7_c00000{height:62.812475pt;}
.h8_c00000{height:64.499974pt;}
.h3_c00000{height:73.490596pt;}
.h2_c00000{height:85.784966pt;}
.h6_c00000{height:96.749961pt;}
.h5_c00000{height:114.946829pt;}
.h4_c00000{height:118.034953pt;}
.h1_c00000{height:144.847442pt;}
.h0_c00000{height:1122.666667pt;}
.w0_c00000{width:793.333333pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:113.599955pt;}
.x6_c00000{left:117.279884pt;}
.x3_c00000{left:128.479370pt;}
.x9_c00000{left:130.879941pt;}
.x8_c00000{left:132.959947pt;}
.xd_c00000{left:148.639984pt;}
.xe_c00000{left:187.359048pt;}
.x5_c00000{left:190.399925pt;}
.x4_c00000{left:200.159920pt;}
.xb_c00000{left:212.479876pt;}
.xa_c00000{left:219.839877pt;}
.xc_c00000{left:238.399867pt;}
.x7_c00000{left:267.039893pt;}
.x2_c00000{left:396.959841pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff1_c00001{font-family:ff1_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:ff2_c00001;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00001{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:59.759976px;}
.fs0_c00001{font-size:66.239974px;}
.y0_c00001{bottom:0.000000px;}
.y1d_c00001{bottom:113.880254px;}
.y1c_c00001{bottom:148.800240px;}
.y1b_c00001{bottom:184.259926px;}
.y1a_c00001{bottom:221.159912px;}
.y19_c00001{bottom:257.879897px;}
.y18_c00001{bottom:294.779882px;}
.y17_c00001{bottom:331.499867px;}
.y16_c00001{bottom:368.399853px;}
.y15_c00001{bottom:405.299838px;}
.y14_c00001{bottom:442.019823px;}
.y13_c00001{bottom:478.919808px;}
.y12_c00001{bottom:515.639794px;}
.y11_c00001{bottom:552.539779px;}
.y10_c00001{bottom:589.259764px;}
.yf_c00001{bottom:626.159750px;}
.ye_c00001{bottom:662.879735px;}
.yd_c00001{bottom:699.779720px;}
.yc_c00001{bottom:736.499705px;}
.yb_c00001{bottom:773.399691px;}
.ya_c00001{bottom:810.299676px;}
.y9_c00001{bottom:847.019661px;}
.y8_c00001{bottom:883.919646px;}
.y7_c00001{bottom:920.639632px;}
.y6_c00001{bottom:957.539617px;}
.y5_c00001{bottom:994.259602px;}
.y4_c00001{bottom:1031.159588px;}
.y3_c00001{bottom:1067.879573px;}
.y2_c00001{bottom:1104.779558px;}
.y1_c00001{bottom:1141.499543px;}
.h3_c00001{height:62.327788px;}
.h1_c00001{height:66.757473px;}
.h2_c00001{height:69.086222px;}
.h0_c00001{height:1263.000000px;}
.w0_c00001{width:892.500000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:127.620193px;}
.x1_c00001{left:446.399821px;}
.x3_c00001{left:765.359694px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs1_c00001{font-size:53.119979pt;}
.fs0_c00001{font-size:58.879976pt;}
.y0_c00001{bottom:0.000000pt;}
.y1d_c00001{bottom:101.226893pt;}
.y1c_c00001{bottom:132.266880pt;}
.y1b_c00001{bottom:163.786601pt;}
.y1a_c00001{bottom:196.586588pt;}
.y19_c00001{bottom:229.226575pt;}
.y18_c00001{bottom:262.026562pt;}
.y17_c00001{bottom:294.666549pt;}
.y16_c00001{bottom:327.466536pt;}
.y15_c00001{bottom:360.266523pt;}
.y14_c00001{bottom:392.906510pt;}
.y13_c00001{bottom:425.706496pt;}
.y12_c00001{bottom:458.346483pt;}
.y11_c00001{bottom:491.146470pt;}
.y10_c00001{bottom:523.786457pt;}
.yf_c00001{bottom:556.586444pt;}
.ye_c00001{bottom:589.226431pt;}
.yd_c00001{bottom:622.026418pt;}
.yc_c00001{bottom:654.666405pt;}
.yb_c00001{bottom:687.466392pt;}
.ya_c00001{bottom:720.266379pt;}
.y9_c00001{bottom:752.906366pt;}
.y8_c00001{bottom:785.706352pt;}
.y7_c00001{bottom:818.346339pt;}
.y6_c00001{bottom:851.146326pt;}
.y5_c00001{bottom:883.786313pt;}
.y4_c00001{bottom:916.586300pt;}
.y3_c00001{bottom:949.226287pt;}
.y2_c00001{bottom:982.026274pt;}
.y1_c00001{bottom:1014.666261pt;}
.h3_c00001{height:55.402478pt;}
.h1_c00001{height:59.339976pt;}
.h2_c00001{height:61.409975pt;}
.h0_c00001{height:1122.666667pt;}
.w0_c00001{width:793.333333pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:113.440172pt;}
.x1_c00001{left:396.799841pt;}
.x3_c00001{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,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:156.239938px;}
.y0_c00002{bottom:0.000000px;}
.y10_c00002{bottom:121.619951px;}
.yf_c00002{bottom:188.219925px;}
.ye_c00002{bottom:254.819898px;}
.yd_c00002{bottom:321.239872px;}
.yc_c00002{bottom:387.839845px;}
.yb_c00002{bottom:454.439818px;}
.ya_c00002{bottom:521.039792px;}
.y9_c00002{bottom:587.639765px;}
.y8_c00002{bottom:654.239738px;}
.y7_c00002{bottom:720.659712px;}
.y6_c00002{bottom:787.259685px;}
.y5_c00002{bottom:853.859658px;}
.y4_c00002{bottom:920.459632px;}
.y3_c00002{bottom:987.059605px;}
.y2_c00002{bottom:1053.659579px;}
.y1_c00002{bottom:1120.259552px;}
.h1_c00002{height:162.953372px;}
.h0_c00002{height:1263.000000px;}
.w0_c00002{width:892.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:127.619949px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs0_c00002{font-size:138.879944pt;}
.y0_c00002{bottom:0.000000pt;}
.y10_c00002{bottom:108.106623pt;}
.yf_c00002{bottom:167.306600pt;}
.ye_c00002{bottom:226.506576pt;}
.yd_c00002{bottom:285.546552pt;}
.yc_c00002{bottom:344.746529pt;}
.yb_c00002{bottom:403.946505pt;}
.ya_c00002{bottom:463.146481pt;}
.y9_c00002{bottom:522.346458pt;}
.y8_c00002{bottom:581.546434pt;}
.y7_c00002{bottom:640.586410pt;}
.y6_c00002{bottom:699.786387pt;}
.y5_c00002{bottom:758.986363pt;}
.y4_c00002{bottom:818.186339pt;}
.y3_c00002{bottom:877.386316pt;}
.y2_c00002{bottom:936.586292pt;}
.y1_c00002{bottom:995.786268pt;}
.h1_c00002{height:144.847442pt;}
.h0_c00002{height:1122.666667pt;}
.w0_c00002{width:793.333333pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00003{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,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;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:156.239938px;}
.y0_c00003{bottom:0.000000px;}
.y10_c00003{bottom:121.619951px;}
.yf_c00003{bottom:188.219925px;}
.ye_c00003{bottom:254.819898px;}
.yd_c00003{bottom:321.239872px;}
.yc_c00003{bottom:387.839845px;}
.yb_c00003{bottom:454.439818px;}
.ya_c00003{bottom:521.039792px;}
.y9_c00003{bottom:587.639765px;}
.y8_c00003{bottom:654.239738px;}
.y7_c00003{bottom:720.659712px;}
.y6_c00003{bottom:787.259685px;}
.y5_c00003{bottom:853.859658px;}
.y4_c00003{bottom:920.459632px;}
.y3_c00003{bottom:987.059605px;}
.y2_c00003{bottom:1053.659579px;}
.y1_c00003{bottom:1120.259552px;}
.h1_c00003{height:162.953372px;}
.h0_c00003{height:1263.000000px;}
.w0_c00003{width:892.500000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:127.619949px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs0_c00003{font-size:138.879944pt;}
.y0_c00003{bottom:0.000000pt;}
.y10_c00003{bottom:108.106623pt;}
.yf_c00003{bottom:167.306600pt;}
.ye_c00003{bottom:226.506576pt;}
.yd_c00003{bottom:285.546552pt;}
.yc_c00003{bottom:344.746529pt;}
.yb_c00003{bottom:403.946505pt;}
.ya_c00003{bottom:463.146481pt;}
.y9_c00003{bottom:522.346458pt;}
.y8_c00003{bottom:581.546434pt;}
.y7_c00003{bottom:640.586410pt;}
.y6_c00003{bottom:699.786387pt;}
.y5_c00003{bottom:758.986363pt;}
.y4_c00003{bottom:818.186339pt;}
.y3_c00003{bottom:877.386316pt;}
.y2_c00003{bottom:936.586292pt;}
.y1_c00003{bottom:995.786268pt;}
.h1_c00003{height:144.847442pt;}
.h0_c00003{height:1122.666667pt;}
.w0_c00003{width:793.333333pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_63298e55e8bbe210f85acd47.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;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_9b1c018b332765716a4ec84d.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00004{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m0_c00004{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3_c00004{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00004{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,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;}
._1_c00004{margin-left:-1.129858px;}
._0_c00004{width:1.566602px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs5_c00004{font-size:71.999971px;}
.fs2_c00004{font-size:84.239966px;}
.fs1_c00004{font-size:95.759962px;}
.fs4_c00004{font-size:107.999957px;}
.fs3_c00004{font-size:131.759947px;}
.fs0_c00004{font-size:156.239938px;}
.y0_c00004{bottom:0.000000px;}
.y1a_c00004{bottom:129.719948px;}
.y19_c00004{bottom:168.419933px;}
.y18_c00004{bottom:207.299917px;}
.y17_c00004{bottom:246.179902px;}
.y16_c00004{bottom:284.879886px;}
.y15_c00004{bottom:323.759870px;}
.y14_c00004{bottom:362.459855px;}
.y13_c00004{bottom:401.339839px;}
.y12_c00004{bottom:443.459823px;}
.y11_c00004{bottom:494.039802px;}
.y10_c00004{bottom:524.459790px;}
.yf_c00004{bottom:551.999779px;}
.ye_c00004{bottom:594.659762px;}
.yd_c00004{bottom:622.199751px;}
.yc_c00004{bottom:649.739740px;}
.yb_c00004{bottom:694.379722px;}
.ya_c00004{bottom:732.359707px;}
.y9_c00004{bottom:783.119687px;}
.y8_c00004{bottom:822.179671px;}
.y7_c00004{bottom:861.419655px;}
.y6_c00004{bottom:900.479640px;}
.y5_c00004{bottom:939.899624px;}
.y4_c00004{bottom:982.379607px;}
.y3_c00004{bottom:1025.039590px;}
.y2_c00004{bottom:1067.699573px;}
.y1_c00004{bottom:1120.079552px;}
.h7_c00004{height:70.664034px;}
.h8_c00004{height:72.562471px;}
.h3_c00004{height:82.676920px;}
.h2_c00004{height:96.508086px;}
.h6_c00004{height:108.843706px;}
.h5_c00004{height:129.315183px;}
.h4_c00004{height:132.789322px;}
.h1_c00004{height:162.953372px;}
.h0_c00004{height:1263.000000px;}
.w0_c00004{width:892.500000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:127.799949px;}
.x2_c00004{left:144.539877px;}
.x9_c00004{left:147.239933px;}
.x8_c00004{left:149.579940px;}
.xf_c00004{left:153.899980px;}
.x5_c00004{left:228.779865px;}
.xb_c00004{left:239.039860px;}
.xd_c00004{left:240.659998px;}
.xa_c00004{left:247.319862px;}
.x10_c00004{left:265.859690px;}
.xc_c00004{left:268.199851px;}
.x4_c00004{left:280.799888px;}
.x3_c00004{left:289.439884px;}
.x7_c00004{left:345.239862px;}
.xe_c00004{left:406.619187px;}
.x6_c00004{left:446.579869px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._1_c00004{margin-left:-1.004318pt;}
._0_c00004{width:1.392535pt;}
.fs5_c00004{font-size:63.999974pt;}
.fs2_c00004{font-size:74.879970pt;}
.fs1_c00004{font-size:85.119966pt;}
.fs4_c00004{font-size:95.999962pt;}
.fs3_c00004{font-size:117.119953pt;}
.fs0_c00004{font-size:138.879944pt;}
.y0_c00004{bottom:0.000000pt;}
.y1a_c00004{bottom:115.306621pt;}
.y19_c00004{bottom:149.706607pt;}
.y18_c00004{bottom:184.266593pt;}
.y17_c00004{bottom:218.826579pt;}
.y16_c00004{bottom:253.226565pt;}
.y15_c00004{bottom:287.786552pt;}
.y14_c00004{bottom:322.186538pt;}
.y13_c00004{bottom:356.746524pt;}
.y12_c00004{bottom:394.186509pt;}
.y11_c00004{bottom:439.146491pt;}
.y10_c00004{bottom:466.186480pt;}
.yf_c00004{bottom:490.666470pt;}
.ye_c00004{bottom:528.586455pt;}
.yd_c00004{bottom:553.066445pt;}
.yc_c00004{bottom:577.546436pt;}
.yb_c00004{bottom:617.226420pt;}
.ya_c00004{bottom:650.986406pt;}
.y9_c00004{bottom:696.106388pt;}
.y8_c00004{bottom:730.826374pt;}
.y7_c00004{bottom:765.706360pt;}
.y6_c00004{bottom:800.426346pt;}
.y5_c00004{bottom:835.466332pt;}
.y4_c00004{bottom:873.226317pt;}
.y3_c00004{bottom:911.146302pt;}
.y2_c00004{bottom:949.066287pt;}
.y1_c00004{bottom:995.626268pt;}
.h7_c00004{height:62.812475pt;}
.h8_c00004{height:64.499974pt;}
.h3_c00004{height:73.490596pt;}
.h2_c00004{height:85.784966pt;}
.h6_c00004{height:96.749961pt;}
.h5_c00004{height:114.946829pt;}
.h4_c00004{height:118.034953pt;}
.h1_c00004{height:144.847442pt;}
.h0_c00004{height:1122.666667pt;}
.w0_c00004{width:793.333333pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:113.599955pt;}
.x2_c00004{left:128.479891pt;}
.x9_c00004{left:130.879941pt;}
.x8_c00004{left:132.959947pt;}
.xf_c00004{left:136.799983pt;}
.x5_c00004{left:203.359880pt;}
.xb_c00004{left:212.479876pt;}
.xd_c00004{left:213.919998pt;}
.xa_c00004{left:219.839877pt;}
.x10_c00004{left:236.319725pt;}
.xc_c00004{left:238.399867pt;}
.x4_c00004{left:249.599901pt;}
.x3_c00004{left:257.279897pt;}
.x7_c00004{left:306.879877pt;}
.xe_c00004{left:361.439277pt;}
.x6_c00004{left:396.959884pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00005{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,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;}
.fc0_c00005{color:rgb(0,0,0);}
.fs1_c00005{font-size:59.759976px;}
.fs0_c00005{font-size:66.239974px;}
.y0_c00005{bottom:0.000000px;}
.y1e_c00005{bottom:128.639949px;}
.y1d_c00005{bottom:163.559935px;}
.y1c_c00005{bottom:198.299921px;}
.y1b_c00005{bottom:233.219907px;}
.y1a_c00005{bottom:267.959893px;}
.y19_c00005{bottom:302.879879px;}
.y18_c00005{bottom:337.619865px;}
.y17_c00005{bottom:372.539851px;}
.y16_c00005{bottom:407.279837px;}
.y15_c00005{bottom:442.199823px;}
.y14_c00005{bottom:476.939809px;}
.y13_c00005{bottom:511.859795px;}
.y12_c00005{bottom:546.599781px;}
.y11_c00005{bottom:581.519767px;}
.y10_c00005{bottom:616.439753px;}
.yf_c00005{bottom:651.179740px;}
.ye_c00005{bottom:686.099726px;}
.yd_c00005{bottom:720.839712px;}
.yc_c00005{bottom:755.759698px;}
.yb_c00005{bottom:790.499684px;}
.ya_c00005{bottom:825.419670px;}
.y9_c00005{bottom:860.159656px;}
.y8_c00005{bottom:895.079642px;}
.y7_c00005{bottom:929.819628px;}
.y6_c00005{bottom:964.739614px;}
.y5_c00005{bottom:999.479600px;}
.y4_c00005{bottom:1034.399586px;}
.y3_c00005{bottom:1069.139572px;}
.y2_c00005{bottom:1104.779558px;}
.y1_c00005{bottom:1141.679543px;}
.h2_c00005{height:62.327788px;}
.h1_c00005{height:69.086222px;}
.h0_c00005{height:1263.000000px;}
.w0_c00005{width:892.500000px;}
.x0_c00005{left:0.000000px;}
.x2_c00005{left:127.619949px;}
.x1_c00005{left:446.399821px;}
.x3_c00005{left:765.359381px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fs1_c00005{font-size:53.119979pt;}
.fs0_c00005{font-size:58.879976pt;}
.y0_c00005{bottom:0.000000pt;}
.y1e_c00005{bottom:114.346621pt;}
.y1d_c00005{bottom:145.386609pt;}
.y1c_c00005{bottom:176.266596pt;}
.y1b_c00005{bottom:207.306584pt;}
.y1a_c00005{bottom:238.186571pt;}
.y19_c00005{bottom:269.226559pt;}
.y18_c00005{bottom:300.106547pt;}
.y17_c00005{bottom:331.146534pt;}
.y16_c00005{bottom:362.026522pt;}
.y15_c00005{bottom:393.066509pt;}
.y14_c00005{bottom:423.946497pt;}
.y13_c00005{bottom:454.986485pt;}
.y12_c00005{bottom:485.866472pt;}
.y11_c00005{bottom:516.906460pt;}
.y10_c00005{bottom:547.946447pt;}
.yf_c00005{bottom:578.826435pt;}
.ye_c00005{bottom:609.866423pt;}
.yd_c00005{bottom:640.746410pt;}
.yc_c00005{bottom:671.786398pt;}
.yb_c00005{bottom:702.666386pt;}
.ya_c00005{bottom:733.706373pt;}
.y9_c00005{bottom:764.586361pt;}
.y8_c00005{bottom:795.626348pt;}
.y7_c00005{bottom:826.506336pt;}
.y6_c00005{bottom:857.546324pt;}
.y5_c00005{bottom:888.426311pt;}
.y4_c00005{bottom:919.466299pt;}
.y3_c00005{bottom:950.346287pt;}
.y2_c00005{bottom:982.026274pt;}
.y1_c00005{bottom:1014.826261pt;}
.h2_c00005{height:55.402478pt;}
.h1_c00005{height:61.409975pt;}
.h0_c00005{height:1122.666667pt;}
.w0_c00005{width:793.333333pt;}
.x0_c00005{left:0.000000pt;}
.x2_c00005{left:113.439955pt;}
.x1_c00005{left:396.799841pt;}
.x3_c00005{left:680.319450pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a12926c207225281a226b5d2.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_83d5fffd1eee08aac94c2e44.woff2')format("woff");}.ff2_c00006{font-family:ff2_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;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_e9fcb19421f8ba8977523c5d.woff2')format("woff");}.ff4_c00006{font-family:ff4_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;}
.m0_c00006{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1_c00006{vertical-align:-96.479961px;}
.v0_c00006{vertical-align:0.000000px;}
.ls1_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:1254.779498px;}
.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;}
._0_c00006{width:1.081241px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:59.759976px;}
.fs1_c00006{font-size:71.999971px;}
.fs2_c00006{font-size:84.239966px;}
.fs3_c00006{font-size:95.759962px;}
.y0_c00006{bottom:0.000000px;}
.y24_c00006{bottom:113.160255px;}
.y23_c00006{bottom:146.819941px;}
.y22_c00006{bottom:178.319929px;}
.y21_c00006{bottom:230.339908px;}
.y20_c00006{bottom:261.479895px;}
.y1f_c00006{bottom:292.439883px;}
.y1e_c00006{bottom:323.399871px;}
.y1d_c00006{bottom:354.539858px;}
.y1c_c00006{bottom:399.719840px;}
.y1b_c00006{bottom:423.839830px;}
.y1a_c00006{bottom:448.139821px;}
.y19_c00006{bottom:472.259811px;}
.y18_c00006{bottom:496.379801px;}
.y17_c00006{bottom:520.499792px;}
.y16_c00006{bottom:544.619782px;}
.y15_c00006{bottom:568.739773px;}
.y14_c00006{bottom:593.039763px;}
.y13_c00006{bottom:617.159753px;}
.y12_c00006{bottom:641.279743px;}
.y11_c00006{bottom:665.399734px;}
.y10_c00006{bottom:689.519724px;}
.yf_c00006{bottom:714.179714px;}
.ye_c00006{bottom:741.899703px;}
.yd_c00006{bottom:769.439692px;}
.yc_c00006{bottom:796.979681px;}
.yb_c00006{bottom:824.699670px;}
.ya_c00006{bottom:852.239659px;}
.y9_c00006{bottom:879.779648px;}
.y8_c00006{bottom:906.959637px;}
.y7_c00006{bottom:931.079628px;}
.y6_c00006{bottom:955.199618px;}
.y5_c00006{bottom:995.519602px;}
.y4_c00006{bottom:1031.879587px;}
.y3_c00006{bottom:1070.759572px;}
.y2_c00006{bottom:1108.019557px;}
.y1_c00006{bottom:1142.939543px;}
.h1_c00006{height:62.327788px;}
.h2_c00006{height:70.628878px;}
.h5_c00006{height:70.664034px;}
.h6_c00006{height:72.562471px;}
.h3_c00006{height:84.898091px;}
.h4_c00006{height:96.508086px;}
.h0_c00006{height:1263.000000px;}
.w0_c00006{width:892.500000px;}
.x0_c00006{left:0.000000px;}
.x5_c00006{left:127.619842px;}
.x8_c00006{left:365.939931px;}
.x7_c00006{left:404.819913px;}
.x4_c00006{left:446.399821px;}
.x9_c00006{left:481.858952px;}
.x6_c00006{left:490.319804px;}
.xa_c00006{left:515.878955px;}
.x2_c00006{left:535.859786px;}
.x3_c00006{left:581.939714px;}
.xb_c00006{left:611.818978px;}
.x1_c00006{left:765.359694px;}
@media print{
.v1_c00006{vertical-align:-85.759966pt;}
.v0_c00006{vertical-align:0.000000pt;}
.ls1_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:1115.359554pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._0_c00006{width:0.961103pt;}
.fs0_c00006{font-size:53.119979pt;}
.fs1_c00006{font-size:63.999974pt;}
.fs2_c00006{font-size:74.879970pt;}
.fs3_c00006{font-size:85.119966pt;}
.y0_c00006{bottom:0.000000pt;}
.y24_c00006{bottom:100.586893pt;}
.y23_c00006{bottom:130.506614pt;}
.y22_c00006{bottom:158.506603pt;}
.y21_c00006{bottom:204.746585pt;}
.y20_c00006{bottom:232.426574pt;}
.y1f_c00006{bottom:259.946563pt;}
.y1e_c00006{bottom:287.466552pt;}
.y1d_c00006{bottom:315.146541pt;}
.y1c_c00006{bottom:355.306525pt;}
.y1b_c00006{bottom:376.746516pt;}
.y1a_c00006{bottom:398.346507pt;}
.y19_c00006{bottom:419.786499pt;}
.y18_c00006{bottom:441.226490pt;}
.y17_c00006{bottom:462.666482pt;}
.y16_c00006{bottom:484.106473pt;}
.y15_c00006{bottom:505.546464pt;}
.y14_c00006{bottom:527.146456pt;}
.y13_c00006{bottom:548.586447pt;}
.y12_c00006{bottom:570.026439pt;}
.y11_c00006{bottom:591.466430pt;}
.y10_c00006{bottom:612.906422pt;}
.yf_c00006{bottom:634.826413pt;}
.ye_c00006{bottom:659.466403pt;}
.yd_c00006{bottom:683.946393pt;}
.yc_c00006{bottom:708.426383pt;}
.yb_c00006{bottom:733.066373pt;}
.ya_c00006{bottom:757.546364pt;}
.y9_c00006{bottom:782.026354pt;}
.y8_c00006{bottom:806.186344pt;}
.y7_c00006{bottom:827.626336pt;}
.y6_c00006{bottom:849.066327pt;}
.y5_c00006{bottom:884.906313pt;}
.y4_c00006{bottom:917.226300pt;}
.y3_c00006{bottom:951.786286pt;}
.y2_c00006{bottom:984.906273pt;}
.y1_c00006{bottom:1015.946260pt;}
.h1_c00006{height:55.402478pt;}
.h2_c00006{height:62.781225pt;}
.h5_c00006{height:62.812475pt;}
.h6_c00006{height:64.499974pt;}
.h3_c00006{height:75.464970pt;}
.h4_c00006{height:85.784966pt;}
.h0_c00006{height:1122.666667pt;}
.w0_c00006{width:793.333333pt;}
.x0_c00006{left:0.000000pt;}
.x5_c00006{left:113.439860pt;}
.x8_c00006{left:325.279939pt;}
.x7_c00006{left:359.839922pt;}
.x4_c00006{left:396.799841pt;}
.x9_c00006{left:428.319069pt;}
.x6_c00006{left:435.839826pt;}
.xa_c00006{left:458.559071pt;}
.x2_c00006{left:476.319809pt;}
.x3_c00006{left:517.279746pt;}
.xb_c00006{left:543.839092pt;}
.x1_c00006{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff1_c00007{font-family:ff1_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;}
.m1_c00007{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1_c00007{vertical-align:-96.479961px;}
.v0_c00007{vertical-align:0.000000px;}
.ls1_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:1254.779498px;}
.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:0.000000px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs1_c00007{font-size:71.999971px;}
.fs0_c00007{font-size:84.239966px;}
.y0_c00007{bottom:0.000000px;}
.y2f_c00007{bottom:119.099952px;}
.y2e_c00007{bottom:139.799944px;}
.y2d_c00007{bottom:160.499936px;}
.y2c_c00007{bottom:181.199928px;}
.y2b_c00007{bottom:201.899919px;}
.y2a_c00007{bottom:222.599911px;}
.y29_c00007{bottom:243.299903px;}
.y28_c00007{bottom:263.999894px;}
.y27_c00007{bottom:284.699886px;}
.y26_c00007{bottom:305.399878px;}
.y25_c00007{bottom:326.099870px;}
.y24_c00007{bottom:346.799861px;}
.y23_c00007{bottom:367.499853px;}
.y22_c00007{bottom:388.199845px;}
.y21_c00007{bottom:408.899836px;}
.y20_c00007{bottom:429.599828px;}
.y1f_c00007{bottom:450.299820px;}
.y1e_c00007{bottom:470.999812px;}
.y1d_c00007{bottom:491.699803px;}
.y1c_c00007{bottom:512.399795px;}
.y1b_c00007{bottom:533.099787px;}
.y1a_c00007{bottom:553.799778px;}
.y19_c00007{bottom:574.499770px;}
.y18_c00007{bottom:595.199762px;}
.y17_c00007{bottom:615.719754px;}
.y16_c00007{bottom:636.419745px;}
.y15_c00007{bottom:657.119737px;}
.y14_c00007{bottom:677.819729px;}
.y13_c00007{bottom:698.519721px;}
.y12_c00007{bottom:719.219712px;}
.y11_c00007{bottom:739.919704px;}
.y10_c00007{bottom:760.619696px;}
.yf_c00007{bottom:781.319687px;}
.ye_c00007{bottom:802.019679px;}
.yd_c00007{bottom:823.439671px;}
.yc_c00007{bottom:847.559661px;}
.yb_c00007{bottom:871.679651px;}
.ya_c00007{bottom:919.919632px;}
.y9_c00007{bottom:944.039622px;}
.y8_c00007{bottom:968.159613px;}
.y7_c00007{bottom:992.459603px;}
.y6_c00007{bottom:1016.579593px;}
.y5_c00007{bottom:1040.699584px;}
.y4_c00007{bottom:1064.819574px;}
.y3_c00007{bottom:1088.939564px;}
.y2_c00007{bottom:1113.059555px;}
.y1_c00007{bottom:1137.359545px;}
.h2_c00007{height:72.562471px;}
.h1_c00007{height:84.898091px;}
.h0_c00007{height:1263.000000px;}
.w0_c00007{width:892.500000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:127.619842px;}
.x1_c00007{left:446.399821px;}
@media print{
.v1_c00007{vertical-align:-85.759966pt;}
.v0_c00007{vertical-align:0.000000pt;}
.ls1_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:1115.359554pt;}
.ws0_c00007{word-spacing:0.000000pt;}
.fs1_c00007{font-size:63.999974pt;}
.fs0_c00007{font-size:74.879970pt;}
.y0_c00007{bottom:0.000000pt;}
.y2f_c00007{bottom:105.866624pt;}
.y2e_c00007{bottom:124.266617pt;}
.y2d_c00007{bottom:142.666610pt;}
.y2c_c00007{bottom:161.066602pt;}
.y2b_c00007{bottom:179.466595pt;}
.y2a_c00007{bottom:197.866588pt;}
.y29_c00007{bottom:216.266580pt;}
.y28_c00007{bottom:234.666573pt;}
.y27_c00007{bottom:253.066565pt;}
.y26_c00007{bottom:271.466558pt;}
.y25_c00007{bottom:289.866551pt;}
.y24_c00007{bottom:308.266543pt;}
.y23_c00007{bottom:326.666536pt;}
.y22_c00007{bottom:345.066529pt;}
.y21_c00007{bottom:363.466521pt;}
.y20_c00007{bottom:381.866514pt;}
.y1f_c00007{bottom:400.266507pt;}
.y1e_c00007{bottom:418.666499pt;}
.y1d_c00007{bottom:437.066492pt;}
.y1c_c00007{bottom:455.466484pt;}
.y1b_c00007{bottom:473.866477pt;}
.y1a_c00007{bottom:492.266470pt;}
.y19_c00007{bottom:510.666462pt;}
.y18_c00007{bottom:529.066455pt;}
.y17_c00007{bottom:547.306448pt;}
.y16_c00007{bottom:565.706440pt;}
.y15_c00007{bottom:584.106433pt;}
.y14_c00007{bottom:602.506426pt;}
.y13_c00007{bottom:620.906418pt;}
.y12_c00007{bottom:639.306411pt;}
.y11_c00007{bottom:657.706404pt;}
.y10_c00007{bottom:676.106396pt;}
.yf_c00007{bottom:694.506389pt;}
.ye_c00007{bottom:712.906382pt;}
.yd_c00007{bottom:731.946374pt;}
.yc_c00007{bottom:753.386365pt;}
.yb_c00007{bottom:774.826357pt;}
.ya_c00007{bottom:817.706340pt;}
.y9_c00007{bottom:839.146331pt;}
.y8_c00007{bottom:860.586322pt;}
.y7_c00007{bottom:882.186314pt;}
.y6_c00007{bottom:903.626305pt;}
.y5_c00007{bottom:925.066297pt;}
.y4_c00007{bottom:946.506288pt;}
.y3_c00007{bottom:967.946279pt;}
.y2_c00007{bottom:989.386271pt;}
.y1_c00007{bottom:1010.986262pt;}
.h2_c00007{height:64.499974pt;}
.h1_c00007{height:75.464970pt;}
.h0_c00007{height:1122.666667pt;}
.w0_c00007{width:793.333333pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:113.439860pt;}
.x1_c00007{left:396.799841pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_773fcf8453559d0922532cfc.woff2')format("woff");}.ff1_c00008{font-family:ff1_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:ff2_c00008;src:url('chunks/assets/font_ec2daa43d8d6ea2e3d995816.woff2')format("woff");}.ff2_c00008{font-family:ff2_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;}
.m0_c00008{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1_c00008{vertical-align:-82.079967px;}
.v0_c00008{vertical-align:0.000000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:194.525322px;}
.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;}
}
.ws0_c00008{word-spacing:0.000000px;}
._3_c00008{margin-left:-1.419746px;}
._1_c00008{width:1.230285px;}
._a_c00008{width:8.052345px;}
._b_c00008{width:9.265432px;}
._8_c00008{width:10.292630px;}
._9_c00008{width:11.448818px;}
._6_c00008{width:12.796569px;}
._4_c00008{width:14.308081px;}
._5_c00008{width:16.319509px;}
._7_c00008{width:19.280495px;}
._0_c00008{width:23.673621px;}
._2_c00008{width:25.323443px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:71.999971px;}
.fs1_c00008{font-size:84.239966px;}
.y0_c00008{bottom:0.000000px;}
.y26_c00008{bottom:119.639952px;}
.y25_c00008{bottom:143.759942px;}
.y24_c00008{bottom:167.879933px;}
.y23_c00008{bottom:191.999923px;}
.y22_c00008{bottom:216.299913px;}
.y21_c00008{bottom:240.419904px;}
.y20_c00008{bottom:264.539894px;}
.y1f_c00008{bottom:288.659885px;}
.y1e_c00008{bottom:312.779875px;}
.y1d_c00008{bottom:336.899865px;}
.y1c_c00008{bottom:361.019856px;}
.y1b_c00008{bottom:385.319846px;}
.y1a_c00008{bottom:409.439836px;}
.y19_c00008{bottom:433.559827px;}
.y18_c00008{bottom:457.679817px;}
.y17_c00008{bottom:481.799807px;}
.y16_c00008{bottom:505.919798px;}
.y15_c00008{bottom:530.219788px;}
.y14_c00008{bottom:554.339778px;}
.y13_c00008{bottom:588.359765px;}
.y12_c00008{bottom:619.499752px;}
.y11_c00008{bottom:650.459740px;}
.y10_c00008{bottom:681.599727px;}
.yf_c00008{bottom:702.659719px;}
.ye_c00008{bottom:736.679705px;}
.yd_c00008{bottom:767.819693px;}
.yc_c00008{bottom:798.779680px;}
.yb_c00008{bottom:829.919668px;}
.ya_c00008{bottom:860.879656px;}
.y9_c00008{bottom:892.019643px;}
.y8_c00008{bottom:922.979631px;}
.y7_c00008{bottom:954.119618px;}
.y6_c00008{bottom:985.079606px;}
.y5_c00008{bottom:1016.219594px;}
.y4_c00008{bottom:1047.179581px;}
.y3_c00008{bottom:1098.839560px;}
.y2_c00008{bottom:1119.539552px;}
.y1_c00008{bottom:1140.239544px;}
.h2_c00008{height:70.664034px;}
.h1_c00008{height:72.562471px;}
.h3_c00008{height:84.898091px;}
.h0_c00008{height:1263.000000px;}
.w0_c00008{width:892.500000px;}
.x0_c00008{left:0.000000px;}
.x2_c00008{left:127.620658px;}
.x3_c00008{left:180.720640px;}
.x1_c00008{left:354.959858px;}
@media print{
.v1_c00008{vertical-align:-72.959971pt;}
.v0_c00008{vertical-align:0.000000pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:172.911398pt;}
.ws0_c00008{word-spacing:0.000000pt;}
._3_c00008{margin-left:-1.261996pt;}
._1_c00008{width:1.093587pt;}
._a_c00008{width:7.157640pt;}
._b_c00008{width:8.235940pt;}
._8_c00008{width:9.149004pt;}
._9_c00008{width:10.176727pt;}
._6_c00008{width:11.374728pt;}
._4_c00008{width:12.718294pt;}
._5_c00008{width:14.506230pt;}
._7_c00008{width:17.138218pt;}
._0_c00008{width:21.043219pt;}
._2_c00008{width:22.509727pt;}
.fs0_c00008{font-size:63.999974pt;}
.fs1_c00008{font-size:74.879970pt;}
.y0_c00008{bottom:0.000000pt;}
.y26_c00008{bottom:106.346624pt;}
.y25_c00008{bottom:127.786616pt;}
.y24_c00008{bottom:149.226607pt;}
.y23_c00008{bottom:170.666598pt;}
.y22_c00008{bottom:192.266590pt;}
.y21_c00008{bottom:213.706581pt;}
.y20_c00008{bottom:235.146573pt;}
.y1f_c00008{bottom:256.586564pt;}
.y1e_c00008{bottom:278.026555pt;}
.y1d_c00008{bottom:299.466547pt;}
.y1c_c00008{bottom:320.906538pt;}
.y1b_c00008{bottom:342.506530pt;}
.y1a_c00008{bottom:363.946521pt;}
.y19_c00008{bottom:385.386513pt;}
.y18_c00008{bottom:406.826504pt;}
.y17_c00008{bottom:428.266495pt;}
.y16_c00008{bottom:449.706487pt;}
.y15_c00008{bottom:471.306478pt;}
.y14_c00008{bottom:492.746470pt;}
.y13_c00008{bottom:522.986457pt;}
.y12_c00008{bottom:550.666446pt;}
.y11_c00008{bottom:578.186435pt;}
.y10_c00008{bottom:605.866424pt;}
.yf_c00008{bottom:624.586417pt;}
.ye_c00008{bottom:654.826405pt;}
.yd_c00008{bottom:682.506394pt;}
.yc_c00008{bottom:710.026383pt;}
.yb_c00008{bottom:737.706372pt;}
.ya_c00008{bottom:765.226361pt;}
.y9_c00008{bottom:792.906350pt;}
.y8_c00008{bottom:820.426338pt;}
.y7_c00008{bottom:848.106327pt;}
.y6_c00008{bottom:875.626316pt;}
.y5_c00008{bottom:903.306305pt;}
.y4_c00008{bottom:930.826294pt;}
.y3_c00008{bottom:976.746276pt;}
.y2_c00008{bottom:995.146269pt;}
.y1_c00008{bottom:1013.546261pt;}
.h2_c00008{height:62.812475pt;}
.h1_c00008{height:64.499974pt;}
.h3_c00008{height:75.464970pt;}
.h0_c00008{height:1122.666667pt;}
.w0_c00008{width:793.333333pt;}
.x0_c00008{left:0.000000pt;}
.x2_c00008{left:113.440585pt;}
.x3_c00008{left:160.640569pt;}
.x1_c00008{left:315.519874pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff1_c00009{font-family:ff1_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.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:84.239966px;}
.y0_c00009{bottom:0.000000px;}
.y2_c00009{bottom:1113.059555px;}
.y1_c00009{bottom:1137.359545px;}
.h1_c00009{height:84.898091px;}
.h0_c00009{height:1263.000000px;}
.w0_c00009{width:892.500000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:127.619949px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs0_c00009{font-size:74.879970pt;}
.y0_c00009{bottom:0.000000pt;}
.y2_c00009{bottom:989.386271pt;}
.y1_c00009{bottom:1010.986262pt;}
.h1_c00009{height:75.464970pt;}
.h0_c00009{height:1122.666667pt;}
.w0_c00009{width:793.333333pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ec132b9ce4ef7bd0a11fdd8.woff2')format("woff");}.ff1_c00010{font-family:ff1_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;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_6844ae081df7e3458ca1a441.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_e9813bc15de68a11c61a9640.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_c66a1d5ab6131ffe3e36a3f0.woff2')format("woff");}.ff4_c00010{font-family:ff4_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;}
.m1_c00010{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00010{word-spacing:-21.059992px;}
.ws0_c00010{word-spacing:-17.999993px;}
.ws2_c00010{word-spacing:0.000000px;}
._3_c00010{margin-left:-1.039685px;}
._0_c00010{width:1.169516px;}
._7_c00010{width:4.335221px;}
._2_c00010{width:5.678528px;}
._1_c00010{width:6.862855px;}
._8_c00010{width:7.973014px;}
._9_c00010{width:9.744589px;}
._6_c00010{width:15.573502px;}
._5_c00010{width:16.644128px;}
._a_c00010{width:23.848190px;}
._b_c00010{width:24.876877px;}
._4_c00010{width:49.367901px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs1_c00010{font-size:71.999971px;}
.fs0_c00010{font-size:84.239966px;}
.y0_c00010{bottom:0.000000px;}
.y4_c00010{bottom:3.958961px;}
.y28_c00010{bottom:4.139056px;}
.y42_c00010{bottom:4.139121px;}
.y7_c00010{bottom:5.038962px;}
.yb_c00010{bottom:5.038972px;}
.yf_c00010{bottom:5.038981px;}
.y13_c00010{bottom:5.038991px;}
.y16_c00010{bottom:5.039001px;}
.y1a_c00010{bottom:5.039010px;}
.y1d_c00010{bottom:5.039020px;}
.y21_c00010{bottom:5.039030px;}
.y24_c00010{bottom:5.039039px;}
.y2b_c00010{bottom:5.039049px;}
.y2f_c00010{bottom:5.039066px;}
.y33_c00010{bottom:5.039075px;}
.y37_c00010{bottom:5.039085px;}
.y3b_c00010{bottom:5.039095px;}
.y3e_c00010{bottom:5.039104px;}
.y45_c00010{bottom:5.039114px;}
.y4a_c00010{bottom:5.039130px;}
.y4e_c00010{bottom:5.039147px;}
.y52_c00010{bottom:5.039157px;}
.y56_c00010{bottom:5.039166px;}
.y5a_c00010{bottom:5.039176px;}
.y5e_c00010{bottom:5.039186px;}
.y61_c00010{bottom:5.039195px;}
.y66_c00010{bottom:5.039205px;}
.y6a_c00010{bottom:5.039221px;}
.y6e_c00010{bottom:5.039231px;}
.y74_c00010{bottom:5.039241px;}
.y79_c00010{bottom:5.039266px;}
.y7c_c00010{bottom:5.039282px;}
.y82_c00010{bottom:5.039292px;}
.y86_c00010{bottom:5.039317px;}
.y8a_c00010{bottom:5.039686px;}
.y8e_c00010{bottom:5.039696px;}
.y93_c00010{bottom:5.040006px;}
.y90_c00010{bottom:118.020253px;}
.y92_c00010{bottom:130.800240px;}
.y91_c00010{bottom:135.840246px;}
.y8f_c00010{bottom:138.720245px;}
.y8d_c00010{bottom:154.920240px;}
.y8c_c00010{bottom:159.959936px;}
.y8b_c00010{bottom:162.839935px;}
.y89_c00010{bottom:179.040240px;}
.y88_c00010{bottom:184.079926px;}
.y87_c00010{bottom:186.959925px;}
.y85_c00010{bottom:203.340600px;}
.y84_c00010{bottom:208.379917px;}
.y83_c00010{bottom:211.259915px;}
.y7f_c00010{bottom:231.599907px;}
.y7e_c00010{bottom:252.299899px;}
.y81_c00010{bottom:265.440600px;}
.y80_c00010{bottom:270.479892px;}
.y7d_c00010{bottom:272.999891px;}
.y7b_c00010{bottom:289.560600px;}
.y7a_c00010{bottom:297.479881px;}
.y76_c00010{bottom:318.179873px;}
.y78_c00010{bottom:330.960600px;}
.y77_c00010{bottom:335.999866px;}
.y75_c00010{bottom:338.879864px;}
.y71_c00010{bottom:359.579856px;}
.y70_c00010{bottom:380.279848px;}
.y73_c00010{bottom:393.060600px;}
.y72_c00010{bottom:398.099841px;}
.y6f_c00010{bottom:400.979840px;}
.y6d_c00010{bottom:417.180600px;}
.y6c_c00010{bottom:422.219831px;}
.y6b_c00010{bottom:425.099830px;}
.y69_c00010{bottom:441.300600px;}
.y68_c00010{bottom:446.339821px;}
.y67_c00010{bottom:449.219820px;}
.y63_c00010{bottom:469.559812px;}
.y65_c00010{bottom:482.700600px;}
.y64_c00010{bottom:487.739805px;}
.y62_c00010{bottom:490.259804px;}
.y60_c00010{bottom:506.820600px;}
.y5f_c00010{bottom:514.739794px;}
.y5d_c00010{bottom:530.940600px;}
.y5c_c00010{bottom:535.979786px;}
.y5b_c00010{bottom:538.859784px;}
.y59_c00010{bottom:555.060600px;}
.y58_c00010{bottom:560.099776px;}
.y57_c00010{bottom:562.979775px;}
.y55_c00010{bottom:579.360600px;}
.y54_c00010{bottom:584.399766px;}
.y53_c00010{bottom:587.279765px;}
.y51_c00010{bottom:603.480600px;}
.y50_c00010{bottom:608.519757px;}
.y4f_c00010{bottom:611.399755px;}
.y4d_c00010{bottom:627.600600px;}
.y4c_c00010{bottom:632.639747px;}
.y4b_c00010{bottom:635.519746px;}
.y47_c00010{bottom:656.219738px;}
.y49_c00010{bottom:669.000600px;}
.y48_c00010{bottom:674.039730px;}
.y46_c00010{bottom:676.919729px;}
.y41_c00010{bottom:693.120600px;}
.y40_c00010{bottom:697.259721px;}
.y44_c00010{bottom:710.400600px;}
.y43_c00010{bottom:715.439714px;}
.y3f_c00010{bottom:717.959713px;}
.y3d_c00010{bottom:734.520600px;}
.y3c_c00010{bottom:742.439703px;}
.y3a_c00010{bottom:758.640600px;}
.y39_c00010{bottom:763.679695px;}
.y38_c00010{bottom:766.559693px;}
.y36_c00010{bottom:782.760600px;}
.y35_c00010{bottom:787.799685px;}
.y34_c00010{bottom:790.679684px;}
.y32_c00010{bottom:806.880600px;}
.y31_c00010{bottom:811.919675px;}
.y30_c00010{bottom:814.799674px;}
.y2e_c00010{bottom:831.180600px;}
.y2d_c00010{bottom:836.219666px;}
.y2c_c00010{bottom:839.099664px;}
.y27_c00010{bottom:855.300600px;}
.y26_c00010{bottom:859.439656px;}
.y2a_c00010{bottom:872.580600px;}
.y29_c00010{bottom:877.619649px;}
.y25_c00010{bottom:880.139648px;}
.y23_c00010{bottom:896.700600px;}
.y22_c00010{bottom:904.619638px;}
.y20_c00010{bottom:920.820600px;}
.y1f_c00010{bottom:925.859630px;}
.y1e_c00010{bottom:928.379629px;}
.y1c_c00010{bottom:944.940600px;}
.y1b_c00010{bottom:952.499619px;}
.y19_c00010{bottom:969.060600px;}
.y18_c00010{bottom:974.099610px;}
.y17_c00010{bottom:976.619609px;}
.y15_c00010{bottom:993.180600px;}
.y14_c00010{bottom:1000.739600px;}
.y12_c00010{bottom:1017.480600px;}
.y11_c00010{bottom:1022.519591px;}
.y10_c00010{bottom:1025.399590px;}
.ye_c00010{bottom:1041.600600px;}
.yd_c00010{bottom:1046.639581px;}
.yc_c00010{bottom:1049.519580px;}
.ya_c00010{bottom:1065.720600px;}
.y9_c00010{bottom:1070.759572px;}
.y8_c00010{bottom:1073.639571px;}
.y6_c00010{bottom:1089.840600px;}
.y3_c00010{bottom:1093.800600px;}
.y5_c00010{bottom:1094.879562px;}
.y2_c00010{bottom:1097.759561px;}
.y1_c00010{bottom:1137.359545px;}
.h3_c00010{height:20.160000px;}
.h7_c00010{height:20.340000px;}
.h6_c00010{height:23.760000px;}
.h8_c00010{height:23.760360px;}
.h2_c00010{height:70.664034px;}
.h4_c00010{height:72.562471px;}
.h5_c00010{height:82.676920px;}
.h1_c00010{height:84.898091px;}
.h0_c00010{height:1263.000000px;}
.w2_c00010{width:8.100000px;}
.w1_c00010{width:9.000000px;}
.w0_c00010{width:892.500000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:127.619949px;}
.x7_c00010{left:140.759944px;}
.xb_c00010{left:159.659936px;}
.x3_c00010{left:172.620000px;}
.x8_c00010{left:255.240000px;}
.x1_c00010{left:408.599837px;}
.x9_c00010{left:511.200000px;}
.xa_c00010{left:728.099709px;}
.x6_c00010{left:738.539705px;}
.x4_c00010{left:749.159700px;}
.x5_c00010{left:759.600000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws1_c00010{word-spacing:-18.719993pt;}
.ws0_c00010{word-spacing:-15.999994pt;}
.ws2_c00010{word-spacing:0.000000pt;}
._3_c00010{margin-left:-0.924165pt;}
._0_c00010{width:1.039570pt;}
._7_c00010{width:3.853530pt;}
._2_c00010{width:5.047581pt;}
._1_c00010{width:6.100316pt;}
._8_c00010{width:7.087123pt;}
._9_c00010{width:8.661857pt;}
._6_c00010{width:13.843113pt;}
._5_c00010{width:14.794780pt;}
._a_c00010{width:21.198392pt;}
._b_c00010{width:22.112779pt;}
._4_c00010{width:43.882579pt;}
.fs1_c00010{font-size:63.999974pt;}
.fs0_c00010{font-size:74.879970pt;}
.y0_c00010{bottom:0.000000pt;}
.y4_c00010{bottom:3.519076pt;}
.y28_c00010{bottom:3.679161pt;}
.y42_c00010{bottom:3.679219pt;}
.y7_c00010{bottom:4.479077pt;}
.yb_c00010{bottom:4.479086pt;}
.yf_c00010{bottom:4.479095pt;}
.y13_c00010{bottom:4.479103pt;}
.y16_c00010{bottom:4.479112pt;}
.y1a_c00010{bottom:4.479120pt;}
.y1d_c00010{bottom:4.479129pt;}
.y21_c00010{bottom:4.479137pt;}
.y24_c00010{bottom:4.479146pt;}
.y2b_c00010{bottom:4.479155pt;}
.y2f_c00010{bottom:4.479169pt;}
.y33_c00010{bottom:4.479178pt;}
.y37_c00010{bottom:4.479187pt;}
.y3b_c00010{bottom:4.479195pt;}
.y3e_c00010{bottom:4.479204pt;}
.y45_c00010{bottom:4.479212pt;}
.y4a_c00010{bottom:4.479227pt;}
.y4e_c00010{bottom:4.479242pt;}
.y52_c00010{bottom:4.479250pt;}
.y56_c00010{bottom:4.479259pt;}
.y5a_c00010{bottom:4.479268pt;}
.y5e_c00010{bottom:4.479276pt;}
.y61_c00010{bottom:4.479285pt;}
.y66_c00010{bottom:4.479293pt;}
.y6a_c00010{bottom:4.479308pt;}
.y6e_c00010{bottom:4.479317pt;}
.y74_c00010{bottom:4.479325pt;}
.y79_c00010{bottom:4.479347pt;}
.y7c_c00010{bottom:4.479362pt;}
.y82_c00010{bottom:4.479370pt;}
.y86_c00010{bottom:4.479393pt;}
.y8a_c00010{bottom:4.479721pt;}
.y8e_c00010{bottom:4.479730pt;}
.y93_c00010{bottom:4.480005pt;}
.y90_c00010{bottom:104.906891pt;}
.y92_c00010{bottom:116.266880pt;}
.y91_c00010{bottom:120.746885pt;}
.y8f_c00010{bottom:123.306884pt;}
.y8d_c00010{bottom:137.706880pt;}
.y8c_c00010{bottom:142.186610pt;}
.y8b_c00010{bottom:144.746609pt;}
.y89_c00010{bottom:159.146880pt;}
.y88_c00010{bottom:163.626601pt;}
.y87_c00010{bottom:166.186600pt;}
.y85_c00010{bottom:180.747200pt;}
.y84_c00010{bottom:185.226593pt;}
.y83_c00010{bottom:187.786592pt;}
.y7f_c00010{bottom:205.866584pt;}
.y7e_c00010{bottom:224.266577pt;}
.y81_c00010{bottom:235.947200pt;}
.y80_c00010{bottom:240.426570pt;}
.y7d_c00010{bottom:242.666570pt;}
.y7b_c00010{bottom:257.387200pt;}
.y7a_c00010{bottom:264.426561pt;}
.y76_c00010{bottom:282.826554pt;}
.y78_c00010{bottom:294.187200pt;}
.y77_c00010{bottom:298.666547pt;}
.y75_c00010{bottom:301.226546pt;}
.y71_c00010{bottom:319.626539pt;}
.y70_c00010{bottom:338.026531pt;}
.y73_c00010{bottom:349.387200pt;}
.y72_c00010{bottom:353.866525pt;}
.y6f_c00010{bottom:356.426524pt;}
.y6d_c00010{bottom:370.827200pt;}
.y6c_c00010{bottom:375.306517pt;}
.y6b_c00010{bottom:377.866516pt;}
.y69_c00010{bottom:392.267200pt;}
.y68_c00010{bottom:396.746508pt;}
.y67_c00010{bottom:399.306507pt;}
.y63_c00010{bottom:417.386500pt;}
.y65_c00010{bottom:429.067200pt;}
.y64_c00010{bottom:433.546493pt;}
.y62_c00010{bottom:435.786492pt;}
.y60_c00010{bottom:450.507200pt;}
.y5f_c00010{bottom:457.546484pt;}
.y5d_c00010{bottom:471.947200pt;}
.y5c_c00010{bottom:476.426476pt;}
.y5b_c00010{bottom:478.986475pt;}
.y59_c00010{bottom:493.387200pt;}
.y58_c00010{bottom:497.866468pt;}
.y57_c00010{bottom:500.426466pt;}
.y55_c00010{bottom:514.987200pt;}
.y54_c00010{bottom:519.466459pt;}
.y53_c00010{bottom:522.026458pt;}
.y51_c00010{bottom:536.427200pt;}
.y50_c00010{bottom:540.906450pt;}
.y4f_c00010{bottom:543.466449pt;}
.y4d_c00010{bottom:557.867200pt;}
.y4c_c00010{bottom:562.346442pt;}
.y4b_c00010{bottom:564.906441pt;}
.y47_c00010{bottom:583.306433pt;}
.y49_c00010{bottom:594.667200pt;}
.y48_c00010{bottom:599.146427pt;}
.y46_c00010{bottom:601.706426pt;}
.y41_c00010{bottom:616.107200pt;}
.y40_c00010{bottom:619.786419pt;}
.y44_c00010{bottom:631.467200pt;}
.y43_c00010{bottom:635.946412pt;}
.y3f_c00010{bottom:638.186411pt;}
.y3d_c00010{bottom:652.907200pt;}
.y3c_c00010{bottom:659.946403pt;}
.y3a_c00010{bottom:674.347200pt;}
.y39_c00010{bottom:678.826395pt;}
.y38_c00010{bottom:681.386394pt;}
.y36_c00010{bottom:695.787200pt;}
.y35_c00010{bottom:700.266387pt;}
.y34_c00010{bottom:702.826386pt;}
.y32_c00010{bottom:717.227200pt;}
.y31_c00010{bottom:721.706378pt;}
.y30_c00010{bottom:724.266377pt;}
.y2e_c00010{bottom:738.827200pt;}
.y2d_c00010{bottom:743.306369pt;}
.y2c_c00010{bottom:745.866368pt;}
.y27_c00010{bottom:760.267200pt;}
.y26_c00010{bottom:763.946361pt;}
.y2a_c00010{bottom:775.627200pt;}
.y29_c00010{bottom:780.106355pt;}
.y25_c00010{bottom:782.346354pt;}
.y23_c00010{bottom:797.067200pt;}
.y22_c00010{bottom:804.106345pt;}
.y20_c00010{bottom:818.507200pt;}
.y1f_c00010{bottom:822.986337pt;}
.y1e_c00010{bottom:825.226337pt;}
.y1c_c00010{bottom:839.947200pt;}
.y1b_c00010{bottom:846.666328pt;}
.y19_c00010{bottom:861.387200pt;}
.y18_c00010{bottom:865.866320pt;}
.y17_c00010{bottom:868.106319pt;}
.y15_c00010{bottom:882.827200pt;}
.y14_c00010{bottom:889.546311pt;}
.y12_c00010{bottom:904.427200pt;}
.y11_c00010{bottom:908.906303pt;}
.y10_c00010{bottom:911.466302pt;}
.ye_c00010{bottom:925.867200pt;}
.yd_c00010{bottom:930.346295pt;}
.yc_c00010{bottom:932.906294pt;}
.ya_c00010{bottom:947.307200pt;}
.y9_c00010{bottom:951.786286pt;}
.y8_c00010{bottom:954.346285pt;}
.y6_c00010{bottom:968.747200pt;}
.y3_c00010{bottom:972.267200pt;}
.y5_c00010{bottom:973.226277pt;}
.y2_c00010{bottom:975.786276pt;}
.y1_c00010{bottom:1010.986262pt;}
.h3_c00010{height:17.920000pt;}
.h7_c00010{height:18.080000pt;}
.h6_c00010{height:21.120000pt;}
.h8_c00010{height:21.120320pt;}
.h2_c00010{height:62.812475pt;}
.h4_c00010{height:64.499974pt;}
.h5_c00010{height:73.490596pt;}
.h1_c00010{height:75.464970pt;}
.h0_c00010{height:1122.666667pt;}
.w2_c00010{width:7.200000pt;}
.w1_c00010{width:8.000000pt;}
.w0_c00010{width:793.333333pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:113.439955pt;}
.x7_c00010{left:125.119950pt;}
.xb_c00010{left:141.919943pt;}
.x3_c00010{left:153.440000pt;}
.x8_c00010{left:226.880000pt;}
.x1_c00010{left:363.199855pt;}
.x9_c00010{left:454.400000pt;}
.xa_c00010{left:647.199741pt;}
.x6_c00010{left:656.479737pt;}
.x4_c00010{left:665.919734pt;}
.x5_c00010{left:675.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_0063eff3594e21929ac42242.woff2')format("woff");}.ff1_c00011{font-family:ff1_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:ff2_c00011;src:url('chunks/assets/font_2bbc964ce5eeaf02d5be928a.woff2')format("woff");}.ff2_c00011{font-family:ff2_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:ff3_c00011;src:url('chunks/assets/font_08dbdbadf854a7b5725a8076.woff2')format("woff");}.ff3_c00011{font-family:ff3_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;}
@font-face{font-family:ff4_c00011;src:url('chunks/assets/font_c66a1d5ab6131ffe3e36a3f0.woff2')format("woff");}.ff4_c00011{font-family:ff4_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;}
.m0_c00011{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00011{word-spacing:-21.059992px;}
.ws1_c00011{word-spacing:0.000000px;}
._1_c00011{margin-left:-1.035784px;}
._4_c00011{width:1.130409px;}
._a_c00011{width:2.910817px;}
._5_c00011{width:5.869705px;}
._7_c00011{width:7.278659px;}
._8_c00011{width:8.380679px;}
._3_c00011{width:9.471806px;}
._6_c00011{width:13.873703px;}
._2_c00011{width:15.405134px;}
._0_c00011{width:16.676051px;}
._9_c00011{width:84.668839px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:71.999971px;}
.fs1_c00011{font-size:84.239966px;}
.y0_c00011{bottom:0.000000px;}
.y5_c00011{bottom:5.038945px;}
.ya_c00011{bottom:5.038961px;}
.yf_c00011{bottom:5.038978px;}
.y13_c00011{bottom:5.038995px;}
.y17_c00011{bottom:5.039004px;}
.y1b_c00011{bottom:5.039014px;}
.y1f_c00011{bottom:5.039024px;}
.y23_c00011{bottom:5.039033px;}
.y28_c00011{bottom:5.039043px;}
.y2c_c00011{bottom:5.039059px;}
.y30_c00011{bottom:5.039069px;}
.y34_c00011{bottom:5.039079px;}
.y38_c00011{bottom:5.039088px;}
.y3c_c00011{bottom:5.039098px;}
.y41_c00011{bottom:5.039108px;}
.y45_c00011{bottom:5.039124px;}
.y49_c00011{bottom:5.039134px;}
.y4c_c00011{bottom:5.039144px;}
.y50_c00011{bottom:5.039153px;}
.y53_c00011{bottom:5.039166px;}
.y58_c00011{bottom:5.039175px;}
.y5c_c00011{bottom:5.039192px;}
.y60_c00011{bottom:5.039202px;}
.y64_c00011{bottom:5.039211px;}
.y68_c00011{bottom:5.039221px;}
.y6c_c00011{bottom:5.039231px;}
.y70_c00011{bottom:5.039240px;}
.y74_c00011{bottom:5.039250px;}
.y78_c00011{bottom:5.039260px;}
.y7c_c00011{bottom:5.039269px;}
.y7f_c00011{bottom:5.039279px;}
.y86_c00011{bottom:5.039289px;}
.y8a_c00011{bottom:5.039322px;}
.y8e_c00011{bottom:5.039691px;}
.y92_c00011{bottom:5.040001px;}
.y96_c00011{bottom:5.040011px;}
.y95_c00011{bottom:118.380240px;}
.y94_c00011{bottom:123.420251px;}
.y93_c00011{bottom:126.300249px;}
.y91_c00011{bottom:142.500240px;}
.y90_c00011{bottom:147.540241px;}
.y8f_c00011{bottom:150.419940px;}
.y8d_c00011{bottom:166.620240px;}
.y8c_c00011{bottom:171.659931px;}
.y8b_c00011{bottom:174.539930px;}
.y89_c00011{bottom:190.920600px;}
.y88_c00011{bottom:195.959922px;}
.y87_c00011{bottom:198.839920px;}
.y83_c00011{bottom:219.179912px;}
.y82_c00011{bottom:239.879904px;}
.y81_c00011{bottom:260.399896px;}
.y85_c00011{bottom:273.540600px;}
.y84_c00011{bottom:278.579889px;}
.y80_c00011{bottom:281.099888px;}
.y7e_c00011{bottom:297.840600px;}
.y7d_c00011{bottom:305.759878px;}
.y7b_c00011{bottom:321.960600px;}
.y7a_c00011{bottom:326.999869px;}
.y79_c00011{bottom:329.879868px;}
.y77_c00011{bottom:346.080600px;}
.y76_c00011{bottom:351.119860px;}
.y75_c00011{bottom:353.999858px;}
.y73_c00011{bottom:370.200600px;}
.y72_c00011{bottom:375.239850px;}
.y71_c00011{bottom:378.119849px;}
.y6f_c00011{bottom:394.320600px;}
.y6e_c00011{bottom:399.359840px;}
.y6d_c00011{bottom:402.239839px;}
.y6b_c00011{bottom:418.440600px;}
.y6a_c00011{bottom:423.479831px;}
.y69_c00011{bottom:426.359829px;}
.y67_c00011{bottom:442.740600px;}
.y66_c00011{bottom:447.779821px;}
.y65_c00011{bottom:450.659820px;}
.y63_c00011{bottom:466.860600px;}
.y62_c00011{bottom:471.899811px;}
.y61_c00011{bottom:474.779810px;}
.y5f_c00011{bottom:490.980600px;}
.y5e_c00011{bottom:496.019802px;}
.y5d_c00011{bottom:498.899800px;}
.y5b_c00011{bottom:515.100600px;}
.y5a_c00011{bottom:520.139792px;}
.y59_c00011{bottom:523.019791px;}
.y55_c00011{bottom:543.359783px;}
.y57_c00011{bottom:556.500600px;}
.y56_c00011{bottom:561.539775px;}
.y54_c00011{bottom:564.059774px;}
.y52_c00011{bottom:580.620600px;}
.y51_c00011{bottom:588.539765px;}
.y4f_c00011{bottom:611.760600px;}
.y4e_c00011{bottom:616.799753px;}
.y4d_c00011{bottom:619.139752px;}
.y4b_c00011{bottom:635.880600px;}
.y4a_c00011{bottom:643.799742px;}
.y48_c00011{bottom:660.000600px;}
.y47_c00011{bottom:665.039734px;}
.y46_c00011{bottom:667.919733px;}
.y44_c00011{bottom:684.120600px;}
.y43_c00011{bottom:689.159724px;}
.y42_c00011{bottom:692.039723px;}
.y3e_c00011{bottom:712.739715px;}
.y40_c00011{bottom:725.520600px;}
.y3f_c00011{bottom:730.559708px;}
.y3d_c00011{bottom:733.439707px;}
.y3b_c00011{bottom:749.640600px;}
.y3a_c00011{bottom:754.679698px;}
.y39_c00011{bottom:757.559697px;}
.y37_c00011{bottom:773.760600px;}
.y36_c00011{bottom:778.799688px;}
.y35_c00011{bottom:781.679687px;}
.y33_c00011{bottom:798.060600px;}
.y32_c00011{bottom:803.099679px;}
.y31_c00011{bottom:805.979678px;}
.y2f_c00011{bottom:822.180600px;}
.y2e_c00011{bottom:827.219669px;}
.y2d_c00011{bottom:830.099668px;}
.y2b_c00011{bottom:846.300600px;}
.y2a_c00011{bottom:851.339659px;}
.y29_c00011{bottom:854.219658px;}
.y25_c00011{bottom:874.919650px;}
.y27_c00011{bottom:887.700600px;}
.y26_c00011{bottom:892.739643px;}
.y24_c00011{bottom:895.619642px;}
.y22_c00011{bottom:911.820600px;}
.y21_c00011{bottom:916.859633px;}
.y20_c00011{bottom:919.739632px;}
.y1e_c00011{bottom:935.940600px;}
.y1d_c00011{bottom:940.979624px;}
.y1c_c00011{bottom:943.859622px;}
.y1a_c00011{bottom:960.060600px;}
.y19_c00011{bottom:965.099614px;}
.y18_c00011{bottom:967.979613px;}
.y16_c00011{bottom:984.180600px;}
.y15_c00011{bottom:989.219604px;}
.y14_c00011{bottom:992.099603px;}
.y12_c00011{bottom:1008.480600px;}
.y11_c00011{bottom:1013.519595px;}
.y10_c00011{bottom:1016.399593px;}
.yc_c00011{bottom:1037.099585px;}
.ye_c00011{bottom:1049.880600px;}
.yd_c00011{bottom:1054.919578px;}
.yb_c00011{bottom:1057.799577px;}
.y7_c00011{bottom:1078.499569px;}
.y9_c00011{bottom:1091.280600px;}
.y8_c00011{bottom:1096.319561px;}
.y6_c00011{bottom:1099.199560px;}
.y2_c00011{bottom:1119.899552px;}
.y4_c00011{bottom:1132.680600px;}
.y3_c00011{bottom:1137.719545px;}
.y1_c00011{bottom:1140.599544px;}
.h3_c00011{height:23.760000px;}
.h5_c00011{height:23.760360px;}
.h1_c00011{height:70.664034px;}
.h4_c00011{height:72.562471px;}
.h2_c00011{height:82.676920px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:8.100000px;}
.w0_c00011{width:892.500000px;}
.x0_c00011{left:0.000000px;}
.x4_c00011{left:127.619949px;}
.x1_c00011{left:159.659936px;}
.x2_c00011{left:728.099709px;}
.x3_c00011{left:759.600000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:-18.719993pt;}
.ws1_c00011{word-spacing:0.000000pt;}
._1_c00011{margin-left:-0.920697pt;}
._4_c00011{width:1.004808pt;}
._a_c00011{width:2.587393pt;}
._5_c00011{width:5.217515pt;}
._7_c00011{width:6.469919pt;}
._8_c00011{width:7.449492pt;}
._3_c00011{width:8.419383pt;}
._6_c00011{width:12.332180pt;}
._2_c00011{width:13.693453pt;}
._0_c00011{width:14.823156pt;}
._9_c00011{width:75.261190pt;}
.fs0_c00011{font-size:63.999974pt;}
.fs1_c00011{font-size:74.879970pt;}
.y0_c00011{bottom:0.000000pt;}
.y5_c00011{bottom:4.479062pt;}
.ya_c00011{bottom:4.479077pt;}
.yf_c00011{bottom:4.479092pt;}
.y13_c00011{bottom:4.479106pt;}
.y17_c00011{bottom:4.479115pt;}
.y1b_c00011{bottom:4.479124pt;}
.y1f_c00011{bottom:4.479132pt;}
.y23_c00011{bottom:4.479141pt;}
.y28_c00011{bottom:4.479149pt;}
.y2c_c00011{bottom:4.479164pt;}
.y30_c00011{bottom:4.479173pt;}
.y34_c00011{bottom:4.479181pt;}
.y38_c00011{bottom:4.479190pt;}
.y3c_c00011{bottom:4.479198pt;}
.y41_c00011{bottom:4.479207pt;}
.y45_c00011{bottom:4.479222pt;}
.y49_c00011{bottom:4.479230pt;}
.y4c_c00011{bottom:4.479239pt;}
.y50_c00011{bottom:4.479247pt;}
.y53_c00011{bottom:4.479258pt;}
.y58_c00011{bottom:4.479267pt;}
.y5c_c00011{bottom:4.479282pt;}
.y60_c00011{bottom:4.479290pt;}
.y64_c00011{bottom:4.479299pt;}
.y68_c00011{bottom:4.479307pt;}
.y6c_c00011{bottom:4.479316pt;}
.y70_c00011{bottom:4.479325pt;}
.y74_c00011{bottom:4.479333pt;}
.y78_c00011{bottom:4.479342pt;}
.y7c_c00011{bottom:4.479350pt;}
.y7f_c00011{bottom:4.479359pt;}
.y86_c00011{bottom:4.479368pt;}
.y8a_c00011{bottom:4.479397pt;}
.y8e_c00011{bottom:4.479726pt;}
.y92_c00011{bottom:4.480001pt;}
.y96_c00011{bottom:4.480009pt;}
.y95_c00011{bottom:105.226880pt;}
.y94_c00011{bottom:109.706889pt;}
.y93_c00011{bottom:112.266888pt;}
.y91_c00011{bottom:126.666880pt;}
.y90_c00011{bottom:131.146881pt;}
.y8f_c00011{bottom:133.706613pt;}
.y8d_c00011{bottom:148.106880pt;}
.y8c_c00011{bottom:152.586606pt;}
.y8b_c00011{bottom:155.146605pt;}
.y89_c00011{bottom:169.707200pt;}
.y88_c00011{bottom:174.186597pt;}
.y87_c00011{bottom:176.746596pt;}
.y83_c00011{bottom:194.826589pt;}
.y82_c00011{bottom:213.226581pt;}
.y81_c00011{bottom:231.466574pt;}
.y85_c00011{bottom:243.147200pt;}
.y84_c00011{bottom:247.626568pt;}
.y80_c00011{bottom:249.866567pt;}
.y7e_c00011{bottom:264.747200pt;}
.y7d_c00011{bottom:271.786558pt;}
.y7b_c00011{bottom:286.187200pt;}
.y7a_c00011{bottom:290.666550pt;}
.y79_c00011{bottom:293.226549pt;}
.y77_c00011{bottom:307.627200pt;}
.y76_c00011{bottom:312.106542pt;}
.y75_c00011{bottom:314.666541pt;}
.y73_c00011{bottom:329.067200pt;}
.y72_c00011{bottom:333.546533pt;}
.y71_c00011{bottom:336.106532pt;}
.y6f_c00011{bottom:350.507200pt;}
.y6e_c00011{bottom:354.986525pt;}
.y6d_c00011{bottom:357.546524pt;}
.y6b_c00011{bottom:371.947200pt;}
.y6a_c00011{bottom:376.426516pt;}
.y69_c00011{bottom:378.986515pt;}
.y67_c00011{bottom:393.547200pt;}
.y66_c00011{bottom:398.026507pt;}
.y65_c00011{bottom:400.586506pt;}
.y63_c00011{bottom:414.987200pt;}
.y62_c00011{bottom:419.466499pt;}
.y61_c00011{bottom:422.026498pt;}
.y5f_c00011{bottom:436.427200pt;}
.y5e_c00011{bottom:440.906490pt;}
.y5d_c00011{bottom:443.466489pt;}
.y5b_c00011{bottom:457.867200pt;}
.y5a_c00011{bottom:462.346482pt;}
.y59_c00011{bottom:464.906481pt;}
.y55_c00011{bottom:482.986473pt;}
.y57_c00011{bottom:494.667200pt;}
.y56_c00011{bottom:499.146467pt;}
.y54_c00011{bottom:501.386466pt;}
.y52_c00011{bottom:516.107200pt;}
.y51_c00011{bottom:523.146457pt;}
.y4f_c00011{bottom:543.787200pt;}
.y4e_c00011{bottom:548.266447pt;}
.y4d_c00011{bottom:550.346447pt;}
.y4b_c00011{bottom:565.227200pt;}
.y4a_c00011{bottom:572.266438pt;}
.y48_c00011{bottom:586.667200pt;}
.y47_c00011{bottom:591.146430pt;}
.y46_c00011{bottom:593.706429pt;}
.y44_c00011{bottom:608.107200pt;}
.y43_c00011{bottom:612.586422pt;}
.y42_c00011{bottom:615.146421pt;}
.y3e_c00011{bottom:633.546413pt;}
.y40_c00011{bottom:644.907200pt;}
.y3f_c00011{bottom:649.386407pt;}
.y3d_c00011{bottom:651.946406pt;}
.y3b_c00011{bottom:666.347200pt;}
.y3a_c00011{bottom:670.826398pt;}
.y39_c00011{bottom:673.386397pt;}
.y37_c00011{bottom:687.787200pt;}
.y36_c00011{bottom:692.266390pt;}
.y35_c00011{bottom:694.826389pt;}
.y33_c00011{bottom:709.387200pt;}
.y32_c00011{bottom:713.866381pt;}
.y31_c00011{bottom:716.426380pt;}
.y2f_c00011{bottom:730.827200pt;}
.y2e_c00011{bottom:735.306373pt;}
.y2d_c00011{bottom:737.866372pt;}
.y2b_c00011{bottom:752.267200pt;}
.y2a_c00011{bottom:756.746364pt;}
.y29_c00011{bottom:759.306363pt;}
.y25_c00011{bottom:777.706356pt;}
.y27_c00011{bottom:789.067200pt;}
.y26_c00011{bottom:793.546349pt;}
.y24_c00011{bottom:796.106348pt;}
.y22_c00011{bottom:810.507200pt;}
.y21_c00011{bottom:814.986341pt;}
.y20_c00011{bottom:817.546340pt;}
.y1e_c00011{bottom:831.947200pt;}
.y1d_c00011{bottom:836.426332pt;}
.y1c_c00011{bottom:838.986331pt;}
.y1a_c00011{bottom:853.387200pt;}
.y19_c00011{bottom:857.866324pt;}
.y18_c00011{bottom:860.426322pt;}
.y16_c00011{bottom:874.827200pt;}
.y15_c00011{bottom:879.306315pt;}
.y14_c00011{bottom:881.866314pt;}
.y12_c00011{bottom:896.427200pt;}
.y11_c00011{bottom:900.906306pt;}
.y10_c00011{bottom:903.466305pt;}
.yc_c00011{bottom:921.866298pt;}
.ye_c00011{bottom:933.227200pt;}
.yd_c00011{bottom:937.706292pt;}
.yb_c00011{bottom:940.266291pt;}
.y7_c00011{bottom:958.666283pt;}
.y9_c00011{bottom:970.027200pt;}
.y8_c00011{bottom:974.506277pt;}
.y6_c00011{bottom:977.066276pt;}
.y2_c00011{bottom:995.466268pt;}
.y4_c00011{bottom:1006.827200pt;}
.y3_c00011{bottom:1011.306262pt;}
.y1_c00011{bottom:1013.866261pt;}
.h3_c00011{height:21.120000pt;}
.h5_c00011{height:21.120320pt;}
.h1_c00011{height:62.812475pt;}
.h4_c00011{height:64.499974pt;}
.h2_c00011{height:73.490596pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:7.200000pt;}
.w0_c00011{width:793.333333pt;}
.x0_c00011{left:0.000000pt;}
.x4_c00011{left:113.439955pt;}
.x1_c00011{left:141.919943pt;}
.x2_c00011{left:647.199741pt;}
.x3_c00011{left:675.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4d7f22ba2570b6cd3fe1e598.woff2')format("woff");}.ff1_c00012{font-family:ff1_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;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_15e785bf1eb1ddebf7998dfe.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284180;font-style:normal;font-weight:normal;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_7cbf07fb7a0758213b0e1035.woff2')format("woff");}.ff3_c00012{font-family:ff3_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:ff4_c00012;src:url('chunks/assets/font_c66a1d5ab6131ffe3e36a3f0.woff2')format("woff");}.ff4_c00012{font-family:ff4_c00012;line-height:1.284180;font-style: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.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls1_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:0.021282px;}
.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:-21.059992px;}
.ws1_c00012{word-spacing:-17.999993px;}
.ws2_c00012{word-spacing:0.000000px;}
._1_c00012{margin-left:-1.486929px;}
._0_c00012{width:1.191709px;}
._2_c00012{width:16.948834px;}
._4_c00012{width:22.474952px;}
._3_c00012{width:23.857936px;}
._5_c00012{width:33.356783px;}
.fc1_c00012{color:transparent;}
.fc0_c00012{color:rgb(0,0,0);}
.fs0_c00012{font-size:71.999971px;}
.fs1_c00012{font-size:84.239966px;}
.y0_c00012{bottom:0.000000px;}
.y92_c00012{bottom:3.959292px;}
.y95_c00012{bottom:3.959300px;}
.y98_c00012{bottom:3.959308px;}
.y9b_c00012{bottom:4.139317px;}
.y4_c00012{bottom:5.038945px;}
.y8_c00012{bottom:5.038955px;}
.yc_c00012{bottom:5.038964px;}
.y10_c00012{bottom:5.038974px;}
.y14_c00012{bottom:5.038984px;}
.y18_c00012{bottom:5.038993px;}
.y1c_c00012{bottom:5.039003px;}
.y20_c00012{bottom:5.039013px;}
.y24_c00012{bottom:5.039022px;}
.y28_c00012{bottom:5.039032px;}
.y2c_c00012{bottom:5.039042px;}
.y30_c00012{bottom:5.039051px;}
.y34_c00012{bottom:5.039061px;}
.y38_c00012{bottom:5.039070px;}
.y3c_c00012{bottom:5.039080px;}
.y40_c00012{bottom:5.039090px;}
.y44_c00012{bottom:5.039099px;}
.y48_c00012{bottom:5.039109px;}
.y4c_c00012{bottom:5.039119px;}
.y50_c00012{bottom:5.039128px;}
.y54_c00012{bottom:5.039138px;}
.y58_c00012{bottom:5.039148px;}
.y5c_c00012{bottom:5.039157px;}
.y60_c00012{bottom:5.039167px;}
.y64_c00012{bottom:5.039177px;}
.y68_c00012{bottom:5.039186px;}
.y6c_c00012{bottom:5.039196px;}
.y70_c00012{bottom:5.039206px;}
.y74_c00012{bottom:5.039215px;}
.y78_c00012{bottom:5.039225px;}
.y7c_c00012{bottom:5.039235px;}
.y80_c00012{bottom:5.039244px;}
.y84_c00012{bottom:5.039254px;}
.y88_c00012{bottom:5.039264px;}
.y8c_c00012{bottom:5.039273px;}
.y8f_c00012{bottom:5.039283px;}
.y9e_c00012{bottom:5.039293px;}
.ya2_c00012{bottom:5.039326px;}
.ya6_c00012{bottom:5.039695px;}
.yaa_c00012{bottom:5.040005px;}
.yae_c00012{bottom:5.040015px;}
.yad_c00012{bottom:108.120240px;}
.yac_c00012{bottom:113.160255px;}
.yab_c00012{bottom:116.040254px;}
.ya9_c00012{bottom:132.240240px;}
.ya8_c00012{bottom:137.280245px;}
.ya7_c00012{bottom:140.160244px;}
.ya5_c00012{bottom:156.360240px;}
.ya4_c00012{bottom:161.399935px;}
.ya3_c00012{bottom:164.279934px;}
.ya1_c00012{bottom:180.480600px;}
.ya0_c00012{bottom:185.519926px;}
.y9f_c00012{bottom:188.399925px;}
.y9a_c00012{bottom:204.600600px;}
.y99_c00012{bottom:208.739917px;}
.y97_c00012{bottom:225.480600px;}
.y96_c00012{bottom:229.439908px;}
.y94_c00012{bottom:246.180600px;}
.y93_c00012{bottom:250.139900px;}
.y9d_c00012{bottom:263.280600px;}
.y91_c00012{bottom:266.880600px;}
.y9c_c00012{bottom:268.319893px;}
.y90_c00012{bottom:270.839892px;}
.y8e_c00012{bottom:287.400600px;}
.y8d_c00012{bottom:295.319882px;}
.y8b_c00012{bottom:311.520600px;}
.y8a_c00012{bottom:316.559873px;}
.y89_c00012{bottom:319.439872px;}
.y87_c00012{bottom:335.640600px;}
.y86_c00012{bottom:340.679864px;}
.y85_c00012{bottom:343.559863px;}
.y83_c00012{bottom:359.940600px;}
.y82_c00012{bottom:364.979854px;}
.y81_c00012{bottom:367.859853px;}
.y7f_c00012{bottom:384.060600px;}
.y7e_c00012{bottom:389.099844px;}
.y7d_c00012{bottom:391.979843px;}
.y7b_c00012{bottom:408.180600px;}
.y7a_c00012{bottom:413.219835px;}
.y79_c00012{bottom:416.099834px;}
.y77_c00012{bottom:432.300600px;}
.y76_c00012{bottom:437.339825px;}
.y75_c00012{bottom:440.219824px;}
.y73_c00012{bottom:456.420600px;}
.y72_c00012{bottom:461.459815px;}
.y71_c00012{bottom:464.339814px;}
.y6f_c00012{bottom:480.540600px;}
.y6e_c00012{bottom:485.579806px;}
.y6d_c00012{bottom:488.459805px;}
.y6b_c00012{bottom:504.840600px;}
.y6a_c00012{bottom:509.879796px;}
.y69_c00012{bottom:512.759795px;}
.y67_c00012{bottom:528.960600px;}
.y66_c00012{bottom:533.999786px;}
.y65_c00012{bottom:536.879785px;}
.y63_c00012{bottom:553.080600px;}
.y62_c00012{bottom:558.119777px;}
.y61_c00012{bottom:560.999776px;}
.y5f_c00012{bottom:577.200600px;}
.y5e_c00012{bottom:582.239767px;}
.y5d_c00012{bottom:585.119766px;}
.y5b_c00012{bottom:601.320600px;}
.y5a_c00012{bottom:606.359757px;}
.y59_c00012{bottom:609.239756px;}
.y57_c00012{bottom:625.440600px;}
.y56_c00012{bottom:630.479748px;}
.y55_c00012{bottom:633.359747px;}
.y53_c00012{bottom:649.560600px;}
.y52_c00012{bottom:654.599738px;}
.y51_c00012{bottom:657.479737px;}
.y4f_c00012{bottom:673.860600px;}
.y4e_c00012{bottom:678.899728px;}
.y4d_c00012{bottom:681.779727px;}
.y4b_c00012{bottom:697.980600px;}
.y4a_c00012{bottom:703.019719px;}
.y49_c00012{bottom:705.899718px;}
.y47_c00012{bottom:722.100600px;}
.y46_c00012{bottom:727.139709px;}
.y45_c00012{bottom:730.019708px;}
.y43_c00012{bottom:746.220600px;}
.y42_c00012{bottom:751.259699px;}
.y41_c00012{bottom:754.139698px;}
.y3f_c00012{bottom:770.340600px;}
.y3e_c00012{bottom:775.379690px;}
.y3d_c00012{bottom:778.259689px;}
.y3b_c00012{bottom:794.460600px;}
.y3a_c00012{bottom:799.499680px;}
.y39_c00012{bottom:802.379679px;}
.y37_c00012{bottom:818.760600px;}
.y36_c00012{bottom:823.799670px;}
.y35_c00012{bottom:826.679669px;}
.y33_c00012{bottom:842.880600px;}
.y32_c00012{bottom:847.919661px;}
.y31_c00012{bottom:850.799660px;}
.y2f_c00012{bottom:867.000600px;}
.y2e_c00012{bottom:872.039651px;}
.y2d_c00012{bottom:874.919650px;}
.y2b_c00012{bottom:891.120600px;}
.y2a_c00012{bottom:896.159642px;}
.y29_c00012{bottom:899.039640px;}
.y27_c00012{bottom:915.240600px;}
.y26_c00012{bottom:920.279632px;}
.y25_c00012{bottom:923.159631px;}
.y23_c00012{bottom:939.360600px;}
.y22_c00012{bottom:944.399622px;}
.y21_c00012{bottom:947.279621px;}
.y1f_c00012{bottom:963.480600px;}
.y1e_c00012{bottom:968.519613px;}
.y1d_c00012{bottom:971.399611px;}
.y1b_c00012{bottom:987.780600px;}
.y1a_c00012{bottom:992.819603px;}
.y19_c00012{bottom:995.699602px;}
.y17_c00012{bottom:1011.900600px;}
.y16_c00012{bottom:1016.939593px;}
.y15_c00012{bottom:1019.819592px;}
.y13_c00012{bottom:1036.020600px;}
.y12_c00012{bottom:1041.059584px;}
.y11_c00012{bottom:1043.939582px;}
.yf_c00012{bottom:1060.140600px;}
.ye_c00012{bottom:1065.179574px;}
.yd_c00012{bottom:1068.059573px;}
.yb_c00012{bottom:1084.260600px;}
.ya_c00012{bottom:1089.299564px;}
.y9_c00012{bottom:1092.179563px;}
.y7_c00012{bottom:1108.380600px;}
.y6_c00012{bottom:1113.419555px;}
.y5_c00012{bottom:1116.299553px;}
.y3_c00012{bottom:1132.680600px;}
.y2_c00012{bottom:1137.719545px;}
.y1_c00012{bottom:1140.599544px;}
.h6_c00012{height:20.340000px;}
.h5_c00012{height:20.520000px;}
.h3_c00012{height:23.760000px;}
.h7_c00012{height:23.760360px;}
.h1_c00012{height:70.664034px;}
.h4_c00012{height:72.562471px;}
.h2_c00012{height:82.676920px;}
.h0_c00012{height:1263.000000px;}
.w4_c00012{width:3.240000px;}
.w1_c00012{width:8.100000px;}
.w5_c00012{width:9.000000px;}
.w2_c00012{width:85.500000px;}
.w3_c00012{width:139.140000px;}
.w0_c00012{width:892.500000px;}
.x0_c00012{left:0.000000px;}
.x4_c00012{left:127.619949px;}
.x1_c00012{left:159.659936px;}
.x5_c00012{left:202.139919px;}
.x9_c00012{left:386.820000px;}
.x7_c00012{left:541.260000px;}
.x6_c00012{left:594.900000px;}
.x8_c00012{left:677.160000px;}
.x2_c00012{left:728.099709px;}
.x3_c00012{left:759.600000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls1_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:0.018917pt;}
.ws0_c00012{word-spacing:-18.719993pt;}
.ws1_c00012{word-spacing:-15.999994pt;}
.ws2_c00012{word-spacing:0.000000pt;}
._1_c00012{margin-left:-1.321715pt;}
._0_c00012{width:1.059297pt;}
._2_c00012{width:15.065630pt;}
._4_c00012{width:19.977735pt;}
._3_c00012{width:21.207054pt;}
._5_c00012{width:29.650474pt;}
.fs0_c00012{font-size:63.999974pt;}
.fs1_c00012{font-size:74.879970pt;}
.y0_c00012{bottom:0.000000pt;}
.y92_c00012{bottom:3.519370pt;}
.y95_c00012{bottom:3.519378pt;}
.y98_c00012{bottom:3.519385pt;}
.y9b_c00012{bottom:3.679392pt;}
.y4_c00012{bottom:4.479062pt;}
.y8_c00012{bottom:4.479071pt;}
.yc_c00012{bottom:4.479079pt;}
.y10_c00012{bottom:4.479088pt;}
.y14_c00012{bottom:4.479097pt;}
.y18_c00012{bottom:4.479105pt;}
.y1c_c00012{bottom:4.479114pt;}
.y20_c00012{bottom:4.479122pt;}
.y24_c00012{bottom:4.479131pt;}
.y28_c00012{bottom:4.479139pt;}
.y2c_c00012{bottom:4.479148pt;}
.y30_c00012{bottom:4.479157pt;}
.y34_c00012{bottom:4.479165pt;}
.y38_c00012{bottom:4.479174pt;}
.y3c_c00012{bottom:4.479182pt;}
.y40_c00012{bottom:4.479191pt;}
.y44_c00012{bottom:4.479200pt;}
.y48_c00012{bottom:4.479208pt;}
.y4c_c00012{bottom:4.479217pt;}
.y50_c00012{bottom:4.479225pt;}
.y54_c00012{bottom:4.479234pt;}
.y58_c00012{bottom:4.479242pt;}
.y5c_c00012{bottom:4.479251pt;}
.y60_c00012{bottom:4.479260pt;}
.y64_c00012{bottom:4.479268pt;}
.y68_c00012{bottom:4.479277pt;}
.y6c_c00012{bottom:4.479285pt;}
.y70_c00012{bottom:4.479294pt;}
.y74_c00012{bottom:4.479303pt;}
.y78_c00012{bottom:4.479311pt;}
.y7c_c00012{bottom:4.479320pt;}
.y80_c00012{bottom:4.479328pt;}
.y84_c00012{bottom:4.479337pt;}
.y88_c00012{bottom:4.479346pt;}
.y8c_c00012{bottom:4.479354pt;}
.y8f_c00012{bottom:4.479363pt;}
.y9e_c00012{bottom:4.479371pt;}
.ya2_c00012{bottom:4.479401pt;}
.ya6_c00012{bottom:4.479729pt;}
.yaa_c00012{bottom:4.480005pt;}
.yae_c00012{bottom:4.480013pt;}
.yad_c00012{bottom:96.106880pt;}
.yac_c00012{bottom:100.586893pt;}
.yab_c00012{bottom:103.146892pt;}
.ya9_c00012{bottom:117.546880pt;}
.ya8_c00012{bottom:122.026885pt;}
.ya7_c00012{bottom:124.586883pt;}
.ya5_c00012{bottom:138.986880pt;}
.ya4_c00012{bottom:143.466609pt;}
.ya3_c00012{bottom:146.026608pt;}
.ya1_c00012{bottom:160.427200pt;}
.ya0_c00012{bottom:164.906601pt;}
.y9f_c00012{bottom:167.466600pt;}
.y9a_c00012{bottom:181.867200pt;}
.y99_c00012{bottom:185.546592pt;}
.y97_c00012{bottom:200.427200pt;}
.y96_c00012{bottom:203.946585pt;}
.y94_c00012{bottom:218.827200pt;}
.y93_c00012{bottom:222.346578pt;}
.y9d_c00012{bottom:234.027200pt;}
.y91_c00012{bottom:237.227200pt;}
.y9c_c00012{bottom:238.506571pt;}
.y90_c00012{bottom:240.746570pt;}
.y8e_c00012{bottom:255.467200pt;}
.y8d_c00012{bottom:262.506562pt;}
.y8b_c00012{bottom:276.907200pt;}
.y8a_c00012{bottom:281.386554pt;}
.y89_c00012{bottom:283.946553pt;}
.y87_c00012{bottom:298.347200pt;}
.y86_c00012{bottom:302.826546pt;}
.y85_c00012{bottom:305.386545pt;}
.y83_c00012{bottom:319.947200pt;}
.y82_c00012{bottom:324.426537pt;}
.y81_c00012{bottom:326.986536pt;}
.y7f_c00012{bottom:341.387200pt;}
.y7e_c00012{bottom:345.866528pt;}
.y7d_c00012{bottom:348.426527pt;}
.y7b_c00012{bottom:362.827200pt;}
.y7a_c00012{bottom:367.306520pt;}
.y79_c00012{bottom:369.866519pt;}
.y77_c00012{bottom:384.267200pt;}
.y76_c00012{bottom:388.746511pt;}
.y75_c00012{bottom:391.306510pt;}
.y73_c00012{bottom:405.707200pt;}
.y72_c00012{bottom:410.186503pt;}
.y71_c00012{bottom:412.746502pt;}
.y6f_c00012{bottom:427.147200pt;}
.y6e_c00012{bottom:431.626494pt;}
.y6d_c00012{bottom:434.186493pt;}
.y6b_c00012{bottom:448.747200pt;}
.y6a_c00012{bottom:453.226485pt;}
.y69_c00012{bottom:455.786484pt;}
.y67_c00012{bottom:470.187200pt;}
.y66_c00012{bottom:474.666477pt;}
.y65_c00012{bottom:477.226476pt;}
.y63_c00012{bottom:491.627200pt;}
.y62_c00012{bottom:496.106468pt;}
.y61_c00012{bottom:498.666467pt;}
.y5f_c00012{bottom:513.067200pt;}
.y5e_c00012{bottom:517.546460pt;}
.y5d_c00012{bottom:520.106459pt;}
.y5b_c00012{bottom:534.507200pt;}
.y5a_c00012{bottom:538.986451pt;}
.y59_c00012{bottom:541.546450pt;}
.y57_c00012{bottom:555.947200pt;}
.y56_c00012{bottom:560.426442pt;}
.y55_c00012{bottom:562.986441pt;}
.y53_c00012{bottom:577.387200pt;}
.y52_c00012{bottom:581.866434pt;}
.y51_c00012{bottom:584.426433pt;}
.y4f_c00012{bottom:598.987200pt;}
.y4e_c00012{bottom:603.466425pt;}
.y4d_c00012{bottom:606.026424pt;}
.y4b_c00012{bottom:620.427200pt;}
.y4a_c00012{bottom:624.906417pt;}
.y49_c00012{bottom:627.466416pt;}
.y47_c00012{bottom:641.867200pt;}
.y46_c00012{bottom:646.346408pt;}
.y45_c00012{bottom:648.906407pt;}
.y43_c00012{bottom:663.307200pt;}
.y42_c00012{bottom:667.786400pt;}
.y41_c00012{bottom:670.346399pt;}
.y3f_c00012{bottom:684.747200pt;}
.y3e_c00012{bottom:689.226391pt;}
.y3d_c00012{bottom:691.786390pt;}
.y3b_c00012{bottom:706.187200pt;}
.y3a_c00012{bottom:710.666382pt;}
.y39_c00012{bottom:713.226381pt;}
.y37_c00012{bottom:727.787200pt;}
.y36_c00012{bottom:732.266374pt;}
.y35_c00012{bottom:734.826373pt;}
.y33_c00012{bottom:749.227200pt;}
.y32_c00012{bottom:753.706365pt;}
.y31_c00012{bottom:756.266364pt;}
.y2f_c00012{bottom:770.667200pt;}
.y2e_c00012{bottom:775.146357pt;}
.y2d_c00012{bottom:777.706356pt;}
.y2b_c00012{bottom:792.107200pt;}
.y2a_c00012{bottom:796.586348pt;}
.y29_c00012{bottom:799.146347pt;}
.y27_c00012{bottom:813.547200pt;}
.y26_c00012{bottom:818.026339pt;}
.y25_c00012{bottom:820.586338pt;}
.y23_c00012{bottom:834.987200pt;}
.y22_c00012{bottom:839.466331pt;}
.y21_c00012{bottom:842.026330pt;}
.y1f_c00012{bottom:856.427200pt;}
.y1e_c00012{bottom:860.906322pt;}
.y1d_c00012{bottom:863.466321pt;}
.y1b_c00012{bottom:878.027200pt;}
.y1a_c00012{bottom:882.506314pt;}
.y19_c00012{bottom:885.066313pt;}
.y17_c00012{bottom:899.467200pt;}
.y16_c00012{bottom:903.946305pt;}
.y15_c00012{bottom:906.506304pt;}
.y13_c00012{bottom:920.907200pt;}
.y12_c00012{bottom:925.386297pt;}
.y11_c00012{bottom:927.946295pt;}
.yf_c00012{bottom:942.347200pt;}
.ye_c00012{bottom:946.826288pt;}
.yd_c00012{bottom:949.386287pt;}
.yb_c00012{bottom:963.787200pt;}
.ya_c00012{bottom:968.266279pt;}
.y9_c00012{bottom:970.826278pt;}
.y7_c00012{bottom:985.227200pt;}
.y6_c00012{bottom:989.706271pt;}
.y5_c00012{bottom:992.266270pt;}
.y3_c00012{bottom:1006.827200pt;}
.y2_c00012{bottom:1011.306262pt;}
.y1_c00012{bottom:1013.866261pt;}
.h6_c00012{height:18.080000pt;}
.h5_c00012{height:18.240000pt;}
.h3_c00012{height:21.120000pt;}
.h7_c00012{height:21.120320pt;}
.h1_c00012{height:62.812475pt;}
.h4_c00012{height:64.499974pt;}
.h2_c00012{height:73.490596pt;}
.h0_c00012{height:1122.666667pt;}
.w4_c00012{width:2.880000pt;}
.w1_c00012{width:7.200000pt;}
.w5_c00012{width:8.000000pt;}
.w2_c00012{width:76.000000pt;}
.w3_c00012{width:123.680000pt;}
.w0_c00012{width:793.333333pt;}
.x0_c00012{left:0.000000pt;}
.x4_c00012{left:113.439955pt;}
.x1_c00012{left:141.919943pt;}
.x5_c00012{left:179.679928pt;}
.x9_c00012{left:343.840000pt;}
.x7_c00012{left:481.120000pt;}
.x6_c00012{left:528.800000pt;}
.x8_c00012{left:601.920000pt;}
.x2_c00012{left:647.199741pt;}
.x3_c00012{left:675.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_74017862cd0530df658dc4c8.woff2')format("woff");}.ff1_c00013{font-family:ff1_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:ff2_c00013;src:url('chunks/assets/font_7cbed14db78fc96469a1092b.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.284180;font-style:normal;font-weight:normal;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_783ee83414153b58815c0a0f.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00013;src:url('chunks/assets/font_35195c28eb60fe9e7f2ecc7a.woff2')format("woff");}.ff4_c00013{font-family:ff4_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00013;src:url('chunks/assets/font_29e0458ae97323bb0b98ad28.woff2')format("woff");}.ff5_c00013{font-family:ff5_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;}
.m2_c00013{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls3_c00013{letter-spacing:0.000000px;}
.ls1_c00013{letter-spacing:0.010620px;}
.ls0_c00013{letter-spacing:0.021282px;}
.ls2_c00013{letter-spacing:0.731040px;}
.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:-21.059992px;}
.ws2_c00013{word-spacing:-18.021275px;}
.ws1_c00013{word-spacing:-17.999993px;}
.ws3_c00013{word-spacing:0.000000px;}
._1_c00013{margin-left:-1.486929px;}
._0_c00013{width:1.191709px;}
._2_c00013{width:3.260733px;}
._4_c00013{width:4.999263px;}
._3_c00013{width:6.411796px;}
._6_c00013{width:21.690321px;}
._5_c00013{width:22.712216px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs2_c00013{font-size:66.239974px;}
.fs0_c00013{font-size:71.999971px;}
.fs1_c00013{font-size:84.239966px;}
.y0_c00013{bottom:0.000000px;}
.y98_c00013{bottom:4.139308px;}
.y81_c00013{bottom:4.319243px;}
.y2f_c00013{bottom:4.859050px;}
.y4_c00013{bottom:5.038945px;}
.y8_c00013{bottom:5.038955px;}
.yc_c00013{bottom:5.038964px;}
.y10_c00013{bottom:5.038974px;}
.y14_c00013{bottom:5.038984px;}
.y18_c00013{bottom:5.038993px;}
.y1c_c00013{bottom:5.039003px;}
.y20_c00013{bottom:5.039013px;}
.y24_c00013{bottom:5.039022px;}
.y28_c00013{bottom:5.039032px;}
.y2c_c00013{bottom:5.039042px;}
.y32_c00013{bottom:5.039051px;}
.y36_c00013{bottom:5.039061px;}
.y3a_c00013{bottom:5.039070px;}
.y3e_c00013{bottom:5.039080px;}
.y42_c00013{bottom:5.039090px;}
.y46_c00013{bottom:5.039099px;}
.y4a_c00013{bottom:5.039109px;}
.y4e_c00013{bottom:5.039119px;}
.y52_c00013{bottom:5.039128px;}
.y56_c00013{bottom:5.039138px;}
.y5a_c00013{bottom:5.039148px;}
.y5e_c00013{bottom:5.039157px;}
.y62_c00013{bottom:5.039167px;}
.y66_c00013{bottom:5.039177px;}
.y6a_c00013{bottom:5.039186px;}
.y6e_c00013{bottom:5.039196px;}
.y72_c00013{bottom:5.039206px;}
.y76_c00013{bottom:5.039215px;}
.y7a_c00013{bottom:5.039225px;}
.y7e_c00013{bottom:5.039235px;}
.y84_c00013{bottom:5.039244px;}
.y88_c00013{bottom:5.039254px;}
.y8c_c00013{bottom:5.039264px;}
.y90_c00013{bottom:5.039273px;}
.y93_c00013{bottom:5.039283px;}
.y9b_c00013{bottom:5.039293px;}
.y9f_c00013{bottom:5.039318px;}
.ya3_c00013{bottom:5.039687px;}
.ya6_c00013{bottom:5.039697px;}
.yab_c00013{bottom:5.040006px;}
.ya8_c00013{bottom:115.680254px;}
.yaa_c00013{bottom:128.820240px;}
.ya9_c00013{bottom:133.860246px;}
.ya7_c00013{bottom:136.380245px;}
.ya5_c00013{bottom:152.940240px;}
.ya4_c00013{bottom:160.859936px;}
.ya2_c00013{bottom:177.060240px;}
.ya1_c00013{bottom:182.099927px;}
.ya0_c00013{bottom:184.979926px;}
.y9e_c00013{bottom:201.180600px;}
.y9d_c00013{bottom:206.219918px;}
.y9c_c00013{bottom:209.099916px;}
.y97_c00013{bottom:225.300600px;}
.y96_c00013{bottom:229.439908px;}
.y95_c00013{bottom:250.139900px;}
.y9a_c00013{bottom:263.280600px;}
.y99_c00013{bottom:268.319893px;}
.y94_c00013{bottom:270.839892px;}
.y92_c00013{bottom:287.400600px;}
.y91_c00013{bottom:295.319882px;}
.y8f_c00013{bottom:311.520600px;}
.y8e_c00013{bottom:316.559873px;}
.y8d_c00013{bottom:319.439872px;}
.y8b_c00013{bottom:335.640600px;}
.y8a_c00013{bottom:340.679864px;}
.y89_c00013{bottom:343.559863px;}
.y87_c00013{bottom:359.940600px;}
.y86_c00013{bottom:364.979854px;}
.y85_c00013{bottom:367.859853px;}
.y83_c00013{bottom:384.060600px;}
.y80_c00013{bottom:388.920600px;}
.y82_c00013{bottom:389.099844px;}
.y7f_c00013{bottom:393.239843px;}
.y7d_c00013{bottom:408.180600px;}
.y7c_c00013{bottom:413.219835px;}
.y7b_c00013{bottom:416.099834px;}
.y79_c00013{bottom:432.300600px;}
.y78_c00013{bottom:437.339825px;}
.y77_c00013{bottom:440.219824px;}
.y75_c00013{bottom:456.420600px;}
.y74_c00013{bottom:461.459815px;}
.y73_c00013{bottom:464.339814px;}
.y71_c00013{bottom:480.540600px;}
.y70_c00013{bottom:485.579806px;}
.y6f_c00013{bottom:488.459805px;}
.y6d_c00013{bottom:504.840600px;}
.y6c_c00013{bottom:509.879796px;}
.y6b_c00013{bottom:512.759795px;}
.y69_c00013{bottom:528.960600px;}
.y68_c00013{bottom:533.999786px;}
.y67_c00013{bottom:536.879785px;}
.y65_c00013{bottom:553.080600px;}
.y64_c00013{bottom:558.119777px;}
.y63_c00013{bottom:560.999776px;}
.y61_c00013{bottom:577.200600px;}
.y60_c00013{bottom:582.239767px;}
.y5f_c00013{bottom:585.119766px;}
.y5d_c00013{bottom:601.320600px;}
.y5c_c00013{bottom:606.359757px;}
.y5b_c00013{bottom:609.239756px;}
.y59_c00013{bottom:625.440600px;}
.y58_c00013{bottom:630.479748px;}
.y57_c00013{bottom:633.359747px;}
.y55_c00013{bottom:649.560600px;}
.y54_c00013{bottom:654.599738px;}
.y53_c00013{bottom:657.479737px;}
.y51_c00013{bottom:673.860600px;}
.y50_c00013{bottom:678.899728px;}
.y4f_c00013{bottom:681.779727px;}
.y4d_c00013{bottom:697.980600px;}
.y4c_c00013{bottom:703.019719px;}
.y4b_c00013{bottom:705.899718px;}
.y49_c00013{bottom:722.100600px;}
.y48_c00013{bottom:727.139709px;}
.y47_c00013{bottom:730.019708px;}
.y45_c00013{bottom:746.220600px;}
.y44_c00013{bottom:751.259699px;}
.y43_c00013{bottom:754.139698px;}
.y41_c00013{bottom:770.340600px;}
.y40_c00013{bottom:775.379690px;}
.y3f_c00013{bottom:778.259689px;}
.y3d_c00013{bottom:794.460600px;}
.y3c_c00013{bottom:799.499680px;}
.y3b_c00013{bottom:802.379679px;}
.y39_c00013{bottom:818.760600px;}
.y38_c00013{bottom:823.799670px;}
.y37_c00013{bottom:826.679669px;}
.y35_c00013{bottom:842.880600px;}
.y34_c00013{bottom:847.919661px;}
.y33_c00013{bottom:850.799660px;}
.y31_c00013{bottom:867.000600px;}
.y2e_c00013{bottom:870.060600px;}
.y30_c00013{bottom:872.039651px;}
.y2d_c00013{bottom:874.919650px;}
.y2b_c00013{bottom:891.120600px;}
.y2a_c00013{bottom:896.159642px;}
.y29_c00013{bottom:899.039640px;}
.y27_c00013{bottom:915.240600px;}
.y26_c00013{bottom:920.279632px;}
.y25_c00013{bottom:923.159631px;}
.y23_c00013{bottom:939.360600px;}
.y22_c00013{bottom:944.399622px;}
.y21_c00013{bottom:947.279621px;}
.y1f_c00013{bottom:963.480600px;}
.y1e_c00013{bottom:968.519613px;}
.y1d_c00013{bottom:971.399611px;}
.y1b_c00013{bottom:987.780600px;}
.y1a_c00013{bottom:992.819603px;}
.y19_c00013{bottom:995.699602px;}
.y17_c00013{bottom:1011.900600px;}
.y16_c00013{bottom:1016.939593px;}
.y15_c00013{bottom:1019.819592px;}
.y13_c00013{bottom:1036.020600px;}
.y12_c00013{bottom:1041.059584px;}
.y11_c00013{bottom:1043.939582px;}
.yf_c00013{bottom:1060.140600px;}
.ye_c00013{bottom:1065.179574px;}
.yd_c00013{bottom:1068.059573px;}
.yb_c00013{bottom:1084.260600px;}
.ya_c00013{bottom:1089.299564px;}
.y9_c00013{bottom:1092.179563px;}
.y7_c00013{bottom:1108.380600px;}
.y6_c00013{bottom:1113.419555px;}
.y5_c00013{bottom:1116.299553px;}
.y3_c00013{bottom:1132.680600px;}
.y2_c00013{bottom:1137.719545px;}
.y1_c00013{bottom:1140.599544px;}
.h7_c00013{height:19.260000px;}
.h9_c00013{height:20.340000px;}
.h4_c00013{height:21.060000px;}
.h3_c00013{height:23.760000px;}
.ha_c00013{height:23.760360px;}
.h5_c00013{height:47.988262px;}
.h6_c00013{height:65.010911px;}
.h1_c00013{height:70.664034px;}
.h8_c00013{height:72.562471px;}
.h2_c00013{height:82.676920px;}
.h0_c00013{height:1263.000000px;}
.w2_c00013{width:4.140000px;}
.w1_c00013{width:8.100000px;}
.w3_c00013{width:9.000000px;}
.w0_c00013{width:892.500000px;}
.x0_c00013{left:0.000000px;}
.x4_c00013{left:127.619949px;}
.x1_c00013{left:159.659936px;}
.x5_c00013{left:191.519923px;}
.x9_c00013{left:384.660000px;}
.x6_c00013{left:446.040000px;}
.x7_c00013{left:450.179820px;}
.x8_c00013{left:492.300000px;}
.x2_c00013{left:728.099709px;}
.x3_c00013{left:759.600000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls3_c00013{letter-spacing:0.000000pt;}
.ls1_c00013{letter-spacing:0.009440pt;}
.ls0_c00013{letter-spacing:0.018917pt;}
.ls2_c00013{letter-spacing:0.649813pt;}
.ws0_c00013{word-spacing:-18.719993pt;}
.ws2_c00013{word-spacing:-16.018911pt;}
.ws1_c00013{word-spacing:-15.999994pt;}
.ws3_c00013{word-spacing:0.000000pt;}
._1_c00013{margin-left:-1.321715pt;}
._0_c00013{width:1.059297pt;}
._2_c00013{width:2.898429pt;}
._4_c00013{width:4.443790pt;}
._3_c00013{width:5.699374pt;}
._6_c00013{width:19.280285pt;}
._5_c00013{width:20.188636pt;}
.fs2_c00013{font-size:58.879976pt;}
.fs0_c00013{font-size:63.999974pt;}
.fs1_c00013{font-size:74.879970pt;}
.y0_c00013{bottom:0.000000pt;}
.y98_c00013{bottom:3.679385pt;}
.y81_c00013{bottom:3.839327pt;}
.y2f_c00013{bottom:4.319156pt;}
.y4_c00013{bottom:4.479062pt;}
.y8_c00013{bottom:4.479071pt;}
.yc_c00013{bottom:4.479079pt;}
.y10_c00013{bottom:4.479088pt;}
.y14_c00013{bottom:4.479097pt;}
.y18_c00013{bottom:4.479105pt;}
.y1c_c00013{bottom:4.479114pt;}
.y20_c00013{bottom:4.479122pt;}
.y24_c00013{bottom:4.479131pt;}
.y28_c00013{bottom:4.479139pt;}
.y2c_c00013{bottom:4.479148pt;}
.y32_c00013{bottom:4.479157pt;}
.y36_c00013{bottom:4.479165pt;}
.y3a_c00013{bottom:4.479174pt;}
.y3e_c00013{bottom:4.479182pt;}
.y42_c00013{bottom:4.479191pt;}
.y46_c00013{bottom:4.479200pt;}
.y4a_c00013{bottom:4.479208pt;}
.y4e_c00013{bottom:4.479217pt;}
.y52_c00013{bottom:4.479225pt;}
.y56_c00013{bottom:4.479234pt;}
.y5a_c00013{bottom:4.479242pt;}
.y5e_c00013{bottom:4.479251pt;}
.y62_c00013{bottom:4.479260pt;}
.y66_c00013{bottom:4.479268pt;}
.y6a_c00013{bottom:4.479277pt;}
.y6e_c00013{bottom:4.479285pt;}
.y72_c00013{bottom:4.479294pt;}
.y76_c00013{bottom:4.479303pt;}
.y7a_c00013{bottom:4.479311pt;}
.y7e_c00013{bottom:4.479320pt;}
.y84_c00013{bottom:4.479328pt;}
.y88_c00013{bottom:4.479337pt;}
.y8c_c00013{bottom:4.479346pt;}
.y90_c00013{bottom:4.479354pt;}
.y93_c00013{bottom:4.479363pt;}
.y9b_c00013{bottom:4.479371pt;}
.y9f_c00013{bottom:4.479393pt;}
.ya3_c00013{bottom:4.479722pt;}
.ya6_c00013{bottom:4.479730pt;}
.yab_c00013{bottom:4.480006pt;}
.ya8_c00013{bottom:102.826892pt;}
.yaa_c00013{bottom:114.506880pt;}
.ya9_c00013{bottom:118.986886pt;}
.ya7_c00013{bottom:121.226885pt;}
.ya5_c00013{bottom:135.946880pt;}
.ya4_c00013{bottom:142.986609pt;}
.ya2_c00013{bottom:157.386880pt;}
.ya1_c00013{bottom:161.866602pt;}
.ya0_c00013{bottom:164.426601pt;}
.y9e_c00013{bottom:178.827200pt;}
.y9d_c00013{bottom:183.306593pt;}
.y9c_c00013{bottom:185.866592pt;}
.y97_c00013{bottom:200.267200pt;}
.y96_c00013{bottom:203.946585pt;}
.y95_c00013{bottom:222.346578pt;}
.y9a_c00013{bottom:234.027200pt;}
.y99_c00013{bottom:238.506571pt;}
.y94_c00013{bottom:240.746570pt;}
.y92_c00013{bottom:255.467200pt;}
.y91_c00013{bottom:262.506562pt;}
.y8f_c00013{bottom:276.907200pt;}
.y8e_c00013{bottom:281.386554pt;}
.y8d_c00013{bottom:283.946553pt;}
.y8b_c00013{bottom:298.347200pt;}
.y8a_c00013{bottom:302.826546pt;}
.y89_c00013{bottom:305.386545pt;}
.y87_c00013{bottom:319.947200pt;}
.y86_c00013{bottom:324.426537pt;}
.y85_c00013{bottom:326.986536pt;}
.y83_c00013{bottom:341.387200pt;}
.y80_c00013{bottom:345.707200pt;}
.y82_c00013{bottom:345.866528pt;}
.y7f_c00013{bottom:349.546527pt;}
.y7d_c00013{bottom:362.827200pt;}
.y7c_c00013{bottom:367.306520pt;}
.y7b_c00013{bottom:369.866519pt;}
.y79_c00013{bottom:384.267200pt;}
.y78_c00013{bottom:388.746511pt;}
.y77_c00013{bottom:391.306510pt;}
.y75_c00013{bottom:405.707200pt;}
.y74_c00013{bottom:410.186503pt;}
.y73_c00013{bottom:412.746502pt;}
.y71_c00013{bottom:427.147200pt;}
.y70_c00013{bottom:431.626494pt;}
.y6f_c00013{bottom:434.186493pt;}
.y6d_c00013{bottom:448.747200pt;}
.y6c_c00013{bottom:453.226485pt;}
.y6b_c00013{bottom:455.786484pt;}
.y69_c00013{bottom:470.187200pt;}
.y68_c00013{bottom:474.666477pt;}
.y67_c00013{bottom:477.226476pt;}
.y65_c00013{bottom:491.627200pt;}
.y64_c00013{bottom:496.106468pt;}
.y63_c00013{bottom:498.666467pt;}
.y61_c00013{bottom:513.067200pt;}
.y60_c00013{bottom:517.546460pt;}
.y5f_c00013{bottom:520.106459pt;}
.y5d_c00013{bottom:534.507200pt;}
.y5c_c00013{bottom:538.986451pt;}
.y5b_c00013{bottom:541.546450pt;}
.y59_c00013{bottom:555.947200pt;}
.y58_c00013{bottom:560.426442pt;}
.y57_c00013{bottom:562.986441pt;}
.y55_c00013{bottom:577.387200pt;}
.y54_c00013{bottom:581.866434pt;}
.y53_c00013{bottom:584.426433pt;}
.y51_c00013{bottom:598.987200pt;}
.y50_c00013{bottom:603.466425pt;}
.y4f_c00013{bottom:606.026424pt;}
.y4d_c00013{bottom:620.427200pt;}
.y4c_c00013{bottom:624.906417pt;}
.y4b_c00013{bottom:627.466416pt;}
.y49_c00013{bottom:641.867200pt;}
.y48_c00013{bottom:646.346408pt;}
.y47_c00013{bottom:648.906407pt;}
.y45_c00013{bottom:663.307200pt;}
.y44_c00013{bottom:667.786400pt;}
.y43_c00013{bottom:670.346399pt;}
.y41_c00013{bottom:684.747200pt;}
.y40_c00013{bottom:689.226391pt;}
.y3f_c00013{bottom:691.786390pt;}
.y3d_c00013{bottom:706.187200pt;}
.y3c_c00013{bottom:710.666382pt;}
.y3b_c00013{bottom:713.226381pt;}
.y39_c00013{bottom:727.787200pt;}
.y38_c00013{bottom:732.266374pt;}
.y37_c00013{bottom:734.826373pt;}
.y35_c00013{bottom:749.227200pt;}
.y34_c00013{bottom:753.706365pt;}
.y33_c00013{bottom:756.266364pt;}
.y31_c00013{bottom:770.667200pt;}
.y2e_c00013{bottom:773.387200pt;}
.y30_c00013{bottom:775.146357pt;}
.y2d_c00013{bottom:777.706356pt;}
.y2b_c00013{bottom:792.107200pt;}
.y2a_c00013{bottom:796.586348pt;}
.y29_c00013{bottom:799.146347pt;}
.y27_c00013{bottom:813.547200pt;}
.y26_c00013{bottom:818.026339pt;}
.y25_c00013{bottom:820.586338pt;}
.y23_c00013{bottom:834.987200pt;}
.y22_c00013{bottom:839.466331pt;}
.y21_c00013{bottom:842.026330pt;}
.y1f_c00013{bottom:856.427200pt;}
.y1e_c00013{bottom:860.906322pt;}
.y1d_c00013{bottom:863.466321pt;}
.y1b_c00013{bottom:878.027200pt;}
.y1a_c00013{bottom:882.506314pt;}
.y19_c00013{bottom:885.066313pt;}
.y17_c00013{bottom:899.467200pt;}
.y16_c00013{bottom:903.946305pt;}
.y15_c00013{bottom:906.506304pt;}
.y13_c00013{bottom:920.907200pt;}
.y12_c00013{bottom:925.386297pt;}
.y11_c00013{bottom:927.946295pt;}
.yf_c00013{bottom:942.347200pt;}
.ye_c00013{bottom:946.826288pt;}
.yd_c00013{bottom:949.386287pt;}
.yb_c00013{bottom:963.787200pt;}
.ya_c00013{bottom:968.266279pt;}
.y9_c00013{bottom:970.826278pt;}
.y7_c00013{bottom:985.227200pt;}
.y6_c00013{bottom:989.706271pt;}
.y5_c00013{bottom:992.266270pt;}
.y3_c00013{bottom:1006.827200pt;}
.y2_c00013{bottom:1011.306262pt;}
.y1_c00013{bottom:1013.866261pt;}
.h7_c00013{height:17.120000pt;}
.h9_c00013{height:18.080000pt;}
.h4_c00013{height:18.720000pt;}
.h3_c00013{height:21.120000pt;}
.ha_c00013{height:21.120320pt;}
.h5_c00013{height:42.656233pt;}
.h6_c00013{height:57.787477pt;}
.h1_c00013{height:62.812475pt;}
.h8_c00013{height:64.499974pt;}
.h2_c00013{height:73.490596pt;}
.h0_c00013{height:1122.666667pt;}
.w2_c00013{width:3.680000pt;}
.w1_c00013{width:7.200000pt;}
.w3_c00013{width:8.000000pt;}
.w0_c00013{width:793.333333pt;}
.x0_c00013{left:0.000000pt;}
.x4_c00013{left:113.439955pt;}
.x1_c00013{left:141.919943pt;}
.x5_c00013{left:170.239932pt;}
.x9_c00013{left:341.920000pt;}
.x6_c00013{left:396.480000pt;}
.x7_c00013{left:400.159840pt;}
.x8_c00013{left:437.600000pt;}
.x2_c00013{left:647.199741pt;}
.x3_c00013{left:675.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_044130a9054830a6be255b56.woff2')format("woff");}.ff1_c00014{font-family:ff1_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;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_738f886305518ed15a7f92b0.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.284180;font-style:normal;font-weight:normal;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_10efa5fda4cd6bf9191612e0.woff2')format("woff");}.ff3_c00014{font-family:ff3_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;}
.m0_c00014{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,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:-21.059992px;}
.ws1_c00014{word-spacing:0.000000px;}
._1_c00014{margin-left:-1.038185px;}
._3_c00014{width:1.000702px;}
._4_c00014{width:2.956098px;}
._5_c00014{width:8.780942px;}
._6_c00014{width:9.929002px;}
._2_c00014{width:15.607166px;}
._0_c00014{width:16.644200px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:71.999971px;}
.fs1_c00014{font-size:84.239966px;}
.y0_c00014{bottom:0.000000px;}
.y15_c00014{bottom:4.318996px;}
.y5_c00014{bottom:5.038945px;}
.y9_c00014{bottom:5.038961px;}
.yd_c00014{bottom:5.038971px;}
.y12_c00014{bottom:5.038981px;}
.y19_c00014{bottom:5.038997px;}
.y1d_c00014{bottom:5.039014px;}
.y21_c00014{bottom:5.039024px;}
.y25_c00014{bottom:5.039033px;}
.y28_c00014{bottom:5.039043px;}
.y2c_c00014{bottom:5.039053px;}
.y2f_c00014{bottom:5.039062px;}
.y33_c00014{bottom:5.039072px;}
.y36_c00014{bottom:5.039082px;}
.y3a_c00014{bottom:5.039091px;}
.y49_c00014{bottom:148.619941px;}
.y48_c00014{bottom:191.459923px;}
.y47_c00014{bottom:234.299906px;}
.y46_c00014{bottom:276.959889px;}
.y45_c00014{bottom:319.799872px;}
.y44_c00014{bottom:362.459855px;}
.y43_c00014{bottom:405.299838px;}
.y42_c00014{bottom:448.139821px;}
.y41_c00014{bottom:490.799804px;}
.y40_c00014{bottom:533.639787px;}
.y3f_c00014{bottom:576.299769px;}
.y3e_c00014{bottom:619.139752px;}
.y3d_c00014{bottom:661.979735px;}
.y3c_c00014{bottom:704.639718px;}
.y3b_c00014{bottom:747.479701px;}
.y39_c00014{bottom:766.920600px;}
.y38_c00014{bottom:771.959691px;}
.y37_c00014{bottom:774.479690px;}
.y35_c00014{bottom:791.040600px;}
.y34_c00014{bottom:798.599681px;}
.y32_c00014{bottom:815.160600px;}
.y31_c00014{bottom:820.199672px;}
.y30_c00014{bottom:822.719671px;}
.y2e_c00014{bottom:839.460600px;}
.y2d_c00014{bottom:847.019661px;}
.y2b_c00014{bottom:863.580600px;}
.y2a_c00014{bottom:868.619653px;}
.y29_c00014{bottom:871.139652px;}
.y27_c00014{bottom:887.700600px;}
.y26_c00014{bottom:895.619642px;}
.y24_c00014{bottom:911.820600px;}
.y23_c00014{bottom:916.859633px;}
.y22_c00014{bottom:919.739632px;}
.y20_c00014{bottom:935.940600px;}
.y1f_c00014{bottom:940.979624px;}
.y1e_c00014{bottom:943.859622px;}
.y1c_c00014{bottom:960.060600px;}
.y1b_c00014{bottom:965.099614px;}
.y1a_c00014{bottom:967.979613px;}
.y16_c00014{bottom:988.679605px;}
.y18_c00014{bottom:1001.460600px;}
.y14_c00014{bottom:1005.060600px;}
.y17_c00014{bottom:1006.499597px;}
.y13_c00014{bottom:1009.379596px;}
.yf_c00014{bottom:1030.079588px;}
.y11_c00014{bottom:1042.860600px;}
.y10_c00014{bottom:1047.899581px;}
.ye_c00014{bottom:1050.779580px;}
.yc_c00014{bottom:1066.980600px;}
.yb_c00014{bottom:1072.019571px;}
.ya_c00014{bottom:1074.899570px;}
.y8_c00014{bottom:1091.280600px;}
.y7_c00014{bottom:1096.319561px;}
.y6_c00014{bottom:1099.199560px;}
.y2_c00014{bottom:1119.899552px;}
.y4_c00014{bottom:1132.680600px;}
.y3_c00014{bottom:1137.719545px;}
.y1_c00014{bottom:1140.599544px;}
.h4_c00014{height:20.520000px;}
.h3_c00014{height:23.760000px;}
.h5_c00014{height:70.628878px;}
.h1_c00014{height:70.664034px;}
.h6_c00014{height:72.562471px;}
.h2_c00014{height:82.676920px;}
.h7_c00014{height:84.898091px;}
.h0_c00014{height:1263.000000px;}
.w1_c00014{width:8.100000px;}
.w2_c00014{width:380.520000px;}
.w0_c00014{width:892.500000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:127.619949px;}
.x5_c00014{left:154.619938px;}
.x6_c00014{left:159.659936px;}
.x4_c00014{left:299.880000px;}
.x7_c00014{left:446.399821px;}
.x2_c00014{left:728.099709px;}
.x3_c00014{left:759.600000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:-18.719993pt;}
.ws1_c00014{word-spacing:0.000000pt;}
._1_c00014{margin-left:-0.922831pt;}
._3_c00014{width:0.889513pt;}
._4_c00014{width:2.627643pt;}
._5_c00014{width:7.805282pt;}
._6_c00014{width:8.825780pt;}
._2_c00014{width:13.873037pt;}
._0_c00014{width:14.794844pt;}
.fs0_c00014{font-size:63.999974pt;}
.fs1_c00014{font-size:74.879970pt;}
.y0_c00014{bottom:0.000000pt;}
.y15_c00014{bottom:3.839108pt;}
.y5_c00014{bottom:4.479062pt;}
.y9_c00014{bottom:4.479077pt;}
.yd_c00014{bottom:4.479086pt;}
.y12_c00014{bottom:4.479094pt;}
.y19_c00014{bottom:4.479109pt;}
.y1d_c00014{bottom:4.479124pt;}
.y21_c00014{bottom:4.479132pt;}
.y25_c00014{bottom:4.479141pt;}
.y28_c00014{bottom:4.479149pt;}
.y2c_c00014{bottom:4.479158pt;}
.y2f_c00014{bottom:4.479166pt;}
.y33_c00014{bottom:4.479175pt;}
.y36_c00014{bottom:4.479184pt;}
.y3a_c00014{bottom:4.479192pt;}
.y49_c00014{bottom:132.106614pt;}
.y48_c00014{bottom:170.186599pt;}
.y47_c00014{bottom:208.266583pt;}
.y46_c00014{bottom:246.186568pt;}
.y45_c00014{bottom:284.266553pt;}
.y44_c00014{bottom:322.186538pt;}
.y43_c00014{bottom:360.266523pt;}
.y42_c00014{bottom:398.346507pt;}
.y41_c00014{bottom:436.266492pt;}
.y40_c00014{bottom:474.346477pt;}
.y3f_c00014{bottom:512.266462pt;}
.y3e_c00014{bottom:550.346447pt;}
.y3d_c00014{bottom:588.426431pt;}
.y3c_c00014{bottom:626.346416pt;}
.y3b_c00014{bottom:664.426401pt;}
.y39_c00014{bottom:681.707200pt;}
.y38_c00014{bottom:686.186392pt;}
.y37_c00014{bottom:688.426391pt;}
.y35_c00014{bottom:703.147200pt;}
.y34_c00014{bottom:709.866383pt;}
.y32_c00014{bottom:724.587200pt;}
.y31_c00014{bottom:729.066375pt;}
.y30_c00014{bottom:731.306374pt;}
.y2e_c00014{bottom:746.187200pt;}
.y2d_c00014{bottom:752.906366pt;}
.y2b_c00014{bottom:767.627200pt;}
.y2a_c00014{bottom:772.106358pt;}
.y29_c00014{bottom:774.346357pt;}
.y27_c00014{bottom:789.067200pt;}
.y26_c00014{bottom:796.106348pt;}
.y24_c00014{bottom:810.507200pt;}
.y23_c00014{bottom:814.986341pt;}
.y22_c00014{bottom:817.546340pt;}
.y20_c00014{bottom:831.947200pt;}
.y1f_c00014{bottom:836.426332pt;}
.y1e_c00014{bottom:838.986331pt;}
.y1c_c00014{bottom:853.387200pt;}
.y1b_c00014{bottom:857.866324pt;}
.y1a_c00014{bottom:860.426322pt;}
.y16_c00014{bottom:878.826315pt;}
.y18_c00014{bottom:890.187200pt;}
.y14_c00014{bottom:893.387200pt;}
.y17_c00014{bottom:894.666309pt;}
.y13_c00014{bottom:897.226308pt;}
.yf_c00014{bottom:915.626300pt;}
.y11_c00014{bottom:926.987200pt;}
.y10_c00014{bottom:931.466294pt;}
.ye_c00014{bottom:934.026293pt;}
.yc_c00014{bottom:948.427200pt;}
.yb_c00014{bottom:952.906286pt;}
.ya_c00014{bottom:955.466284pt;}
.y8_c00014{bottom:970.027200pt;}
.y7_c00014{bottom:974.506277pt;}
.y6_c00014{bottom:977.066276pt;}
.y2_c00014{bottom:995.466268pt;}
.y4_c00014{bottom:1006.827200pt;}
.y3_c00014{bottom:1011.306262pt;}
.y1_c00014{bottom:1013.866261pt;}
.h4_c00014{height:18.240000pt;}
.h3_c00014{height:21.120000pt;}
.h5_c00014{height:62.781225pt;}
.h1_c00014{height:62.812475pt;}
.h6_c00014{height:64.499974pt;}
.h2_c00014{height:73.490596pt;}
.h7_c00014{height:75.464970pt;}
.h0_c00014{height:1122.666667pt;}
.w1_c00014{width:7.200000pt;}
.w2_c00014{width:338.240000pt;}
.w0_c00014{width:793.333333pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:113.439955pt;}
.x5_c00014{left:137.439945pt;}
.x6_c00014{left:141.919943pt;}
.x4_c00014{left:266.560000pt;}
.x7_c00014{left:396.799841pt;}
.x2_c00014{left:647.199741pt;}
.x3_c00014{left:675.200000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff1_c00015{font-family:ff1_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;}
.m0_c00015{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.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:0.000000px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:84.239966px;}
.y0_c00015{bottom:0.000000px;}
.y2_c00015{bottom:1094.519562px;}
.y1_c00015{bottom:1137.359545px;}
.h1_c00015{height:84.898091px;}
.h0_c00015{height:1263.000000px;}
.w0_c00015{width:892.500000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:446.399821px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs0_c00015{font-size:74.879970pt;}
.y0_c00015{bottom:0.000000pt;}
.y2_c00015{bottom:972.906278pt;}
.y1_c00015{bottom:1010.986262pt;}
.h1_c00015{height:75.464970pt;}
.h0_c00015{height:1122.666667pt;}
.w0_c00015{width:793.333333pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:396.799841pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_846073649d68c90067ff9e77.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.311035;font-style:normal;font-weight:normal;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_f7ee7d6a147891229c12b26e.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_a4db455a526e3198669d1307.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;}
.m0_c00016{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls1_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:0.009900px;}
.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:-16.559993px;}
.ws1_c00016{word-spacing:0.000000px;}
._0_c00016{margin-left:-1.232700px;}
._2_c00016{width:1.015656px;}
._4_c00016{width:3.150343px;}
._5_c00016{width:4.478025px;}
._1_c00016{width:6.752493px;}
._3_c00016{width:8.096734px;}
._6_c00016{width:9.634197px;}
._7_c00016{width:11.169032px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:66.239974px;}
.y0_c00016{bottom:0.000000px;}
.y37_c00016{bottom:117.119953px;}
.y36_c00016{bottom:136.199946px;}
.y35_c00016{bottom:155.099938px;}
.y34_c00016{bottom:173.999930px;}
.y33_c00016{bottom:193.079923px;}
.y32_c00016{bottom:211.979915px;}
.y31_c00016{bottom:231.059908px;}
.y30_c00016{bottom:249.959900px;}
.y2f_c00016{bottom:268.859892px;}
.y2e_c00016{bottom:287.939885px;}
.y2d_c00016{bottom:306.839877px;}
.y2c_c00016{bottom:325.919870px;}
.y2b_c00016{bottom:344.819862px;}
.y2a_c00016{bottom:363.719855px;}
.y29_c00016{bottom:382.799847px;}
.y28_c00016{bottom:401.699839px;}
.y27_c00016{bottom:420.779832px;}
.y26_c00016{bottom:439.679824px;}
.y25_c00016{bottom:458.579817px;}
.y24_c00016{bottom:477.659809px;}
.y23_c00016{bottom:496.559801px;}
.y22_c00016{bottom:515.639794px;}
.y21_c00016{bottom:534.539786px;}
.y20_c00016{bottom:553.619779px;}
.y1f_c00016{bottom:572.519771px;}
.y1e_c00016{bottom:591.419763px;}
.y1d_c00016{bottom:610.499756px;}
.y1c_c00016{bottom:629.399748px;}
.y1b_c00016{bottom:648.479741px;}
.y1a_c00016{bottom:667.379733px;}
.y19_c00016{bottom:686.279725px;}
.y18_c00016{bottom:705.359718px;}
.y17_c00016{bottom:724.259710px;}
.y16_c00016{bottom:743.339703px;}
.y15_c00016{bottom:762.239695px;}
.y14_c00016{bottom:781.139688px;}
.y13_c00016{bottom:800.219680px;}
.y12_c00016{bottom:819.119672px;}
.y11_c00016{bottom:838.199665px;}
.y10_c00016{bottom:857.099657px;}
.yf_c00016{bottom:875.999650px;}
.ye_c00016{bottom:895.079642px;}
.yd_c00016{bottom:913.979634px;}
.yc_c00016{bottom:933.059627px;}
.yb_c00016{bottom:951.959619px;}
.ya_c00016{bottom:970.859612px;}
.y9_c00016{bottom:989.939604px;}
.y8_c00016{bottom:1008.839596px;}
.y7_c00016{bottom:1027.919589px;}
.y6_c00016{bottom:1046.819581px;}
.y5_c00016{bottom:1065.899574px;}
.y4_c00016{bottom:1084.799566px;}
.y3_c00016{bottom:1103.699559px;}
.y2_c00016{bottom:1122.419551px;}
.y1_c00016{bottom:1141.319543px;}
.h3_c00016{height:64.978568px;}
.h2_c00016{height:65.010911px;}
.h1_c00016{height:66.757473px;}
.h0_c00016{height:1263.000000px;}
.w0_c00016{width:892.500000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:127.619949px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls1_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:0.008800pt;}
.ws0_c00016{word-spacing:-14.719994pt;}
.ws1_c00016{word-spacing:0.000000pt;}
._0_c00016{margin-left:-1.095734pt;}
._2_c00016{width:0.902805pt;}
._4_c00016{width:2.800305pt;}
._5_c00016{width:3.980467pt;}
._1_c00016{width:6.002216pt;}
._3_c00016{width:7.197097pt;}
._6_c00016{width:8.563730pt;}
._7_c00016{width:9.928028pt;}
.fs0_c00016{font-size:58.879976pt;}
.y0_c00016{bottom:0.000000pt;}
.y37_c00016{bottom:104.106625pt;}
.y36_c00016{bottom:121.066618pt;}
.y35_c00016{bottom:137.866612pt;}
.y34_c00016{bottom:154.666605pt;}
.y33_c00016{bottom:171.626598pt;}
.y32_c00016{bottom:188.426591pt;}
.y31_c00016{bottom:205.386585pt;}
.y30_c00016{bottom:222.186578pt;}
.y2f_c00016{bottom:238.986571pt;}
.y2e_c00016{bottom:255.946564pt;}
.y2d_c00016{bottom:272.746558pt;}
.y2c_c00016{bottom:289.706551pt;}
.y2b_c00016{bottom:306.506544pt;}
.y2a_c00016{bottom:323.306537pt;}
.y29_c00016{bottom:340.266531pt;}
.y28_c00016{bottom:357.066524pt;}
.y27_c00016{bottom:374.026517pt;}
.y26_c00016{bottom:390.826510pt;}
.y25_c00016{bottom:407.626504pt;}
.y24_c00016{bottom:424.586497pt;}
.y23_c00016{bottom:441.386490pt;}
.y22_c00016{bottom:458.346483pt;}
.y21_c00016{bottom:475.146477pt;}
.y20_c00016{bottom:492.106470pt;}
.y1f_c00016{bottom:508.906463pt;}
.y1e_c00016{bottom:525.706456pt;}
.y1d_c00016{bottom:542.666450pt;}
.y1c_c00016{bottom:559.466443pt;}
.y1b_c00016{bottom:576.426436pt;}
.y1a_c00016{bottom:593.226429pt;}
.y19_c00016{bottom:610.026423pt;}
.y18_c00016{bottom:626.986416pt;}
.y17_c00016{bottom:643.786409pt;}
.y16_c00016{bottom:660.746402pt;}
.y15_c00016{bottom:677.546396pt;}
.y14_c00016{bottom:694.346389pt;}
.y13_c00016{bottom:711.306382pt;}
.y12_c00016{bottom:728.106375pt;}
.y11_c00016{bottom:745.066369pt;}
.y10_c00016{bottom:761.866362pt;}
.yf_c00016{bottom:778.666355pt;}
.ye_c00016{bottom:795.626348pt;}
.yd_c00016{bottom:812.426342pt;}
.yc_c00016{bottom:829.386335pt;}
.yb_c00016{bottom:846.186328pt;}
.ya_c00016{bottom:862.986321pt;}
.y9_c00016{bottom:879.946315pt;}
.y8_c00016{bottom:896.746308pt;}
.y7_c00016{bottom:913.706301pt;}
.y6_c00016{bottom:930.506294pt;}
.y5_c00016{bottom:947.466288pt;}
.y4_c00016{bottom:964.266281pt;}
.y3_c00016{bottom:981.066274pt;}
.y2_c00016{bottom:997.706268pt;}
.y1_c00016{bottom:1014.506261pt;}
.h3_c00016{height:57.758727pt;}
.h2_c00016{height:57.787477pt;}
.h1_c00016{height:59.339976pt;}
.h0_c00016{height:1122.666667pt;}
.w0_c00016{width:793.333333pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_741e43969a6486fbc4707c92.woff2')format("woff");}.ff1_c00017{font-family:ff1_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:ff2_c00017;src:url('chunks/assets/font_17c03f7f9c8f3d846b5d90b9.woff2')format("woff");}.ff2_c00017{font-family:ff2_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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls3_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:0.009900px;}
.ls2_c00017{letter-spacing:3.612059px;}
.ls1_c00017{letter-spacing:4.332478px;}
.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:-16.559993px;}
.ws1_c00017{word-spacing:0.000000px;}
._0_c00017{margin-left:-1.241278px;}
._1_c00017{width:1.036940px;}
._5_c00017{width:2.429911px;}
._6_c00017{width:4.591202px;}
._7_c00017{width:5.906855px;}
._2_c00017{width:9.634197px;}
._3_c00017{width:11.177668px;}
._4_c00017{width:12.429722px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:66.239974px;}
.y0_c00017{bottom:0.000000px;}
.y36_c00017{bottom:136.199946px;}
.y35_c00017{bottom:155.099938px;}
.y34_c00017{bottom:173.999930px;}
.y33_c00017{bottom:193.079923px;}
.y32_c00017{bottom:211.979915px;}
.y31_c00017{bottom:231.059908px;}
.y30_c00017{bottom:249.959900px;}
.y2f_c00017{bottom:268.859892px;}
.y2e_c00017{bottom:287.939885px;}
.y2d_c00017{bottom:306.839877px;}
.y2c_c00017{bottom:325.919870px;}
.y2b_c00017{bottom:344.819862px;}
.y2a_c00017{bottom:363.719855px;}
.y29_c00017{bottom:382.799847px;}
.y28_c00017{bottom:401.699839px;}
.y27_c00017{bottom:420.779832px;}
.y26_c00017{bottom:439.679824px;}
.y25_c00017{bottom:458.579817px;}
.y24_c00017{bottom:477.659809px;}
.y23_c00017{bottom:496.559801px;}
.y22_c00017{bottom:515.639794px;}
.y21_c00017{bottom:534.539786px;}
.y20_c00017{bottom:553.619779px;}
.y1f_c00017{bottom:572.519771px;}
.y1e_c00017{bottom:591.419763px;}
.y1d_c00017{bottom:610.499756px;}
.y1c_c00017{bottom:629.399748px;}
.y1b_c00017{bottom:648.479741px;}
.y1a_c00017{bottom:667.379733px;}
.y19_c00017{bottom:686.279725px;}
.y18_c00017{bottom:705.359718px;}
.y17_c00017{bottom:724.259710px;}
.y16_c00017{bottom:743.339703px;}
.y15_c00017{bottom:762.239695px;}
.y14_c00017{bottom:781.139688px;}
.y13_c00017{bottom:800.219680px;}
.y12_c00017{bottom:819.119672px;}
.y11_c00017{bottom:838.199665px;}
.y10_c00017{bottom:857.099657px;}
.yf_c00017{bottom:875.999650px;}
.ye_c00017{bottom:895.079642px;}
.yd_c00017{bottom:913.979634px;}
.yc_c00017{bottom:933.059627px;}
.yb_c00017{bottom:951.959619px;}
.ya_c00017{bottom:970.859612px;}
.y9_c00017{bottom:989.939604px;}
.y8_c00017{bottom:1008.839596px;}
.y7_c00017{bottom:1027.919589px;}
.y6_c00017{bottom:1046.819581px;}
.y5_c00017{bottom:1065.899574px;}
.y4_c00017{bottom:1084.799566px;}
.y3_c00017{bottom:1103.699559px;}
.y2_c00017{bottom:1122.779551px;}
.y1_c00017{bottom:1141.679543px;}
.h1_c00017{height:65.010911px;}
.h0_c00017{height:1263.000000px;}
.w0_c00017{width:892.500000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:127.619949px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls3_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:0.008800pt;}
.ls2_c00017{letter-spacing:3.210719pt;}
.ls1_c00017{letter-spacing:3.851092pt;}
.ws0_c00017{word-spacing:-14.719994pt;}
.ws1_c00017{word-spacing:0.000000pt;}
._0_c00017{margin-left:-1.103358pt;}
._1_c00017{width:0.921725pt;}
._5_c00017{width:2.159921pt;}
._6_c00017{width:4.081068pt;}
._7_c00017{width:5.250538pt;}
._2_c00017{width:8.563730pt;}
._3_c00017{width:9.935704pt;}
._4_c00017{width:11.048642pt;}
.fs0_c00017{font-size:58.879976pt;}
.y0_c00017{bottom:0.000000pt;}
.y36_c00017{bottom:121.066618pt;}
.y35_c00017{bottom:137.866612pt;}
.y34_c00017{bottom:154.666605pt;}
.y33_c00017{bottom:171.626598pt;}
.y32_c00017{bottom:188.426591pt;}
.y31_c00017{bottom:205.386585pt;}
.y30_c00017{bottom:222.186578pt;}
.y2f_c00017{bottom:238.986571pt;}
.y2e_c00017{bottom:255.946564pt;}
.y2d_c00017{bottom:272.746558pt;}
.y2c_c00017{bottom:289.706551pt;}
.y2b_c00017{bottom:306.506544pt;}
.y2a_c00017{bottom:323.306537pt;}
.y29_c00017{bottom:340.266531pt;}
.y28_c00017{bottom:357.066524pt;}
.y27_c00017{bottom:374.026517pt;}
.y26_c00017{bottom:390.826510pt;}
.y25_c00017{bottom:407.626504pt;}
.y24_c00017{bottom:424.586497pt;}
.y23_c00017{bottom:441.386490pt;}
.y22_c00017{bottom:458.346483pt;}
.y21_c00017{bottom:475.146477pt;}
.y20_c00017{bottom:492.106470pt;}
.y1f_c00017{bottom:508.906463pt;}
.y1e_c00017{bottom:525.706456pt;}
.y1d_c00017{bottom:542.666450pt;}
.y1c_c00017{bottom:559.466443pt;}
.y1b_c00017{bottom:576.426436pt;}
.y1a_c00017{bottom:593.226429pt;}
.y19_c00017{bottom:610.026423pt;}
.y18_c00017{bottom:626.986416pt;}
.y17_c00017{bottom:643.786409pt;}
.y16_c00017{bottom:660.746402pt;}
.y15_c00017{bottom:677.546396pt;}
.y14_c00017{bottom:694.346389pt;}
.y13_c00017{bottom:711.306382pt;}
.y12_c00017{bottom:728.106375pt;}
.y11_c00017{bottom:745.066369pt;}
.y10_c00017{bottom:761.866362pt;}
.yf_c00017{bottom:778.666355pt;}
.ye_c00017{bottom:795.626348pt;}
.yd_c00017{bottom:812.426342pt;}
.yc_c00017{bottom:829.386335pt;}
.yb_c00017{bottom:846.186328pt;}
.ya_c00017{bottom:862.986321pt;}
.y9_c00017{bottom:879.946315pt;}
.y8_c00017{bottom:896.746308pt;}
.y7_c00017{bottom:913.706301pt;}
.y6_c00017{bottom:930.506294pt;}
.y5_c00017{bottom:947.466288pt;}
.y4_c00017{bottom:964.266281pt;}
.y3_c00017{bottom:981.066274pt;}
.y2_c00017{bottom:998.026267pt;}
.y1_c00017{bottom:1014.826261pt;}
.h1_c00017{height:57.787477pt;}
.h0_c00017{height:1122.666667pt;}
.w0_c00017{width:793.333333pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4a3976b868a212559d1c0c5.woff2')format("woff");}.ff1_c00018{font-family:ff1_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:ff2_c00018;src:url('chunks/assets/font_119e9e362b62f25a198f1ab4.woff2')format("woff");}.ff2_c00018{font-family:ff2_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;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.311035;font-style:normal;font-weight:normal;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00018{font-family:ff4_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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls7_c00018{letter-spacing:0.000000px;}
.ls2_c00018{letter-spacing:0.009900px;}
.ls1_c00018{letter-spacing:0.730320px;}
.ls0_c00018{letter-spacing:3.612059px;}
.ls3_c00018{letter-spacing:7.934637px;}
.ls5_c00018{letter-spacing:10.816376px;}
.ls4_c00018{letter-spacing:15.138954px;}
.ls6_c00018{letter-spacing:19.461532px;}
.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:-16.559993px;}
.ws1_c00018{word-spacing:0.000000px;}
._2_c00018{margin-left:-1.025083px;}
._4_c00018{width:1.080515px;}
._6_c00018{width:2.136359px;}
._0_c00018{width:3.150343px;}
._1_c00018{width:4.445359px;}
._3_c00018{width:6.032067px;}
._5_c00018{width:7.063952px;}
._8_c00018{width:8.393210px;}
._7_c00018{width:9.634197px;}
._a_c00018{width:11.586373px;}
._d_c00018{width:13.320207px;}
._9_c00018{width:14.677245px;}
._b_c00018{width:18.999800px;}
._c_c00018{width:20.403957px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:66.239974px;}
.y0_c00018{bottom:0.000000px;}
.y36_c00018{bottom:136.199946px;}
.y35_c00018{bottom:155.099938px;}
.y34_c00018{bottom:173.999930px;}
.y33_c00018{bottom:193.079923px;}
.y32_c00018{bottom:211.979915px;}
.y31_c00018{bottom:231.059908px;}
.y30_c00018{bottom:249.959900px;}
.y2f_c00018{bottom:268.859892px;}
.y2e_c00018{bottom:287.939885px;}
.y2d_c00018{bottom:306.839877px;}
.y2c_c00018{bottom:325.919870px;}
.y2b_c00018{bottom:344.819862px;}
.y2a_c00018{bottom:363.719855px;}
.y29_c00018{bottom:382.799847px;}
.y28_c00018{bottom:401.699839px;}
.y27_c00018{bottom:420.779832px;}
.y26_c00018{bottom:439.679824px;}
.y25_c00018{bottom:458.579817px;}
.y24_c00018{bottom:477.659809px;}
.y23_c00018{bottom:496.559801px;}
.y22_c00018{bottom:515.639794px;}
.y21_c00018{bottom:534.539786px;}
.y20_c00018{bottom:553.619779px;}
.y1f_c00018{bottom:572.519771px;}
.y1e_c00018{bottom:591.419763px;}
.y1d_c00018{bottom:610.499756px;}
.y1c_c00018{bottom:629.399748px;}
.y1b_c00018{bottom:648.479741px;}
.y1a_c00018{bottom:667.379733px;}
.y19_c00018{bottom:686.279725px;}
.y18_c00018{bottom:705.359718px;}
.y17_c00018{bottom:724.259710px;}
.y16_c00018{bottom:743.339703px;}
.y15_c00018{bottom:762.239695px;}
.y14_c00018{bottom:781.139688px;}
.y13_c00018{bottom:800.219680px;}
.y12_c00018{bottom:819.119672px;}
.y11_c00018{bottom:838.199665px;}
.y10_c00018{bottom:857.099657px;}
.yf_c00018{bottom:875.999650px;}
.ye_c00018{bottom:895.079642px;}
.yd_c00018{bottom:913.979634px;}
.yc_c00018{bottom:933.059627px;}
.yb_c00018{bottom:951.959619px;}
.ya_c00018{bottom:970.859612px;}
.y9_c00018{bottom:989.939604px;}
.y8_c00018{bottom:1008.839596px;}
.y7_c00018{bottom:1027.919589px;}
.y6_c00018{bottom:1046.819581px;}
.y5_c00018{bottom:1065.899574px;}
.y4_c00018{bottom:1084.799566px;}
.y3_c00018{bottom:1103.699559px;}
.y2_c00018{bottom:1122.779551px;}
.y1_c00018{bottom:1141.679543px;}
.h1_c00018{height:65.010911px;}
.h2_c00018{height:66.757473px;}
.h0_c00018{height:1263.000000px;}
.w0_c00018{width:892.500000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:127.619949px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls7_c00018{letter-spacing:0.000000pt;}
.ls2_c00018{letter-spacing:0.008800pt;}
.ls1_c00018{letter-spacing:0.649173pt;}
.ls0_c00018{letter-spacing:3.210719pt;}
.ls3_c00018{letter-spacing:7.053011pt;}
.ls5_c00018{letter-spacing:9.614556pt;}
.ls4_c00018{letter-spacing:13.456848pt;}
.ls6_c00018{letter-spacing:17.299140pt;}
.ws0_c00018{word-spacing:-14.719994pt;}
.ws1_c00018{word-spacing:0.000000pt;}
._2_c00018{margin-left:-0.911185pt;}
._4_c00018{width:0.960458pt;}
._6_c00018{width:1.898986pt;}
._0_c00018{width:2.800305pt;}
._1_c00018{width:3.951430pt;}
._3_c00018{width:5.361837pt;}
._5_c00018{width:6.279069pt;}
._8_c00018{width:7.460631pt;}
._7_c00018{width:8.563730pt;}
._a_c00018{width:10.298999pt;}
._d_c00018{width:11.840184pt;}
._9_c00018{width:13.046440pt;}
._b_c00018{width:16.888711pt;}
._c_c00018{width:18.136850pt;}
.fs0_c00018{font-size:58.879976pt;}
.y0_c00018{bottom:0.000000pt;}
.y36_c00018{bottom:121.066618pt;}
.y35_c00018{bottom:137.866612pt;}
.y34_c00018{bottom:154.666605pt;}
.y33_c00018{bottom:171.626598pt;}
.y32_c00018{bottom:188.426591pt;}
.y31_c00018{bottom:205.386585pt;}
.y30_c00018{bottom:222.186578pt;}
.y2f_c00018{bottom:238.986571pt;}
.y2e_c00018{bottom:255.946564pt;}
.y2d_c00018{bottom:272.746558pt;}
.y2c_c00018{bottom:289.706551pt;}
.y2b_c00018{bottom:306.506544pt;}
.y2a_c00018{bottom:323.306537pt;}
.y29_c00018{bottom:340.266531pt;}
.y28_c00018{bottom:357.066524pt;}
.y27_c00018{bottom:374.026517pt;}
.y26_c00018{bottom:390.826510pt;}
.y25_c00018{bottom:407.626504pt;}
.y24_c00018{bottom:424.586497pt;}
.y23_c00018{bottom:441.386490pt;}
.y22_c00018{bottom:458.346483pt;}
.y21_c00018{bottom:475.146477pt;}
.y20_c00018{bottom:492.106470pt;}
.y1f_c00018{bottom:508.906463pt;}
.y1e_c00018{bottom:525.706456pt;}
.y1d_c00018{bottom:542.666450pt;}
.y1c_c00018{bottom:559.466443pt;}
.y1b_c00018{bottom:576.426436pt;}
.y1a_c00018{bottom:593.226429pt;}
.y19_c00018{bottom:610.026423pt;}
.y18_c00018{bottom:626.986416pt;}
.y17_c00018{bottom:643.786409pt;}
.y16_c00018{bottom:660.746402pt;}
.y15_c00018{bottom:677.546396pt;}
.y14_c00018{bottom:694.346389pt;}
.y13_c00018{bottom:711.306382pt;}
.y12_c00018{bottom:728.106375pt;}
.y11_c00018{bottom:745.066369pt;}
.y10_c00018{bottom:761.866362pt;}
.yf_c00018{bottom:778.666355pt;}
.ye_c00018{bottom:795.626348pt;}
.yd_c00018{bottom:812.426342pt;}
.yc_c00018{bottom:829.386335pt;}
.yb_c00018{bottom:846.186328pt;}
.ya_c00018{bottom:862.986321pt;}
.y9_c00018{bottom:879.946315pt;}
.y8_c00018{bottom:896.746308pt;}
.y7_c00018{bottom:913.706301pt;}
.y6_c00018{bottom:930.506294pt;}
.y5_c00018{bottom:947.466288pt;}
.y4_c00018{bottom:964.266281pt;}
.y3_c00018{bottom:981.066274pt;}
.y2_c00018{bottom:998.026267pt;}
.y1_c00018{bottom:1014.826261pt;}
.h1_c00018{height:57.787477pt;}
.h2_c00018{height:59.339976pt;}
.h0_c00018{height:1122.666667pt;}
.w0_c00018{width:793.333333pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2cb883a1fe5778bb7d5915e.woff2')format("woff");}.ff1_c00019{font-family:ff1_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:ff2_c00019;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.311035;font-style:normal;font-weight:normal;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_58fa0adef6728550d248b8d1.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00019{font-family:ff4_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;}
.m0_c00019{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls5_c00019{letter-spacing:0.000000px;}
.ls1_c00019{letter-spacing:0.009900px;}
.ls4_c00019{letter-spacing:0.730320px;}
.ls2_c00019{letter-spacing:1.450739px;}
.ls3_c00019{letter-spacing:4.332478px;}
.ls0_c00019{letter-spacing:14.418534px;}
.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;}
}
.ws0_c00019{word-spacing:-16.559993px;}
.ws1_c00019{word-spacing:0.000000px;}
._2_c00019{margin-left:-1.121540px;}
._1_c00019{width:1.439545px;}
._e_c00019{width:3.150343px;}
._6_c00019{width:4.591202px;}
._7_c00019{width:5.660224px;}
._b_c00019{width:6.935084px;}
._f_c00019{width:8.913771px;}
._4_c00019{width:10.354623px;}
._5_c00019{width:11.500837px;}
._8_c00019{width:12.621335px;}
._0_c00019{width:13.956819px;}
._3_c00019{width:15.146207px;}
._9_c00019{width:18.279374px;}
._a_c00019{width:19.458174px;}
._c_c00019{width:20.514756px;}
._d_c00019{width:21.900952px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:66.239974px;}
.y0_c00019{bottom:0.000000px;}
.y37_c00019{bottom:117.120253px;}
.y36_c00019{bottom:136.199946px;}
.y35_c00019{bottom:155.099938px;}
.y34_c00019{bottom:173.999930px;}
.y33_c00019{bottom:193.079923px;}
.y32_c00019{bottom:211.979915px;}
.y31_c00019{bottom:231.059908px;}
.y30_c00019{bottom:249.959900px;}
.y2f_c00019{bottom:268.859892px;}
.y2e_c00019{bottom:287.939885px;}
.y2d_c00019{bottom:306.839877px;}
.y2c_c00019{bottom:325.919870px;}
.y2b_c00019{bottom:344.819862px;}
.y2a_c00019{bottom:363.719855px;}
.y29_c00019{bottom:382.799847px;}
.y28_c00019{bottom:401.699839px;}
.y27_c00019{bottom:420.779832px;}
.y26_c00019{bottom:439.679824px;}
.y25_c00019{bottom:458.579817px;}
.y24_c00019{bottom:477.659809px;}
.y23_c00019{bottom:496.559801px;}
.y22_c00019{bottom:515.639794px;}
.y21_c00019{bottom:534.539786px;}
.y20_c00019{bottom:553.619779px;}
.y1f_c00019{bottom:572.519771px;}
.y1e_c00019{bottom:591.419763px;}
.y1d_c00019{bottom:610.499756px;}
.y1c_c00019{bottom:629.399748px;}
.y1b_c00019{bottom:648.479741px;}
.y1a_c00019{bottom:667.379733px;}
.y19_c00019{bottom:686.279725px;}
.y18_c00019{bottom:705.359718px;}
.y17_c00019{bottom:724.259710px;}
.y16_c00019{bottom:743.339703px;}
.y15_c00019{bottom:762.239695px;}
.y14_c00019{bottom:781.139688px;}
.y13_c00019{bottom:800.219680px;}
.y12_c00019{bottom:819.119672px;}
.y11_c00019{bottom:838.199665px;}
.y10_c00019{bottom:857.099657px;}
.yf_c00019{bottom:875.999650px;}
.ye_c00019{bottom:895.079642px;}
.yd_c00019{bottom:913.979634px;}
.yc_c00019{bottom:933.059627px;}
.yb_c00019{bottom:951.959619px;}
.ya_c00019{bottom:970.859612px;}
.y9_c00019{bottom:989.939604px;}
.y8_c00019{bottom:1008.839596px;}
.y7_c00019{bottom:1027.919589px;}
.y6_c00019{bottom:1046.819581px;}
.y5_c00019{bottom:1065.899574px;}
.y4_c00019{bottom:1084.799566px;}
.y3_c00019{bottom:1103.699559px;}
.y2_c00019{bottom:1122.779551px;}
.y1_c00019{bottom:1141.679543px;}
.h2_c00019{height:65.010911px;}
.h1_c00019{height:66.757473px;}
.h0_c00019{height:1263.000000px;}
.w0_c00019{width:892.500000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:127.619949px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls5_c00019{letter-spacing:0.000000pt;}
.ls1_c00019{letter-spacing:0.008800pt;}
.ls4_c00019{letter-spacing:0.649173pt;}
.ls2_c00019{letter-spacing:1.289546pt;}
.ls3_c00019{letter-spacing:3.851092pt;}
.ls0_c00019{letter-spacing:12.816475pt;}
.ws0_c00019{word-spacing:-14.719994pt;}
.ws1_c00019{word-spacing:0.000000pt;}
._2_c00019{margin-left:-0.996924pt;}
._1_c00019{width:1.279596pt;}
._e_c00019{width:2.800305pt;}
._6_c00019{width:4.081068pt;}
._7_c00019{width:5.031310pt;}
._b_c00019{width:6.164519pt;}
._f_c00019{width:7.923352pt;}
._4_c00019{width:9.204109pt;}
._5_c00019{width:10.222966pt;}
._8_c00019{width:11.218964pt;}
._0_c00019{width:12.406061pt;}
._3_c00019{width:13.463295pt;}
._9_c00019{width:16.248333pt;}
._a_c00019{width:17.296155pt;}
._c_c00019{width:18.235338pt;}
._d_c00019{width:19.467513pt;}
.fs0_c00019{font-size:58.879976pt;}
.y0_c00019{bottom:0.000000pt;}
.y37_c00019{bottom:104.106892pt;}
.y36_c00019{bottom:121.066618pt;}
.y35_c00019{bottom:137.866612pt;}
.y34_c00019{bottom:154.666605pt;}
.y33_c00019{bottom:171.626598pt;}
.y32_c00019{bottom:188.426591pt;}
.y31_c00019{bottom:205.386585pt;}
.y30_c00019{bottom:222.186578pt;}
.y2f_c00019{bottom:238.986571pt;}
.y2e_c00019{bottom:255.946564pt;}
.y2d_c00019{bottom:272.746558pt;}
.y2c_c00019{bottom:289.706551pt;}
.y2b_c00019{bottom:306.506544pt;}
.y2a_c00019{bottom:323.306537pt;}
.y29_c00019{bottom:340.266531pt;}
.y28_c00019{bottom:357.066524pt;}
.y27_c00019{bottom:374.026517pt;}
.y26_c00019{bottom:390.826510pt;}
.y25_c00019{bottom:407.626504pt;}
.y24_c00019{bottom:424.586497pt;}
.y23_c00019{bottom:441.386490pt;}
.y22_c00019{bottom:458.346483pt;}
.y21_c00019{bottom:475.146477pt;}
.y20_c00019{bottom:492.106470pt;}
.y1f_c00019{bottom:508.906463pt;}
.y1e_c00019{bottom:525.706456pt;}
.y1d_c00019{bottom:542.666450pt;}
.y1c_c00019{bottom:559.466443pt;}
.y1b_c00019{bottom:576.426436pt;}
.y1a_c00019{bottom:593.226429pt;}
.y19_c00019{bottom:610.026423pt;}
.y18_c00019{bottom:626.986416pt;}
.y17_c00019{bottom:643.786409pt;}
.y16_c00019{bottom:660.746402pt;}
.y15_c00019{bottom:677.546396pt;}
.y14_c00019{bottom:694.346389pt;}
.y13_c00019{bottom:711.306382pt;}
.y12_c00019{bottom:728.106375pt;}
.y11_c00019{bottom:745.066369pt;}
.y10_c00019{bottom:761.866362pt;}
.yf_c00019{bottom:778.666355pt;}
.ye_c00019{bottom:795.626348pt;}
.yd_c00019{bottom:812.426342pt;}
.yc_c00019{bottom:829.386335pt;}
.yb_c00019{bottom:846.186328pt;}
.ya_c00019{bottom:862.986321pt;}
.y9_c00019{bottom:879.946315pt;}
.y8_c00019{bottom:896.746308pt;}
.y7_c00019{bottom:913.706301pt;}
.y6_c00019{bottom:930.506294pt;}
.y5_c00019{bottom:947.466288pt;}
.y4_c00019{bottom:964.266281pt;}
.y3_c00019{bottom:981.066274pt;}
.y2_c00019{bottom:998.026267pt;}
.y1_c00019{bottom:1014.826261pt;}
.h2_c00019{height:57.787477pt;}
.h1_c00019{height:59.339976pt;}
.h0_c00019{height:1122.666667pt;}
.w0_c00019{width:793.333333pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47622741710887564aabff95.woff2')format("woff");}.ff1_c00020{font-family:ff1_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:ff2_c00020;src:url('chunks/assets/font_0aeb6d15d8f3d2ace953894c.woff2')format("woff");}.ff2_c00020{font-family:ff2_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:ff3_c00020;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.311035;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:10.095956px;}
.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:-16.559993px;}
.ws1_c00020{word-spacing:0.000000px;}
._3_c00020{margin-left:-1.095935px;}
._1_c00020{width:1.121711px;}
._8_c00020{width:2.429911px;}
._9_c00020{width:4.401956px;}
._0_c00020{width:6.032067px;}
._2_c00020{width:7.555820px;}
._7_c00020{width:9.261597px;}
._6_c00020{width:10.354623px;}
._4_c00020{width:11.795541px;}
._5_c00020{width:12.929674px;}
._a_c00020{width:14.074202px;}
._b_c00020{width:15.428385px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:66.239974px;}
.y0_c00020{bottom:0.000000px;}
.y37_c00020{bottom:117.120253px;}
.y36_c00020{bottom:136.200246px;}
.y35_c00020{bottom:155.099938px;}
.y34_c00020{bottom:173.999930px;}
.y33_c00020{bottom:193.079923px;}
.y32_c00020{bottom:211.979915px;}
.y31_c00020{bottom:231.059908px;}
.y30_c00020{bottom:249.959900px;}
.y2f_c00020{bottom:268.859892px;}
.y2e_c00020{bottom:287.939885px;}
.y2d_c00020{bottom:306.839877px;}
.y2c_c00020{bottom:325.919870px;}
.y2b_c00020{bottom:344.819862px;}
.y2a_c00020{bottom:363.719855px;}
.y29_c00020{bottom:382.799847px;}
.y28_c00020{bottom:401.699839px;}
.y27_c00020{bottom:420.779832px;}
.y26_c00020{bottom:439.679824px;}
.y25_c00020{bottom:458.579817px;}
.y24_c00020{bottom:477.659809px;}
.y23_c00020{bottom:496.559801px;}
.y22_c00020{bottom:515.639794px;}
.y21_c00020{bottom:534.539786px;}
.y20_c00020{bottom:553.619779px;}
.y1f_c00020{bottom:572.519771px;}
.y1e_c00020{bottom:591.419763px;}
.y1d_c00020{bottom:610.499756px;}
.y1c_c00020{bottom:629.399748px;}
.y1b_c00020{bottom:648.479741px;}
.y1a_c00020{bottom:667.379733px;}
.y19_c00020{bottom:686.279725px;}
.y18_c00020{bottom:705.359718px;}
.y17_c00020{bottom:724.259710px;}
.y16_c00020{bottom:743.339703px;}
.y15_c00020{bottom:762.239695px;}
.y14_c00020{bottom:781.139688px;}
.y13_c00020{bottom:800.219680px;}
.y12_c00020{bottom:819.119672px;}
.y11_c00020{bottom:838.199665px;}
.y10_c00020{bottom:857.099657px;}
.yf_c00020{bottom:875.999650px;}
.ye_c00020{bottom:895.079642px;}
.yd_c00020{bottom:913.979634px;}
.yc_c00020{bottom:933.059627px;}
.yb_c00020{bottom:951.959619px;}
.ya_c00020{bottom:970.859612px;}
.y9_c00020{bottom:989.939604px;}
.y8_c00020{bottom:1008.839596px;}
.y7_c00020{bottom:1027.919589px;}
.y6_c00020{bottom:1046.819581px;}
.y5_c00020{bottom:1065.899574px;}
.y4_c00020{bottom:1084.799566px;}
.y3_c00020{bottom:1103.699559px;}
.y2_c00020{bottom:1122.779551px;}
.y1_c00020{bottom:1141.679543px;}
.h1_c00020{height:65.010911px;}
.h2_c00020{height:66.757473px;}
.h0_c00020{height:1263.000000px;}
.w0_c00020{width:892.500000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:127.619949px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:8.974183pt;}
.ws0_c00020{word-spacing:-14.719994pt;}
.ws1_c00020{word-spacing:0.000000pt;}
._3_c00020{margin-left:-0.974164pt;}
._1_c00020{width:0.997077pt;}
._8_c00020{width:2.159921pt;}
._9_c00020{width:3.912850pt;}
._0_c00020{width:5.361837pt;}
._2_c00020{width:6.716285pt;}
._7_c00020{width:8.232531pt;}
._6_c00020{width:9.204109pt;}
._4_c00020{width:10.484925pt;}
._5_c00020{width:11.493043pt;}
._a_c00020{width:12.510401pt;}
._b_c00020{width:13.714120pt;}
.fs0_c00020{font-size:58.879976pt;}
.y0_c00020{bottom:0.000000pt;}
.y37_c00020{bottom:104.106892pt;}
.y36_c00020{bottom:121.066885pt;}
.y35_c00020{bottom:137.866612pt;}
.y34_c00020{bottom:154.666605pt;}
.y33_c00020{bottom:171.626598pt;}
.y32_c00020{bottom:188.426591pt;}
.y31_c00020{bottom:205.386585pt;}
.y30_c00020{bottom:222.186578pt;}
.y2f_c00020{bottom:238.986571pt;}
.y2e_c00020{bottom:255.946564pt;}
.y2d_c00020{bottom:272.746558pt;}
.y2c_c00020{bottom:289.706551pt;}
.y2b_c00020{bottom:306.506544pt;}
.y2a_c00020{bottom:323.306537pt;}
.y29_c00020{bottom:340.266531pt;}
.y28_c00020{bottom:357.066524pt;}
.y27_c00020{bottom:374.026517pt;}
.y26_c00020{bottom:390.826510pt;}
.y25_c00020{bottom:407.626504pt;}
.y24_c00020{bottom:424.586497pt;}
.y23_c00020{bottom:441.386490pt;}
.y22_c00020{bottom:458.346483pt;}
.y21_c00020{bottom:475.146477pt;}
.y20_c00020{bottom:492.106470pt;}
.y1f_c00020{bottom:508.906463pt;}
.y1e_c00020{bottom:525.706456pt;}
.y1d_c00020{bottom:542.666450pt;}
.y1c_c00020{bottom:559.466443pt;}
.y1b_c00020{bottom:576.426436pt;}
.y1a_c00020{bottom:593.226429pt;}
.y19_c00020{bottom:610.026423pt;}
.y18_c00020{bottom:626.986416pt;}
.y17_c00020{bottom:643.786409pt;}
.y16_c00020{bottom:660.746402pt;}
.y15_c00020{bottom:677.546396pt;}
.y14_c00020{bottom:694.346389pt;}
.y13_c00020{bottom:711.306382pt;}
.y12_c00020{bottom:728.106375pt;}
.y11_c00020{bottom:745.066369pt;}
.y10_c00020{bottom:761.866362pt;}
.yf_c00020{bottom:778.666355pt;}
.ye_c00020{bottom:795.626348pt;}
.yd_c00020{bottom:812.426342pt;}
.yc_c00020{bottom:829.386335pt;}
.yb_c00020{bottom:846.186328pt;}
.ya_c00020{bottom:862.986321pt;}
.y9_c00020{bottom:879.946315pt;}
.y8_c00020{bottom:896.746308pt;}
.y7_c00020{bottom:913.706301pt;}
.y6_c00020{bottom:930.506294pt;}
.y5_c00020{bottom:947.466288pt;}
.y4_c00020{bottom:964.266281pt;}
.y3_c00020{bottom:981.066274pt;}
.y2_c00020{bottom:998.026267pt;}
.y1_c00020{bottom:1014.826261pt;}
.h1_c00020{height:57.787477pt;}
.h2_c00020{height:59.339976pt;}
.h0_c00020{height:1122.666667pt;}
.w0_c00020{width:793.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de7cc8888cb4c465768b8a8b.woff2')format("woff");}.ff1_c00021{font-family:ff1_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:ff2_c00021;src:url('chunks/assets/font_46c2c28a1c67cd2af6021d11.woff2')format("woff");}.ff2_c00021{font-family:ff2_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:ff3_c00021;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.311035;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,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.009900px;}
.ls0_c00021{letter-spacing:12.977635px;}
.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:0.000000px;}
._0_c00021{margin-left:-1.015129px;}
._1_c00021{width:1.709485px;}
._7_c00021{width:3.681517px;}
._8_c00021{width:4.983132px;}
._4_c00021{width:7.019998px;}
._3_c00021{width:8.193345px;}
._2_c00021{width:10.354623px;}
._5_c00021{width:12.515967px;}
._6_c00021{width:13.767482px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:66.239974px;}
.y0_c00021{bottom:0.000000px;}
.y37_c00021{bottom:117.119953px;}
.y36_c00021{bottom:136.199946px;}
.y35_c00021{bottom:155.099938px;}
.y34_c00021{bottom:173.999930px;}
.y33_c00021{bottom:193.079923px;}
.y32_c00021{bottom:211.979915px;}
.y31_c00021{bottom:231.059908px;}
.y30_c00021{bottom:249.959900px;}
.y2f_c00021{bottom:268.859892px;}
.y2e_c00021{bottom:287.939885px;}
.y2d_c00021{bottom:306.839877px;}
.y2c_c00021{bottom:325.919870px;}
.y2b_c00021{bottom:344.819862px;}
.y2a_c00021{bottom:363.719855px;}
.y29_c00021{bottom:382.799847px;}
.y28_c00021{bottom:401.699839px;}
.y27_c00021{bottom:420.779832px;}
.y26_c00021{bottom:439.679824px;}
.y25_c00021{bottom:458.579817px;}
.y24_c00021{bottom:477.659809px;}
.y23_c00021{bottom:496.559801px;}
.y22_c00021{bottom:515.639794px;}
.y21_c00021{bottom:534.539786px;}
.y20_c00021{bottom:553.619779px;}
.y1f_c00021{bottom:572.519771px;}
.y1e_c00021{bottom:591.419763px;}
.y1d_c00021{bottom:610.499756px;}
.y1c_c00021{bottom:629.399748px;}
.y1b_c00021{bottom:648.479741px;}
.y1a_c00021{bottom:667.379733px;}
.y19_c00021{bottom:686.279725px;}
.y18_c00021{bottom:705.359718px;}
.y17_c00021{bottom:724.259710px;}
.y16_c00021{bottom:743.339703px;}
.y15_c00021{bottom:762.239695px;}
.y14_c00021{bottom:781.139688px;}
.y13_c00021{bottom:800.219680px;}
.y12_c00021{bottom:819.119672px;}
.y11_c00021{bottom:838.199665px;}
.y10_c00021{bottom:857.099657px;}
.yf_c00021{bottom:875.999650px;}
.ye_c00021{bottom:895.079642px;}
.yd_c00021{bottom:913.979634px;}
.yc_c00021{bottom:933.059627px;}
.yb_c00021{bottom:951.959619px;}
.ya_c00021{bottom:970.859612px;}
.y9_c00021{bottom:989.939604px;}
.y8_c00021{bottom:1008.839596px;}
.y7_c00021{bottom:1027.919589px;}
.y6_c00021{bottom:1046.819581px;}
.y5_c00021{bottom:1065.899574px;}
.y4_c00021{bottom:1084.799566px;}
.y3_c00021{bottom:1103.699559px;}
.y2_c00021{bottom:1122.779551px;}
.y1_c00021{bottom:1141.679543px;}
.h1_c00021{height:65.010911px;}
.h2_c00021{height:66.757473px;}
.h0_c00021{height:1263.000000px;}
.w0_c00021{width:892.500000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:127.619949px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls2_c00021{letter-spacing:0.000000pt;}
.ls1_c00021{letter-spacing:0.008800pt;}
.ls0_c00021{letter-spacing:11.535675pt;}
.ws0_c00021{word-spacing:0.000000pt;}
._0_c00021{margin-left:-0.902337pt;}
._1_c00021{width:1.519542pt;}
._7_c00021{width:3.272459pt;}
._8_c00021{width:4.429451pt;}
._4_c00021{width:6.239998pt;}
._3_c00021{width:7.282973pt;}
._2_c00021{width:9.204109pt;}
._5_c00021{width:11.125304pt;}
._6_c00021{width:12.237762pt;}
.fs0_c00021{font-size:58.879976pt;}
.y0_c00021{bottom:0.000000pt;}
.y37_c00021{bottom:104.106625pt;}
.y36_c00021{bottom:121.066618pt;}
.y35_c00021{bottom:137.866612pt;}
.y34_c00021{bottom:154.666605pt;}
.y33_c00021{bottom:171.626598pt;}
.y32_c00021{bottom:188.426591pt;}
.y31_c00021{bottom:205.386585pt;}
.y30_c00021{bottom:222.186578pt;}
.y2f_c00021{bottom:238.986571pt;}
.y2e_c00021{bottom:255.946564pt;}
.y2d_c00021{bottom:272.746558pt;}
.y2c_c00021{bottom:289.706551pt;}
.y2b_c00021{bottom:306.506544pt;}
.y2a_c00021{bottom:323.306537pt;}
.y29_c00021{bottom:340.266531pt;}
.y28_c00021{bottom:357.066524pt;}
.y27_c00021{bottom:374.026517pt;}
.y26_c00021{bottom:390.826510pt;}
.y25_c00021{bottom:407.626504pt;}
.y24_c00021{bottom:424.586497pt;}
.y23_c00021{bottom:441.386490pt;}
.y22_c00021{bottom:458.346483pt;}
.y21_c00021{bottom:475.146477pt;}
.y20_c00021{bottom:492.106470pt;}
.y1f_c00021{bottom:508.906463pt;}
.y1e_c00021{bottom:525.706456pt;}
.y1d_c00021{bottom:542.666450pt;}
.y1c_c00021{bottom:559.466443pt;}
.y1b_c00021{bottom:576.426436pt;}
.y1a_c00021{bottom:593.226429pt;}
.y19_c00021{bottom:610.026423pt;}
.y18_c00021{bottom:626.986416pt;}
.y17_c00021{bottom:643.786409pt;}
.y16_c00021{bottom:660.746402pt;}
.y15_c00021{bottom:677.546396pt;}
.y14_c00021{bottom:694.346389pt;}
.y13_c00021{bottom:711.306382pt;}
.y12_c00021{bottom:728.106375pt;}
.y11_c00021{bottom:745.066369pt;}
.y10_c00021{bottom:761.866362pt;}
.yf_c00021{bottom:778.666355pt;}
.ye_c00021{bottom:795.626348pt;}
.yd_c00021{bottom:812.426342pt;}
.yc_c00021{bottom:829.386335pt;}
.yb_c00021{bottom:846.186328pt;}
.ya_c00021{bottom:862.986321pt;}
.y9_c00021{bottom:879.946315pt;}
.y8_c00021{bottom:896.746308pt;}
.y7_c00021{bottom:913.706301pt;}
.y6_c00021{bottom:930.506294pt;}
.y5_c00021{bottom:947.466288pt;}
.y4_c00021{bottom:964.266281pt;}
.y3_c00021{bottom:981.066274pt;}
.y2_c00021{bottom:998.026267pt;}
.y1_c00021{bottom:1014.826261pt;}
.h1_c00021{height:57.787477pt;}
.h2_c00021{height:59.339976pt;}
.h0_c00021{height:1122.666667pt;}
.w0_c00021{width:793.333333pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea17cf4adbdcb19a2460c753.woff2')format("woff");}.ff1_c00022{font-family:ff1_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:ff2_c00022;src:url('chunks/assets/font_e0283c1614a4b83d633ef3b0.woff2')format("woff");}.ff2_c00022{font-family:ff2_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;}
.m0_c00022{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.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:-16.559993px;}
.ws1_c00022{word-spacing:0.000000px;}
._1_c00022{margin-left:-1.108792px;}
._4_c00022{width:1.051452px;}
._9_c00022{width:2.291799px;}
._5_c00022{width:3.870776px;}
._8_c00022{width:4.880986px;}
._b_c00022{width:6.752493px;}
._6_c00022{width:8.193345px;}
._7_c00022{width:9.232313px;}
._0_c00022{width:10.354623px;}
._2_c00022{width:12.515967px;}
._3_c00022{width:13.576682px;}
._c_c00022{width:14.923640px;}
._a_c00022{width:18.037607px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:66.239974px;}
.y0_c00022{bottom:0.000000px;}
.y37_c00022{bottom:117.120253px;}
.y36_c00022{bottom:136.200246px;}
.y35_c00022{bottom:155.099938px;}
.y34_c00022{bottom:173.999930px;}
.y33_c00022{bottom:193.079923px;}
.y32_c00022{bottom:211.979915px;}
.y31_c00022{bottom:231.059908px;}
.y30_c00022{bottom:249.959900px;}
.y2f_c00022{bottom:268.859892px;}
.y2e_c00022{bottom:287.939885px;}
.y2d_c00022{bottom:306.839877px;}
.y2c_c00022{bottom:325.919870px;}
.y2b_c00022{bottom:344.819862px;}
.y2a_c00022{bottom:363.719855px;}
.y29_c00022{bottom:382.799847px;}
.y28_c00022{bottom:401.699839px;}
.y27_c00022{bottom:420.779832px;}
.y26_c00022{bottom:439.679824px;}
.y25_c00022{bottom:458.579817px;}
.y24_c00022{bottom:477.659809px;}
.y23_c00022{bottom:496.559801px;}
.y22_c00022{bottom:515.639794px;}
.y21_c00022{bottom:534.539786px;}
.y20_c00022{bottom:553.619779px;}
.y1f_c00022{bottom:572.519771px;}
.y1e_c00022{bottom:591.419763px;}
.y1d_c00022{bottom:610.499756px;}
.y1c_c00022{bottom:629.399748px;}
.y1b_c00022{bottom:648.479741px;}
.y1a_c00022{bottom:667.379733px;}
.y19_c00022{bottom:686.279725px;}
.y18_c00022{bottom:705.359718px;}
.y17_c00022{bottom:724.259710px;}
.y16_c00022{bottom:743.339703px;}
.y15_c00022{bottom:762.239695px;}
.y14_c00022{bottom:781.139688px;}
.y13_c00022{bottom:800.219680px;}
.y12_c00022{bottom:819.119672px;}
.y11_c00022{bottom:838.199665px;}
.y10_c00022{bottom:857.099657px;}
.yf_c00022{bottom:875.999650px;}
.ye_c00022{bottom:895.079642px;}
.yd_c00022{bottom:913.979634px;}
.yc_c00022{bottom:933.059627px;}
.yb_c00022{bottom:951.959619px;}
.ya_c00022{bottom:970.859612px;}
.y9_c00022{bottom:989.939604px;}
.y8_c00022{bottom:1008.839596px;}
.y7_c00022{bottom:1027.919589px;}
.y6_c00022{bottom:1046.819581px;}
.y5_c00022{bottom:1065.899574px;}
.y4_c00022{bottom:1084.799566px;}
.y3_c00022{bottom:1103.699559px;}
.y2_c00022{bottom:1122.779551px;}
.y1_c00022{bottom:1141.679543px;}
.h1_c00022{height:65.010911px;}
.h0_c00022{height:1263.000000px;}
.w0_c00022{width:892.500000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:127.619949px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:-14.719994pt;}
.ws1_c00022{word-spacing:0.000000pt;}
._1_c00022{margin-left:-0.985593pt;}
._4_c00022{width:0.934624pt;}
._9_c00022{width:2.037155pt;}
._5_c00022{width:3.440690pt;}
._8_c00022{width:4.338654pt;}
._b_c00022{width:6.002216pt;}
._6_c00022{width:7.282973pt;}
._7_c00022{width:8.206500pt;}
._0_c00022{width:9.204109pt;}
._2_c00022{width:11.125304pt;}
._3_c00022{width:12.068162pt;}
._c_c00022{width:13.265458pt;}
._a_c00022{width:16.033429pt;}
.fs0_c00022{font-size:58.879976pt;}
.y0_c00022{bottom:0.000000pt;}
.y37_c00022{bottom:104.106892pt;}
.y36_c00022{bottom:121.066885pt;}
.y35_c00022{bottom:137.866612pt;}
.y34_c00022{bottom:154.666605pt;}
.y33_c00022{bottom:171.626598pt;}
.y32_c00022{bottom:188.426591pt;}
.y31_c00022{bottom:205.386585pt;}
.y30_c00022{bottom:222.186578pt;}
.y2f_c00022{bottom:238.986571pt;}
.y2e_c00022{bottom:255.946564pt;}
.y2d_c00022{bottom:272.746558pt;}
.y2c_c00022{bottom:289.706551pt;}
.y2b_c00022{bottom:306.506544pt;}
.y2a_c00022{bottom:323.306537pt;}
.y29_c00022{bottom:340.266531pt;}
.y28_c00022{bottom:357.066524pt;}
.y27_c00022{bottom:374.026517pt;}
.y26_c00022{bottom:390.826510pt;}
.y25_c00022{bottom:407.626504pt;}
.y24_c00022{bottom:424.586497pt;}
.y23_c00022{bottom:441.386490pt;}
.y22_c00022{bottom:458.346483pt;}
.y21_c00022{bottom:475.146477pt;}
.y20_c00022{bottom:492.106470pt;}
.y1f_c00022{bottom:508.906463pt;}
.y1e_c00022{bottom:525.706456pt;}
.y1d_c00022{bottom:542.666450pt;}
.y1c_c00022{bottom:559.466443pt;}
.y1b_c00022{bottom:576.426436pt;}
.y1a_c00022{bottom:593.226429pt;}
.y19_c00022{bottom:610.026423pt;}
.y18_c00022{bottom:626.986416pt;}
.y17_c00022{bottom:643.786409pt;}
.y16_c00022{bottom:660.746402pt;}
.y15_c00022{bottom:677.546396pt;}
.y14_c00022{bottom:694.346389pt;}
.y13_c00022{bottom:711.306382pt;}
.y12_c00022{bottom:728.106375pt;}
.y11_c00022{bottom:745.066369pt;}
.y10_c00022{bottom:761.866362pt;}
.yf_c00022{bottom:778.666355pt;}
.ye_c00022{bottom:795.626348pt;}
.yd_c00022{bottom:812.426342pt;}
.yc_c00022{bottom:829.386335pt;}
.yb_c00022{bottom:846.186328pt;}
.ya_c00022{bottom:862.986321pt;}
.y9_c00022{bottom:879.946315pt;}
.y8_c00022{bottom:896.746308pt;}
.y7_c00022{bottom:913.706301pt;}
.y6_c00022{bottom:930.506294pt;}
.y5_c00022{bottom:947.466288pt;}
.y4_c00022{bottom:964.266281pt;}
.y3_c00022{bottom:981.066274pt;}
.y2_c00022{bottom:998.026267pt;}
.y1_c00022{bottom:1014.826261pt;}
.h1_c00022{height:57.787477pt;}
.h0_c00022{height:1122.666667pt;}
.w0_c00022{width:793.333333pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6809cea96bcfc86e3573fe1.woff2')format("woff");}.ff1_c00023{font-family:ff1_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:ff2_c00023;src:url('chunks/assets/font_67fee5ced0ed6fea86d6f604.woff2')format("woff");}.ff2_c00023{font-family:ff2_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;}
.m0_c00023{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.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:-16.559993px;}
.ws1_c00023{word-spacing:0.000000px;}
._1_c00023{margin-left:-1.755429px;}
._0_c00023{width:1.068419px;}
._6_c00023{width:3.150343px;}
._7_c00023{width:4.307912px;}
._2_c00023{width:5.311634px;}
._a_c00023{width:7.283673px;}
._3_c00023{width:8.913771px;}
._4_c00023{width:9.948906px;}
._b_c00023{width:11.291495px;}
._8_c00023{width:13.236393px;}
._9_c00023{width:14.394430px;}
._c_c00023{width:15.491149px;}
._5_c00023{width:17.648208px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:66.239974px;}
.y0_c00023{bottom:0.000000px;}
.y37_c00023{bottom:117.119953px;}
.y36_c00023{bottom:136.199946px;}
.y35_c00023{bottom:155.099938px;}
.y34_c00023{bottom:173.999930px;}
.y33_c00023{bottom:193.079923px;}
.y32_c00023{bottom:211.979915px;}
.y31_c00023{bottom:231.059908px;}
.y30_c00023{bottom:249.959900px;}
.y2f_c00023{bottom:268.859892px;}
.y2e_c00023{bottom:287.939885px;}
.y2d_c00023{bottom:306.839877px;}
.y2c_c00023{bottom:325.919870px;}
.y2b_c00023{bottom:344.819862px;}
.y2a_c00023{bottom:363.719855px;}
.y29_c00023{bottom:382.799847px;}
.y28_c00023{bottom:401.699839px;}
.y27_c00023{bottom:420.779832px;}
.y26_c00023{bottom:439.679824px;}
.y25_c00023{bottom:458.579817px;}
.y24_c00023{bottom:477.659809px;}
.y23_c00023{bottom:496.559801px;}
.y22_c00023{bottom:515.639794px;}
.y21_c00023{bottom:534.539786px;}
.y20_c00023{bottom:553.619779px;}
.y1f_c00023{bottom:572.519771px;}
.y1e_c00023{bottom:591.419763px;}
.y1d_c00023{bottom:610.499756px;}
.y1c_c00023{bottom:629.399748px;}
.y1b_c00023{bottom:648.479741px;}
.y1a_c00023{bottom:667.379733px;}
.y19_c00023{bottom:686.279725px;}
.y18_c00023{bottom:705.359718px;}
.y17_c00023{bottom:724.259710px;}
.y16_c00023{bottom:743.339703px;}
.y15_c00023{bottom:762.239695px;}
.y14_c00023{bottom:781.139688px;}
.y13_c00023{bottom:800.219680px;}
.y12_c00023{bottom:819.119672px;}
.y11_c00023{bottom:838.199665px;}
.y10_c00023{bottom:857.099657px;}
.yf_c00023{bottom:875.999650px;}
.ye_c00023{bottom:895.079642px;}
.yd_c00023{bottom:913.979634px;}
.yc_c00023{bottom:933.059627px;}
.yb_c00023{bottom:951.959619px;}
.ya_c00023{bottom:970.859612px;}
.y9_c00023{bottom:989.939604px;}
.y8_c00023{bottom:1008.839596px;}
.y7_c00023{bottom:1027.919589px;}
.y6_c00023{bottom:1046.819581px;}
.y5_c00023{bottom:1065.899574px;}
.y4_c00023{bottom:1084.799566px;}
.y3_c00023{bottom:1103.699559px;}
.y2_c00023{bottom:1122.779551px;}
.y1_c00023{bottom:1141.679543px;}
.h1_c00023{height:65.010911px;}
.h0_c00023{height:1263.000000px;}
.w0_c00023{width:892.500000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:127.619949px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:-14.719994pt;}
.ws1_c00023{word-spacing:0.000000pt;}
._1_c00023{margin-left:-1.560381pt;}
._0_c00023{width:0.949706pt;}
._6_c00023{width:2.800305pt;}
._7_c00023{width:3.829255pt;}
._2_c00023{width:4.721453pt;}
._a_c00023{width:6.474376pt;}
._3_c00023{width:7.923352pt;}
._4_c00023{width:8.843472pt;}
._b_c00023{width:10.036885pt;}
._8_c00023{width:11.765682pt;}
._9_c00023{width:12.795049pt;}
._c_c00023{width:13.769910pt;}
._5_c00023{width:15.687296pt;}
.fs0_c00023{font-size:58.879976pt;}
.y0_c00023{bottom:0.000000pt;}
.y37_c00023{bottom:104.106625pt;}
.y36_c00023{bottom:121.066618pt;}
.y35_c00023{bottom:137.866612pt;}
.y34_c00023{bottom:154.666605pt;}
.y33_c00023{bottom:171.626598pt;}
.y32_c00023{bottom:188.426591pt;}
.y31_c00023{bottom:205.386585pt;}
.y30_c00023{bottom:222.186578pt;}
.y2f_c00023{bottom:238.986571pt;}
.y2e_c00023{bottom:255.946564pt;}
.y2d_c00023{bottom:272.746558pt;}
.y2c_c00023{bottom:289.706551pt;}
.y2b_c00023{bottom:306.506544pt;}
.y2a_c00023{bottom:323.306537pt;}
.y29_c00023{bottom:340.266531pt;}
.y28_c00023{bottom:357.066524pt;}
.y27_c00023{bottom:374.026517pt;}
.y26_c00023{bottom:390.826510pt;}
.y25_c00023{bottom:407.626504pt;}
.y24_c00023{bottom:424.586497pt;}
.y23_c00023{bottom:441.386490pt;}
.y22_c00023{bottom:458.346483pt;}
.y21_c00023{bottom:475.146477pt;}
.y20_c00023{bottom:492.106470pt;}
.y1f_c00023{bottom:508.906463pt;}
.y1e_c00023{bottom:525.706456pt;}
.y1d_c00023{bottom:542.666450pt;}
.y1c_c00023{bottom:559.466443pt;}
.y1b_c00023{bottom:576.426436pt;}
.y1a_c00023{bottom:593.226429pt;}
.y19_c00023{bottom:610.026423pt;}
.y18_c00023{bottom:626.986416pt;}
.y17_c00023{bottom:643.786409pt;}
.y16_c00023{bottom:660.746402pt;}
.y15_c00023{bottom:677.546396pt;}
.y14_c00023{bottom:694.346389pt;}
.y13_c00023{bottom:711.306382pt;}
.y12_c00023{bottom:728.106375pt;}
.y11_c00023{bottom:745.066369pt;}
.y10_c00023{bottom:761.866362pt;}
.yf_c00023{bottom:778.666355pt;}
.ye_c00023{bottom:795.626348pt;}
.yd_c00023{bottom:812.426342pt;}
.yc_c00023{bottom:829.386335pt;}
.yb_c00023{bottom:846.186328pt;}
.ya_c00023{bottom:862.986321pt;}
.y9_c00023{bottom:879.946315pt;}
.y8_c00023{bottom:896.746308pt;}
.y7_c00023{bottom:913.706301pt;}
.y6_c00023{bottom:930.506294pt;}
.y5_c00023{bottom:947.466288pt;}
.y4_c00023{bottom:964.266281pt;}
.y3_c00023{bottom:981.066274pt;}
.y2_c00023{bottom:998.026267pt;}
.y1_c00023{bottom:1014.826261pt;}
.h1_c00023{height:57.787477pt;}
.h0_c00023{height:1122.666667pt;}
.w0_c00023{width:793.333333pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe13f4a953c82f5f2c1c897b.woff2')format("woff");}.ff1_c00024{font-family:ff1_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;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_3ead08c9494c8d6e8380a91d.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284180;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls2_c00024{letter-spacing:0.000000px;}
.ls1_c00024{letter-spacing:3.612059px;}
.ls0_c00024{letter-spacing:14.418534px;}
.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;}
._0_c00024{margin-left:-1.537866px;}
._1_c00024{width:1.001900px;}
._4_c00024{width:3.150343px;}
._a_c00024{width:4.274464px;}
._2_c00024{width:5.311634px;}
._3_c00024{width:6.382309px;}
._5_c00024{width:7.653833px;}
._6_c00024{width:10.354623px;}
._7_c00024{width:11.581027px;}
._b_c00024{width:12.677326px;}
._8_c00024{width:13.956819px;}
._9_c00024{width:15.136747px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:66.239974px;}
.y0_c00024{bottom:0.000000px;}
.y37_c00024{bottom:117.119953px;}
.y36_c00024{bottom:136.199946px;}
.y35_c00024{bottom:155.099938px;}
.y34_c00024{bottom:173.999930px;}
.y33_c00024{bottom:193.079923px;}
.y32_c00024{bottom:211.979915px;}
.y31_c00024{bottom:231.059908px;}
.y30_c00024{bottom:249.959900px;}
.y2f_c00024{bottom:268.859892px;}
.y2e_c00024{bottom:287.939885px;}
.y2d_c00024{bottom:306.839877px;}
.y2c_c00024{bottom:325.919870px;}
.y2b_c00024{bottom:344.819862px;}
.y2a_c00024{bottom:363.719855px;}
.y29_c00024{bottom:382.799847px;}
.y28_c00024{bottom:401.699839px;}
.y27_c00024{bottom:420.779832px;}
.y26_c00024{bottom:439.679824px;}
.y25_c00024{bottom:458.579817px;}
.y24_c00024{bottom:477.659809px;}
.y23_c00024{bottom:496.559801px;}
.y22_c00024{bottom:515.639794px;}
.y21_c00024{bottom:534.539786px;}
.y20_c00024{bottom:553.619779px;}
.y1f_c00024{bottom:572.519771px;}
.y1e_c00024{bottom:591.419763px;}
.y1d_c00024{bottom:610.499756px;}
.y1c_c00024{bottom:629.399748px;}
.y1b_c00024{bottom:648.479741px;}
.y1a_c00024{bottom:667.379733px;}
.y19_c00024{bottom:686.279725px;}
.y18_c00024{bottom:705.359718px;}
.y17_c00024{bottom:724.259710px;}
.y16_c00024{bottom:743.339703px;}
.y15_c00024{bottom:762.239695px;}
.y14_c00024{bottom:781.139688px;}
.y13_c00024{bottom:800.219680px;}
.y12_c00024{bottom:819.119672px;}
.y11_c00024{bottom:838.199665px;}
.y10_c00024{bottom:857.099657px;}
.yf_c00024{bottom:875.999650px;}
.ye_c00024{bottom:895.079642px;}
.yd_c00024{bottom:913.979634px;}
.yc_c00024{bottom:933.059627px;}
.yb_c00024{bottom:951.959619px;}
.ya_c00024{bottom:970.859612px;}
.y9_c00024{bottom:989.939604px;}
.y8_c00024{bottom:1008.839596px;}
.y7_c00024{bottom:1027.919589px;}
.y6_c00024{bottom:1046.819581px;}
.y5_c00024{bottom:1065.899574px;}
.y4_c00024{bottom:1084.799566px;}
.y3_c00024{bottom:1103.699559px;}
.y2_c00024{bottom:1122.779551px;}
.y1_c00024{bottom:1141.679543px;}
.h1_c00024{height:65.010911px;}
.h0_c00024{height:1263.000000px;}
.w0_c00024{width:892.500000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:127.619949px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls2_c00024{letter-spacing:0.000000pt;}
.ls1_c00024{letter-spacing:3.210719pt;}
.ls0_c00024{letter-spacing:12.816475pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._0_c00024{margin-left:-1.366992pt;}
._1_c00024{width:0.890578pt;}
._4_c00024{width:2.800305pt;}
._a_c00024{width:3.799523pt;}
._2_c00024{width:4.721453pt;}
._3_c00024{width:5.673163pt;}
._5_c00024{width:6.803407pt;}
._6_c00024{width:9.204109pt;}
._7_c00024{width:10.294246pt;}
._b_c00024{width:11.268735pt;}
._8_c00024{width:12.406061pt;}
._9_c00024{width:13.454887pt;}
.fs0_c00024{font-size:58.879976pt;}
.y0_c00024{bottom:0.000000pt;}
.y37_c00024{bottom:104.106625pt;}
.y36_c00024{bottom:121.066618pt;}
.y35_c00024{bottom:137.866612pt;}
.y34_c00024{bottom:154.666605pt;}
.y33_c00024{bottom:171.626598pt;}
.y32_c00024{bottom:188.426591pt;}
.y31_c00024{bottom:205.386585pt;}
.y30_c00024{bottom:222.186578pt;}
.y2f_c00024{bottom:238.986571pt;}
.y2e_c00024{bottom:255.946564pt;}
.y2d_c00024{bottom:272.746558pt;}
.y2c_c00024{bottom:289.706551pt;}
.y2b_c00024{bottom:306.506544pt;}
.y2a_c00024{bottom:323.306537pt;}
.y29_c00024{bottom:340.266531pt;}
.y28_c00024{bottom:357.066524pt;}
.y27_c00024{bottom:374.026517pt;}
.y26_c00024{bottom:390.826510pt;}
.y25_c00024{bottom:407.626504pt;}
.y24_c00024{bottom:424.586497pt;}
.y23_c00024{bottom:441.386490pt;}
.y22_c00024{bottom:458.346483pt;}
.y21_c00024{bottom:475.146477pt;}
.y20_c00024{bottom:492.106470pt;}
.y1f_c00024{bottom:508.906463pt;}
.y1e_c00024{bottom:525.706456pt;}
.y1d_c00024{bottom:542.666450pt;}
.y1c_c00024{bottom:559.466443pt;}
.y1b_c00024{bottom:576.426436pt;}
.y1a_c00024{bottom:593.226429pt;}
.y19_c00024{bottom:610.026423pt;}
.y18_c00024{bottom:626.986416pt;}
.y17_c00024{bottom:643.786409pt;}
.y16_c00024{bottom:660.746402pt;}
.y15_c00024{bottom:677.546396pt;}
.y14_c00024{bottom:694.346389pt;}
.y13_c00024{bottom:711.306382pt;}
.y12_c00024{bottom:728.106375pt;}
.y11_c00024{bottom:745.066369pt;}
.y10_c00024{bottom:761.866362pt;}
.yf_c00024{bottom:778.666355pt;}
.ye_c00024{bottom:795.626348pt;}
.yd_c00024{bottom:812.426342pt;}
.yc_c00024{bottom:829.386335pt;}
.yb_c00024{bottom:846.186328pt;}
.ya_c00024{bottom:862.986321pt;}
.y9_c00024{bottom:879.946315pt;}
.y8_c00024{bottom:896.746308pt;}
.y7_c00024{bottom:913.706301pt;}
.y6_c00024{bottom:930.506294pt;}
.y5_c00024{bottom:947.466288pt;}
.y4_c00024{bottom:964.266281pt;}
.y3_c00024{bottom:981.066274pt;}
.y2_c00024{bottom:998.026267pt;}
.y1_c00024{bottom:1014.826261pt;}
.h1_c00024{height:57.787477pt;}
.h0_c00024{height:1122.666667pt;}
.w0_c00024{width:793.333333pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15c5ecb13ae63163303ffc48.woff2')format("woff");}.ff1_c00025{font-family:ff1_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:ff2_c00025;src:url('chunks/assets/font_fded2db1840bb51b7d70bd52.woff2')format("woff");}.ff2_c00025{font-family:ff2_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;}
.m0_c00025{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.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:-16.559993px;}
.ws1_c00025{word-spacing:0.000000px;}
._2_c00025{margin-left:-1.089300px;}
._1_c00025{width:1.141506px;}
._0_c00025{width:3.150343px;}
._3_c00025{width:4.535631px;}
._c_c00025{width:6.563223px;}
._7_c00025{width:8.193345px;}
._8_c00025{width:9.225080px;}
._b_c00025{width:11.075049px;}
._9_c00025{width:12.515967px;}
._a_c00025{width:13.586501px;}
._4_c00025{width:14.677245px;}
._5_c00025{width:18.999800px;}
._6_c00025{width:20.382469px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:66.239974px;}
.y0_c00025{bottom:0.000000px;}
.y37_c00025{bottom:117.120253px;}
.y36_c00025{bottom:136.200246px;}
.y35_c00025{bottom:155.099938px;}
.y34_c00025{bottom:173.999930px;}
.y33_c00025{bottom:193.079923px;}
.y32_c00025{bottom:211.979915px;}
.y31_c00025{bottom:231.059908px;}
.y30_c00025{bottom:249.959900px;}
.y2f_c00025{bottom:268.859892px;}
.y2e_c00025{bottom:287.939885px;}
.y2d_c00025{bottom:306.839877px;}
.y2c_c00025{bottom:325.919870px;}
.y2b_c00025{bottom:344.819862px;}
.y2a_c00025{bottom:363.719855px;}
.y29_c00025{bottom:382.799847px;}
.y28_c00025{bottom:401.699839px;}
.y27_c00025{bottom:420.779832px;}
.y26_c00025{bottom:439.679824px;}
.y25_c00025{bottom:458.579817px;}
.y24_c00025{bottom:477.659809px;}
.y23_c00025{bottom:496.559801px;}
.y22_c00025{bottom:515.639794px;}
.y21_c00025{bottom:534.539786px;}
.y20_c00025{bottom:553.619779px;}
.y1f_c00025{bottom:572.519771px;}
.y1e_c00025{bottom:591.419763px;}
.y1d_c00025{bottom:610.499756px;}
.y1c_c00025{bottom:629.399748px;}
.y1b_c00025{bottom:648.479741px;}
.y1a_c00025{bottom:667.379733px;}
.y19_c00025{bottom:686.279725px;}
.y18_c00025{bottom:705.359718px;}
.y17_c00025{bottom:724.259710px;}
.y16_c00025{bottom:743.339703px;}
.y15_c00025{bottom:762.239695px;}
.y14_c00025{bottom:781.139688px;}
.y13_c00025{bottom:800.219680px;}
.y12_c00025{bottom:819.119672px;}
.y11_c00025{bottom:838.199665px;}
.y10_c00025{bottom:857.099657px;}
.yf_c00025{bottom:875.999650px;}
.ye_c00025{bottom:895.079642px;}
.yd_c00025{bottom:913.979634px;}
.yc_c00025{bottom:933.059627px;}
.yb_c00025{bottom:951.959619px;}
.ya_c00025{bottom:970.859612px;}
.y9_c00025{bottom:989.939604px;}
.y8_c00025{bottom:1008.839596px;}
.y7_c00025{bottom:1027.919589px;}
.y6_c00025{bottom:1046.819581px;}
.y5_c00025{bottom:1065.899574px;}
.y4_c00025{bottom:1084.799566px;}
.y3_c00025{bottom:1103.699559px;}
.y2_c00025{bottom:1122.779551px;}
.y1_c00025{bottom:1141.679543px;}
.h1_c00025{height:65.010911px;}
.h0_c00025{height:1263.000000px;}
.w0_c00025{width:892.500000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:127.619949px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:-14.719994pt;}
.ws1_c00025{word-spacing:0.000000pt;}
._2_c00025{margin-left:-0.968266pt;}
._1_c00025{width:1.014672pt;}
._0_c00025{width:2.800305pt;}
._3_c00025{width:4.031672pt;}
._c_c00025{width:5.833976pt;}
._7_c00025{width:7.282973pt;}
._8_c00025{width:8.200071pt;}
._b_c00025{width:9.844488pt;}
._9_c00025{width:11.125304pt;}
._a_c00025{width:12.076890pt;}
._4_c00025{width:13.046440pt;}
._5_c00025{width:16.888711pt;}
._6_c00025{width:18.117750pt;}
.fs0_c00025{font-size:58.879976pt;}
.y0_c00025{bottom:0.000000pt;}
.y37_c00025{bottom:104.106892pt;}
.y36_c00025{bottom:121.066885pt;}
.y35_c00025{bottom:137.866612pt;}
.y34_c00025{bottom:154.666605pt;}
.y33_c00025{bottom:171.626598pt;}
.y32_c00025{bottom:188.426591pt;}
.y31_c00025{bottom:205.386585pt;}
.y30_c00025{bottom:222.186578pt;}
.y2f_c00025{bottom:238.986571pt;}
.y2e_c00025{bottom:255.946564pt;}
.y2d_c00025{bottom:272.746558pt;}
.y2c_c00025{bottom:289.706551pt;}
.y2b_c00025{bottom:306.506544pt;}
.y2a_c00025{bottom:323.306537pt;}
.y29_c00025{bottom:340.266531pt;}
.y28_c00025{bottom:357.066524pt;}
.y27_c00025{bottom:374.026517pt;}
.y26_c00025{bottom:390.826510pt;}
.y25_c00025{bottom:407.626504pt;}
.y24_c00025{bottom:424.586497pt;}
.y23_c00025{bottom:441.386490pt;}
.y22_c00025{bottom:458.346483pt;}
.y21_c00025{bottom:475.146477pt;}
.y20_c00025{bottom:492.106470pt;}
.y1f_c00025{bottom:508.906463pt;}
.y1e_c00025{bottom:525.706456pt;}
.y1d_c00025{bottom:542.666450pt;}
.y1c_c00025{bottom:559.466443pt;}
.y1b_c00025{bottom:576.426436pt;}
.y1a_c00025{bottom:593.226429pt;}
.y19_c00025{bottom:610.026423pt;}
.y18_c00025{bottom:626.986416pt;}
.y17_c00025{bottom:643.786409pt;}
.y16_c00025{bottom:660.746402pt;}
.y15_c00025{bottom:677.546396pt;}
.y14_c00025{bottom:694.346389pt;}
.y13_c00025{bottom:711.306382pt;}
.y12_c00025{bottom:728.106375pt;}
.y11_c00025{bottom:745.066369pt;}
.y10_c00025{bottom:761.866362pt;}
.yf_c00025{bottom:778.666355pt;}
.ye_c00025{bottom:795.626348pt;}
.yd_c00025{bottom:812.426342pt;}
.yc_c00025{bottom:829.386335pt;}
.yb_c00025{bottom:846.186328pt;}
.ya_c00025{bottom:862.986321pt;}
.y9_c00025{bottom:879.946315pt;}
.y8_c00025{bottom:896.746308pt;}
.y7_c00025{bottom:913.706301pt;}
.y6_c00025{bottom:930.506294pt;}
.y5_c00025{bottom:947.466288pt;}
.y4_c00025{bottom:964.266281pt;}
.y3_c00025{bottom:981.066274pt;}
.y2_c00025{bottom:998.026267pt;}
.y1_c00025{bottom:1014.826261pt;}
.h1_c00025{height:57.787477pt;}
.h0_c00025{height:1122.666667pt;}
.w0_c00025{width:793.333333pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e034d109b0c4e2156a52a3c7.woff2')format("woff");}.ff1_c00026{font-family:ff1_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:ff2_c00026;src:url('chunks/assets/font_1753b4b2d5016e1b86c17960.woff2')format("woff");}.ff2_c00026{font-family:ff2_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;}
.m0_c00026{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls0_c00026{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00026{word-spacing:-16.559993px;}
.ws1_c00026{word-spacing:0.000000px;}
._0_c00026{margin-left:-1.437431px;}
._1_c00026{width:1.029532px;}
._9_c00026{width:2.429911px;}
._a_c00026{width:3.588085px;}
._2_c00026{width:4.591202px;}
._3_c00026{width:5.633768px;}
._4_c00026{width:6.752493px;}
._8_c00026{width:8.193345px;}
._5_c00026{width:9.634197px;}
._6_c00026{width:10.837166px;}
._b_c00026{width:13.956819px;}
._7_c00026{width:15.397671px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:66.239974px;}
.y0_c00026{bottom:0.000000px;}
.y37_c00026{bottom:117.120253px;}
.y36_c00026{bottom:136.200246px;}
.y35_c00026{bottom:155.099938px;}
.y34_c00026{bottom:173.999930px;}
.y33_c00026{bottom:193.079923px;}
.y32_c00026{bottom:211.979915px;}
.y31_c00026{bottom:231.059908px;}
.y30_c00026{bottom:249.959900px;}
.y2f_c00026{bottom:268.859892px;}
.y2e_c00026{bottom:287.939885px;}
.y2d_c00026{bottom:306.839877px;}
.y2c_c00026{bottom:325.919870px;}
.y2b_c00026{bottom:344.819862px;}
.y2a_c00026{bottom:363.719855px;}
.y29_c00026{bottom:382.799847px;}
.y28_c00026{bottom:401.699839px;}
.y27_c00026{bottom:420.779832px;}
.y26_c00026{bottom:439.679824px;}
.y25_c00026{bottom:458.579817px;}
.y24_c00026{bottom:477.659809px;}
.y23_c00026{bottom:496.559801px;}
.y22_c00026{bottom:515.639794px;}
.y21_c00026{bottom:534.539786px;}
.y20_c00026{bottom:553.619779px;}
.y1f_c00026{bottom:572.519771px;}
.y1e_c00026{bottom:591.419763px;}
.y1d_c00026{bottom:610.499756px;}
.y1c_c00026{bottom:629.399748px;}
.y1b_c00026{bottom:648.479741px;}
.y1a_c00026{bottom:667.379733px;}
.y19_c00026{bottom:686.279725px;}
.y18_c00026{bottom:705.359718px;}
.y17_c00026{bottom:724.259710px;}
.y16_c00026{bottom:743.339703px;}
.y15_c00026{bottom:762.239695px;}
.y14_c00026{bottom:781.139688px;}
.y13_c00026{bottom:800.219680px;}
.y12_c00026{bottom:819.119672px;}
.y11_c00026{bottom:838.199665px;}
.y10_c00026{bottom:857.099657px;}
.yf_c00026{bottom:875.999650px;}
.ye_c00026{bottom:895.079642px;}
.yd_c00026{bottom:913.979634px;}
.yc_c00026{bottom:933.059627px;}
.yb_c00026{bottom:951.959619px;}
.ya_c00026{bottom:970.859612px;}
.y9_c00026{bottom:989.939604px;}
.y8_c00026{bottom:1008.839596px;}
.y7_c00026{bottom:1027.919589px;}
.y6_c00026{bottom:1046.819581px;}
.y5_c00026{bottom:1065.899574px;}
.y4_c00026{bottom:1084.799566px;}
.y3_c00026{bottom:1103.699559px;}
.y2_c00026{bottom:1122.779551px;}
.y1_c00026{bottom:1141.679543px;}
.h1_c00026{height:65.010911px;}
.h0_c00026{height:1263.000000px;}
.w0_c00026{width:892.500000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:127.619949px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:-14.719994pt;}
.ws1_c00026{word-spacing:0.000000pt;}
._0_c00026{margin-left:-1.277716pt;}
._1_c00026{width:0.915140pt;}
._9_c00026{width:2.159921pt;}
._a_c00026{width:3.189409pt;}
._2_c00026{width:4.081068pt;}
._3_c00026{width:5.007793pt;}
._4_c00026{width:6.002216pt;}
._8_c00026{width:7.282973pt;}
._5_c00026{width:8.563730pt;}
._6_c00026{width:9.633036pt;}
._b_c00026{width:12.406061pt;}
._7_c00026{width:13.686818pt;}
.fs0_c00026{font-size:58.879976pt;}
.y0_c00026{bottom:0.000000pt;}
.y37_c00026{bottom:104.106892pt;}
.y36_c00026{bottom:121.066885pt;}
.y35_c00026{bottom:137.866612pt;}
.y34_c00026{bottom:154.666605pt;}
.y33_c00026{bottom:171.626598pt;}
.y32_c00026{bottom:188.426591pt;}
.y31_c00026{bottom:205.386585pt;}
.y30_c00026{bottom:222.186578pt;}
.y2f_c00026{bottom:238.986571pt;}
.y2e_c00026{bottom:255.946564pt;}
.y2d_c00026{bottom:272.746558pt;}
.y2c_c00026{bottom:289.706551pt;}
.y2b_c00026{bottom:306.506544pt;}
.y2a_c00026{bottom:323.306537pt;}
.y29_c00026{bottom:340.266531pt;}
.y28_c00026{bottom:357.066524pt;}
.y27_c00026{bottom:374.026517pt;}
.y26_c00026{bottom:390.826510pt;}
.y25_c00026{bottom:407.626504pt;}
.y24_c00026{bottom:424.586497pt;}
.y23_c00026{bottom:441.386490pt;}
.y22_c00026{bottom:458.346483pt;}
.y21_c00026{bottom:475.146477pt;}
.y20_c00026{bottom:492.106470pt;}
.y1f_c00026{bottom:508.906463pt;}
.y1e_c00026{bottom:525.706456pt;}
.y1d_c00026{bottom:542.666450pt;}
.y1c_c00026{bottom:559.466443pt;}
.y1b_c00026{bottom:576.426436pt;}
.y1a_c00026{bottom:593.226429pt;}
.y19_c00026{bottom:610.026423pt;}
.y18_c00026{bottom:626.986416pt;}
.y17_c00026{bottom:643.786409pt;}
.y16_c00026{bottom:660.746402pt;}
.y15_c00026{bottom:677.546396pt;}
.y14_c00026{bottom:694.346389pt;}
.y13_c00026{bottom:711.306382pt;}
.y12_c00026{bottom:728.106375pt;}
.y11_c00026{bottom:745.066369pt;}
.y10_c00026{bottom:761.866362pt;}
.yf_c00026{bottom:778.666355pt;}
.ye_c00026{bottom:795.626348pt;}
.yd_c00026{bottom:812.426342pt;}
.yc_c00026{bottom:829.386335pt;}
.yb_c00026{bottom:846.186328pt;}
.ya_c00026{bottom:862.986321pt;}
.y9_c00026{bottom:879.946315pt;}
.y8_c00026{bottom:896.746308pt;}
.y7_c00026{bottom:913.706301pt;}
.y6_c00026{bottom:930.506294pt;}
.y5_c00026{bottom:947.466288pt;}
.y4_c00026{bottom:964.266281pt;}
.y3_c00026{bottom:981.066274pt;}
.y2_c00026{bottom:998.026267pt;}
.y1_c00026{bottom:1014.826261pt;}
.h1_c00026{height:57.787477pt;}
.h0_c00026{height:1122.666667pt;}
.w0_c00026{width:793.333333pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebf3dec9900a8500750a5bb7.woff2')format("woff");}.ff1_c00027{font-family:ff1_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:ff2_c00027;src:url('chunks/assets/font_205213351a9cb7685a303791.woff2')format("woff");}.ff2_c00027{font-family:ff2_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:ff3_c00027;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.311035;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00027{word-spacing:-16.559993px;}
.ws1_c00027{word-spacing:0.000000px;}
._0_c00027{margin-left:-1.015129px;}
._3_c00027{width:1.709485px;}
._4_c00027{width:2.756466px;}
._9_c00027{width:4.591202px;}
._a_c00027{width:5.661882px;}
._7_c00027{width:6.752493px;}
._b_c00027{width:7.771928px;}
._1_c00027{width:8.913771px;}
._2_c00027{width:9.923669px;}
._8_c00027{width:11.316733px;}
._c_c00027{width:12.859601px;}
._5_c00027{width:13.956819px;}
._6_c00027{width:15.208334px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs0_c00027{font-size:66.239974px;}
.y0_c00027{bottom:0.000000px;}
.y37_c00027{bottom:117.119953px;}
.y36_c00027{bottom:136.199946px;}
.y35_c00027{bottom:155.099938px;}
.y34_c00027{bottom:173.999930px;}
.y33_c00027{bottom:193.079923px;}
.y32_c00027{bottom:211.979915px;}
.y31_c00027{bottom:231.059908px;}
.y30_c00027{bottom:249.959900px;}
.y2f_c00027{bottom:268.859892px;}
.y2e_c00027{bottom:287.939885px;}
.y2d_c00027{bottom:306.839877px;}
.y2c_c00027{bottom:325.919870px;}
.y2b_c00027{bottom:344.819862px;}
.y2a_c00027{bottom:363.719855px;}
.y29_c00027{bottom:382.799847px;}
.y28_c00027{bottom:401.699839px;}
.y27_c00027{bottom:420.779832px;}
.y26_c00027{bottom:439.679824px;}
.y25_c00027{bottom:458.579817px;}
.y24_c00027{bottom:477.659809px;}
.y23_c00027{bottom:496.559801px;}
.y22_c00027{bottom:515.639794px;}
.y21_c00027{bottom:534.539786px;}
.y20_c00027{bottom:553.619779px;}
.y1f_c00027{bottom:572.519771px;}
.y1e_c00027{bottom:591.419763px;}
.y1d_c00027{bottom:610.499756px;}
.y1c_c00027{bottom:629.399748px;}
.y1b_c00027{bottom:648.479741px;}
.y1a_c00027{bottom:667.379733px;}
.y19_c00027{bottom:686.279725px;}
.y18_c00027{bottom:705.359718px;}
.y17_c00027{bottom:724.259710px;}
.y16_c00027{bottom:743.339703px;}
.y15_c00027{bottom:762.239695px;}
.y14_c00027{bottom:781.139688px;}
.y13_c00027{bottom:800.219680px;}
.y12_c00027{bottom:819.119672px;}
.y11_c00027{bottom:838.199665px;}
.y10_c00027{bottom:857.099657px;}
.yf_c00027{bottom:875.999650px;}
.ye_c00027{bottom:895.079642px;}
.yd_c00027{bottom:913.979634px;}
.yc_c00027{bottom:933.059627px;}
.yb_c00027{bottom:951.959619px;}
.ya_c00027{bottom:970.859612px;}
.y9_c00027{bottom:989.939604px;}
.y8_c00027{bottom:1008.839596px;}
.y7_c00027{bottom:1027.919589px;}
.y6_c00027{bottom:1046.819581px;}
.y5_c00027{bottom:1065.899574px;}
.y4_c00027{bottom:1084.799566px;}
.y3_c00027{bottom:1103.699559px;}
.y2_c00027{bottom:1122.779551px;}
.y1_c00027{bottom:1141.679543px;}
.h1_c00027{height:65.010911px;}
.h2_c00027{height:66.757473px;}
.h0_c00027{height:1263.000000px;}
.w0_c00027{width:892.500000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:127.619949px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:-14.719994pt;}
.ws1_c00027{word-spacing:0.000000pt;}
._0_c00027{margin-left:-0.902337pt;}
._3_c00027{width:1.519542pt;}
._4_c00027{width:2.450192pt;}
._9_c00027{width:4.081068pt;}
._a_c00027{width:5.032784pt;}
._7_c00027{width:6.002216pt;}
._b_c00027{width:6.908380pt;}
._1_c00027{width:7.923352pt;}
._2_c00027{width:8.821039pt;}
._8_c00027{width:10.059318pt;}
._c_c00027{width:11.430757pt;}
._5_c00027{width:12.406061pt;}
._6_c00027{width:13.518519pt;}
.fs0_c00027{font-size:58.879976pt;}
.y0_c00027{bottom:0.000000pt;}
.y37_c00027{bottom:104.106625pt;}
.y36_c00027{bottom:121.066618pt;}
.y35_c00027{bottom:137.866612pt;}
.y34_c00027{bottom:154.666605pt;}
.y33_c00027{bottom:171.626598pt;}
.y32_c00027{bottom:188.426591pt;}
.y31_c00027{bottom:205.386585pt;}
.y30_c00027{bottom:222.186578pt;}
.y2f_c00027{bottom:238.986571pt;}
.y2e_c00027{bottom:255.946564pt;}
.y2d_c00027{bottom:272.746558pt;}
.y2c_c00027{bottom:289.706551pt;}
.y2b_c00027{bottom:306.506544pt;}
.y2a_c00027{bottom:323.306537pt;}
.y29_c00027{bottom:340.266531pt;}
.y28_c00027{bottom:357.066524pt;}
.y27_c00027{bottom:374.026517pt;}
.y26_c00027{bottom:390.826510pt;}
.y25_c00027{bottom:407.626504pt;}
.y24_c00027{bottom:424.586497pt;}
.y23_c00027{bottom:441.386490pt;}
.y22_c00027{bottom:458.346483pt;}
.y21_c00027{bottom:475.146477pt;}
.y20_c00027{bottom:492.106470pt;}
.y1f_c00027{bottom:508.906463pt;}
.y1e_c00027{bottom:525.706456pt;}
.y1d_c00027{bottom:542.666450pt;}
.y1c_c00027{bottom:559.466443pt;}
.y1b_c00027{bottom:576.426436pt;}
.y1a_c00027{bottom:593.226429pt;}
.y19_c00027{bottom:610.026423pt;}
.y18_c00027{bottom:626.986416pt;}
.y17_c00027{bottom:643.786409pt;}
.y16_c00027{bottom:660.746402pt;}
.y15_c00027{bottom:677.546396pt;}
.y14_c00027{bottom:694.346389pt;}
.y13_c00027{bottom:711.306382pt;}
.y12_c00027{bottom:728.106375pt;}
.y11_c00027{bottom:745.066369pt;}
.y10_c00027{bottom:761.866362pt;}
.yf_c00027{bottom:778.666355pt;}
.ye_c00027{bottom:795.626348pt;}
.yd_c00027{bottom:812.426342pt;}
.yc_c00027{bottom:829.386335pt;}
.yb_c00027{bottom:846.186328pt;}
.ya_c00027{bottom:862.986321pt;}
.y9_c00027{bottom:879.946315pt;}
.y8_c00027{bottom:896.746308pt;}
.y7_c00027{bottom:913.706301pt;}
.y6_c00027{bottom:930.506294pt;}
.y5_c00027{bottom:947.466288pt;}
.y4_c00027{bottom:964.266281pt;}
.y3_c00027{bottom:981.066274pt;}
.y2_c00027{bottom:998.026267pt;}
.y1_c00027{bottom:1014.826261pt;}
.h1_c00027{height:57.787477pt;}
.h2_c00027{height:59.339976pt;}
.h0_c00027{height:1122.666667pt;}
.w0_c00027{width:793.333333pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89bbd16979aab05e60fde9ac.woff2')format("woff");}.ff1_c00028{font-family:ff1_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:ff2_c00028;src:url('chunks/assets/font_9285a9154067b998b6f5f88e.woff2')format("woff");}.ff2_c00028{font-family:ff2_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;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.311035;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:0.009900px;}
.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:-16.559993px;}
.ws1_c00028{word-spacing:0.000000px;}
._0_c00028{margin-left:-1.065957px;}
._2_c00028{width:1.232878px;}
._1_c00028{width:3.150343px;}
._8_c00028{width:4.591202px;}
._5_c00028{width:6.752493px;}
._6_c00028{width:7.759290px;}
._4_c00028{width:8.913771px;}
._3_c00028{width:10.354623px;}
._9_c00028{width:11.581417px;}
._7_c00028{width:13.236393px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs0_c00028{font-size:66.239974px;}
.y0_c00028{bottom:0.000000px;}
.y37_c00028{bottom:117.119953px;}
.y36_c00028{bottom:136.199946px;}
.y35_c00028{bottom:155.099938px;}
.y34_c00028{bottom:173.999930px;}
.y33_c00028{bottom:193.079923px;}
.y32_c00028{bottom:211.979915px;}
.y31_c00028{bottom:231.059908px;}
.y30_c00028{bottom:249.959900px;}
.y2f_c00028{bottom:268.859892px;}
.y2e_c00028{bottom:287.939885px;}
.y2d_c00028{bottom:306.839877px;}
.y2c_c00028{bottom:325.919870px;}
.y2b_c00028{bottom:344.819862px;}
.y2a_c00028{bottom:363.719855px;}
.y29_c00028{bottom:382.799847px;}
.y28_c00028{bottom:401.699839px;}
.y27_c00028{bottom:420.779832px;}
.y26_c00028{bottom:439.679824px;}
.y25_c00028{bottom:458.579817px;}
.y24_c00028{bottom:477.659809px;}
.y23_c00028{bottom:496.559801px;}
.y22_c00028{bottom:515.639794px;}
.y21_c00028{bottom:534.539786px;}
.y20_c00028{bottom:553.619779px;}
.y1f_c00028{bottom:572.519771px;}
.y1e_c00028{bottom:591.419763px;}
.y1d_c00028{bottom:610.499756px;}
.y1c_c00028{bottom:629.399748px;}
.y1b_c00028{bottom:648.479741px;}
.y1a_c00028{bottom:667.379733px;}
.y19_c00028{bottom:686.279725px;}
.y18_c00028{bottom:705.359718px;}
.y17_c00028{bottom:724.259710px;}
.y16_c00028{bottom:743.339703px;}
.y15_c00028{bottom:762.239695px;}
.y14_c00028{bottom:781.139688px;}
.y13_c00028{bottom:800.219680px;}
.y12_c00028{bottom:819.119672px;}
.y11_c00028{bottom:838.199665px;}
.y10_c00028{bottom:857.099657px;}
.yf_c00028{bottom:875.999650px;}
.ye_c00028{bottom:895.079642px;}
.yd_c00028{bottom:913.979634px;}
.yc_c00028{bottom:933.059627px;}
.yb_c00028{bottom:951.959619px;}
.ya_c00028{bottom:970.859612px;}
.y9_c00028{bottom:989.939604px;}
.y8_c00028{bottom:1008.839596px;}
.y7_c00028{bottom:1027.919589px;}
.y6_c00028{bottom:1046.819581px;}
.y5_c00028{bottom:1065.899574px;}
.y4_c00028{bottom:1084.799566px;}
.y3_c00028{bottom:1103.699559px;}
.y2_c00028{bottom:1122.779551px;}
.y1_c00028{bottom:1141.679543px;}
.h1_c00028{height:65.010911px;}
.h2_c00028{height:66.757473px;}
.h0_c00028{height:1263.000000px;}
.w0_c00028{width:892.500000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:127.619949px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:0.008800pt;}
.ws0_c00028{word-spacing:-14.719994pt;}
.ws1_c00028{word-spacing:0.000000pt;}
._0_c00028{margin-left:-0.947517pt;}
._2_c00028{width:1.095891pt;}
._1_c00028{width:2.800305pt;}
._8_c00028{width:4.081068pt;}
._5_c00028{width:6.002216pt;}
._6_c00028{width:6.897147pt;}
._4_c00028{width:7.923352pt;}
._3_c00028{width:9.204109pt;}
._9_c00028{width:10.294593pt;}
._7_c00028{width:11.765682pt;}
.fs0_c00028{font-size:58.879976pt;}
.y0_c00028{bottom:0.000000pt;}
.y37_c00028{bottom:104.106625pt;}
.y36_c00028{bottom:121.066618pt;}
.y35_c00028{bottom:137.866612pt;}
.y34_c00028{bottom:154.666605pt;}
.y33_c00028{bottom:171.626598pt;}
.y32_c00028{bottom:188.426591pt;}
.y31_c00028{bottom:205.386585pt;}
.y30_c00028{bottom:222.186578pt;}
.y2f_c00028{bottom:238.986571pt;}
.y2e_c00028{bottom:255.946564pt;}
.y2d_c00028{bottom:272.746558pt;}
.y2c_c00028{bottom:289.706551pt;}
.y2b_c00028{bottom:306.506544pt;}
.y2a_c00028{bottom:323.306537pt;}
.y29_c00028{bottom:340.266531pt;}
.y28_c00028{bottom:357.066524pt;}
.y27_c00028{bottom:374.026517pt;}
.y26_c00028{bottom:390.826510pt;}
.y25_c00028{bottom:407.626504pt;}
.y24_c00028{bottom:424.586497pt;}
.y23_c00028{bottom:441.386490pt;}
.y22_c00028{bottom:458.346483pt;}
.y21_c00028{bottom:475.146477pt;}
.y20_c00028{bottom:492.106470pt;}
.y1f_c00028{bottom:508.906463pt;}
.y1e_c00028{bottom:525.706456pt;}
.y1d_c00028{bottom:542.666450pt;}
.y1c_c00028{bottom:559.466443pt;}
.y1b_c00028{bottom:576.426436pt;}
.y1a_c00028{bottom:593.226429pt;}
.y19_c00028{bottom:610.026423pt;}
.y18_c00028{bottom:626.986416pt;}
.y17_c00028{bottom:643.786409pt;}
.y16_c00028{bottom:660.746402pt;}
.y15_c00028{bottom:677.546396pt;}
.y14_c00028{bottom:694.346389pt;}
.y13_c00028{bottom:711.306382pt;}
.y12_c00028{bottom:728.106375pt;}
.y11_c00028{bottom:745.066369pt;}
.y10_c00028{bottom:761.866362pt;}
.yf_c00028{bottom:778.666355pt;}
.ye_c00028{bottom:795.626348pt;}
.yd_c00028{bottom:812.426342pt;}
.yc_c00028{bottom:829.386335pt;}
.yb_c00028{bottom:846.186328pt;}
.ya_c00028{bottom:862.986321pt;}
.y9_c00028{bottom:879.946315pt;}
.y8_c00028{bottom:896.746308pt;}
.y7_c00028{bottom:913.706301pt;}
.y6_c00028{bottom:930.506294pt;}
.y5_c00028{bottom:947.466288pt;}
.y4_c00028{bottom:964.266281pt;}
.y3_c00028{bottom:981.066274pt;}
.y2_c00028{bottom:998.026267pt;}
.y1_c00028{bottom:1014.826261pt;}
.h1_c00028{height:57.787477pt;}
.h2_c00028{height:59.339976pt;}
.h0_c00028{height:1122.666667pt;}
.w0_c00028{width:793.333333pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00029{font-family:ff1_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;}
.m0_c00029{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00029{word-spacing:0.000000px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs0_c00029{font-size:66.239974px;}
.y0_c00029{bottom:0.000000px;}
.y8_c00029{bottom:1008.839596px;}
.y7_c00029{bottom:1027.919589px;}
.y6_c00029{bottom:1046.819581px;}
.y5_c00029{bottom:1065.899574px;}
.y4_c00029{bottom:1084.799566px;}
.y3_c00029{bottom:1103.699559px;}
.y2_c00029{bottom:1122.779551px;}
.y1_c00029{bottom:1141.679543px;}
.h1_c00029{height:65.010911px;}
.h0_c00029{height:1263.000000px;}
.w0_c00029{width:892.500000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:127.619949px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs0_c00029{font-size:58.879976pt;}
.y0_c00029{bottom:0.000000pt;}
.y8_c00029{bottom:896.746308pt;}
.y7_c00029{bottom:913.706301pt;}
.y6_c00029{bottom:930.506294pt;}
.y5_c00029{bottom:947.466288pt;}
.y4_c00029{bottom:964.266281pt;}
.y3_c00029{bottom:981.066274pt;}
.y2_c00029{bottom:998.026267pt;}
.y1_c00029{bottom:1014.826261pt;}
.h1_c00029{height:57.787477pt;}
.h0_c00029{height:1122.666667pt;}
.w0_c00029{width:793.333333pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cfaee2285b7c4440645dfb0.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.311035;font-style:normal;font-weight:normal;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_40f2aa293bf4cf2cb455fd98.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;}
.m0_c00030{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00030{margin-left:-1.232700px;}
._1_c00030{width:1.010886px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:66.239974px;}
.y0_c00030{bottom:0.000000px;}
.y36_c00030{bottom:111.719955px;}
.y35_c00030{bottom:130.619948px;}
.y34_c00030{bottom:149.699940px;}
.y33_c00030{bottom:168.599933px;}
.y32_c00030{bottom:187.679925px;}
.y31_c00030{bottom:206.579917px;}
.y30_c00030{bottom:225.479910px;}
.y2f_c00030{bottom:244.559902px;}
.y2e_c00030{bottom:263.459895px;}
.y2d_c00030{bottom:282.539887px;}
.y2c_c00030{bottom:301.439879px;}
.y2b_c00030{bottom:320.339872px;}
.y2a_c00030{bottom:339.419864px;}
.y29_c00030{bottom:358.319857px;}
.y28_c00030{bottom:377.399849px;}
.y27_c00030{bottom:396.299841px;}
.y26_c00030{bottom:415.199834px;}
.y25_c00030{bottom:434.279826px;}
.y24_c00030{bottom:453.179819px;}
.y23_c00030{bottom:472.259811px;}
.y22_c00030{bottom:491.159804px;}
.y21_c00030{bottom:510.059796px;}
.y20_c00030{bottom:529.139788px;}
.y1f_c00030{bottom:548.039781px;}
.y1e_c00030{bottom:567.119773px;}
.y1d_c00030{bottom:586.019766px;}
.y1c_c00030{bottom:605.099758px;}
.y1b_c00030{bottom:623.999750px;}
.y1a_c00030{bottom:642.899743px;}
.y19_c00030{bottom:661.979735px;}
.y18_c00030{bottom:680.879728px;}
.y17_c00030{bottom:699.959720px;}
.y16_c00030{bottom:718.859712px;}
.y15_c00030{bottom:737.759705px;}
.y14_c00030{bottom:756.839697px;}
.y13_c00030{bottom:775.739690px;}
.y12_c00030{bottom:794.819682px;}
.y11_c00030{bottom:813.719675px;}
.y10_c00030{bottom:832.619667px;}
.yf_c00030{bottom:851.699659px;}
.ye_c00030{bottom:870.599652px;}
.yd_c00030{bottom:889.679644px;}
.yc_c00030{bottom:908.579637px;}
.yb_c00030{bottom:927.479629px;}
.ya_c00030{bottom:946.559621px;}
.y9_c00030{bottom:965.459614px;}
.y8_c00030{bottom:984.539606px;}
.y7_c00030{bottom:1003.439599px;}
.y6_c00030{bottom:1022.519591px;}
.y5_c00030{bottom:1041.419583px;}
.y4_c00030{bottom:1060.319576px;}
.y3_c00030{bottom:1079.399568px;}
.y2_c00030{bottom:1098.299561px;}
.y1_c00030{bottom:1141.499543px;}
.h2_c00030{height:65.010911px;}
.h1_c00030{height:66.757473px;}
.h0_c00030{height:1263.000000px;}
.w0_c00030{width:892.500000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:127.619949px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
._0_c00030{margin-left:-1.095734pt;}
._1_c00030{width:0.898566pt;}
.fs0_c00030{font-size:58.879976pt;}
.y0_c00030{bottom:0.000000pt;}
.y36_c00030{bottom:99.306627pt;}
.y35_c00030{bottom:116.106620pt;}
.y34_c00030{bottom:133.066613pt;}
.y33_c00030{bottom:149.866607pt;}
.y32_c00030{bottom:166.826600pt;}
.y31_c00030{bottom:183.626593pt;}
.y30_c00030{bottom:200.426586pt;}
.y2f_c00030{bottom:217.386580pt;}
.y2e_c00030{bottom:234.186573pt;}
.y2d_c00030{bottom:251.146566pt;}
.y2c_c00030{bottom:267.946559pt;}
.y2b_c00030{bottom:284.746553pt;}
.y2a_c00030{bottom:301.706546pt;}
.y29_c00030{bottom:318.506539pt;}
.y28_c00030{bottom:335.466532pt;}
.y27_c00030{bottom:352.266526pt;}
.y26_c00030{bottom:369.066519pt;}
.y25_c00030{bottom:386.026512pt;}
.y24_c00030{bottom:402.826506pt;}
.y23_c00030{bottom:419.786499pt;}
.y22_c00030{bottom:436.586492pt;}
.y21_c00030{bottom:453.386485pt;}
.y20_c00030{bottom:470.346479pt;}
.y1f_c00030{bottom:487.146472pt;}
.y1e_c00030{bottom:504.106465pt;}
.y1d_c00030{bottom:520.906458pt;}
.y1c_c00030{bottom:537.866452pt;}
.y1b_c00030{bottom:554.666445pt;}
.y1a_c00030{bottom:571.466438pt;}
.y19_c00030{bottom:588.426431pt;}
.y18_c00030{bottom:605.226425pt;}
.y17_c00030{bottom:622.186418pt;}
.y16_c00030{bottom:638.986411pt;}
.y15_c00030{bottom:655.786404pt;}
.y14_c00030{bottom:672.746398pt;}
.y13_c00030{bottom:689.546391pt;}
.y12_c00030{bottom:706.506384pt;}
.y11_c00030{bottom:723.306377pt;}
.y10_c00030{bottom:740.106371pt;}
.yf_c00030{bottom:757.066364pt;}
.ye_c00030{bottom:773.866357pt;}
.yd_c00030{bottom:790.826350pt;}
.yc_c00030{bottom:807.626344pt;}
.yb_c00030{bottom:824.426337pt;}
.ya_c00030{bottom:841.386330pt;}
.y9_c00030{bottom:858.186323pt;}
.y8_c00030{bottom:875.146317pt;}
.y7_c00030{bottom:891.946310pt;}
.y6_c00030{bottom:908.906303pt;}
.y5_c00030{bottom:925.706296pt;}
.y4_c00030{bottom:942.506290pt;}
.y3_c00030{bottom:959.466283pt;}
.y2_c00030{bottom:976.266276pt;}
.y1_c00030{bottom:1014.666261pt;}
.h2_c00030{height:57.787477pt;}
.h1_c00030{height:59.339976pt;}
.h0_c00030{height:1122.666667pt;}
.w0_c00030{width:793.333333pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ac06a992ec29bd1f2d7e9e3.woff2')format("woff");}.ff1_c00031{font-family:ff1_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;}
.m0_c00031{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00031{margin-left:-1.306393px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:66.239974px;}
.y0_c00031{bottom:0.000000px;}
.ya_c00031{bottom:971.039612px;}
.y9_c00031{bottom:989.939604px;}
.y8_c00031{bottom:1009.019596px;}
.y7_c00031{bottom:1027.919589px;}
.y6_c00031{bottom:1046.999581px;}
.y5_c00031{bottom:1065.899574px;}
.y4_c00031{bottom:1084.799566px;}
.y3_c00031{bottom:1103.879558px;}
.y2_c00031{bottom:1122.779551px;}
.y1_c00031{bottom:1141.859543px;}
.h1_c00031{height:65.010911px;}
.h0_c00031{height:1263.000000px;}
.w0_c00031{width:892.500000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:127.619949px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
._0_c00031{margin-left:-1.161238pt;}
.fs0_c00031{font-size:58.879976pt;}
.y0_c00031{bottom:0.000000pt;}
.ya_c00031{bottom:863.146321pt;}
.y9_c00031{bottom:879.946315pt;}
.y8_c00031{bottom:896.906308pt;}
.y7_c00031{bottom:913.706301pt;}
.y6_c00031{bottom:930.666294pt;}
.y5_c00031{bottom:947.466288pt;}
.y4_c00031{bottom:964.266281pt;}
.y3_c00031{bottom:981.226274pt;}
.y2_c00031{bottom:998.026267pt;}
.y1_c00031{bottom:1014.986261pt;}
.h1_c00031{height:57.787477pt;}
.h0_c00031{height:1122.666667pt;}
.w0_c00031{width:793.333333pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_792b194aa2c508cff29604a1.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.311035;font-style:normal;font-weight:normal;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_ca012afe5c3af2c8b5bbe260.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_783ee83414153b58815c0a0f.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:0.666504;font-style: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.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00032{margin-left:-1.232700px;}
._3_c00032{width:1.092439px;}
._4_c00032{width:2.866408px;}
._5_c00032{width:5.325222px;}
._6_c00032{width:6.336284px;}
._1_c00032{width:19.733713px;}
._2_c00032{width:20.891302px;}
._7_c00032{width:22.615439px;}
._8_c00032{width:23.653784px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs0_c00032{font-size:66.239974px;}
.fs1_c00032{font-size:71.999971px;}
.y0_c00032{bottom:0.000000px;}
.y1a_c00032{bottom:154.739938px;}
.y19_c00032{bottom:202.619919px;}
.y18_c00032{bottom:250.679900px;}
.y17_c00032{bottom:298.559881px;}
.y16_c00032{bottom:346.439861px;}
.y15_c00032{bottom:394.499842px;}
.y14_c00032{bottom:442.379823px;}
.y13_c00032{bottom:490.439804px;}
.y12_c00032{bottom:538.319785px;}
.y11_c00032{bottom:586.379765px;}
.y10_c00032{bottom:632.999747px;}
.yf_c00032{bottom:679.079728px;}
.ye_c00032{bottom:710.219716px;}
.yd_c00032{bottom:756.299697px;}
.yc_c00032{bottom:787.259685px;}
.yb_c00032{bottom:818.399673px;}
.ya_c00032{bottom:849.359660px;}
.y9_c00032{bottom:880.499648px;}
.y8_c00032{bottom:911.459635px;}
.y7_c00032{bottom:942.599623px;}
.y6_c00032{bottom:973.559611px;}
.y5_c00032{bottom:1004.699598px;}
.y4_c00032{bottom:1035.659586px;}
.y3_c00032{bottom:1066.619573px;}
.y2_c00032{bottom:1104.959558px;}
.y1_c00032{bottom:1141.499543px;}
.h4_c00032{height:47.988262px;}
.h2_c00032{height:65.010911px;}
.h1_c00032{height:66.757473px;}
.h3_c00032{height:70.664034px;}
.h0_c00032{height:1263.000000px;}
.w0_c00032{width:892.500000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:127.619949px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
._0_c00032{margin-left:-1.095734pt;}
._3_c00032{width:0.971057pt;}
._4_c00032{width:2.547918pt;}
._5_c00032{width:4.733531pt;}
._6_c00032{width:5.632253pt;}
._1_c00032{width:17.541078pt;}
._2_c00032{width:18.570047pt;}
._7_c00032{width:20.102613pt;}
._8_c00032{width:21.025586pt;}
.fs0_c00032{font-size:58.879976pt;}
.fs1_c00032{font-size:63.999974pt;}
.y0_c00032{bottom:0.000000pt;}
.y1a_c00032{bottom:137.546612pt;}
.y19_c00032{bottom:180.106595pt;}
.y18_c00032{bottom:222.826578pt;}
.y17_c00032{bottom:265.386561pt;}
.y16_c00032{bottom:307.946543pt;}
.y15_c00032{bottom:350.666526pt;}
.y14_c00032{bottom:393.226509pt;}
.y13_c00032{bottom:435.946492pt;}
.y12_c00032{bottom:478.506475pt;}
.y11_c00032{bottom:521.226458pt;}
.y10_c00032{bottom:562.666442pt;}
.yf_c00032{bottom:603.626425pt;}
.ye_c00032{bottom:631.306414pt;}
.yd_c00032{bottom:672.266398pt;}
.yc_c00032{bottom:699.786387pt;}
.yb_c00032{bottom:727.466376pt;}
.ya_c00032{bottom:754.986365pt;}
.y9_c00032{bottom:782.666354pt;}
.y8_c00032{bottom:810.186343pt;}
.y7_c00032{bottom:837.866332pt;}
.y6_c00032{bottom:865.386321pt;}
.y5_c00032{bottom:893.066309pt;}
.y4_c00032{bottom:920.586298pt;}
.y3_c00032{bottom:948.106287pt;}
.y2_c00032{bottom:982.186274pt;}
.y1_c00032{bottom:1014.666261pt;}
.h4_c00032{height:42.656233pt;}
.h2_c00032{height:57.787477pt;}
.h1_c00032{height:59.339976pt;}
.h3_c00032{height:62.812475pt;}
.h0_c00032{height:1122.666667pt;}
.w0_c00032{width:793.333333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_783ee83414153b58815c0a0f.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:0.666504;font-style: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.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00033{word-spacing:0.000000px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs0_c00033{font-size:71.999971px;}
.y0_c00033{bottom:0.000000px;}
.y4_c00033{bottom:995.699602px;}
.y3_c00033{bottom:1043.759582px;}
.y2_c00033{bottom:1091.639563px;}
.y1_c00033{bottom:1139.699544px;}
.h1_c00033{height:47.988262px;}
.h0_c00033{height:1263.000000px;}
.w0_c00033{width:892.500000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:127.619949px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs0_c00033{font-size:63.999974pt;}
.y0_c00033{bottom:0.000000pt;}
.y4_c00033{bottom:885.066313pt;}
.y3_c00033{bottom:927.786296pt;}
.y2_c00033{bottom:970.346279pt;}
.y1_c00033{bottom:1013.066261pt;}
.h1_c00033{height:42.656233pt;}
.h0_c00033{height:1122.666667pt;}
.w0_c00033{width:793.333333pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:113.439955pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e534924818119100074c3286.woff2')format("woff");}.ff1_c00034{font-family:ff1_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:ff2_c00034;src:url('chunks/assets/font_0f50213cacbb3c375ed3aad0.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:0.675781;font-style:normal;font-weight:normal;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_ec9c504aebccf5fb2ba8c2db.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_a2338ebbe2fc717842ab066d.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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls1_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:8.655717px;}
.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:-21.059992px;}
.ws1_c00034{word-spacing:-17.999993px;}
.ws2_c00034{word-spacing:0.000000px;}
._1_c00034{margin-left:-1.105374px;}
._0_c00034{width:1.478351px;}
._7_c00034{width:2.644298px;}
._8_c00034{width:3.651854px;}
._12_c00034{width:4.680924px;}
._9_c00034{width:5.700912px;}
._3_c00034{width:7.487742px;}
._e_c00034{width:8.514039px;}
._c_c00034{width:9.756350px;}
._d_c00034{width:10.851743px;}
._f_c00034{width:12.233051px;}
._11_c00034{width:13.390223px;}
._10_c00034{width:14.419184px;}
._4_c00034{width:16.737397px;}
._2_c00034{width:21.552509px;}
._a_c00034{width:41.003949px;}
._b_c00034{width:42.150160px;}
._5_c00034{width:47.580020px;}
._6_c00034{width:48.968791px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs0_c00034{font-size:59.759976px;}
.fs1_c00034{font-size:66.239974px;}
.fs3_c00034{font-size:71.999971px;}
.fs2_c00034{font-size:84.239966px;}
.y0_c00034{bottom:0.000000px;}
.y4_c00034{bottom:57.900277px;}
.y3_c00034{bottom:78.060269px;}
.y26_c00034{bottom:139.979944px;}
.y25_c00034{bottom:170.939932px;}
.y24_c00034{bottom:202.079919px;}
.y23_c00034{bottom:233.039907px;}
.y22_c00034{bottom:264.179894px;}
.y21_c00034{bottom:295.139882px;}
.y20_c00034{bottom:326.279869px;}
.y1f_c00034{bottom:357.239857px;}
.y1e_c00034{bottom:388.379845px;}
.y1d_c00034{bottom:419.339832px;}
.y1c_c00034{bottom:450.479820px;}
.y1b_c00034{bottom:481.439807px;}
.y1a_c00034{bottom:512.579795px;}
.y19_c00034{bottom:543.539783px;}
.y18_c00034{bottom:574.679770px;}
.y17_c00034{bottom:605.639758px;}
.y16_c00034{bottom:636.599745px;}
.y15_c00034{bottom:667.739733px;}
.y14_c00034{bottom:698.699721px;}
.y13_c00034{bottom:729.839708px;}
.y12_c00034{bottom:760.799696px;}
.y11_c00034{bottom:791.939683px;}
.y10_c00034{bottom:822.899671px;}
.yf_c00034{bottom:854.039658px;}
.ye_c00034{bottom:884.999646px;}
.yd_c00034{bottom:916.139634px;}
.yc_c00034{bottom:947.099621px;}
.yb_c00034{bottom:978.239609px;}
.ya_c00034{bottom:1009.199596px;}
.y9_c00034{bottom:1040.339584px;}
.y8_c00034{bottom:1071.299571px;}
.y7_c00034{bottom:1092.179563px;}
.y6_c00034{bottom:1113.059555px;}
.y5_c00034{bottom:1137.359545px;}
.y2_c00034{bottom:1178.939528px;}
.y1_c00034{bottom:1196.399521px;}
.h2_c00034{height:44.149201px;}
.h1_c00034{height:58.651148px;}
.h5_c00034{height:65.010911px;}
.h4_c00034{height:70.664034px;}
.h6_c00034{height:72.562471px;}
.h3_c00034{height:84.898091px;}
.h0_c00034{height:1263.000000px;}
.w0_c00034{width:892.500000px;}
.x0_c00034{left:0.000000px;}
.x4_c00034{left:127.619739px;}
.x5_c00034{left:180.719930px;}
.x1_c00034{left:181.799927px;}
.x2_c00034{left:329.039408px;}
.x3_c00034{left:438.119825px;}
.x7_c00034{left:474.659810px;}
.x6_c00034{left:539.279784px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls1_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:7.693970pt;}
.ws0_c00034{word-spacing:-18.719993pt;}
.ws1_c00034{word-spacing:-15.999994pt;}
.ws2_c00034{word-spacing:0.000000pt;}
._1_c00034{margin-left:-0.982555pt;}
._0_c00034{width:1.314090pt;}
._7_c00034{width:2.350487pt;}
._8_c00034{width:3.246092pt;}
._12_c00034{width:4.160821pt;}
._9_c00034{width:5.067477pt;}
._3_c00034{width:6.655770pt;}
._e_c00034{width:7.568035pt;}
._c_c00034{width:8.672311pt;}
._d_c00034{width:9.645993pt;}
._f_c00034{width:10.873823pt;}
._11_c00034{width:11.902421pt;}
._10_c00034{width:12.817053pt;}
._4_c00034{width:14.877686pt;}
._2_c00034{width:19.157786pt;}
._a_c00034{width:36.447955pt;}
._b_c00034{width:37.466809pt;}
._5_c00034{width:42.293351pt;}
._6_c00034{width:43.527814pt;}
.fs0_c00034{font-size:53.119979pt;}
.fs1_c00034{font-size:58.879976pt;}
.fs3_c00034{font-size:63.999974pt;}
.fs2_c00034{font-size:74.879970pt;}
.y0_c00034{bottom:0.000000pt;}
.y4_c00034{bottom:51.466913pt;}
.y3_c00034{bottom:69.386906pt;}
.y26_c00034{bottom:124.426617pt;}
.y25_c00034{bottom:151.946606pt;}
.y24_c00034{bottom:179.626595pt;}
.y23_c00034{bottom:207.146584pt;}
.y22_c00034{bottom:234.826573pt;}
.y21_c00034{bottom:262.346562pt;}
.y20_c00034{bottom:290.026551pt;}
.y1f_c00034{bottom:317.546540pt;}
.y1e_c00034{bottom:345.226529pt;}
.y1d_c00034{bottom:372.746518pt;}
.y1c_c00034{bottom:400.426506pt;}
.y1b_c00034{bottom:427.946495pt;}
.y1a_c00034{bottom:455.626484pt;}
.y19_c00034{bottom:483.146473pt;}
.y18_c00034{bottom:510.826462pt;}
.y17_c00034{bottom:538.346451pt;}
.y16_c00034{bottom:565.866440pt;}
.y15_c00034{bottom:593.546429pt;}
.y14_c00034{bottom:621.066418pt;}
.y13_c00034{bottom:648.746407pt;}
.y12_c00034{bottom:676.266396pt;}
.y11_c00034{bottom:703.946385pt;}
.y10_c00034{bottom:731.466374pt;}
.yf_c00034{bottom:759.146363pt;}
.ye_c00034{bottom:786.666352pt;}
.yd_c00034{bottom:814.346341pt;}
.yc_c00034{bottom:841.866330pt;}
.yb_c00034{bottom:869.546319pt;}
.ya_c00034{bottom:897.066308pt;}
.y9_c00034{bottom:924.746297pt;}
.y8_c00034{bottom:952.266286pt;}
.y7_c00034{bottom:970.826278pt;}
.y6_c00034{bottom:989.386271pt;}
.y5_c00034{bottom:1010.986262pt;}
.y2_c00034{bottom:1047.946247pt;}
.y1_c00034{bottom:1063.466241pt;}
.h2_c00034{height:39.243734pt;}
.h1_c00034{height:52.134354pt;}
.h5_c00034{height:57.787477pt;}
.h4_c00034{height:62.812475pt;}
.h6_c00034{height:64.499974pt;}
.h3_c00034{height:75.464970pt;}
.h0_c00034{height:1122.666667pt;}
.w0_c00034{width:793.333333pt;}
.x0_c00034{left:0.000000pt;}
.x4_c00034{left:113.439768pt;}
.x5_c00034{left:160.639938pt;}
.x1_c00034{left:161.599935pt;}
.x2_c00034{left:292.479474pt;}
.x3_c00034{left:389.439844pt;}
.x7_c00034{left:421.919831pt;}
.x6_c00034{left:479.359808pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d32c7f0d0aafe4a1e3c26f87.woff2')format("woff");}.ff1_c00035{font-family:ff1_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:ff2_c00035;src:url('chunks/assets/font_187de158edde4c59528a459e.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:0.675781;font-style:normal;font-weight:normal;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_05c2f78f99e4c135d7b26562.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00035{font-family:ff4_c00035;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00035;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00035{font-family:ff5_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;}
.m0_c00035{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls2_c00035{letter-spacing:0.000000px;}
.ls1_c00035{letter-spacing:12.978295px;}
.ls0_c00035{letter-spacing:34.015846px;}
.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;}
}
.ws0_c00035{word-spacing:-17.999993px;}
.ws1_c00035{word-spacing:0.000000px;}
._b_c00035{margin-left:-2.131845px;}
._1_c00035{margin-left:-1.105374px;}
._0_c00035{width:1.195563px;}
._5_c00035{width:3.087220px;}
._7_c00035{width:4.275379px;}
._4_c00035{width:5.778729px;}
._3_c00035{width:7.072037px;}
._2_c00035{width:8.358122px;}
._6_c00035{width:10.103635px;}
._c_c00035{width:12.797673px;}
._8_c00035{width:14.412110px;}
._9_c00035{width:15.466473px;}
._a_c00035{width:16.531195px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:59.759976px;}
.fs1_c00035{font-size:66.239974px;}
.fs2_c00035{font-size:71.999971px;}
.y0_c00035{bottom:0.000000px;}
.y3_c00035{bottom:57.900277px;}
.y2_c00035{bottom:78.060269px;}
.y25_c00035{bottom:115.859954px;}
.y24_c00035{bottom:146.819941px;}
.y23_c00035{bottom:177.959929px;}
.y22_c00035{bottom:208.919916px;}
.y21_c00035{bottom:240.059904px;}
.y20_c00035{bottom:271.019892px;}
.y1f_c00035{bottom:301.979879px;}
.y1e_c00035{bottom:333.119867px;}
.y1d_c00035{bottom:364.079854px;}
.y1c_c00035{bottom:395.219842px;}
.y1b_c00035{bottom:426.179830px;}
.y1a_c00035{bottom:457.319817px;}
.y19_c00035{bottom:488.279805px;}
.y18_c00035{bottom:519.419792px;}
.y17_c00035{bottom:550.379780px;}
.y16_c00035{bottom:581.519767px;}
.y15_c00035{bottom:612.479755px;}
.y14_c00035{bottom:643.619743px;}
.y13_c00035{bottom:674.579730px;}
.y12_c00035{bottom:705.719718px;}
.y11_c00035{bottom:736.679705px;}
.y10_c00035{bottom:767.819693px;}
.yf_c00035{bottom:798.779680px;}
.ye_c00035{bottom:829.919668px;}
.yd_c00035{bottom:860.879656px;}
.yc_c00035{bottom:892.019643px;}
.yb_c00035{bottom:922.979631px;}
.ya_c00035{bottom:954.119618px;}
.y9_c00035{bottom:985.079606px;}
.y8_c00035{bottom:1016.219594px;}
.y7_c00035{bottom:1047.179581px;}
.y6_c00035{bottom:1078.319569px;}
.y5_c00035{bottom:1109.279556px;}
.y4_c00035{bottom:1140.419544px;}
.y1_c00035{bottom:1196.219522px;}
.h2_c00035{height:44.149201px;}
.h1_c00035{height:58.651148px;}
.h3_c00035{height:70.664034px;}
.h4_c00035{height:75.093720px;}
.h0_c00035{height:1263.000000px;}
.w0_c00035{width:892.500000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:127.619949px;}
.x3_c00035{left:180.719930px;}
.x4_c00035{left:191.519775px;}
.x5_c00035{left:218.519785px;}
.x2_c00035{left:438.119825px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls2_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:11.536262pt;}
.ls0_c00035{letter-spacing:30.236308pt;}
.ws0_c00035{word-spacing:-15.999994pt;}
.ws1_c00035{word-spacing:0.000000pt;}
._b_c00035{margin-left:-1.894973pt;}
._1_c00035{margin-left:-0.982555pt;}
._0_c00035{width:1.062723pt;}
._5_c00035{width:2.744195pt;}
._7_c00035{width:3.800337pt;}
._4_c00035{width:5.136648pt;}
._3_c00035{width:6.286255pt;}
._2_c00035{width:7.429442pt;}
._6_c00035{width:8.981009pt;}
._c_c00035{width:11.375709pt;}
._8_c00035{width:12.810764pt;}
._9_c00035{width:13.747976pt;}
._a_c00035{width:14.694395pt;}
.fs0_c00035{font-size:53.119979pt;}
.fs1_c00035{font-size:58.879976pt;}
.fs2_c00035{font-size:63.999974pt;}
.y0_c00035{bottom:0.000000pt;}
.y3_c00035{bottom:51.466913pt;}
.y2_c00035{bottom:69.386906pt;}
.y25_c00035{bottom:102.986625pt;}
.y24_c00035{bottom:130.506614pt;}
.y23_c00035{bottom:158.186603pt;}
.y22_c00035{bottom:185.706592pt;}
.y21_c00035{bottom:213.386581pt;}
.y20_c00035{bottom:240.906570pt;}
.y1f_c00035{bottom:268.426559pt;}
.y1e_c00035{bottom:296.106548pt;}
.y1d_c00035{bottom:323.626537pt;}
.y1c_c00035{bottom:351.306526pt;}
.y1b_c00035{bottom:378.826515pt;}
.y1a_c00035{bottom:406.506504pt;}
.y19_c00035{bottom:434.026493pt;}
.y18_c00035{bottom:461.706482pt;}
.y17_c00035{bottom:489.226471pt;}
.y16_c00035{bottom:516.906460pt;}
.y15_c00035{bottom:544.426449pt;}
.y14_c00035{bottom:572.106438pt;}
.y13_c00035{bottom:599.626427pt;}
.y12_c00035{bottom:627.306416pt;}
.y11_c00035{bottom:654.826405pt;}
.y10_c00035{bottom:682.506394pt;}
.yf_c00035{bottom:710.026383pt;}
.ye_c00035{bottom:737.706372pt;}
.yd_c00035{bottom:765.226361pt;}
.yc_c00035{bottom:792.906350pt;}
.yb_c00035{bottom:820.426338pt;}
.ya_c00035{bottom:848.106327pt;}
.y9_c00035{bottom:875.626316pt;}
.y8_c00035{bottom:903.306305pt;}
.y7_c00035{bottom:930.826294pt;}
.y6_c00035{bottom:958.506283pt;}
.y5_c00035{bottom:986.026272pt;}
.y4_c00035{bottom:1013.706261pt;}
.y1_c00035{bottom:1063.306241pt;}
.h2_c00035{height:39.243734pt;}
.h1_c00035{height:52.134354pt;}
.h3_c00035{height:62.812475pt;}
.h4_c00035{height:66.749973pt;}
.h0_c00035{height:1122.666667pt;}
.w0_c00035{width:793.333333pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:113.439955pt;}
.x3_c00035{left:160.639938pt;}
.x4_c00035{left:170.239800pt;}
.x5_c00035{left:194.239809pt;}
.x2_c00035{left:389.439844pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5432919fd979eba27632190.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;font-style:normal;font-weight:normal;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_92ffde2e2e884f417232358b.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00036;src:url('chunks/assets/font_69a38bf98b3d838818dc115d.woff2')format("woff");}.ff4_c00036{font-family:ff4_c00036;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls3_c00036{letter-spacing:0.000000px;}
.ls1_c00036{letter-spacing:0.021282px;}
.ls2_c00036{letter-spacing:0.297776px;}
.ls0_c00036{letter-spacing:34.015846px;}
.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;}
}
.ws1_c00036{word-spacing:-18.021275px;}
.ws0_c00036{word-spacing:-17.999993px;}
.ws2_c00036{word-spacing:0.000000px;}
._1_c00036{margin-left:-1.105374px;}
._0_c00036{width:1.478351px;}
._8_c00036{width:2.716559px;}
._9_c00036{width:3.964798px;}
._5_c00036{width:4.973426px;}
._6_c00036{width:6.255769px;}
._a_c00036{width:7.910533px;}
._2_c00036{width:9.656247px;}
._3_c00036{width:11.232829px;}
._4_c00036{width:13.663404px;}
._7_c00036{width:19.073697px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs0_c00036{font-size:59.759976px;}
.fs1_c00036{font-size:66.239974px;}
.fs2_c00036{font-size:71.999971px;}
.y0_c00036{bottom:0.000000px;}
.y4_c00036{bottom:57.900277px;}
.y3_c00036{bottom:78.060269px;}
.y25_c00036{bottom:131.879947px;}
.y24_c00036{bottom:162.839935px;}
.y23_c00036{bottom:193.979922px;}
.y22_c00036{bottom:224.939910px;}
.y21_c00036{bottom:256.079898px;}
.y20_c00036{bottom:287.039885px;}
.y1f_c00036{bottom:318.179873px;}
.y1e_c00036{bottom:349.139860px;}
.y1d_c00036{bottom:380.279848px;}
.y1c_c00036{bottom:426.179830px;}
.y1b_c00036{bottom:457.319817px;}
.y1a_c00036{bottom:488.279805px;}
.y19_c00036{bottom:519.419792px;}
.y18_c00036{bottom:550.379780px;}
.y17_c00036{bottom:581.519767px;}
.y16_c00036{bottom:612.479755px;}
.y15_c00036{bottom:643.619743px;}
.y14_c00036{bottom:674.579730px;}
.y13_c00036{bottom:705.719718px;}
.y12_c00036{bottom:736.679705px;}
.y11_c00036{bottom:767.819693px;}
.y10_c00036{bottom:798.779680px;}
.yf_c00036{bottom:829.919668px;}
.ye_c00036{bottom:860.879656px;}
.yd_c00036{bottom:892.019643px;}
.yc_c00036{bottom:922.979631px;}
.yb_c00036{bottom:954.119618px;}
.ya_c00036{bottom:985.079606px;}
.y9_c00036{bottom:1016.219594px;}
.y8_c00036{bottom:1047.179581px;}
.y7_c00036{bottom:1078.319569px;}
.y6_c00036{bottom:1109.279556px;}
.y5_c00036{bottom:1140.419544px;}
.y2_c00036{bottom:1178.939528px;}
.y1_c00036{bottom:1196.399521px;}
.h2_c00036{height:44.149201px;}
.h1_c00036{height:58.651148px;}
.h4_c00036{height:70.664034px;}
.h3_c00036{height:75.093720px;}
.h0_c00036{height:1263.000000px;}
.w0_c00036{width:892.500000px;}
.x0_c00036{left:0.000000px;}
.x4_c00036{left:127.619739px;}
.x7_c00036{left:180.719734px;}
.x1_c00036{left:181.799927px;}
.x5_c00036{left:191.519923px;}
.x6_c00036{left:218.519903px;}
.x2_c00036{left:329.039408px;}
.x3_c00036{left:438.119825px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls3_c00036{letter-spacing:0.000000pt;}
.ls1_c00036{letter-spacing:0.018917pt;}
.ls2_c00036{letter-spacing:0.264690pt;}
.ls0_c00036{letter-spacing:30.236308pt;}
.ws1_c00036{word-spacing:-16.018911pt;}
.ws0_c00036{word-spacing:-15.999994pt;}
.ws2_c00036{word-spacing:0.000000pt;}
._1_c00036{margin-left:-0.982555pt;}
._0_c00036{width:1.314090pt;}
._8_c00036{width:2.414719pt;}
._9_c00036{width:3.524265pt;}
._5_c00036{width:4.420823pt;}
._6_c00036{width:5.560684pt;}
._a_c00036{width:7.031585pt;}
._2_c00036{width:8.583331pt;}
._3_c00036{width:9.984737pt;}
._4_c00036{width:12.145248pt;}
._7_c00036{width:16.954397pt;}
.fs0_c00036{font-size:53.119979pt;}
.fs1_c00036{font-size:58.879976pt;}
.fs2_c00036{font-size:63.999974pt;}
.y0_c00036{bottom:0.000000pt;}
.y4_c00036{bottom:51.466913pt;}
.y3_c00036{bottom:69.386906pt;}
.y25_c00036{bottom:117.226620pt;}
.y24_c00036{bottom:144.746609pt;}
.y23_c00036{bottom:172.426598pt;}
.y22_c00036{bottom:199.946587pt;}
.y21_c00036{bottom:227.626576pt;}
.y20_c00036{bottom:255.146565pt;}
.y1f_c00036{bottom:282.826554pt;}
.y1e_c00036{bottom:310.346543pt;}
.y1d_c00036{bottom:338.026531pt;}
.y1c_c00036{bottom:378.826515pt;}
.y1b_c00036{bottom:406.506504pt;}
.y1a_c00036{bottom:434.026493pt;}
.y19_c00036{bottom:461.706482pt;}
.y18_c00036{bottom:489.226471pt;}
.y17_c00036{bottom:516.906460pt;}
.y16_c00036{bottom:544.426449pt;}
.y15_c00036{bottom:572.106438pt;}
.y14_c00036{bottom:599.626427pt;}
.y13_c00036{bottom:627.306416pt;}
.y12_c00036{bottom:654.826405pt;}
.y11_c00036{bottom:682.506394pt;}
.y10_c00036{bottom:710.026383pt;}
.yf_c00036{bottom:737.706372pt;}
.ye_c00036{bottom:765.226361pt;}
.yd_c00036{bottom:792.906350pt;}
.yc_c00036{bottom:820.426338pt;}
.yb_c00036{bottom:848.106327pt;}
.ya_c00036{bottom:875.626316pt;}
.y9_c00036{bottom:903.306305pt;}
.y8_c00036{bottom:930.826294pt;}
.y7_c00036{bottom:958.506283pt;}
.y6_c00036{bottom:986.026272pt;}
.y5_c00036{bottom:1013.706261pt;}
.y2_c00036{bottom:1047.946247pt;}
.y1_c00036{bottom:1063.466241pt;}
.h2_c00036{height:39.243734pt;}
.h1_c00036{height:52.134354pt;}
.h4_c00036{height:62.812475pt;}
.h3_c00036{height:66.749973pt;}
.h0_c00036{height:1122.666667pt;}
.w0_c00036{width:793.333333pt;}
.x0_c00036{left:0.000000pt;}
.x4_c00036{left:113.439768pt;}
.x7_c00036{left:160.639763pt;}
.x1_c00036{left:161.599935pt;}
.x5_c00036{left:170.239932pt;}
.x6_c00036{left:194.239914pt;}
.x2_c00036{left:292.479474pt;}
.x3_c00036{left:389.439844pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d00bf492f01a3251591686b.woff2')format("woff");}.ff1_c00037{font-family:ff1_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:ff2_c00037;src:url('chunks/assets/font_d962390e3b74570dc041e6a0.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:0.675781;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_445e5af796cd32a68a007ece.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;}
.m0_c00037{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls4_c00037{letter-spacing:0.000000px;}
.ls2_c00037{letter-spacing:0.009900px;}
.ls3_c00037{letter-spacing:0.010620px;}
.ls1_c00037{letter-spacing:0.021282px;}
.ls0_c00037{letter-spacing:34.015846px;}
.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;}
}
.ws1_c00037{word-spacing:-18.021275px;}
.ws0_c00037{word-spacing:-17.999993px;}
.ws2_c00037{word-spacing:0.000000px;}
._1_c00037{margin-left:-1.105374px;}
._0_c00037{width:1.195563px;}
._2_c00037{width:2.226757px;}
._3_c00037{width:3.474941px;}
._7_c00037{width:4.808258px;}
._c_c00037{width:6.469662px;}
._5_c00037{width:8.362178px;}
._4_c00037{width:9.603224px;}
._f_c00037{width:10.921782px;}
._b_c00037{width:12.290015px;}
._a_c00037{width:13.369324px;}
._d_c00037{width:20.090408px;}
._e_c00037{width:21.121875px;}
._6_c00037{width:22.287231px;}
._9_c00037{width:25.698062px;}
._8_c00037{width:26.722443px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:59.759976px;}
.fs1_c00037{font-size:66.239974px;}
.fs2_c00037{font-size:71.999971px;}
.y0_c00037{bottom:0.000000px;}
.y3_c00037{bottom:57.900277px;}
.y2_c00037{bottom:78.060269px;}
.y23_c00037{bottom:170.399932px;}
.y22_c00037{bottom:201.539919px;}
.y21_c00037{bottom:232.499907px;}
.y20_c00037{bottom:263.639895px;}
.y1f_c00037{bottom:294.599882px;}
.y1e_c00037{bottom:340.679864px;}
.y1d_c00037{bottom:371.639851px;}
.y1c_c00037{bottom:402.779839px;}
.y1b_c00037{bottom:432.659827px;}
.y1a_c00037{bottom:461.279815px;}
.y19_c00037{bottom:492.059803px;}
.y18_c00037{bottom:523.199791px;}
.y17_c00037{bottom:554.159778px;}
.y16_c00037{bottom:585.299766px;}
.y15_c00037{bottom:616.259753px;}
.y14_c00037{bottom:647.399741px;}
.y13_c00037{bottom:678.359729px;}
.y12_c00037{bottom:709.499716px;}
.y11_c00037{bottom:740.459704px;}
.y10_c00037{bottom:771.599691px;}
.yf_c00037{bottom:801.479679px;}
.ye_c00037{bottom:830.099668px;}
.yd_c00037{bottom:860.879656px;}
.yc_c00037{bottom:892.019643px;}
.yb_c00037{bottom:922.979631px;}
.ya_c00037{bottom:954.119618px;}
.y9_c00037{bottom:985.079606px;}
.y8_c00037{bottom:1016.219594px;}
.y7_c00037{bottom:1047.179581px;}
.y6_c00037{bottom:1078.319569px;}
.y5_c00037{bottom:1109.279556px;}
.y4_c00037{bottom:1140.419544px;}
.y1_c00037{bottom:1196.219522px;}
.h2_c00037{height:44.149201px;}
.h1_c00037{height:58.651148px;}
.h5_c00037{height:64.978568px;}
.h6_c00037{height:65.010911px;}
.h4_c00037{height:70.664034px;}
.h3_c00037{height:75.093720px;}
.h0_c00037{height:1263.000000px;}
.w0_c00037{width:892.500000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:127.619949px;}
.x7_c00037{left:180.720061px;}
.x3_c00037{left:191.519923px;}
.x4_c00037{left:218.520833px;}
.x2_c00037{left:438.119825px;}
.x5_c00037{left:485.099806px;}
.x6_c00037{left:511.919795px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls4_c00037{letter-spacing:0.000000pt;}
.ls2_c00037{letter-spacing:0.008800pt;}
.ls3_c00037{letter-spacing:0.009440pt;}
.ls1_c00037{letter-spacing:0.018917pt;}
.ls0_c00037{letter-spacing:30.236308pt;}
.ws1_c00037{word-spacing:-16.018911pt;}
.ws0_c00037{word-spacing:-15.999994pt;}
.ws2_c00037{word-spacing:0.000000pt;}
._1_c00037{margin-left:-0.982555pt;}
._0_c00037{width:1.062723pt;}
._2_c00037{width:1.979340pt;}
._3_c00037{width:3.088836pt;}
._7_c00037{width:4.274007pt;}
._c_c00037{width:5.750811pt;}
._5_c00037{width:7.433047pt;}
._4_c00037{width:8.536199pt;}
._f_c00037{width:9.708251pt;}
._b_c00037{width:10.924458pt;}
._a_c00037{width:11.883844pt;}
._d_c00037{width:17.858140pt;}
._e_c00037{width:18.775000pt;}
._6_c00037{width:19.810872pt;}
._9_c00037{width:22.842721pt;}
._8_c00037{width:23.753282pt;}
.fs0_c00037{font-size:53.119979pt;}
.fs1_c00037{font-size:58.879976pt;}
.fs2_c00037{font-size:63.999974pt;}
.y0_c00037{bottom:0.000000pt;}
.y3_c00037{bottom:51.466913pt;}
.y2_c00037{bottom:69.386906pt;}
.y23_c00037{bottom:151.466606pt;}
.y22_c00037{bottom:179.146595pt;}
.y21_c00037{bottom:206.666584pt;}
.y20_c00037{bottom:234.346573pt;}
.y1f_c00037{bottom:261.866562pt;}
.y1e_c00037{bottom:302.826546pt;}
.y1d_c00037{bottom:330.346535pt;}
.y1c_c00037{bottom:358.026523pt;}
.y1b_c00037{bottom:384.586513pt;}
.y1a_c00037{bottom:410.026503pt;}
.y19_c00037{bottom:437.386492pt;}
.y18_c00037{bottom:465.066481pt;}
.y17_c00037{bottom:492.586470pt;}
.y16_c00037{bottom:520.266459pt;}
.y15_c00037{bottom:547.786448pt;}
.y14_c00037{bottom:575.466436pt;}
.y13_c00037{bottom:602.986425pt;}
.y12_c00037{bottom:630.666414pt;}
.y11_c00037{bottom:658.186403pt;}
.y10_c00037{bottom:685.866392pt;}
.yf_c00037{bottom:712.426382pt;}
.ye_c00037{bottom:737.866372pt;}
.yd_c00037{bottom:765.226361pt;}
.yc_c00037{bottom:792.906350pt;}
.yb_c00037{bottom:820.426338pt;}
.ya_c00037{bottom:848.106327pt;}
.y9_c00037{bottom:875.626316pt;}
.y8_c00037{bottom:903.306305pt;}
.y7_c00037{bottom:930.826294pt;}
.y6_c00037{bottom:958.506283pt;}
.y5_c00037{bottom:986.026272pt;}
.y4_c00037{bottom:1013.706261pt;}
.y1_c00037{bottom:1063.306241pt;}
.h2_c00037{height:39.243734pt;}
.h1_c00037{height:52.134354pt;}
.h5_c00037{height:57.758727pt;}
.h6_c00037{height:57.787477pt;}
.h4_c00037{height:62.812475pt;}
.h3_c00037{height:66.749973pt;}
.h0_c00037{height:1122.666667pt;}
.w0_c00037{width:793.333333pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:113.439955pt;}
.x7_c00037{left:160.640054pt;}
.x3_c00037{left:170.239932pt;}
.x4_c00037{left:194.240740pt;}
.x2_c00037{left:389.439844pt;}
.x5_c00037{left:431.199828pt;}
.x6_c00037{left:455.039818pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3b5b09db22d613c691286aa.woff2')format("woff");}.ff1_c00038{font-family:ff1_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;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_72c1f6464cf9829b2c511a1e.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_378a4632de438da8806fd452.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls3_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.021238px;}
.ls2_c00038{letter-spacing:0.021282px;}
.ls1_c00038{letter-spacing:15.859974px;}
.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:-18.021231px;}
.ws1_c00038{word-spacing:0.000000px;}
._1_c00038{margin-left:-1.105374px;}
._0_c00038{width:1.478351px;}
._7_c00038{width:3.476761px;}
._3_c00038{width:4.756104px;}
._4_c00038{width:5.859079px;}
._c_c00038{width:7.801825px;}
._d_c00038{width:9.280603px;}
._a_c00038{width:10.893726px;}
._6_c00038{width:12.279226px;}
._f_c00038{width:13.708780px;}
._b_c00038{width:14.863264px;}
._8_c00038{width:16.109253px;}
._e_c00038{width:19.835819px;}
._2_c00038{width:21.194628px;}
._5_c00038{width:30.438579px;}
._9_c00038{width:31.722972px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:59.759976px;}
.fs1_c00038{font-size:66.239974px;}
.fs2_c00038{font-size:71.999971px;}
.fs3_c00038{font-size:84.239966px;}
.y0_c00038{bottom:0.000000px;}
.y4_c00038{bottom:57.900277px;}
.y3_c00038{bottom:78.060269px;}
.y25_c00038{bottom:141.599943px;}
.y24_c00038{bottom:172.739931px;}
.y23_c00038{bottom:203.699919px;}
.y22_c00038{bottom:234.839906px;}
.y21_c00038{bottom:265.799894px;}
.y20_c00038{bottom:296.939881px;}
.y1f_c00038{bottom:327.899869px;}
.y1e_c00038{bottom:359.039856px;}
.y1d_c00038{bottom:389.999844px;}
.y1c_c00038{bottom:421.139832px;}
.y1b_c00038{bottom:452.099819px;}
.y1a_c00038{bottom:483.239807px;}
.y19_c00038{bottom:514.199794px;}
.y18_c00038{bottom:545.339782px;}
.y17_c00038{bottom:576.299769px;}
.y16_c00038{bottom:607.439757px;}
.y15_c00038{bottom:638.399745px;}
.y14_c00038{bottom:669.539732px;}
.y13_c00038{bottom:700.499720px;}
.y12_c00038{bottom:731.639707px;}
.y11_c00038{bottom:762.599695px;}
.y10_c00038{bottom:793.559683px;}
.yf_c00038{bottom:824.699670px;}
.ye_c00038{bottom:855.659658px;}
.yd_c00038{bottom:886.799645px;}
.yc_c00038{bottom:920.279632px;}
.yb_c00038{bottom:954.119618px;}
.ya_c00038{bottom:985.079606px;}
.y9_c00038{bottom:1016.219594px;}
.y8_c00038{bottom:1047.179581px;}
.y7_c00038{bottom:1078.319569px;}
.y6_c00038{bottom:1109.279556px;}
.y5_c00038{bottom:1140.419544px;}
.y2_c00038{bottom:1178.939528px;}
.y1_c00038{bottom:1196.399521px;}
.h2_c00038{height:44.149201px;}
.h1_c00038{height:58.651148px;}
.h3_c00038{height:70.664034px;}
.h4_c00038{height:82.676920px;}
.h0_c00038{height:1263.000000px;}
.w0_c00038{width:892.500000px;}
.x0_c00038{left:0.000000px;}
.x4_c00038{left:127.619739px;}
.x5_c00038{left:180.720080px;}
.x1_c00038{left:181.799927px;}
.x2_c00038{left:329.039408px;}
.xa_c00038{left:406.079838px;}
.x6_c00038{left:409.499836px;}
.xb_c00038{left:412.559835px;}
.x7_c00038{left:424.079830px;}
.x3_c00038{left:438.119825px;}
.x8_c00038{left:573.839770px;}
.x9_c00038{left:583.199767px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls3_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.018878pt;}
.ls2_c00038{letter-spacing:0.018917pt;}
.ls1_c00038{letter-spacing:14.097754pt;}
.ws0_c00038{word-spacing:-16.018872pt;}
.ws1_c00038{word-spacing:0.000000pt;}
._1_c00038{margin-left:-0.982555pt;}
._0_c00038{width:1.314090pt;}
._7_c00038{width:3.090454pt;}
._3_c00038{width:4.227648pt;}
._4_c00038{width:5.208070pt;}
._c_c00038{width:6.934956pt;}
._d_c00038{width:8.249425pt;}
._a_c00038{width:9.683312pt;}
._6_c00038{width:10.914868pt;}
._f_c00038{width:12.185582pt;}
._b_c00038{width:13.211790pt;}
._8_c00038{width:14.319336pt;}
._e_c00038{width:17.631839pt;}
._2_c00038{width:18.839669pt;}
._5_c00038{width:27.056515pt;}
._9_c00038{width:28.198197pt;}
.fs0_c00038{font-size:53.119979pt;}
.fs1_c00038{font-size:58.879976pt;}
.fs2_c00038{font-size:63.999974pt;}
.fs3_c00038{font-size:74.879970pt;}
.y0_c00038{bottom:0.000000pt;}
.y4_c00038{bottom:51.466913pt;}
.y3_c00038{bottom:69.386906pt;}
.y25_c00038{bottom:125.866616pt;}
.y24_c00038{bottom:153.546605pt;}
.y23_c00038{bottom:181.066594pt;}
.y22_c00038{bottom:208.746583pt;}
.y21_c00038{bottom:236.266572pt;}
.y20_c00038{bottom:263.946561pt;}
.y1f_c00038{bottom:291.466550pt;}
.y1e_c00038{bottom:319.146539pt;}
.y1d_c00038{bottom:346.666528pt;}
.y1c_c00038{bottom:374.346517pt;}
.y1b_c00038{bottom:401.866506pt;}
.y1a_c00038{bottom:429.546495pt;}
.y19_c00038{bottom:457.066484pt;}
.y18_c00038{bottom:484.746473pt;}
.y17_c00038{bottom:512.266462pt;}
.y16_c00038{bottom:539.946451pt;}
.y15_c00038{bottom:567.466440pt;}
.y14_c00038{bottom:595.146429pt;}
.y13_c00038{bottom:622.666418pt;}
.y12_c00038{bottom:650.346407pt;}
.y11_c00038{bottom:677.866396pt;}
.y10_c00038{bottom:705.386385pt;}
.yf_c00038{bottom:733.066373pt;}
.ye_c00038{bottom:760.586362pt;}
.yd_c00038{bottom:788.266351pt;}
.yc_c00038{bottom:818.026339pt;}
.yb_c00038{bottom:848.106327pt;}
.ya_c00038{bottom:875.626316pt;}
.y9_c00038{bottom:903.306305pt;}
.y8_c00038{bottom:930.826294pt;}
.y7_c00038{bottom:958.506283pt;}
.y6_c00038{bottom:986.026272pt;}
.y5_c00038{bottom:1013.706261pt;}
.y2_c00038{bottom:1047.946247pt;}
.y1_c00038{bottom:1063.466241pt;}
.h2_c00038{height:39.243734pt;}
.h1_c00038{height:52.134354pt;}
.h3_c00038{height:62.812475pt;}
.h4_c00038{height:73.490596pt;}
.h0_c00038{height:1122.666667pt;}
.w0_c00038{width:793.333333pt;}
.x0_c00038{left:0.000000pt;}
.x4_c00038{left:113.439768pt;}
.x5_c00038{left:160.640071pt;}
.x1_c00038{left:161.599935pt;}
.x2_c00038{left:292.479474pt;}
.xa_c00038{left:360.959856pt;}
.x6_c00038{left:363.999854pt;}
.xb_c00038{left:366.719853pt;}
.x7_c00038{left:376.959849pt;}
.x3_c00038{left:389.439844pt;}
.x8_c00038{left:510.079796pt;}
.x9_c00038{left:518.399793pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4823e446c24f19d484cec41d.woff2')format("woff");}.ff1_c00039{font-family:ff1_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:ff2_c00039;src:url('chunks/assets/font_0bf4d4f78b96fbdebfbf6541.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00039{margin-left:-1.105374px;}
._0_c00039{width:1.195563px;}
._6_c00039{width:3.274871px;}
._7_c00039{width:4.768892px;}
._4_c00039{width:6.495620px;}
._5_c00039{width:7.595251px;}
._a_c00039{width:8.601417px;}
._3_c00039{width:10.066818px;}
._2_c00039{width:11.366100px;}
._9_c00039{width:12.388988px;}
._8_c00039{width:21.506472px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs0_c00039{font-size:59.759976px;}
.fs1_c00039{font-size:66.239974px;}
.fs2_c00039{font-size:71.999971px;}
.y0_c00039{bottom:0.000000px;}
.y3_c00039{bottom:57.900277px;}
.y2_c00039{bottom:78.060269px;}
.yf_c00039{bottom:798.779680px;}
.ye_c00039{bottom:829.919668px;}
.yd_c00039{bottom:860.879656px;}
.yc_c00039{bottom:892.019643px;}
.yb_c00039{bottom:922.979631px;}
.ya_c00039{bottom:954.119618px;}
.y9_c00039{bottom:985.079606px;}
.y8_c00039{bottom:1016.219594px;}
.y7_c00039{bottom:1047.179581px;}
.y6_c00039{bottom:1078.319569px;}
.y5_c00039{bottom:1109.279556px;}
.y4_c00039{bottom:1140.419544px;}
.y1_c00039{bottom:1196.219522px;}
.h2_c00039{height:44.149201px;}
.h1_c00039{height:58.651148px;}
.h3_c00039{height:70.664034px;}
.h0_c00039{height:1263.000000px;}
.w0_c00039{width:892.500000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:127.619949px;}
.x3_c00039{left:180.719928px;}
.x2_c00039{left:438.119825px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:0.000000pt;}
._1_c00039{margin-left:-0.982555pt;}
._0_c00039{width:1.062723pt;}
._6_c00039{width:2.910996pt;}
._7_c00039{width:4.239015pt;}
._4_c00039{width:5.773884pt;}
._5_c00039{width:6.751334pt;}
._a_c00039{width:7.645704pt;}
._3_c00039{width:8.948283pt;}
._2_c00039{width:10.103200pt;}
._9_c00039{width:11.012434pt;}
._8_c00039{width:19.116864pt;}
.fs0_c00039{font-size:53.119979pt;}
.fs1_c00039{font-size:58.879976pt;}
.fs2_c00039{font-size:63.999974pt;}
.y0_c00039{bottom:0.000000pt;}
.y3_c00039{bottom:51.466913pt;}
.y2_c00039{bottom:69.386906pt;}
.yf_c00039{bottom:710.026383pt;}
.ye_c00039{bottom:737.706372pt;}
.yd_c00039{bottom:765.226361pt;}
.yc_c00039{bottom:792.906350pt;}
.yb_c00039{bottom:820.426338pt;}
.ya_c00039{bottom:848.106327pt;}
.y9_c00039{bottom:875.626316pt;}
.y8_c00039{bottom:903.306305pt;}
.y7_c00039{bottom:930.826294pt;}
.y6_c00039{bottom:958.506283pt;}
.y5_c00039{bottom:986.026272pt;}
.y4_c00039{bottom:1013.706261pt;}
.y1_c00039{bottom:1063.306241pt;}
.h2_c00039{height:39.243734pt;}
.h1_c00039{height:52.134354pt;}
.h3_c00039{height:62.812475pt;}
.h0_c00039{height:1122.666667pt;}
.w0_c00039{width:793.333333pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:113.439955pt;}
.x3_c00039{left:160.639936pt;}
.x2_c00039{left:389.439844pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00040{font-family:ff1_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:ff2_c00040;src:url('chunks/assets/font_652acd29797ab740e3afa354.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:0.675781;font-style:normal;font-weight:normal;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_1fe3f9ed39ef575108d9f552.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:0.666504;font-style:normal;font-weight:normal;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_708a9854fa47ce107ea7eb7a.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.311035;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls1_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:116.939953px;}
.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;}
}
.ws0_c00040{word-spacing:-26.999989px;}
.ws1_c00040{word-spacing:0.000000px;}
._1_c00040{margin-left:-1.105374px;}
._0_c00040{width:1.478351px;}
.fc1_c00040{color:rgb(79,129,189);}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:59.759976px;}
.fs1_c00040{font-size:66.239974px;}
.fs2_c00040{font-size:71.999971px;}
.fs5_c00040{font-size:84.239966px;}
.fs3_c00040{font-size:95.759962px;}
.fs4_c00040{font-size:107.999957px;}
.y0_c00040{bottom:0.000000px;}
.y5_c00040{bottom:57.899977px;}
.y4_c00040{bottom:78.059969px;}
.y22_c00040{bottom:132.959947px;}
.y21_c00040{bottom:171.119932px;}
.y20_c00040{bottom:209.279916px;}
.y1f_c00040{bottom:247.439901px;}
.y1e_c00040{bottom:285.599886px;}
.y1d_c00040{bottom:315.659874px;}
.y1c_c00040{bottom:346.619861px;}
.y1b_c00040{bottom:377.759849px;}
.y1a_c00040{bottom:408.719837px;}
.y19_c00040{bottom:439.859824px;}
.y18_c00040{bottom:470.819812px;}
.y17_c00040{bottom:501.959799px;}
.y16_c00040{bottom:532.919787px;}
.y15_c00040{bottom:564.059774px;}
.y14_c00040{bottom:595.019762px;}
.y13_c00040{bottom:626.159750px;}
.y12_c00040{bottom:657.119737px;}
.y11_c00040{bottom:690.599724px;}
.y10_c00040{bottom:731.639707px;}
.yf_c00040{bottom:778.259689px;}
.ye_c00040{bottom:822.539671px;}
.yd_c00040{bottom:863.939654px;}
.yc_c00040{bottom:905.339638px;}
.yb_c00040{bottom:946.739621px;}
.ya_c00040{bottom:988.139605px;}
.y9_c00040{bottom:1029.539588px;}
.y8_c00040{bottom:1065.899574px;}
.y7_c00040{bottom:1097.039561px;}
.y6_c00040{bottom:1135.919546px;}
.y3_c00040{bottom:1157.699537px;}
.y2_c00040{bottom:1178.939528px;}
.y1_c00040{bottom:1196.399521px;}
.h2_c00040{height:44.149201px;}
.h3_c00040{height:47.988262px;}
.h1_c00040{height:58.651148px;}
.h4_c00040{height:72.562471px;}
.h8_c00040{height:84.898091px;}
.h5_c00040{height:96.508086px;}
.h7_c00040{height:108.843706px;}
.h6_c00040{height:112.640580px;}
.h0_c00040{height:1263.000000px;}
.w0_c00040{width:892.500000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:127.619949px;}
.x5_c00040{left:173.519931px;}
.x1_c00040{left:181.799927px;}
.x2_c00040{left:329.039408px;}
.x6_c00040{left:423.899681px;}
.x4_c00040{left:438.120035px;}
.x7_c00040{left:446.399821px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls1_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:103.946625pt;}
.ws0_c00040{word-spacing:-23.999990pt;}
.ws1_c00040{word-spacing:0.000000pt;}
._1_c00040{margin-left:-0.982555pt;}
._0_c00040{width:1.314090pt;}
.fs0_c00040{font-size:53.119979pt;}
.fs1_c00040{font-size:58.879976pt;}
.fs2_c00040{font-size:63.999974pt;}
.fs5_c00040{font-size:74.879970pt;}
.fs3_c00040{font-size:85.119966pt;}
.fs4_c00040{font-size:95.999962pt;}
.y0_c00040{bottom:0.000000pt;}
.y5_c00040{bottom:51.466646pt;}
.y4_c00040{bottom:69.386639pt;}
.y22_c00040{bottom:118.186619pt;}
.y21_c00040{bottom:152.106606pt;}
.y20_c00040{bottom:186.026592pt;}
.y1f_c00040{bottom:219.946579pt;}
.y1e_c00040{bottom:253.866565pt;}
.y1d_c00040{bottom:280.586554pt;}
.y1c_c00040{bottom:308.106543pt;}
.y1b_c00040{bottom:335.786532pt;}
.y1a_c00040{bottom:363.306521pt;}
.y19_c00040{bottom:390.986510pt;}
.y18_c00040{bottom:418.506499pt;}
.y17_c00040{bottom:446.186488pt;}
.y16_c00040{bottom:473.706477pt;}
.y15_c00040{bottom:501.386466pt;}
.y14_c00040{bottom:528.906455pt;}
.y13_c00040{bottom:556.586444pt;}
.y12_c00040{bottom:584.106433pt;}
.y11_c00040{bottom:613.866421pt;}
.y10_c00040{bottom:650.346407pt;}
.yf_c00040{bottom:691.786390pt;}
.ye_c00040{bottom:731.146374pt;}
.yd_c00040{bottom:767.946359pt;}
.yc_c00040{bottom:804.746345pt;}
.yb_c00040{bottom:841.546330pt;}
.ya_c00040{bottom:878.346315pt;}
.y9_c00040{bottom:915.146301pt;}
.y8_c00040{bottom:947.466288pt;}
.y7_c00040{bottom:975.146277pt;}
.y6_c00040{bottom:1009.706263pt;}
.y3_c00040{bottom:1029.066255pt;}
.y2_c00040{bottom:1047.946247pt;}
.y1_c00040{bottom:1063.466241pt;}
.h2_c00040{height:39.243734pt;}
.h3_c00040{height:42.656233pt;}
.h1_c00040{height:52.134354pt;}
.h4_c00040{height:64.499974pt;}
.h8_c00040{height:75.464970pt;}
.h5_c00040{height:85.784966pt;}
.h7_c00040{height:96.749961pt;}
.h6_c00040{height:100.124960pt;}
.h0_c00040{height:1122.666667pt;}
.w0_c00040{width:793.333333pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:113.439955pt;}
.x5_c00040{left:154.239938pt;}
.x1_c00040{left:161.599935pt;}
.x2_c00040{left:292.479474pt;}
.x6_c00040{left:376.799716pt;}
.x4_c00040{left:389.440031pt;}
.x7_c00040{left:396.799841pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00041{font-family:ff1_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:ff2_c00041;src:url('chunks/assets/font_fc14b7abf30965e21a5bc869.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00041{word-spacing:0.000000px;}
._1_c00041{margin-left:-1.105374px;}
._0_c00041{width:1.195563px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs0_c00041{font-size:59.759976px;}
.fs1_c00041{font-size:66.239974px;}
.y0_c00041{bottom:0.000000px;}
.y4_c00041{bottom:57.899977px;}
.y3_c00041{bottom:78.059969px;}
.yc_c00041{bottom:873.839650px;}
.yb_c00041{bottom:911.999635px;}
.ya_c00041{bottom:950.339620px;}
.y9_c00041{bottom:988.499605px;}
.y8_c00041{bottom:1026.659589px;}
.y7_c00041{bottom:1064.819574px;}
.y6_c00041{bottom:1102.979559px;}
.y5_c00041{bottom:1141.139544px;}
.y2_c00041{bottom:1174.979530px;}
.y1_c00041{bottom:1196.219522px;}
.h2_c00041{height:44.149201px;}
.h1_c00041{height:58.651148px;}
.h0_c00041{height:1263.000000px;}
.w0_c00041{width:892.500000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:127.619949px;}
.x2_c00041{left:438.120035px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
._1_c00041{margin-left:-0.982555pt;}
._0_c00041{width:1.062723pt;}
.fs0_c00041{font-size:53.119979pt;}
.fs1_c00041{font-size:58.879976pt;}
.y0_c00041{bottom:0.000000pt;}
.y4_c00041{bottom:51.466646pt;}
.y3_c00041{bottom:69.386639pt;}
.yc_c00041{bottom:776.746356pt;}
.yb_c00041{bottom:810.666342pt;}
.ya_c00041{bottom:844.746329pt;}
.y9_c00041{bottom:878.666315pt;}
.y8_c00041{bottom:912.586302pt;}
.y7_c00041{bottom:946.506288pt;}
.y6_c00041{bottom:980.426274pt;}
.y5_c00041{bottom:1014.346261pt;}
.y2_c00041{bottom:1044.426249pt;}
.y1_c00041{bottom:1063.306241pt;}
.h2_c00041{height:39.243734pt;}
.h1_c00041{height:52.134354pt;}
.h0_c00041{height:1122.666667pt;}
.w0_c00041{width:793.333333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:113.439955pt;}
.x2_c00041{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b854a7c26c8bda454d56693.woff2')format("woff");}.ff1_c00042{font-family:ff1_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:ff2_c00042;src:url('chunks/assets/font_142c7a52ec05ec247f1e2830.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:0.675781;font-style:normal;font-weight:normal;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_0e8e22f09ecfdb900c344cf2.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;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_218c5cc5bf77f150301213ec.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00042;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls2_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:0.189300px;}
.ls0_c00042{letter-spacing:88.047565px;}
.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:-17.999993px;}
.ws1_c00042{word-spacing:0.000000px;}
._e_c00042{margin-left:-10.157442px;}
._1_c00042{margin-left:-1.105374px;}
._0_c00042{width:1.478351px;}
._2_c00042{width:3.070686px;}
._3_c00042{width:4.839306px;}
._b_c00042{width:6.115313px;}
._6_c00042{width:9.203757px;}
._7_c00042{width:11.329005px;}
._8_c00042{width:12.353445px;}
._9_c00042{width:13.464264px;}
._c_c00042{width:16.565200px;}
._d_c00042{width:21.097795px;}
._4_c00042{width:27.450540px;}
._5_c00042{width:28.670965px;}
._a_c00042{width:29.917956px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs5_c00042{font-size:41.759983px;}
.fs3_c00042{font-size:48.239981px;}
.fs4_c00042{font-size:53.999978px;}
.fs0_c00042{font-size:59.759976px;}
.fs1_c00042{font-size:66.239974px;}
.fs2_c00042{font-size:71.999971px;}
.y0_c00042{bottom:0.000000px;}
.y4_c00042{bottom:75.900270px;}
.y3_c00042{bottom:114.060254px;}
.y25_c00042{bottom:144.299942px;}
.y24_c00042{bottom:173.099931px;}
.y23_c00042{bottom:180.659928px;}
.y22_c00042{bottom:193.259923px;}
.y21_c00042{bottom:253.019899px;}
.y1f_c00042{bottom:280.199888px;}
.y20_c00042{bottom:288.479885px;}
.y1e_c00042{bottom:311.339875px;}
.y1d_c00042{bottom:342.299863px;}
.y1c_c00042{bottom:373.439851px;}
.y1b_c00042{bottom:404.399838px;}
.y1a_c00042{bottom:435.539826px;}
.y19_c00042{bottom:466.499813px;}
.y18_c00042{bottom:497.639801px;}
.y17_c00042{bottom:528.599789px;}
.y16_c00042{bottom:559.739776px;}
.y15_c00042{bottom:590.699764px;}
.y14_c00042{bottom:621.839751px;}
.y13_c00042{bottom:652.799739px;}
.y12_c00042{bottom:683.939726px;}
.y11_c00042{bottom:714.899714px;}
.y10_c00042{bottom:746.039702px;}
.yf_c00042{bottom:776.999689px;}
.ye_c00042{bottom:808.139677px;}
.yd_c00042{bottom:839.099664px;}
.yc_c00042{bottom:870.239652px;}
.yb_c00042{bottom:900.839640px;}
.ya_c00042{bottom:924.599630px;}
.y9_c00042{bottom:963.479615px;}
.y8_c00042{bottom:1002.359599px;}
.y7_c00042{bottom:1041.059584px;}
.y6_c00042{bottom:1079.939568px;}
.y5_c00042{bottom:1118.639553px;}
.y2_c00042{bottom:1176.059530px;}
.y1_c00042{bottom:1196.219522px;}
.h8_c00042{height:27.833192px;}
.h2_c00042{height:44.149201px;}
.h6_c00042{height:47.344903px;}
.h7_c00042{height:56.320290px;}
.h1_c00042{height:58.651148px;}
.h9_c00042{height:60.226851px;}
.h5_c00042{height:70.664034px;}
.h3_c00042{height:72.562471px;}
.h4_c00042{height:75.093720px;}
.h0_c00042{height:1263.000000px;}
.w0_c00042{width:892.500000px;}
.x0_c00042{left:0.000000px;}
.x5_c00042{left:127.619739px;}
.x9_c00042{left:132.839947px;}
.xa_c00042{left:136.619945px;}
.x6_c00042{left:180.719849px;}
.x1_c00042{left:181.799927px;}
.x2_c00042{left:329.039408px;}
.x4_c00042{left:438.119825px;}
.x7_c00042{left:457.559817px;}
.x8_c00042{left:463.679815px;}
.xb_c00042{left:703.619719px;}
.x3_c00042{left:765.359694px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls2_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:0.168267pt;}
.ls0_c00042{letter-spacing:78.264502pt;}
.ws0_c00042{word-spacing:-15.999994pt;}
.ws1_c00042{word-spacing:0.000000pt;}
._e_c00042{margin-left:-9.028837pt;}
._1_c00042{margin-left:-0.982555pt;}
._0_c00042{width:1.314090pt;}
._2_c00042{width:2.729499pt;}
._3_c00042{width:4.301605pt;}
._b_c00042{width:5.435834pt;}
._6_c00042{width:8.181117pt;}
._7_c00042{width:10.070227pt;}
._8_c00042{width:10.980840pt;}
._9_c00042{width:11.968234pt;}
._c_c00042{width:14.724622pt;}
._d_c00042{width:18.753596pt;}
._4_c00042{width:24.400480pt;}
._5_c00042{width:25.485303pt;}
._a_c00042{width:26.593739pt;}
.fs5_c00042{font-size:37.119985pt;}
.fs3_c00042{font-size:42.879983pt;}
.fs4_c00042{font-size:47.999981pt;}
.fs0_c00042{font-size:53.119979pt;}
.fs1_c00042{font-size:58.879976pt;}
.fs2_c00042{font-size:63.999974pt;}
.y0_c00042{bottom:0.000000pt;}
.y4_c00042{bottom:67.466906pt;}
.y3_c00042{bottom:101.386893pt;}
.y25_c00042{bottom:128.266615pt;}
.y24_c00042{bottom:153.866605pt;}
.y23_c00042{bottom:160.586602pt;}
.y22_c00042{bottom:171.786598pt;}
.y21_c00042{bottom:224.906577pt;}
.y1f_c00042{bottom:249.066567pt;}
.y20_c00042{bottom:256.426564pt;}
.y1e_c00042{bottom:276.746556pt;}
.y1d_c00042{bottom:304.266545pt;}
.y1c_c00042{bottom:331.946534pt;}
.y1b_c00042{bottom:359.466523pt;}
.y1a_c00042{bottom:387.146512pt;}
.y19_c00042{bottom:414.666501pt;}
.y18_c00042{bottom:442.346490pt;}
.y17_c00042{bottom:469.866479pt;}
.y16_c00042{bottom:497.546468pt;}
.y15_c00042{bottom:525.066457pt;}
.y14_c00042{bottom:552.746446pt;}
.y13_c00042{bottom:580.266435pt;}
.y12_c00042{bottom:607.946423pt;}
.y11_c00042{bottom:635.466412pt;}
.y10_c00042{bottom:663.146401pt;}
.yf_c00042{bottom:690.666390pt;}
.ye_c00042{bottom:718.346379pt;}
.yd_c00042{bottom:745.866368pt;}
.yc_c00042{bottom:773.546357pt;}
.yb_c00042{bottom:800.746346pt;}
.ya_c00042{bottom:821.866338pt;}
.y9_c00042{bottom:856.426324pt;}
.y8_c00042{bottom:890.986310pt;}
.y7_c00042{bottom:925.386297pt;}
.y6_c00042{bottom:959.946283pt;}
.y5_c00042{bottom:994.346269pt;}
.y2_c00042{bottom:1045.386249pt;}
.y1_c00042{bottom:1063.306241pt;}
.h8_c00042{height:24.740615pt;}
.h2_c00042{height:39.243734pt;}
.h6_c00042{height:42.084358pt;}
.h7_c00042{height:50.062480pt;}
.h1_c00042{height:52.134354pt;}
.h9_c00042{height:53.534979pt;}
.h5_c00042{height:62.812475pt;}
.h3_c00042{height:64.499974pt;}
.h4_c00042{height:66.749973pt;}
.h0_c00042{height:1122.666667pt;}
.w0_c00042{width:793.333333pt;}
.x0_c00042{left:0.000000pt;}
.x5_c00042{left:113.439768pt;}
.x9_c00042{left:118.079953pt;}
.xa_c00042{left:121.439951pt;}
.x6_c00042{left:160.639866pt;}
.x1_c00042{left:161.599935pt;}
.x2_c00042{left:292.479474pt;}
.x4_c00042{left:389.439844pt;}
.x7_c00042{left:406.719837pt;}
.x8_c00042{left:412.159835pt;}
.xb_c00042{left:625.439750pt;}
.x3_c00042{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ca6558d2fbae449fdebc21e.woff2')format("woff");}.ff1_c00043{font-family:ff1_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:ff2_c00043;src:url('chunks/assets/font_6bc237f73de04a0cad241b96.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:0.675781;font-style:normal;font-weight:normal;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_7a089b5bb285a3076fe623d9.woff2')format("woff");}.ff3_c00043{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls2_c00043{letter-spacing:0.000000px;}
.ls0_c00043{letter-spacing:0.153901px;}
.ls1_c00043{letter-spacing:0.189300px;}
.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:-16.559993px;}
.ws1_c00043{word-spacing:-14.939994px;}
.ws2_c00043{word-spacing:0.000000px;}
._11_c00043{margin-left:-12.716934px;}
._1_c00043{margin-left:-1.105374px;}
._0_c00043{width:1.195563px;}
._3_c00043{width:4.280027px;}
._8_c00043{width:6.531089px;}
._e_c00043{width:8.134881px;}
._f_c00043{width:9.262838px;}
._9_c00043{width:12.797561px;}
._a_c00043{width:14.039996px;}
._c_c00043{width:15.706660px;}
._d_c00043{width:16.930374px;}
._7_c00043{width:20.157728px;}
._10_c00043{width:21.733231px;}
._2_c00043{width:26.015500px;}
._b_c00043{width:27.398705px;}
._5_c00043{width:30.123262px;}
._6_c00043{width:31.457847px;}
._4_c00043{width:37.884896px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs4_c00043{font-size:38.879984px;}
.fs3_c00043{font-size:48.239981px;}
.fs0_c00043{font-size:59.759976px;}
.fs1_c00043{font-size:66.239974px;}
.fs2_c00043{font-size:71.999971px;}
.y0_c00043{bottom:0.000000px;}
.y4_c00043{bottom:75.719970px;}
.y3_c00043{bottom:113.879954px;}
.y1e_c00043{bottom:144.120242px;}
.y1d_c00043{bottom:172.019931px;}
.y1c_c00043{bottom:178.859928px;}
.y1b_c00043{bottom:190.199924px;}
.y1a_c00043{bottom:272.099891px;}
.y19_c00043{bottom:303.059879px;}
.y18_c00043{bottom:334.199866px;}
.y17_c00043{bottom:365.159854px;}
.y16_c00043{bottom:396.299841px;}
.y14_c00043{bottom:427.259829px;}
.y15_c00043{bottom:435.539826px;}
.y13_c00043{bottom:458.399817px;}
.y12_c00043{bottom:489.359804px;}
.y11_c00043{bottom:520.499792px;}
.y10_c00043{bottom:551.459779px;}
.yf_c00043{bottom:582.599767px;}
.ye_c00043{bottom:613.559755px;}
.yd_c00043{bottom:644.699742px;}
.yc_c00043{bottom:675.659730px;}
.yb_c00043{bottom:706.799717px;}
.ya_c00043{bottom:737.759705px;}
.y9_c00043{bottom:768.899692px;}
.y8_c00043{bottom:799.859680px;}
.y7_c00043{bottom:829.739668px;}
.y6_c00043{bottom:858.179657px;}
.y5_c00043{bottom:883.559647px;}
.y2_c00043{bottom:1156.979537px;}
.y1_c00043{bottom:1195.859522px;}
.h6_c00043{height:38.158578px;}
.h2_c00043{height:44.149201px;}
.h5_c00043{height:47.344903px;}
.h1_c00043{height:58.651148px;}
.h4_c00043{height:65.010911px;}
.h3_c00043{height:70.664034px;}
.h0_c00043{height:1263.000000px;}
.w0_c00043{width:892.500000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:127.799949px;}
.xf_c00043{left:132.659947px;}
.x5_c00043{left:180.899928px;}
.x4_c00043{left:277.559889px;}
.xa_c00043{left:378.719849px;}
.x2_c00043{left:438.300034px;}
.xb_c00043{left:506.879797px;}
.x6_c00043{left:562.319775px;}
.x3_c00043{left:601.919759px;}
.x8_c00043{left:660.779736px;}
.x7_c00043{left:666.899733px;}
.x9_c00043{left:722.519711px;}
.xc_c00043{left:728.459709px;}
.xd_c00043{left:732.779707px;}
.xe_c00043{left:738.899704px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls2_c00043{letter-spacing:0.000000pt;}
.ls0_c00043{letter-spacing:0.136801pt;}
.ls1_c00043{letter-spacing:0.168267pt;}
.ws0_c00043{word-spacing:-14.719994pt;}
.ws1_c00043{word-spacing:-13.279995pt;}
.ws2_c00043{word-spacing:0.000000pt;}
._11_c00043{margin-left:-11.303941pt;}
._1_c00043{margin-left:-0.982555pt;}
._0_c00043{width:1.062723pt;}
._3_c00043{width:3.804468pt;}
._8_c00043{width:5.805413pt;}
._e_c00043{width:7.231005pt;}
._f_c00043{width:8.233634pt;}
._9_c00043{width:11.375610pt;}
._a_c00043{width:12.479997pt;}
._c_c00043{width:13.961475pt;}
._d_c00043{width:15.049221pt;}
._7_c00043{width:17.917981pt;}
._10_c00043{width:19.318428pt;}
._2_c00043{width:23.124888pt;}
._b_c00043{width:24.354404pt;}
._5_c00043{width:26.776233pt;}
._6_c00043{width:27.962531pt;}
._4_c00043{width:33.675463pt;}
.fs4_c00043{font-size:34.559986pt;}
.fs3_c00043{font-size:42.879983pt;}
.fs0_c00043{font-size:53.119979pt;}
.fs1_c00043{font-size:58.879976pt;}
.fs2_c00043{font-size:63.999974pt;}
.y0_c00043{bottom:0.000000pt;}
.y4_c00043{bottom:67.306640pt;}
.y3_c00043{bottom:101.226626pt;}
.y1e_c00043{bottom:128.106882pt;}
.y1d_c00043{bottom:152.906606pt;}
.y1c_c00043{bottom:158.986603pt;}
.y1b_c00043{bottom:169.066599pt;}
.y1a_c00043{bottom:241.866570pt;}
.y19_c00043{bottom:269.386559pt;}
.y18_c00043{bottom:297.066548pt;}
.y17_c00043{bottom:324.586537pt;}
.y16_c00043{bottom:352.266526pt;}
.y14_c00043{bottom:379.786515pt;}
.y15_c00043{bottom:387.146512pt;}
.y13_c00043{bottom:407.466504pt;}
.y12_c00043{bottom:434.986493pt;}
.y11_c00043{bottom:462.666482pt;}
.y10_c00043{bottom:490.186471pt;}
.yf_c00043{bottom:517.866460pt;}
.ye_c00043{bottom:545.386449pt;}
.yd_c00043{bottom:573.066437pt;}
.yc_c00043{bottom:600.586426pt;}
.yb_c00043{bottom:628.266415pt;}
.ya_c00043{bottom:655.786404pt;}
.y9_c00043{bottom:683.466393pt;}
.y8_c00043{bottom:710.986382pt;}
.y7_c00043{bottom:737.546372pt;}
.y6_c00043{bottom:762.826362pt;}
.y5_c00043{bottom:785.386353pt;}
.y2_c00043{bottom:1028.426255pt;}
.y1_c00043{bottom:1062.986241pt;}
.h6_c00043{height:33.918736pt;}
.h2_c00043{height:39.243734pt;}
.h5_c00043{height:42.084358pt;}
.h1_c00043{height:52.134354pt;}
.h4_c00043{height:57.787477pt;}
.h3_c00043{height:62.812475pt;}
.h0_c00043{height:1122.666667pt;}
.w0_c00043{width:793.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:113.599955pt;}
.xf_c00043{left:117.919953pt;}
.x5_c00043{left:160.799936pt;}
.x4_c00043{left:246.719901pt;}
.xa_c00043{left:336.639865pt;}
.x2_c00043{left:389.600031pt;}
.xb_c00043{left:450.559820pt;}
.x6_c00043{left:499.839800pt;}
.x3_c00043{left:535.039786pt;}
.x8_c00043{left:587.359765pt;}
.x7_c00043{left:592.799763pt;}
.x9_c00043{left:642.239743pt;}
.xc_c00043{left:647.519741pt;}
.xd_c00043{left:651.359739pt;}
.xe_c00043{left:656.799737pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_382b9f58b6e96441420d1987.woff2')format("woff");}.ff1_c00044{font-family:ff1_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:ff2_c00044;src:url('chunks/assets/font_2d5b45c6f9354f10f1298e26.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:0.675781;font-style:normal;font-weight:normal;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_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00044;src:url('chunks/assets/font_605c6040f198218aebe2f041.woff2')format("woff");}.ff5_c00044{font-family:ff5_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;}
.m0_c00044{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls2_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:0.163552px;}
.ls1_c00044{letter-spacing:54.908378px;}
.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:-17.999993px;}
.ws1_c00044{word-spacing:-14.939994px;}
.ws2_c00044{word-spacing:0.000000px;}
._b_c00044{margin-left:-9.824475px;}
._7_c00044{margin-left:-2.234079px;}
._1_c00044{margin-left:-1.105374px;}
._0_c00044{width:1.478351px;}
._4_c00044{width:2.829193px;}
._5_c00044{width:4.632183px;}
._a_c00044{width:5.782347px;}
._8_c00044{width:7.292949px;}
._d_c00044{width:12.681090px;}
._c_c00044{width:13.772141px;}
._9_c00044{width:16.758723px;}
._3_c00044{width:19.371082px;}
._2_c00044{width:21.061107px;}
._6_c00044{width:33.219745px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs4_c00044{font-size:41.759983px;}
.fs3_c00044{font-size:48.239981px;}
.fs0_c00044{font-size:59.759976px;}
.fs1_c00044{font-size:66.239974px;}
.fs2_c00044{font-size:71.999971px;}
.y0_c00044{bottom:0.000000px;}
.y4_c00044{bottom:75.900270px;}
.y3_c00044{bottom:114.060254px;}
.y27_c00044{bottom:142.860243px;}
.y26_c00044{bottom:150.419940px;}
.y25_c00044{bottom:166.079934px;}
.y24_c00044{bottom:187.679925px;}
.y23_c00044{bottom:208.559917px;}
.y22_c00044{bottom:216.119914px;}
.y21_c00044{bottom:228.719909px;}
.y1f_c00044{bottom:317.099873px;}
.y20_c00044{bottom:325.379870px;}
.y1e_c00044{bottom:348.059861px;}
.y1d_c00044{bottom:379.199848px;}
.y1c_c00044{bottom:410.159836px;}
.y1b_c00044{bottom:441.299823px;}
.y1a_c00044{bottom:487.379805px;}
.y19_c00044{bottom:518.339793px;}
.y18_c00044{bottom:549.479780px;}
.y17_c00044{bottom:580.439768px;}
.y16_c00044{bottom:611.399755px;}
.y15_c00044{bottom:642.539743px;}
.y14_c00044{bottom:673.499731px;}
.y13_c00044{bottom:704.639718px;}
.y12_c00044{bottom:735.599706px;}
.y11_c00044{bottom:766.739693px;}
.y10_c00044{bottom:797.699681px;}
.yf_c00044{bottom:828.839668px;}
.ye_c00044{bottom:859.799656px;}
.yc_c00044{bottom:894.539642px;}
.yd_c00044{bottom:902.819639px;}
.yb_c00044{bottom:925.499630px;}
.ya_c00044{bottom:960.239616px;}
.y9_c00044{bottom:991.199604px;}
.y8_c00044{bottom:1025.939590px;}
.y7_c00044{bottom:1056.899577px;}
.y6_c00044{bottom:1088.039565px;}
.y5_c00044{bottom:1118.999552px;}
.y2_c00044{bottom:1176.059530px;}
.y1_c00044{bottom:1196.219522px;}
.h6_c00044{height:27.833192px;}
.h2_c00044{height:44.149201px;}
.h4_c00044{height:47.344903px;}
.h1_c00044{height:58.651148px;}
.h3_c00044{height:70.664034px;}
.h5_c00044{height:75.093720px;}
.h0_c00044{height:1263.000000px;}
.w0_c00044{width:892.500000px;}
.x0_c00044{left:0.000000px;}
.x5_c00044{left:127.619739px;}
.xd_c00044{left:132.839947px;}
.xf_c00044{left:136.619945px;}
.xe_c00044{left:139.859944px;}
.x7_c00044{left:179.639928px;}
.x6_c00044{left:180.719928px;}
.x1_c00044{left:181.799927px;}
.x8_c00044{left:185.759926px;}
.x9_c00044{left:207.719917px;}
.xa_c00044{left:234.719955px;}
.x2_c00044{left:329.039408px;}
.xb_c00044{left:365.039854px;}
.xc_c00044{left:371.159852px;}
.x4_c00044{left:438.119825px;}
.x10_c00044{left:597.239761px;}
.x3_c00044{left:765.359694px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls2_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:0.145380pt;}
.ls1_c00044{letter-spacing:48.807447pt;}
.ws0_c00044{word-spacing:-15.999994pt;}
.ws1_c00044{word-spacing:-13.279995pt;}
.ws2_c00044{word-spacing:0.000000pt;}
._b_c00044{margin-left:-8.732867pt;}
._7_c00044{margin-left:-1.985848pt;}
._1_c00044{margin-left:-0.982555pt;}
._0_c00044{width:1.314090pt;}
._4_c00044{width:2.514838pt;}
._5_c00044{width:4.117496pt;}
._a_c00044{width:5.139864pt;}
._8_c00044{width:6.482621pt;}
._d_c00044{width:11.272080pt;}
._c_c00044{width:12.241903pt;}
._9_c00044{width:14.896643pt;}
._3_c00044{width:17.218740pt;}
._2_c00044{width:18.720984pt;}
._6_c00044{width:29.528662pt;}
.fs4_c00044{font-size:37.119985pt;}
.fs3_c00044{font-size:42.879983pt;}
.fs0_c00044{font-size:53.119979pt;}
.fs1_c00044{font-size:58.879976pt;}
.fs2_c00044{font-size:63.999974pt;}
.y0_c00044{bottom:0.000000pt;}
.y4_c00044{bottom:67.466906pt;}
.y3_c00044{bottom:101.386893pt;}
.y27_c00044{bottom:126.986883pt;}
.y26_c00044{bottom:133.706613pt;}
.y25_c00044{bottom:147.626608pt;}
.y24_c00044{bottom:166.826600pt;}
.y23_c00044{bottom:185.386593pt;}
.y22_c00044{bottom:192.106590pt;}
.y21_c00044{bottom:203.306585pt;}
.y1f_c00044{bottom:281.866554pt;}
.y20_c00044{bottom:289.226551pt;}
.y1e_c00044{bottom:309.386543pt;}
.y1d_c00044{bottom:337.066532pt;}
.y1c_c00044{bottom:364.586521pt;}
.y1b_c00044{bottom:392.266510pt;}
.y1a_c00044{bottom:433.226493pt;}
.y19_c00044{bottom:460.746482pt;}
.y18_c00044{bottom:488.426471pt;}
.y17_c00044{bottom:515.946460pt;}
.y16_c00044{bottom:543.466449pt;}
.y15_c00044{bottom:571.146438pt;}
.y14_c00044{bottom:598.666427pt;}
.y13_c00044{bottom:626.346416pt;}
.y12_c00044{bottom:653.866405pt;}
.y11_c00044{bottom:681.546394pt;}
.y10_c00044{bottom:709.066383pt;}
.yf_c00044{bottom:736.746372pt;}
.ye_c00044{bottom:764.266361pt;}
.yc_c00044{bottom:795.146349pt;}
.yd_c00044{bottom:802.506346pt;}
.yb_c00044{bottom:822.666338pt;}
.ya_c00044{bottom:853.546325pt;}
.y9_c00044{bottom:881.066314pt;}
.y8_c00044{bottom:911.946302pt;}
.y7_c00044{bottom:939.466291pt;}
.y6_c00044{bottom:967.146280pt;}
.y5_c00044{bottom:994.666269pt;}
.y2_c00044{bottom:1045.386249pt;}
.y1_c00044{bottom:1063.306241pt;}
.h6_c00044{height:24.740615pt;}
.h2_c00044{height:39.243734pt;}
.h4_c00044{height:42.084358pt;}
.h1_c00044{height:52.134354pt;}
.h3_c00044{height:62.812475pt;}
.h5_c00044{height:66.749973pt;}
.h0_c00044{height:1122.666667pt;}
.w0_c00044{width:793.333333pt;}
.x0_c00044{left:0.000000pt;}
.x5_c00044{left:113.439768pt;}
.xd_c00044{left:118.079953pt;}
.xf_c00044{left:121.439951pt;}
.xe_c00044{left:124.319950pt;}
.x7_c00044{left:159.679936pt;}
.x6_c00044{left:160.639936pt;}
.x1_c00044{left:161.599935pt;}
.x8_c00044{left:165.119934pt;}
.x9_c00044{left:184.639926pt;}
.xa_c00044{left:208.639960pt;}
.x2_c00044{left:292.479474pt;}
.xb_c00044{left:324.479870pt;}
.xc_c00044{left:329.919868pt;}
.x4_c00044{left:389.439844pt;}
.x10_c00044{left:530.879788pt;}
.x3_c00044{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7df351a4f85f3f5f97bacbb3.woff2')format("woff");}.ff1_c00045{font-family:ff1_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:ff2_c00045;src:url('chunks/assets/font_ab469a8290910c687a3d0f47.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:0.675781;font-style:normal;font-weight:normal;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_76c5a77c7c20513e8376af02.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;}
.m4_c00045{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,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.182640px;}
.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:-14.939994px;}
.ws1_c00045{word-spacing:0.000000px;}
._10_c00045{margin-left:-9.403230px;}
._1_c00045{margin-left:-1.105374px;}
._0_c00045{width:1.195563px;}
._e_c00045{width:2.384996px;}
._a_c00045{width:4.121618px;}
._f_c00045{width:5.361101px;}
._4_c00045{width:6.741072px;}
._d_c00045{width:7.808616px;}
._c_c00045{width:8.879853px;}
._7_c00045{width:11.079863px;}
._6_c00045{width:12.153111px;}
._9_c00045{width:13.656802px;}
._b_c00045{width:16.053726px;}
._2_c00045{width:19.248408px;}
._8_c00045{width:20.308586px;}
._3_c00045{width:23.271017px;}
._5_c00045{width:26.253055px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs5_c00045{font-size:38.879984px;}
.fs4_c00045{font-size:45.359982px;}
.fs0_c00045{font-size:59.759976px;}
.fs1_c00045{font-size:66.239974px;}
.fs2_c00045{font-size:69.119972px;}
.fs3_c00045{font-size:71.999971px;}
.y0_c00045{bottom:0.000000px;}
.y4_c00045{bottom:75.899970px;}
.y3_c00045{bottom:114.059954px;}
.y25_c00045{bottom:133.680247px;}
.y24_c00045{bottom:141.240244px;}
.y23_c00045{bottom:152.579939px;}
.y22_c00045{bottom:225.839910px;}
.y21_c00045{bottom:255.539898px;}
.y20_c00045{bottom:285.239886px;}
.y1f_c00045{bottom:315.119874px;}
.y1e_c00045{bottom:344.819862px;}
.y1d_c00045{bottom:389.639844px;}
.y1c_c00045{bottom:419.339832px;}
.y1b_c00045{bottom:449.039820px;}
.y1a_c00045{bottom:478.919808px;}
.y19_c00045{bottom:508.619797px;}
.y18_c00045{bottom:538.319785px;}
.y17_c00045{bottom:583.139767px;}
.y16_c00045{bottom:612.839755px;}
.y15_c00045{bottom:642.539743px;}
.y14_c00045{bottom:672.419731px;}
.y13_c00045{bottom:702.119719px;}
.y11_c00045{bottom:746.939701px;}
.y12_c00045{bottom:754.499698px;}
.y10_c00045{bottom:776.639689px;}
.yf_c00045{bottom:806.339677px;}
.ye_c00045{bottom:836.219666px;}
.yd_c00045{bottom:865.919654px;}
.yc_c00045{bottom:895.619642px;}
.yb_c00045{bottom:940.439624px;}
.ya_c00045{bottom:970.139612px;}
.y9_c00045{bottom:999.839600px;}
.y8_c00045{bottom:1029.719588px;}
.y7_c00045{bottom:1059.419576px;}
.y6_c00045{bottom:1089.119564px;}
.y5_c00045{bottom:1118.999552px;}
.y2_c00045{bottom:1157.159537px;}
.y1_c00045{bottom:1196.039522px;}
.h6_c00045{height:25.913662px;}
.h2_c00045{height:44.149201px;}
.h5_c00045{height:44.518342px;}
.h7_c00045{height:58.621969px;}
.h1_c00045{height:58.651148px;}
.h3_c00045{height:67.837473px;}
.h4_c00045{height:70.664034px;}
.h0_c00045{height:1263.000000px;}
.w0_c00045{width:892.500000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:127.619949px;}
.x7_c00045{left:132.479947px;}
.x3_c00045{left:180.719928px;}
.x2_c00045{left:438.120035px;}
.x5_c00045{left:572.039771px;}
.x6_c00045{left:577.799769px;}
.x4_c00045{left:707.219717px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.162347pt;}
.ws0_c00045{word-spacing:-13.279995pt;}
.ws1_c00045{word-spacing:0.000000pt;}
._10_c00045{margin-left:-8.358427pt;}
._1_c00045{margin-left:-0.982555pt;}
._0_c00045{width:1.062723pt;}
._e_c00045{width:2.119997pt;}
._a_c00045{width:3.663660pt;}
._f_c00045{width:4.765423pt;}
._4_c00045{width:5.992064pt;}
._d_c00045{width:6.940992pt;}
._c_c00045{width:7.893202pt;}
._7_c00045{width:9.848767pt;}
._6_c00045{width:10.802765pt;}
._9_c00045{width:12.139380pt;}
._b_c00045{width:14.269978pt;}
._2_c00045{width:17.109696pt;}
._8_c00045{width:18.052076pt;}
._3_c00045{width:20.685348pt;}
._5_c00045{width:23.336049pt;}
.fs5_c00045{font-size:34.559986pt;}
.fs4_c00045{font-size:40.319984pt;}
.fs0_c00045{font-size:53.119979pt;}
.fs1_c00045{font-size:58.879976pt;}
.fs2_c00045{font-size:61.439975pt;}
.fs3_c00045{font-size:63.999974pt;}
.y0_c00045{bottom:0.000000pt;}
.y4_c00045{bottom:67.466640pt;}
.y3_c00045{bottom:101.386626pt;}
.y25_c00045{bottom:118.826886pt;}
.y24_c00045{bottom:125.546883pt;}
.y23_c00045{bottom:135.626612pt;}
.y22_c00045{bottom:200.746586pt;}
.y21_c00045{bottom:227.146576pt;}
.y20_c00045{bottom:253.546565pt;}
.y1f_c00045{bottom:280.106555pt;}
.y1e_c00045{bottom:306.506544pt;}
.y1d_c00045{bottom:346.346528pt;}
.y1c_c00045{bottom:372.746518pt;}
.y1b_c00045{bottom:399.146507pt;}
.y1a_c00045{bottom:425.706496pt;}
.y19_c00045{bottom:452.106486pt;}
.y18_c00045{bottom:478.506475pt;}
.y17_c00045{bottom:518.346459pt;}
.y16_c00045{bottom:544.746449pt;}
.y15_c00045{bottom:571.146438pt;}
.y14_c00045{bottom:597.706428pt;}
.y13_c00045{bottom:624.106417pt;}
.y11_c00045{bottom:663.946401pt;}
.y12_c00045{bottom:670.666398pt;}
.y10_c00045{bottom:690.346391pt;}
.yf_c00045{bottom:716.746380pt;}
.ye_c00045{bottom:743.306369pt;}
.yd_c00045{bottom:769.706359pt;}
.yc_c00045{bottom:796.106348pt;}
.yb_c00045{bottom:835.946332pt;}
.ya_c00045{bottom:862.346322pt;}
.y9_c00045{bottom:888.746311pt;}
.y8_c00045{bottom:915.306301pt;}
.y7_c00045{bottom:941.706290pt;}
.y6_c00045{bottom:968.106279pt;}
.y5_c00045{bottom:994.666269pt;}
.y2_c00045{bottom:1028.586255pt;}
.y1_c00045{bottom:1063.146241pt;}
.h6_c00045{height:23.034366pt;}
.h2_c00045{height:39.243734pt;}
.h5_c00045{height:39.571859pt;}
.h7_c00045{height:52.108417pt;}
.h1_c00045{height:52.134354pt;}
.h3_c00045{height:60.299976pt;}
.h4_c00045{height:62.812475pt;}
.h0_c00045{height:1122.666667pt;}
.w0_c00045{width:793.333333pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:113.439955pt;}
.x7_c00045{left:117.759953pt;}
.x3_c00045{left:160.639936pt;}
.x2_c00045{left:389.440031pt;}
.x5_c00045{left:508.479797pt;}
.x6_c00045{left:513.599795pt;}
.x4_c00045{left:628.639749pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41ddc5b2ce9fc5ecedb43c4c.woff2')format("woff");}.ff1_c00046{font-family:ff1_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:ff2_c00046;src:url('chunks/assets/font_ab469a8290910c687a3d0f47.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:0.675781;font-style:normal;font-weight:normal;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_8f3ff36dc3669e733b9740ad.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.311035;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_1bd69ff08f492776e9b699ca.woff2')format("woff");}.ff5_c00046{font-family:ff5_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;}
.m3_c00046{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,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.189300px;}
.ls0_c00046{letter-spacing:88.047565px;}
.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:-17.999993px;}
.ws1_c00046{word-spacing:-14.939994px;}
.ws2_c00046{word-spacing:0.000000px;}
._12_c00046{margin-left:-9.269009px;}
._d_c00046{margin-left:-2.947713px;}
._1_c00046{margin-left:-1.105374px;}
._0_c00046{width:1.478351px;}
._3_c00046{width:2.818576px;}
._2_c00046{width:3.836998px;}
._6_c00046{width:5.226881px;}
._f_c00046{width:9.128154px;}
._c_c00046{width:10.338711px;}
._10_c00046{width:11.349344px;}
._a_c00046{width:12.454115px;}
._9_c00046{width:13.521434px;}
._b_c00046{width:14.526587px;}
._11_c00046{width:16.083112px;}
._8_c00046{width:20.994242px;}
._7_c00046{width:22.255291px;}
._e_c00046{width:30.421993px;}
._4_c00046{width:32.448323px;}
._5_c00046{width:33.496840px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs5_c00046{font-size:38.879984px;}
.fs3_c00046{font-size:45.359982px;}
.fs0_c00046{font-size:59.759976px;}
.fs1_c00046{font-size:66.239974px;}
.fs2_c00046{font-size:69.119972px;}
.fs4_c00046{font-size:71.999971px;}
.y0_c00046{bottom:0.000000px;}
.y4_c00046{bottom:75.900270px;}
.y3_c00046{bottom:114.060254px;}
.y26_c00046{bottom:133.320247px;}
.y25_c00046{bottom:140.160244px;}
.y24_c00046{bottom:151.499939px;}
.y23_c00046{bottom:197.219921px;}
.y22_c00046{bottom:228.179909px;}
.y21_c00046{bottom:259.319896px;}
.y20_c00046{bottom:290.279884px;}
.y1f_c00046{bottom:321.419871px;}
.y1e_c00046{bottom:352.379859px;}
.y1d_c00046{bottom:383.519847px;}
.y1c_c00046{bottom:414.479834px;}
.y1b_c00046{bottom:445.619822px;}
.y1a_c00046{bottom:476.579809px;}
.y19_c00046{bottom:507.719797px;}
.y18_c00046{bottom:538.679785px;}
.y17_c00046{bottom:569.819772px;}
.y16_c00046{bottom:600.779760px;}
.y15_c00046{bottom:639.299744px;}
.y14_c00046{bottom:663.059735px;}
.y13_c00046{bottom:701.939719px;}
.y11_c00046{bottom:747.659701px;}
.y12_c00046{bottom:755.219698px;}
.y10_c00046{bottom:777.539689px;}
.yf_c00046{bottom:807.239677px;}
.ye_c00046{bottom:836.939665px;}
.yd_c00046{bottom:866.819653px;}
.yc_c00046{bottom:896.519641px;}
.yb_c00046{bottom:926.219630px;}
.ya_c00046{bottom:955.919618px;}
.y9_c00046{bottom:1000.739600px;}
.y8_c00046{bottom:1030.439588px;}
.y7_c00046{bottom:1060.319576px;}
.y6_c00046{bottom:1090.019564px;}
.y5_c00046{bottom:1119.719552px;}
.y2_c00046{bottom:1176.059530px;}
.y1_c00046{bottom:1196.219522px;}
.h8_c00046{height:38.158578px;}
.h2_c00046{height:44.149201px;}
.h4_c00046{height:44.518342px;}
.h1_c00046{height:58.651148px;}
.h3_c00046{height:67.837473px;}
.h7_c00046{height:70.664034px;}
.h5_c00046{height:72.562471px;}
.h6_c00046{height:75.093720px;}
.h0_c00046{height:1263.000000px;}
.w0_c00046{width:892.500000px;}
.x0_c00046{left:0.000000px;}
.x5_c00046{left:127.619739px;}
.x9_c00046{left:132.479947px;}
.x6_c00046{left:180.719928px;}
.x1_c00046{left:181.799927px;}
.x2_c00046{left:329.039408px;}
.x4_c00046{left:438.119825px;}
.x7_c00046{left:738.539705px;}
.x8_c00046{left:744.299702px;}
.x3_c00046{left:765.359694px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls2_c00046{letter-spacing:0.000000pt;}
.ls1_c00046{letter-spacing:0.168267pt;}
.ls0_c00046{letter-spacing:78.264502pt;}
.ws0_c00046{word-spacing:-15.999994pt;}
.ws1_c00046{word-spacing:-13.279995pt;}
.ws2_c00046{word-spacing:0.000000pt;}
._12_c00046{margin-left:-8.239119pt;}
._d_c00046{margin-left:-2.620189pt;}
._1_c00046{margin-left:-0.982555pt;}
._0_c00046{width:1.314090pt;}
._3_c00046{width:2.505401pt;}
._2_c00046{width:3.410665pt;}
._6_c00046{width:4.646116pt;}
._f_c00046{width:8.113915pt;}
._c_c00046{width:9.189966pt;}
._10_c00046{width:10.088306pt;}
._a_c00046{width:11.070324pt;}
._9_c00046{width:12.019053pt;}
._b_c00046{width:12.912522pt;}
._11_c00046{width:14.296100pt;}
._8_c00046{width:18.661549pt;}
._7_c00046{width:19.782481pt;}
._e_c00046{width:27.041771pt;}
._4_c00046{width:28.842953pt;}
._5_c00046{width:29.774969pt;}
.fs5_c00046{font-size:34.559986pt;}
.fs3_c00046{font-size:40.319984pt;}
.fs0_c00046{font-size:53.119979pt;}
.fs1_c00046{font-size:58.879976pt;}
.fs2_c00046{font-size:61.439975pt;}
.fs4_c00046{font-size:63.999974pt;}
.y0_c00046{bottom:0.000000pt;}
.y4_c00046{bottom:67.466906pt;}
.y3_c00046{bottom:101.386893pt;}
.y26_c00046{bottom:118.506886pt;}
.y25_c00046{bottom:124.586883pt;}
.y24_c00046{bottom:134.666613pt;}
.y23_c00046{bottom:175.306597pt;}
.y22_c00046{bottom:202.826586pt;}
.y21_c00046{bottom:230.506574pt;}
.y20_c00046{bottom:258.026563pt;}
.y1f_c00046{bottom:285.706552pt;}
.y1e_c00046{bottom:313.226541pt;}
.y1d_c00046{bottom:340.906530pt;}
.y1c_c00046{bottom:368.426519pt;}
.y1b_c00046{bottom:396.106508pt;}
.y1a_c00046{bottom:423.626497pt;}
.y19_c00046{bottom:451.306486pt;}
.y18_c00046{bottom:478.826475pt;}
.y17_c00046{bottom:506.506464pt;}
.y16_c00046{bottom:534.026453pt;}
.y15_c00046{bottom:568.266439pt;}
.y14_c00046{bottom:589.386431pt;}
.y13_c00046{bottom:623.946417pt;}
.y11_c00046{bottom:664.586401pt;}
.y12_c00046{bottom:671.306398pt;}
.y10_c00046{bottom:691.146390pt;}
.yf_c00046{bottom:717.546380pt;}
.ye_c00046{bottom:743.946369pt;}
.yd_c00046{bottom:770.506358pt;}
.yc_c00046{bottom:796.906348pt;}
.yb_c00046{bottom:823.306337pt;}
.ya_c00046{bottom:849.706327pt;}
.y9_c00046{bottom:889.546311pt;}
.y8_c00046{bottom:915.946300pt;}
.y7_c00046{bottom:942.506290pt;}
.y6_c00046{bottom:968.906279pt;}
.y5_c00046{bottom:995.306269pt;}
.y2_c00046{bottom:1045.386249pt;}
.y1_c00046{bottom:1063.306241pt;}
.h8_c00046{height:33.918736pt;}
.h2_c00046{height:39.243734pt;}
.h4_c00046{height:39.571859pt;}
.h1_c00046{height:52.134354pt;}
.h3_c00046{height:60.299976pt;}
.h7_c00046{height:62.812475pt;}
.h5_c00046{height:64.499974pt;}
.h6_c00046{height:66.749973pt;}
.h0_c00046{height:1122.666667pt;}
.w0_c00046{width:793.333333pt;}
.x0_c00046{left:0.000000pt;}
.x5_c00046{left:113.439768pt;}
.x9_c00046{left:117.759953pt;}
.x6_c00046{left:160.639936pt;}
.x1_c00046{left:161.599935pt;}
.x2_c00046{left:292.479474pt;}
.x4_c00046{left:389.439844pt;}
.x7_c00046{left:656.479737pt;}
.x8_c00046{left:661.599735pt;}
.x3_c00046{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d72cf3b6f44bb6531e7384f.woff2')format("woff");}.ff1_c00047{font-family:ff1_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:ff2_c00047;src:url('chunks/assets/font_019e14efb39a586cae7d4655.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:0.675781;font-style:normal;font-weight:normal;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_20d7e746fc80925f8861cf0f.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;}
.m0_c00047{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls1_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00047{word-spacing:-17.999993px;}
.ws1_c00047{word-spacing:-14.939994px;}
.ws2_c00047{word-spacing:0.000000px;}
._e_c00047{margin-left:-9.813660px;}
._b_c00047{margin-left:-2.580763px;}
._1_c00047{margin-left:-1.105374px;}
._0_c00047{width:1.195563px;}
._9_c00047{width:3.139105px;}
._a_c00047{width:4.140185px;}
._5_c00047{width:5.771531px;}
._6_c00047{width:7.004792px;}
._3_c00047{width:8.313273px;}
._4_c00047{width:9.601804px;}
._c_c00047{width:13.451859px;}
._8_c00047{width:15.147657px;}
._7_c00047{width:16.547411px;}
._2_c00047{width:39.609168px;}
._d_c00047{width:194.525202px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs6_c00047{font-size:38.879984px;}
.fs4_c00047{font-size:41.759983px;}
.fs3_c00047{font-size:48.239981px;}
.fs5_c00047{font-size:53.999978px;}
.fs0_c00047{font-size:59.759976px;}
.fs1_c00047{font-size:66.239974px;}
.fs2_c00047{font-size:71.999971px;}
.y0_c00047{bottom:0.000000px;}
.y4_c00047{bottom:75.899970px;}
.y3_c00047{bottom:114.059954px;}
.y2d_c00047{bottom:133.679947px;}
.y2c_c00047{bottom:151.679939px;}
.y2b_c00047{bottom:158.519937px;}
.y2a_c00047{bottom:172.019931px;}
.y29_c00047{bottom:192.359923px;}
.y28_c00047{bottom:212.339915px;}
.y27_c00047{bottom:219.179912px;}
.y26_c00047{bottom:231.599907px;}
.y25_c00047{bottom:249.419900px;}
.y24_c00047{bottom:268.679893px;}
.y23_c00047{bottom:276.239890px;}
.y22_c00047{bottom:288.839884px;}
.y21_c00047{bottom:341.939863px;}
.y20_c00047{bottom:373.079851px;}
.y1e_c00047{bottom:404.039838px;}
.y1f_c00047{bottom:412.319835px;}
.y1d_c00047{bottom:435.179826px;}
.y1c_c00047{bottom:466.139814px;}
.y1b_c00047{bottom:497.279801px;}
.y1a_c00047{bottom:528.239789px;}
.y19_c00047{bottom:559.379776px;}
.y18_c00047{bottom:590.339764px;}
.y17_c00047{bottom:621.479751px;}
.y16_c00047{bottom:652.439739px;}
.y15_c00047{bottom:683.579727px;}
.y14_c00047{bottom:714.539714px;}
.y13_c00047{bottom:745.679702px;}
.y11_c00047{bottom:776.639689px;}
.y12_c00047{bottom:784.919686px;}
.y10_c00047{bottom:807.779677px;}
.yf_c00047{bottom:838.739665px;}
.ye_c00047{bottom:869.879652px;}
.yd_c00047{bottom:900.839640px;}
.yb_c00047{bottom:931.979627px;}
.yc_c00047{bottom:940.259624px;}
.ya_c00047{bottom:962.939615px;}
.y9_c00047{bottom:994.079602px;}
.y8_c00047{bottom:1025.039590px;}
.y7_c00047{bottom:1056.179578px;}
.y6_c00047{bottom:1087.139565px;}
.y5_c00047{bottom:1118.279553px;}
.y2_c00047{bottom:1157.159537px;}
.y1_c00047{bottom:1196.039522px;}
.h5_c00047{height:27.833192px;}
.h7_c00047{height:38.158578px;}
.h8_c00047{height:39.830258px;}
.h2_c00047{height:44.149201px;}
.h4_c00047{height:47.344903px;}
.h6_c00047{height:52.998026px;}
.h1_c00047{height:58.651148px;}
.h3_c00047{height:70.664034px;}
.h0_c00047{height:1263.000000px;}
.w0_c00047{width:892.500000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:127.619949px;}
.xa_c00047{left:132.839947px;}
.xb_c00047{left:136.799945px;}
.x3_c00047{left:180.719928px;}
.x4_c00047{left:433.079827px;}
.x2_c00047{left:438.120035px;}
.x5_c00047{left:439.199824px;}
.x6_c00047{left:651.959739px;}
.x7_c00047{left:658.079737px;}
.x8_c00047{left:750.059700px;}
.x9_c00047{left:756.179698px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls1_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.168267pt;}
.ws0_c00047{word-spacing:-15.999994pt;}
.ws1_c00047{word-spacing:-13.279995pt;}
.ws2_c00047{word-spacing:0.000000pt;}
._e_c00047{margin-left:-8.723253pt;}
._b_c00047{margin-left:-2.294011pt;}
._1_c00047{margin-left:-0.982555pt;}
._0_c00047{width:1.062723pt;}
._9_c00047{width:2.790316pt;}
._a_c00047{width:3.680165pt;}
._5_c00047{width:5.130250pt;}
._6_c00047{width:6.226481pt;}
._3_c00047{width:7.389576pt;}
._4_c00047{width:8.534937pt;}
._c_c00047{width:11.957208pt;}
._8_c00047{width:13.464584pt;}
._7_c00047{width:14.708810pt;}
._2_c00047{width:35.208150pt;}
._d_c00047{width:172.911291pt;}
.fs6_c00047{font-size:34.559986pt;}
.fs4_c00047{font-size:37.119985pt;}
.fs3_c00047{font-size:42.879983pt;}
.fs5_c00047{font-size:47.999981pt;}
.fs0_c00047{font-size:53.119979pt;}
.fs1_c00047{font-size:58.879976pt;}
.fs2_c00047{font-size:63.999974pt;}
.y0_c00047{bottom:0.000000pt;}
.y4_c00047{bottom:67.466640pt;}
.y3_c00047{bottom:101.386626pt;}
.y2d_c00047{bottom:118.826619pt;}
.y2c_c00047{bottom:134.826613pt;}
.y2b_c00047{bottom:140.906610pt;}
.y2a_c00047{bottom:152.906606pt;}
.y29_c00047{bottom:170.986598pt;}
.y28_c00047{bottom:188.746591pt;}
.y27_c00047{bottom:194.826589pt;}
.y26_c00047{bottom:205.866584pt;}
.y25_c00047{bottom:221.706578pt;}
.y24_c00047{bottom:238.826571pt;}
.y23_c00047{bottom:245.546568pt;}
.y22_c00047{bottom:256.746564pt;}
.y21_c00047{bottom:303.946545pt;}
.y20_c00047{bottom:331.626534pt;}
.y1e_c00047{bottom:359.146523pt;}
.y1f_c00047{bottom:366.506520pt;}
.y1d_c00047{bottom:386.826512pt;}
.y1c_c00047{bottom:414.346501pt;}
.y1b_c00047{bottom:442.026490pt;}
.y1a_c00047{bottom:469.546479pt;}
.y19_c00047{bottom:497.226468pt;}
.y18_c00047{bottom:524.746457pt;}
.y17_c00047{bottom:552.426446pt;}
.y16_c00047{bottom:579.946435pt;}
.y15_c00047{bottom:607.626424pt;}
.y14_c00047{bottom:635.146413pt;}
.y13_c00047{bottom:662.826402pt;}
.y11_c00047{bottom:690.346391pt;}
.y12_c00047{bottom:697.706388pt;}
.y10_c00047{bottom:718.026379pt;}
.yf_c00047{bottom:745.546368pt;}
.ye_c00047{bottom:773.226357pt;}
.yd_c00047{bottom:800.746346pt;}
.yb_c00047{bottom:828.426335pt;}
.yc_c00047{bottom:835.786332pt;}
.ya_c00047{bottom:855.946324pt;}
.y9_c00047{bottom:883.626313pt;}
.y8_c00047{bottom:911.146302pt;}
.y7_c00047{bottom:938.826291pt;}
.y6_c00047{bottom:966.346280pt;}
.y5_c00047{bottom:994.026269pt;}
.y2_c00047{bottom:1028.586255pt;}
.y1_c00047{bottom:1063.146241pt;}
.h5_c00047{height:24.740615pt;}
.h7_c00047{height:33.918736pt;}
.h8_c00047{height:35.404673pt;}
.h2_c00047{height:39.243734pt;}
.h4_c00047{height:42.084358pt;}
.h6_c00047{height:47.109356pt;}
.h1_c00047{height:52.134354pt;}
.h3_c00047{height:62.812475pt;}
.h0_c00047{height:1122.666667pt;}
.w0_c00047{width:793.333333pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:113.439955pt;}
.xa_c00047{left:118.079953pt;}
.xb_c00047{left:121.599951pt;}
.x3_c00047{left:160.639936pt;}
.x4_c00047{left:384.959846pt;}
.x2_c00047{left:389.440031pt;}
.x5_c00047{left:390.399844pt;}
.x6_c00047{left:579.519768pt;}
.x7_c00047{left:584.959766pt;}
.x8_c00047{left:666.719733pt;}
.x9_c00047{left:672.159731pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04675b64edc307ba5a847998.woff2')format("woff");}.ff1_c00048{font-family:ff1_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:ff2_c00048;src:url('chunks/assets/font_03d0dd65906669886967f1fc.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:0.675781;font-style:normal;font-weight:normal;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_ffe0300f866486bc59af8d7e.woff2')format("woff");}.ff3_c00048{font-family:ff3_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;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls6_c00048{letter-spacing:0.000000px;}
.ls4_c00048{letter-spacing:0.010620px;}
.ls0_c00048{letter-spacing:0.021282px;}
.ls1_c00048{letter-spacing:0.163552px;}
.ls5_c00048{letter-spacing:0.189300px;}
.ls3_c00048{letter-spacing:3.612719px;}
.ls2_c00048{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00048{word-spacing:-17.999993px;}
.ws4_c00048{word-spacing:-14.939994px;}
.ws1_c00048{word-spacing:-12.059995px;}
.ws3_c00048{word-spacing:-9.719996px;}
.ws2_c00048{word-spacing:-9.437756px;}
.ws5_c00048{word-spacing:0.000000px;}
._14_c00048{margin-left:-9.527635px;}
._8_c00048{margin-left:-2.139990px;}
._1_c00048{margin-left:-1.105374px;}
._0_c00048{width:1.478351px;}
._5_c00048{width:3.079517px;}
._6_c00048{width:4.402973px;}
._f_c00048{width:5.485506px;}
._9_c00048{width:7.082566px;}
._7_c00048{width:8.475042px;}
._e_c00048{width:10.064881px;}
._10_c00048{width:12.730285px;}
._13_c00048{width:14.172458px;}
._12_c00048{width:15.465579px;}
._2_c00048{width:16.649982px;}
._3_c00048{width:19.867192px;}
._4_c00048{width:21.012768px;}
._c_c00048{width:28.754467px;}
._d_c00048{width:30.178704px;}
._11_c00048{width:31.317321px;}
._a_c00048{width:52.027754px;}
._b_c00048{width:53.141980px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs5_c00048{font-size:38.879984px;}
.fs4_c00048{font-size:41.759983px;}
.fs3_c00048{font-size:48.239981px;}
.fs0_c00048{font-size:59.759976px;}
.fs1_c00048{font-size:66.239974px;}
.fs2_c00048{font-size:71.999971px;}
.y0_c00048{bottom:0.000000px;}
.y4_c00048{bottom:75.900270px;}
.y3_c00048{bottom:114.060254px;}
.y27_c00048{bottom:159.239936px;}
.y26_c00048{bottom:178.679929px;}
.y25_c00048{bottom:185.519926px;}
.y24_c00048{bottom:220.259912px;}
.y23_c00048{bottom:227.819909px;}
.y22_c00048{bottom:240.599904px;}
.y21_c00048{bottom:319.799872px;}
.y20_c00048{bottom:345.719862px;}
.y1e_c00048{bottom:373.979850px;}
.y1f_c00048{bottom:382.259847px;}
.y1d_c00048{bottom:404.939838px;}
.y1c_c00048{bottom:436.079826px;}
.y1b_c00048{bottom:467.039813px;}
.y1a_c00048{bottom:498.179801px;}
.y19_c00048{bottom:529.139788px;}
.y18_c00048{bottom:560.279776px;}
.y16_c00048{bottom:591.239764px;}
.y17_c00048{bottom:599.519760px;}
.y15_c00048{bottom:622.199751px;}
.y14_c00048{bottom:653.339739px;}
.y13_c00048{bottom:684.299726px;}
.y12_c00048{bottom:715.439714px;}
.y11_c00048{bottom:746.399701px;}
.y10_c00048{bottom:777.539689px;}
.yf_c00048{bottom:808.499677px;}
.ye_c00048{bottom:839.639664px;}
.yd_c00048{bottom:870.599652px;}
.yc_c00048{bottom:901.739639px;}
.yb_c00048{bottom:932.699627px;}
.ya_c00048{bottom:963.839614px;}
.y9_c00048{bottom:994.799602px;}
.y8_c00048{bottom:1025.939590px;}
.y7_c00048{bottom:1056.899577px;}
.y6_c00048{bottom:1088.039565px;}
.y5_c00048{bottom:1118.999552px;}
.y2_c00048{bottom:1176.059530px;}
.y1_c00048{bottom:1196.219522px;}
.h6_c00048{height:27.833192px;}
.h7_c00048{height:38.158578px;}
.h2_c00048{height:44.149201px;}
.h5_c00048{height:47.344903px;}
.h1_c00048{height:58.651148px;}
.h3_c00048{height:70.664034px;}
.h4_c00048{height:75.093720px;}
.h0_c00048{height:1263.000000px;}
.w0_c00048{width:892.500000px;}
.x0_c00048{left:0.000000px;}
.x5_c00048{left:127.619739px;}
.xd_c00048{left:138.059945px;}
.xe_c00048{left:141.839943px;}
.x7_c00048{left:154.619938px;}
.x6_c00048{left:180.719331px;}
.x1_c00048{left:181.799927px;}
.x2_c00048{left:329.039408px;}
.x4_c00048{left:438.119825px;}
.xc_c00048{left:446.399821px;}
.x8_c00048{left:683.459727px;}
.x9_c00048{left:695.699722px;}
.xa_c00048{left:703.259719px;}
.xb_c00048{left:715.499714px;}
.x3_c00048{left:765.359694px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls6_c00048{letter-spacing:0.000000pt;}
.ls4_c00048{letter-spacing:0.009440pt;}
.ls0_c00048{letter-spacing:0.018917pt;}
.ls1_c00048{letter-spacing:0.145380pt;}
.ls5_c00048{letter-spacing:0.168267pt;}
.ls3_c00048{letter-spacing:3.211305pt;}
.ls2_c00048{letter-spacing:48.807447pt;}
.ws0_c00048{word-spacing:-15.999994pt;}
.ws4_c00048{word-spacing:-13.279995pt;}
.ws1_c00048{word-spacing:-10.719996pt;}
.ws3_c00048{word-spacing:-8.639997pt;}
.ws2_c00048{word-spacing:-8.389117pt;}
.ws5_c00048{word-spacing:0.000000pt;}
._14_c00048{margin-left:-8.469009pt;}
._8_c00048{margin-left:-1.902214pt;}
._1_c00048{margin-left:-0.982555pt;}
._0_c00048{width:1.314090pt;}
._5_c00048{width:2.737348pt;}
._6_c00048{width:3.913754pt;}
._f_c00048{width:4.876005pt;}
._9_c00048{width:6.295614pt;}
._7_c00048{width:7.533371pt;}
._e_c00048{width:8.946561pt;}
._10_c00048{width:11.315809pt;}
._13_c00048{width:12.597740pt;}
._12_c00048{width:13.747181pt;}
._2_c00048{width:14.799984pt;}
._3_c00048{width:17.659726pt;}
._4_c00048{width:18.678016pt;}
._c_c00048{width:25.559526pt;}
._d_c00048{width:26.825515pt;}
._11_c00048{width:27.837619pt;}
._a_c00048{width:46.246893pt;}
._b_c00048{width:47.237316pt;}
.fs5_c00048{font-size:34.559986pt;}
.fs4_c00048{font-size:37.119985pt;}
.fs3_c00048{font-size:42.879983pt;}
.fs0_c00048{font-size:53.119979pt;}
.fs1_c00048{font-size:58.879976pt;}
.fs2_c00048{font-size:63.999974pt;}
.y0_c00048{bottom:0.000000pt;}
.y4_c00048{bottom:67.466906pt;}
.y3_c00048{bottom:101.386893pt;}
.y27_c00048{bottom:141.546610pt;}
.y26_c00048{bottom:158.826603pt;}
.y25_c00048{bottom:164.906601pt;}
.y24_c00048{bottom:195.786588pt;}
.y23_c00048{bottom:202.506586pt;}
.y22_c00048{bottom:213.866581pt;}
.y21_c00048{bottom:284.266553pt;}
.y20_c00048{bottom:307.306544pt;}
.y1e_c00048{bottom:332.426534pt;}
.y1f_c00048{bottom:339.786531pt;}
.y1d_c00048{bottom:359.946523pt;}
.y1c_c00048{bottom:387.626512pt;}
.y1b_c00048{bottom:415.146501pt;}
.y1a_c00048{bottom:442.826490pt;}
.y19_c00048{bottom:470.346479pt;}
.y18_c00048{bottom:498.026467pt;}
.y16_c00048{bottom:525.546456pt;}
.y17_c00048{bottom:532.906454pt;}
.y15_c00048{bottom:553.066445pt;}
.y14_c00048{bottom:580.746434pt;}
.y13_c00048{bottom:608.266423pt;}
.y12_c00048{bottom:635.946412pt;}
.y11_c00048{bottom:663.466401pt;}
.y10_c00048{bottom:691.146390pt;}
.yf_c00048{bottom:718.666379pt;}
.ye_c00048{bottom:746.346368pt;}
.yd_c00048{bottom:773.866357pt;}
.yc_c00048{bottom:801.546346pt;}
.yb_c00048{bottom:829.066335pt;}
.ya_c00048{bottom:856.746324pt;}
.y9_c00048{bottom:884.266313pt;}
.y8_c00048{bottom:911.946302pt;}
.y7_c00048{bottom:939.466291pt;}
.y6_c00048{bottom:967.146280pt;}
.y5_c00048{bottom:994.666269pt;}
.y2_c00048{bottom:1045.386249pt;}
.y1_c00048{bottom:1063.306241pt;}
.h6_c00048{height:24.740615pt;}
.h7_c00048{height:33.918736pt;}
.h2_c00048{height:39.243734pt;}
.h5_c00048{height:42.084358pt;}
.h1_c00048{height:52.134354pt;}
.h3_c00048{height:62.812475pt;}
.h4_c00048{height:66.749973pt;}
.h0_c00048{height:1122.666667pt;}
.w0_c00048{width:793.333333pt;}
.x0_c00048{left:0.000000pt;}
.x5_c00048{left:113.439768pt;}
.xd_c00048{left:122.719951pt;}
.xe_c00048{left:126.079950pt;}
.x7_c00048{left:137.439945pt;}
.x6_c00048{left:160.639405pt;}
.x1_c00048{left:161.599935pt;}
.x2_c00048{left:292.479474pt;}
.x4_c00048{left:389.439844pt;}
.xc_c00048{left:396.799841pt;}
.x8_c00048{left:607.519757pt;}
.x9_c00048{left:618.399753pt;}
.xa_c00048{left:625.119750pt;}
.xb_c00048{left:635.999746pt;}
.x3_c00048{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcefc2fb7ead9b94fe227e5a.woff2')format("woff");}.ff1_c00049{font-family:ff1_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:ff2_c00049;src:url('chunks/assets/font_3aa900550b3932e972431605.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:0.675781;font-style:normal;font-weight:normal;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_8746168d736a859c78b2eecf.woff2')format("woff");}.ff3_c00049{font-family:ff3_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;}
.m0_c00049{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00049{word-spacing:-17.999993px;}
.ws1_c00049{word-spacing:0.000000px;}
._1_c00049{margin-left:-1.105374px;}
._0_c00049{width:1.195563px;}
._3_c00049{width:3.437393px;}
._2_c00049{width:5.123203px;}
._4_c00049{width:6.197013px;}
._9_c00049{width:11.687455px;}
._a_c00049{width:13.066506px;}
._8_c00049{width:14.440361px;}
._7_c00049{width:15.634443px;}
._b_c00049{width:16.737253px;}
._6_c00049{width:19.417262px;}
._5_c00049{width:20.465922px;}
._f_c00049{width:22.214397px;}
._e_c00049{width:23.436426px;}
._d_c00049{width:36.754626px;}
._c_c00049{width:38.234473px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:59.759976px;}
.fs1_c00049{font-size:66.239974px;}
.fs2_c00049{font-size:71.999971px;}
.y0_c00049{bottom:0.000000px;}
.y4_c00049{bottom:75.719970px;}
.y3_c00049{bottom:113.879954px;}
.y1d_c00049{bottom:142.319943px;}
.y1c_c00049{bottom:173.279931px;}
.y1b_c00049{bottom:204.419918px;}
.y1a_c00049{bottom:235.379906px;}
.y19_c00049{bottom:266.519893px;}
.y18_c00049{bottom:297.479881px;}
.y17_c00049{bottom:328.619869px;}
.y16_c00049{bottom:359.579856px;}
.y15_c00049{bottom:390.719844px;}
.y14_c00049{bottom:421.679831px;}
.y13_c00049{bottom:452.639819px;}
.y12_c00049{bottom:483.779806px;}
.y11_c00049{bottom:514.739794px;}
.y10_c00049{bottom:545.879782px;}
.yf_c00049{bottom:576.839769px;}
.ye_c00049{bottom:607.979757px;}
.yd_c00049{bottom:638.939744px;}
.yc_c00049{bottom:670.079732px;}
.yb_c00049{bottom:701.039720px;}
.ya_c00049{bottom:732.179707px;}
.y9_c00049{bottom:763.139695px;}
.y8_c00049{bottom:793.019683px;}
.y7_c00049{bottom:821.639671px;}
.y6_c00049{bottom:851.159660px;}
.y5_c00049{bottom:877.979649px;}
.y2_c00049{bottom:1156.979537px;}
.y1_c00049{bottom:1195.859522px;}
.h2_c00049{height:44.149201px;}
.h1_c00049{height:58.651148px;}
.h4_c00049{height:65.010911px;}
.h5_c00049{height:70.628878px;}
.h3_c00049{height:70.664034px;}
.h0_c00049{height:1263.000000px;}
.w0_c00049{width:892.500000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:127.799949px;}
.x5_c00049{left:175.859930px;}
.x6_c00049{left:180.899928px;}
.x2_c00049{left:438.300034px;}
.x4_c00049{left:446.579249px;}
.x3_c00049{left:651.419739px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:-15.999994pt;}
.ws1_c00049{word-spacing:0.000000pt;}
._1_c00049{margin-left:-0.982555pt;}
._0_c00049{width:1.062723pt;}
._3_c00049{width:3.055460pt;}
._2_c00049{width:4.553958pt;}
._4_c00049{width:5.508456pt;}
._9_c00049{width:10.388849pt;}
._a_c00049{width:11.614672pt;}
._8_c00049{width:12.835876pt;}
._7_c00049{width:13.897283pt;}
._b_c00049{width:14.877559pt;}
._6_c00049{width:17.259788pt;}
._5_c00049{width:18.191931pt;}
._f_c00049{width:19.746131pt;}
._e_c00049{width:20.832379pt;}
._d_c00049{width:32.670778pt;}
._c_c00049{width:33.986198pt;}
.fs0_c00049{font-size:53.119979pt;}
.fs1_c00049{font-size:58.879976pt;}
.fs2_c00049{font-size:63.999974pt;}
.y0_c00049{bottom:0.000000pt;}
.y4_c00049{bottom:67.306640pt;}
.y3_c00049{bottom:101.226626pt;}
.y1d_c00049{bottom:126.506616pt;}
.y1c_c00049{bottom:154.026605pt;}
.y1b_c00049{bottom:181.706594pt;}
.y1a_c00049{bottom:209.226583pt;}
.y19_c00049{bottom:236.906572pt;}
.y18_c00049{bottom:264.426561pt;}
.y17_c00049{bottom:292.106550pt;}
.y16_c00049{bottom:319.626539pt;}
.y15_c00049{bottom:347.306528pt;}
.y14_c00049{bottom:374.826517pt;}
.y13_c00049{bottom:402.346506pt;}
.y12_c00049{bottom:430.026495pt;}
.y11_c00049{bottom:457.546484pt;}
.y10_c00049{bottom:485.226473pt;}
.yf_c00049{bottom:512.746462pt;}
.ye_c00049{bottom:540.426450pt;}
.yd_c00049{bottom:567.946439pt;}
.yc_c00049{bottom:595.626428pt;}
.yb_c00049{bottom:623.146417pt;}
.ya_c00049{bottom:650.826406pt;}
.y9_c00049{bottom:678.346395pt;}
.y8_c00049{bottom:704.906385pt;}
.y7_c00049{bottom:730.346375pt;}
.y6_c00049{bottom:756.586364pt;}
.y5_c00049{bottom:780.426354pt;}
.y2_c00049{bottom:1028.426255pt;}
.y1_c00049{bottom:1062.986241pt;}
.h2_c00049{height:39.243734pt;}
.h1_c00049{height:52.134354pt;}
.h4_c00049{height:57.787477pt;}
.h5_c00049{height:62.781225pt;}
.h3_c00049{height:62.812475pt;}
.h0_c00049{height:1122.666667pt;}
.w0_c00049{width:793.333333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:113.599955pt;}
.x5_c00049{left:156.319937pt;}
.x6_c00049{left:160.799936pt;}
.x2_c00049{left:389.600031pt;}
.x4_c00049{left:396.959332pt;}
.x3_c00049{left:579.039768pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1521375768ad5b0c8134a72.woff2')format("woff");}.ff1_c00050{font-family:ff1_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:ff2_c00050;src:url('chunks/assets/font_656483bb72c1921d36ce3670.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:0.675781;font-style:normal;font-weight:normal;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_9a5b9d9b158743b6efc9aaf5.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls2_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.182640px;}
.ls1_c00050{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00050{word-spacing:-12.059995px;}
.ws1_c00050{word-spacing:-9.437756px;}
.ws2_c00050{word-spacing:-8.786876px;}
.ws3_c00050{word-spacing:0.000000px;}
._f_c00050{margin-left:-10.448262px;}
._e_c00050{margin-left:-2.296574px;}
._1_c00050{margin-left:-1.105374px;}
._0_c00050{width:1.478351px;}
._7_c00050{width:2.491546px;}
._2_c00050{width:3.699035px;}
._3_c00050{width:4.849326px;}
._9_c00050{width:6.406133px;}
._6_c00050{width:8.410101px;}
._4_c00050{width:9.551049px;}
._5_c00050{width:10.847497px;}
._8_c00050{width:13.155443px;}
._b_c00050{width:15.583803px;}
._a_c00050{width:16.650031px;}
._d_c00050{width:20.617295px;}
._c_c00050{width:21.692981px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs5_c00050{font-size:38.879984px;}
.fs4_c00050{font-size:41.759983px;}
.fs3_c00050{font-size:48.239981px;}
.fs0_c00050{font-size:59.759976px;}
.fs1_c00050{font-size:66.239974px;}
.fs2_c00050{font-size:71.999971px;}
.y0_c00050{bottom:0.000000px;}
.y4_c00050{bottom:75.900270px;}
.y3_c00050{bottom:114.060254px;}
.y29_c00050{bottom:134.400246px;}
.y28_c00050{bottom:153.839938px;}
.y27_c00050{bottom:161.399935px;}
.y26_c00050{bottom:187.499925px;}
.y25_c00050{bottom:195.059922px;}
.y24_c00050{bottom:207.839917px;}
.y23_c00050{bottom:249.779900px;}
.y22_c00050{bottom:280.739888px;}
.y21_c00050{bottom:311.879875px;}
.y20_c00050{bottom:342.839863px;}
.y1f_c00050{bottom:373.979850px;}
.y1e_c00050{bottom:404.939838px;}
.y1d_c00050{bottom:436.079826px;}
.y1c_c00050{bottom:467.039813px;}
.y1b_c00050{bottom:498.179801px;}
.y1a_c00050{bottom:529.139788px;}
.y19_c00050{bottom:560.279776px;}
.y18_c00050{bottom:591.239764px;}
.y17_c00050{bottom:622.199751px;}
.y16_c00050{bottom:653.339739px;}
.y15_c00050{bottom:684.299726px;}
.y14_c00050{bottom:715.439714px;}
.y13_c00050{bottom:746.399701px;}
.y12_c00050{bottom:777.539689px;}
.y11_c00050{bottom:808.499677px;}
.yf_c00050{bottom:839.639664px;}
.y10_c00050{bottom:847.919661px;}
.ye_c00050{bottom:870.599652px;}
.yd_c00050{bottom:901.739639px;}
.yc_c00050{bottom:932.699627px;}
.yb_c00050{bottom:963.839614px;}
.ya_c00050{bottom:994.799602px;}
.y8_c00050{bottom:1025.939590px;}
.y9_c00050{bottom:1034.219586px;}
.y7_c00050{bottom:1056.899577px;}
.y6_c00050{bottom:1088.039565px;}
.y5_c00050{bottom:1118.999552px;}
.y2_c00050{bottom:1176.059530px;}
.y1_c00050{bottom:1196.219522px;}
.h7_c00050{height:25.913662px;}
.h6_c00050{height:27.833192px;}
.h2_c00050{height:44.149201px;}
.h4_c00050{height:47.344903px;}
.h1_c00050{height:58.651148px;}
.h8_c00050{height:60.226851px;}
.h3_c00050{height:70.628878px;}
.h5_c00050{height:70.664034px;}
.h0_c00050{height:1263.000000px;}
.w0_c00050{width:892.500000px;}
.x0_c00050{left:0.000000px;}
.x5_c00050{left:127.619739px;}
.xb_c00050{left:138.059945px;}
.xc_c00050{left:141.839943px;}
.x6_c00050{left:180.719928px;}
.x1_c00050{left:181.799927px;}
.x2_c00050{left:329.039408px;}
.x9_c00050{left:431.099828px;}
.x4_c00050{left:438.119825px;}
.xa_c00050{left:443.339823px;}
.xd_c00050{left:513.359795px;}
.x7_c00050{left:550.799780px;}
.x8_c00050{left:563.039775px;}
.x3_c00050{left:765.359694px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls2_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.162347pt;}
.ls1_c00050{letter-spacing:0.168267pt;}
.ws0_c00050{word-spacing:-10.719996pt;}
.ws1_c00050{word-spacing:-8.389117pt;}
.ws2_c00050{word-spacing:-7.810557pt;}
.ws3_c00050{word-spacing:0.000000pt;}
._f_c00050{margin-left:-9.287344pt;}
._e_c00050{margin-left:-2.041399pt;}
._1_c00050{margin-left:-0.982555pt;}
._0_c00050{width:1.314090pt;}
._7_c00050{width:2.214707pt;}
._2_c00050{width:3.288031pt;}
._3_c00050{width:4.310512pt;}
._9_c00050{width:5.694340pt;}
._6_c00050{width:7.475646pt;}
._4_c00050{width:8.489821pt;}
._5_c00050{width:9.642220pt;}
._8_c00050{width:11.693727pt;}
._b_c00050{width:13.852269pt;}
._a_c00050{width:14.800028pt;}
._d_c00050{width:18.326484pt;}
._c_c00050{width:19.282650pt;}
.fs5_c00050{font-size:34.559986pt;}
.fs4_c00050{font-size:37.119985pt;}
.fs3_c00050{font-size:42.879983pt;}
.fs0_c00050{font-size:53.119979pt;}
.fs1_c00050{font-size:58.879976pt;}
.fs2_c00050{font-size:63.999974pt;}
.y0_c00050{bottom:0.000000pt;}
.y4_c00050{bottom:67.466906pt;}
.y3_c00050{bottom:101.386893pt;}
.y29_c00050{bottom:119.466886pt;}
.y28_c00050{bottom:136.746612pt;}
.y27_c00050{bottom:143.466609pt;}
.y26_c00050{bottom:166.666600pt;}
.y25_c00050{bottom:173.386597pt;}
.y24_c00050{bottom:184.746593pt;}
.y23_c00050{bottom:222.026578pt;}
.y22_c00050{bottom:249.546567pt;}
.y21_c00050{bottom:277.226556pt;}
.y20_c00050{bottom:304.746545pt;}
.y1f_c00050{bottom:332.426534pt;}
.y1e_c00050{bottom:359.946523pt;}
.y1d_c00050{bottom:387.626512pt;}
.y1c_c00050{bottom:415.146501pt;}
.y1b_c00050{bottom:442.826490pt;}
.y1a_c00050{bottom:470.346479pt;}
.y19_c00050{bottom:498.026467pt;}
.y18_c00050{bottom:525.546456pt;}
.y17_c00050{bottom:553.066445pt;}
.y16_c00050{bottom:580.746434pt;}
.y15_c00050{bottom:608.266423pt;}
.y14_c00050{bottom:635.946412pt;}
.y13_c00050{bottom:663.466401pt;}
.y12_c00050{bottom:691.146390pt;}
.y11_c00050{bottom:718.666379pt;}
.yf_c00050{bottom:746.346368pt;}
.y10_c00050{bottom:753.706365pt;}
.ye_c00050{bottom:773.866357pt;}
.yd_c00050{bottom:801.546346pt;}
.yc_c00050{bottom:829.066335pt;}
.yb_c00050{bottom:856.746324pt;}
.ya_c00050{bottom:884.266313pt;}
.y8_c00050{bottom:911.946302pt;}
.y9_c00050{bottom:919.306299pt;}
.y7_c00050{bottom:939.466291pt;}
.y6_c00050{bottom:967.146280pt;}
.y5_c00050{bottom:994.666269pt;}
.y2_c00050{bottom:1045.386249pt;}
.y1_c00050{bottom:1063.306241pt;}
.h7_c00050{height:23.034366pt;}
.h6_c00050{height:24.740615pt;}
.h2_c00050{height:39.243734pt;}
.h4_c00050{height:42.084358pt;}
.h1_c00050{height:52.134354pt;}
.h8_c00050{height:53.534979pt;}
.h3_c00050{height:62.781225pt;}
.h5_c00050{height:62.812475pt;}
.h0_c00050{height:1122.666667pt;}
.w0_c00050{width:793.333333pt;}
.x0_c00050{left:0.000000pt;}
.x5_c00050{left:113.439768pt;}
.xb_c00050{left:122.719951pt;}
.xc_c00050{left:126.079950pt;}
.x6_c00050{left:160.639936pt;}
.x1_c00050{left:161.599935pt;}
.x2_c00050{left:292.479474pt;}
.x9_c00050{left:383.199847pt;}
.x4_c00050{left:389.439844pt;}
.xa_c00050{left:394.079842pt;}
.xd_c00050{left:456.319817pt;}
.x7_c00050{left:489.599804pt;}
.x8_c00050{left:500.479800pt;}
.x3_c00050{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2fce559c5b4cb67b3edd4197.woff2')format("woff");}.ff1_c00051{font-family:ff1_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:ff2_c00051;src:url('chunks/assets/font_3fa6e22334985f8758dc5b68.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:0.675781;font-style:normal;font-weight:normal;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_8aacfe6b896633deb020fc22.woff2')format("woff");}.ff3_c00051{font-family:ff3_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;}
.m0_c00051{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls2_c00051{letter-spacing:0.000000px;}
.ls1_c00051{letter-spacing:0.189300px;}
.ls0_c00051{letter-spacing:8.827976px;}
.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:-17.999993px;}
.ws1_c00051{word-spacing:-12.059995px;}
.ws3_c00051{word-spacing:-9.719996px;}
.ws2_c00051{word-spacing:-8.786876px;}
.ws4_c00051{word-spacing:0.000000px;}
._10_c00051{margin-left:-9.290578px;}
._b_c00051{margin-left:-2.139990px;}
._1_c00051{margin-left:-1.105374px;}
._0_c00051{width:1.195563px;}
._2_c00051{width:2.817939px;}
._8_c00051{width:4.078068px;}
._a_c00051{width:5.248449px;}
._4_c00051{width:7.212629px;}
._3_c00051{width:8.341530px;}
._11_c00051{width:9.403830px;}
._9_c00051{width:10.448431px;}
._7_c00051{width:11.474847px;}
._c_c00051{width:13.585356px;}
._6_c00051{width:15.741752px;}
._5_c00051{width:16.778795px;}
._f_c00051{width:19.513741px;}
._d_c00051{width:23.759886px;}
._e_c00051{width:25.343010px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs4_c00051{font-size:38.879984px;}
.fs3_c00051{font-size:48.239981px;}
.fs0_c00051{font-size:59.759976px;}
.fs1_c00051{font-size:66.239974px;}
.fs2_c00051{font-size:71.999971px;}
.y0_c00051{bottom:0.000000px;}
.y4_c00051{bottom:75.899970px;}
.y3_c00051{bottom:114.059954px;}
.y29_c00051{bottom:142.859943px;}
.y28_c00051{bottom:169.499932px;}
.y27_c00051{bottom:176.339929px;}
.y26_c00051{bottom:189.839924px;}
.y25_c00051{bottom:210.179916px;}
.y24_c00051{bottom:230.339908px;}
.y23_c00051{bottom:237.899905px;}
.y22_c00051{bottom:249.419900px;}
.y21_c00051{bottom:310.979876px;}
.y20_c00051{bottom:341.939863px;}
.y1f_c00051{bottom:373.079851px;}
.y1e_c00051{bottom:404.039838px;}
.y1d_c00051{bottom:435.179826px;}
.y1c_c00051{bottom:466.139814px;}
.y1b_c00051{bottom:497.279801px;}
.y1a_c00051{bottom:528.239789px;}
.y19_c00051{bottom:559.379776px;}
.y18_c00051{bottom:590.339764px;}
.y17_c00051{bottom:621.479751px;}
.y16_c00051{bottom:652.439739px;}
.y15_c00051{bottom:683.579727px;}
.y14_c00051{bottom:714.539714px;}
.y13_c00051{bottom:745.679702px;}
.y11_c00051{bottom:776.639689px;}
.y12_c00051{bottom:784.919686px;}
.y10_c00051{bottom:807.779677px;}
.yf_c00051{bottom:838.739665px;}
.ye_c00051{bottom:869.879652px;}
.yd_c00051{bottom:900.839640px;}
.yc_c00051{bottom:931.979627px;}
.yb_c00051{bottom:962.939615px;}
.y9_c00051{bottom:994.079602px;}
.ya_c00051{bottom:1002.359599px;}
.y8_c00051{bottom:1025.039590px;}
.y7_c00051{bottom:1056.179578px;}
.y6_c00051{bottom:1087.139565px;}
.y5_c00051{bottom:1118.279553px;}
.y2_c00051{bottom:1157.159537px;}
.y1_c00051{bottom:1196.039522px;}
.h5_c00051{height:25.913662px;}
.h7_c00051{height:38.158578px;}
.h6_c00051{height:39.830258px;}
.h2_c00051{height:44.149201px;}
.h4_c00051{height:47.344903px;}
.h1_c00051{height:58.651148px;}
.h3_c00051{height:70.664034px;}
.h0_c00051{height:1263.000000px;}
.w0_c00051{width:892.500000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:127.619949px;}
.x8_c00051{left:137.339945px;}
.x3_c00051{left:171.179932px;}
.x5_c00051{left:180.719932px;}
.x4_c00051{left:183.419927px;}
.x2_c00051{left:438.120035px;}
.x6_c00051{left:551.159780px;}
.x7_c00051{left:563.399775px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls2_c00051{letter-spacing:0.000000pt;}
.ls1_c00051{letter-spacing:0.168267pt;}
.ls0_c00051{letter-spacing:7.847090pt;}
.ws0_c00051{word-spacing:-15.999994pt;}
.ws1_c00051{word-spacing:-10.719996pt;}
.ws3_c00051{word-spacing:-8.639997pt;}
.ws2_c00051{word-spacing:-7.810557pt;}
.ws4_c00051{word-spacing:0.000000pt;}
._10_c00051{margin-left:-8.258291pt;}
._b_c00051{margin-left:-1.902214pt;}
._1_c00051{margin-left:-0.982555pt;}
._0_c00051{width:1.062723pt;}
._2_c00051{width:2.504835pt;}
._8_c00051{width:3.624950pt;}
._a_c00051{width:4.665288pt;}
._4_c00051{width:6.411226pt;}
._3_c00051{width:7.414693pt;}
._11_c00051{width:8.358960pt;}
._9_c00051{width:9.287494pt;}
._7_c00051{width:10.199864pt;}
._c_c00051{width:12.075872pt;}
._6_c00051{width:13.992668pt;}
._5_c00051{width:14.914485pt;}
._f_c00051{width:17.345547pt;}
._d_c00051{width:21.119899pt;}
._e_c00051{width:22.527120pt;}
.fs4_c00051{font-size:34.559986pt;}
.fs3_c00051{font-size:42.879983pt;}
.fs0_c00051{font-size:53.119979pt;}
.fs1_c00051{font-size:58.879976pt;}
.fs2_c00051{font-size:63.999974pt;}
.y0_c00051{bottom:0.000000pt;}
.y4_c00051{bottom:67.466640pt;}
.y3_c00051{bottom:101.386626pt;}
.y29_c00051{bottom:126.986616pt;}
.y28_c00051{bottom:150.666606pt;}
.y27_c00051{bottom:156.746604pt;}
.y26_c00051{bottom:168.746599pt;}
.y25_c00051{bottom:186.826592pt;}
.y24_c00051{bottom:204.746585pt;}
.y23_c00051{bottom:211.466582pt;}
.y22_c00051{bottom:221.706578pt;}
.y21_c00051{bottom:276.426556pt;}
.y20_c00051{bottom:303.946545pt;}
.y1f_c00051{bottom:331.626534pt;}
.y1e_c00051{bottom:359.146523pt;}
.y1d_c00051{bottom:386.826512pt;}
.y1c_c00051{bottom:414.346501pt;}
.y1b_c00051{bottom:442.026490pt;}
.y1a_c00051{bottom:469.546479pt;}
.y19_c00051{bottom:497.226468pt;}
.y18_c00051{bottom:524.746457pt;}
.y17_c00051{bottom:552.426446pt;}
.y16_c00051{bottom:579.946435pt;}
.y15_c00051{bottom:607.626424pt;}
.y14_c00051{bottom:635.146413pt;}
.y13_c00051{bottom:662.826402pt;}
.y11_c00051{bottom:690.346391pt;}
.y12_c00051{bottom:697.706388pt;}
.y10_c00051{bottom:718.026379pt;}
.yf_c00051{bottom:745.546368pt;}
.ye_c00051{bottom:773.226357pt;}
.yd_c00051{bottom:800.746346pt;}
.yc_c00051{bottom:828.426335pt;}
.yb_c00051{bottom:855.946324pt;}
.y9_c00051{bottom:883.626313pt;}
.ya_c00051{bottom:890.986310pt;}
.y8_c00051{bottom:911.146302pt;}
.y7_c00051{bottom:938.826291pt;}
.y6_c00051{bottom:966.346280pt;}
.y5_c00051{bottom:994.026269pt;}
.y2_c00051{bottom:1028.586255pt;}
.y1_c00051{bottom:1063.146241pt;}
.h5_c00051{height:23.034366pt;}
.h7_c00051{height:33.918736pt;}
.h6_c00051{height:35.404673pt;}
.h2_c00051{height:39.243734pt;}
.h4_c00051{height:42.084358pt;}
.h1_c00051{height:52.134354pt;}
.h3_c00051{height:62.812475pt;}
.h0_c00051{height:1122.666667pt;}
.w0_c00051{width:793.333333pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:113.439955pt;}
.x8_c00051{left:122.079951pt;}
.x3_c00051{left:152.159939pt;}
.x5_c00051{left:160.639939pt;}
.x4_c00051{left:163.039935pt;}
.x2_c00051{left:389.440031pt;}
.x6_c00051{left:489.919804pt;}
.x7_c00051{left:500.799800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e10cccfd4827d48f5e162e2.woff2')format("woff");}.ff1_c00052{font-family:ff1_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;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_aeb88b9eae022ec170f0fdc1.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_62f36c9728cfe7b16e388e47.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls1_c00052{letter-spacing:0.000000px;}
.ls0_c00052{letter-spacing:0.189300px;}
.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:-12.059995px;}
.ws1_c00052{word-spacing:-9.719996px;}
.ws2_c00052{word-spacing:0.000000px;}
._16_c00052{margin-left:-9.655454px;}
._4_c00052{margin-left:-2.139990px;}
._1_c00052{margin-left:-1.105374px;}
._0_c00052{width:1.478351px;}
._b_c00052{width:3.019899px;}
._11_c00052{width:4.408804px;}
._12_c00052{width:5.613325px;}
._9_c00052{width:7.190101px;}
._a_c00052{width:8.195671px;}
._5_c00052{width:10.004479px;}
._14_c00052{width:14.482913px;}
._15_c00052{width:16.134284px;}
._c_c00052{width:19.049946px;}
._6_c00052{width:21.013906px;}
._7_c00052{width:22.203284px;}
._8_c00052{width:23.241700px;}
._13_c00052{width:24.275896px;}
._2_c00052{width:25.676630px;}
._3_c00052{width:27.427112px;}
._d_c00052{width:28.828787px;}
._e_c00052{width:48.790469px;}
._10_c00052{width:49.977415px;}
._f_c00052{width:50.998915px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs4_c00052{font-size:38.879984px;}
.fs3_c00052{font-size:48.239981px;}
.fs0_c00052{font-size:59.759976px;}
.fs1_c00052{font-size:66.239974px;}
.fs2_c00052{font-size:71.999971px;}
.y0_c00052{bottom:0.000000px;}
.y4_c00052{bottom:75.900270px;}
.y3_c00052{bottom:114.060254px;}
.y27_c00052{bottom:133.320247px;}
.y26_c00052{bottom:140.160244px;}
.y25_c00052{bottom:151.499939px;}
.y23_c00052{bottom:187.679925px;}
.y24_c00052{bottom:195.959922px;}
.y22_c00052{bottom:218.639913px;}
.y21_c00052{bottom:249.779900px;}
.y20_c00052{bottom:280.739888px;}
.y1f_c00052{bottom:311.879875px;}
.y1e_c00052{bottom:342.839863px;}
.y1d_c00052{bottom:373.979850px;}
.y1c_c00052{bottom:404.939838px;}
.y1b_c00052{bottom:436.079826px;}
.y1a_c00052{bottom:467.039813px;}
.y19_c00052{bottom:498.179801px;}
.y18_c00052{bottom:529.139788px;}
.y17_c00052{bottom:560.279776px;}
.y16_c00052{bottom:591.239764px;}
.y15_c00052{bottom:622.199751px;}
.y14_c00052{bottom:653.339739px;}
.y13_c00052{bottom:684.299726px;}
.y12_c00052{bottom:715.439714px;}
.y11_c00052{bottom:746.399701px;}
.y10_c00052{bottom:777.539689px;}
.yf_c00052{bottom:808.499677px;}
.ye_c00052{bottom:839.639664px;}
.yd_c00052{bottom:870.599652px;}
.yc_c00052{bottom:901.739639px;}
.yb_c00052{bottom:932.699627px;}
.ya_c00052{bottom:963.839614px;}
.y9_c00052{bottom:994.799602px;}
.y8_c00052{bottom:1025.939590px;}
.y7_c00052{bottom:1056.899577px;}
.y6_c00052{bottom:1088.039565px;}
.y5_c00052{bottom:1118.999552px;}
.y2_c00052{bottom:1176.059530px;}
.y1_c00052{bottom:1196.219522px;}
.h5_c00052{height:38.158578px;}
.h2_c00052{height:44.149201px;}
.h4_c00052{height:47.344903px;}
.h1_c00052{height:58.651148px;}
.h3_c00052{height:70.664034px;}
.h0_c00052{height:1263.000000px;}
.w0_c00052{width:892.500000px;}
.x0_c00052{left:0.000000px;}
.x5_c00052{left:127.619739px;}
.x9_c00052{left:137.339945px;}
.x6_c00052{left:180.720080px;}
.x1_c00052{left:181.799927px;}
.x2_c00052{left:329.039408px;}
.x4_c00052{left:438.119825px;}
.x7_c00052{left:537.479785px;}
.x8_c00052{left:549.719780px;}
.x3_c00052{left:765.359694px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls1_c00052{letter-spacing:0.000000pt;}
.ls0_c00052{letter-spacing:0.168267pt;}
.ws0_c00052{word-spacing:-10.719996pt;}
.ws1_c00052{word-spacing:-8.639997pt;}
.ws2_c00052{word-spacing:0.000000pt;}
._16_c00052{margin-left:-8.582626pt;}
._4_c00052{margin-left:-1.902214pt;}
._1_c00052{margin-left:-0.982555pt;}
._0_c00052{width:1.314090pt;}
._b_c00052{width:2.684355pt;}
._11_c00052{width:3.918937pt;}
._12_c00052{width:4.989622pt;}
._9_c00052{width:6.391201pt;}
._a_c00052{width:7.285041pt;}
._5_c00052{width:8.892870pt;}
._14_c00052{width:12.873701pt;}
._15_c00052{width:14.341586pt;}
._c_c00052{width:16.933286pt;}
._6_c00052{width:18.679028pt;}
._7_c00052{width:19.736252pt;}
._8_c00052{width:20.659289pt;}
._13_c00052{width:21.578575pt;}
._2_c00052{width:22.823671pt;}
._3_c00052{width:24.379655pt;}
._d_c00052{width:25.625588pt;}
._e_c00052{width:43.369306pt;}
._10_c00052{width:44.424369pt;}
._f_c00052{width:45.332369pt;}
.fs4_c00052{font-size:34.559986pt;}
.fs3_c00052{font-size:42.879983pt;}
.fs0_c00052{font-size:53.119979pt;}
.fs1_c00052{font-size:58.879976pt;}
.fs2_c00052{font-size:63.999974pt;}
.y0_c00052{bottom:0.000000pt;}
.y4_c00052{bottom:67.466906pt;}
.y3_c00052{bottom:101.386893pt;}
.y27_c00052{bottom:118.506886pt;}
.y26_c00052{bottom:124.586883pt;}
.y25_c00052{bottom:134.666613pt;}
.y23_c00052{bottom:166.826600pt;}
.y24_c00052{bottom:174.186597pt;}
.y22_c00052{bottom:194.346589pt;}
.y21_c00052{bottom:222.026578pt;}
.y20_c00052{bottom:249.546567pt;}
.y1f_c00052{bottom:277.226556pt;}
.y1e_c00052{bottom:304.746545pt;}
.y1d_c00052{bottom:332.426534pt;}
.y1c_c00052{bottom:359.946523pt;}
.y1b_c00052{bottom:387.626512pt;}
.y1a_c00052{bottom:415.146501pt;}
.y19_c00052{bottom:442.826490pt;}
.y18_c00052{bottom:470.346479pt;}
.y17_c00052{bottom:498.026467pt;}
.y16_c00052{bottom:525.546456pt;}
.y15_c00052{bottom:553.066445pt;}
.y14_c00052{bottom:580.746434pt;}
.y13_c00052{bottom:608.266423pt;}
.y12_c00052{bottom:635.946412pt;}
.y11_c00052{bottom:663.466401pt;}
.y10_c00052{bottom:691.146390pt;}
.yf_c00052{bottom:718.666379pt;}
.ye_c00052{bottom:746.346368pt;}
.yd_c00052{bottom:773.866357pt;}
.yc_c00052{bottom:801.546346pt;}
.yb_c00052{bottom:829.066335pt;}
.ya_c00052{bottom:856.746324pt;}
.y9_c00052{bottom:884.266313pt;}
.y8_c00052{bottom:911.946302pt;}
.y7_c00052{bottom:939.466291pt;}
.y6_c00052{bottom:967.146280pt;}
.y5_c00052{bottom:994.666269pt;}
.y2_c00052{bottom:1045.386249pt;}
.y1_c00052{bottom:1063.306241pt;}
.h5_c00052{height:33.918736pt;}
.h2_c00052{height:39.243734pt;}
.h4_c00052{height:42.084358pt;}
.h1_c00052{height:52.134354pt;}
.h3_c00052{height:62.812475pt;}
.h0_c00052{height:1122.666667pt;}
.w0_c00052{width:793.333333pt;}
.x0_c00052{left:0.000000pt;}
.x5_c00052{left:113.439768pt;}
.x9_c00052{left:122.079951pt;}
.x6_c00052{left:160.640071pt;}
.x1_c00052{left:161.599935pt;}
.x2_c00052{left:292.479474pt;}
.x4_c00052{left:389.439844pt;}
.x7_c00052{left:477.759809pt;}
.x8_c00052{left:488.639805pt;}
.x3_c00052{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b2bf671910e587dd569382f.woff2')format("woff");}.ff1_c00053{font-family:ff1_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;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_a3d54c097b4c4876418a9727.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_e11a4b7912a1018be46e3cc8.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,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:-17.999993px;}
.ws1_c00053{word-spacing:-12.059995px;}
.ws2_c00053{word-spacing:-9.719996px;}
.ws3_c00053{word-spacing:0.000000px;}
._a_c00053{margin-left:-2.265323px;}
._1_c00053{margin-left:-1.105374px;}
._0_c00053{width:1.195563px;}
._2_c00053{width:2.867540px;}
._b_c00053{width:4.464243px;}
._9_c00053{width:5.547234px;}
._10_c00053{width:6.627906px;}
._7_c00053{width:7.839651px;}
._8_c00053{width:8.872644px;}
._3_c00053{width:9.983198px;}
._4_c00053{width:11.190217px;}
._5_c00053{width:13.127087px;}
._11_c00053{width:15.852784px;}
._c_c00053{width:16.921767px;}
._d_c00053{width:19.410081px;}
._6_c00053{width:21.553656px;}
._e_c00053{width:24.118918px;}
._f_c00053{width:25.203294px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs4_c00053{font-size:38.879984px;}
.fs3_c00053{font-size:48.239981px;}
.fs0_c00053{font-size:59.759976px;}
.fs1_c00053{font-size:66.239974px;}
.fs2_c00053{font-size:71.999971px;}
.y0_c00053{bottom:0.000000px;}
.y4_c00053{bottom:75.899970px;}
.y3_c00053{bottom:114.059954px;}
.y26_c00053{bottom:133.320247px;}
.y25_c00053{bottom:140.160244px;}
.y24_c00053{bottom:150.959940px;}
.y23_c00053{bottom:169.859932px;}
.y22_c00053{bottom:248.879900px;}
.y21_c00053{bottom:279.839888px;}
.y20_c00053{bottom:310.979876px;}
.y1e_c00053{bottom:341.939863px;}
.y1f_c00053{bottom:350.219860px;}
.y1d_c00053{bottom:373.079851px;}
.y1c_c00053{bottom:404.039838px;}
.y1b_c00053{bottom:435.179826px;}
.y1a_c00053{bottom:466.139814px;}
.y19_c00053{bottom:497.279801px;}
.y18_c00053{bottom:528.239789px;}
.y17_c00053{bottom:559.379776px;}
.y16_c00053{bottom:590.339764px;}
.y15_c00053{bottom:621.479751px;}
.y14_c00053{bottom:652.439739px;}
.y13_c00053{bottom:683.579727px;}
.y12_c00053{bottom:714.539714px;}
.y11_c00053{bottom:745.679702px;}
.y10_c00053{bottom:776.639689px;}
.yf_c00053{bottom:807.779677px;}
.ye_c00053{bottom:838.739665px;}
.yd_c00053{bottom:869.879652px;}
.yc_c00053{bottom:900.839640px;}
.yb_c00053{bottom:931.979627px;}
.ya_c00053{bottom:962.939615px;}
.y9_c00053{bottom:994.079602px;}
.y8_c00053{bottom:1025.039590px;}
.y7_c00053{bottom:1056.179578px;}
.y6_c00053{bottom:1087.139565px;}
.y5_c00053{bottom:1118.279553px;}
.y2_c00053{bottom:1157.159537px;}
.y1_c00053{bottom:1196.039522px;}
.h6_c00053{height:38.158578px;}
.h5_c00053{height:39.830258px;}
.h2_c00053{height:44.149201px;}
.h4_c00053{height:47.344903px;}
.h1_c00053{height:58.651148px;}
.h3_c00053{height:70.664034px;}
.h0_c00053{height:1263.000000px;}
.w0_c00053{width:892.500000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:127.619949px;}
.x6_c00053{left:137.339945px;}
.x3_c00053{left:180.719928px;}
.x4_c00053{left:415.979834px;}
.x5_c00053{left:428.219829px;}
.x2_c00053{left:438.120035px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:-15.999994pt;}
.ws1_c00053{word-spacing:-10.719996pt;}
.ws2_c00053{word-spacing:-8.639997pt;}
.ws3_c00053{word-spacing:0.000000pt;}
._a_c00053{margin-left:-2.013620pt;}
._1_c00053{margin-left:-0.982555pt;}
._0_c00053{width:1.062723pt;}
._2_c00053{width:2.548924pt;}
._b_c00053{width:3.968216pt;}
._9_c00053{width:4.930875pt;}
._10_c00053{width:5.891472pt;}
._7_c00053{width:6.968579pt;}
._8_c00053{width:7.886795pt;}
._3_c00053{width:8.873954pt;}
._4_c00053{width:9.946859pt;}
._5_c00053{width:11.668522pt;}
._11_c00053{width:14.091364pt;}
._c_c00053{width:15.041571pt;}
._d_c00053{width:17.253406pt;}
._6_c00053{width:19.158805pt;}
._e_c00053{width:21.439038pt;}
._f_c00053{width:22.402928pt;}
.fs4_c00053{font-size:34.559986pt;}
.fs3_c00053{font-size:42.879983pt;}
.fs0_c00053{font-size:53.119979pt;}
.fs1_c00053{font-size:58.879976pt;}
.fs2_c00053{font-size:63.999974pt;}
.y0_c00053{bottom:0.000000pt;}
.y4_c00053{bottom:67.466640pt;}
.y3_c00053{bottom:101.386626pt;}
.y26_c00053{bottom:118.506886pt;}
.y25_c00053{bottom:124.586883pt;}
.y24_c00053{bottom:134.186613pt;}
.y23_c00053{bottom:150.986606pt;}
.y22_c00053{bottom:221.226578pt;}
.y21_c00053{bottom:248.746567pt;}
.y20_c00053{bottom:276.426556pt;}
.y1e_c00053{bottom:303.946545pt;}
.y1f_c00053{bottom:311.306542pt;}
.y1d_c00053{bottom:331.626534pt;}
.y1c_c00053{bottom:359.146523pt;}
.y1b_c00053{bottom:386.826512pt;}
.y1a_c00053{bottom:414.346501pt;}
.y19_c00053{bottom:442.026490pt;}
.y18_c00053{bottom:469.546479pt;}
.y17_c00053{bottom:497.226468pt;}
.y16_c00053{bottom:524.746457pt;}
.y15_c00053{bottom:552.426446pt;}
.y14_c00053{bottom:579.946435pt;}
.y13_c00053{bottom:607.626424pt;}
.y12_c00053{bottom:635.146413pt;}
.y11_c00053{bottom:662.826402pt;}
.y10_c00053{bottom:690.346391pt;}
.yf_c00053{bottom:718.026379pt;}
.ye_c00053{bottom:745.546368pt;}
.yd_c00053{bottom:773.226357pt;}
.yc_c00053{bottom:800.746346pt;}
.yb_c00053{bottom:828.426335pt;}
.ya_c00053{bottom:855.946324pt;}
.y9_c00053{bottom:883.626313pt;}
.y8_c00053{bottom:911.146302pt;}
.y7_c00053{bottom:938.826291pt;}
.y6_c00053{bottom:966.346280pt;}
.y5_c00053{bottom:994.026269pt;}
.y2_c00053{bottom:1028.586255pt;}
.y1_c00053{bottom:1063.146241pt;}
.h6_c00053{height:33.918736pt;}
.h5_c00053{height:35.404673pt;}
.h2_c00053{height:39.243734pt;}
.h4_c00053{height:42.084358pt;}
.h1_c00053{height:52.134354pt;}
.h3_c00053{height:62.812475pt;}
.h0_c00053{height:1122.666667pt;}
.w0_c00053{width:793.333333pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:113.439955pt;}
.x6_c00053{left:122.079951pt;}
.x3_c00053{left:160.639936pt;}
.x4_c00053{left:369.759852pt;}
.x5_c00053{left:380.639848pt;}
.x2_c00053{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb5229fca2237f67a318aecd.woff2')format("woff");}.ff1_c00054{font-family:ff1_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:ff2_c00054;src:url('chunks/assets/font_2ed91430f5c3f5cf01f36512.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:0.675781;font-style:normal;font-weight:normal;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_dbaa5fdcfba14ebeac15b843.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;}
.m0_c00054{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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:0.000000px;}
._e_c00054{margin-left:-2.644210px;}
._1_c00054{margin-left:-1.105374px;}
._0_c00054{width:1.478351px;}
._9_c00054{width:2.665536px;}
._4_c00054{width:4.308389px;}
._5_c00054{width:5.323992px;}
._2_c00054{width:6.373981px;}
._3_c00054{width:7.530813px;}
._8_c00054{width:8.879049px;}
._b_c00054{width:10.106487px;}
._6_c00054{width:11.597659px;}
._7_c00054{width:13.358460px;}
._a_c00054{width:14.795897px;}
._c_c00054{width:16.943117px;}
._d_c00054{width:33.079272px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:59.759976px;}
.fs1_c00054{font-size:66.239974px;}
.fs2_c00054{font-size:71.999971px;}
.y0_c00054{bottom:0.000000px;}
.y4_c00054{bottom:75.900270px;}
.y3_c00054{bottom:114.060254px;}
.y24_c00054{bottom:156.539937px;}
.y23_c00054{bottom:187.679925px;}
.y22_c00054{bottom:218.639913px;}
.y21_c00054{bottom:249.779900px;}
.y20_c00054{bottom:280.739888px;}
.y1f_c00054{bottom:311.879875px;}
.y1e_c00054{bottom:342.839863px;}
.y1d_c00054{bottom:373.979850px;}
.y1c_c00054{bottom:404.939838px;}
.y1b_c00054{bottom:436.079826px;}
.y1a_c00054{bottom:467.039813px;}
.y19_c00054{bottom:498.179801px;}
.y18_c00054{bottom:529.139788px;}
.y17_c00054{bottom:560.279776px;}
.y16_c00054{bottom:591.239764px;}
.y15_c00054{bottom:622.199751px;}
.y14_c00054{bottom:653.339739px;}
.y13_c00054{bottom:684.299726px;}
.y12_c00054{bottom:715.439714px;}
.y11_c00054{bottom:746.399701px;}
.y10_c00054{bottom:777.539689px;}
.yf_c00054{bottom:808.499677px;}
.ye_c00054{bottom:839.639664px;}
.yd_c00054{bottom:870.599652px;}
.yc_c00054{bottom:901.739639px;}
.yb_c00054{bottom:932.699627px;}
.ya_c00054{bottom:963.839614px;}
.y9_c00054{bottom:994.799602px;}
.y8_c00054{bottom:1025.939590px;}
.y7_c00054{bottom:1056.899577px;}
.y6_c00054{bottom:1088.039565px;}
.y5_c00054{bottom:1118.999552px;}
.y2_c00054{bottom:1176.059530px;}
.y1_c00054{bottom:1196.219522px;}
.h2_c00054{height:44.149201px;}
.h1_c00054{height:58.651148px;}
.h3_c00054{height:70.664034px;}
.h0_c00054{height:1263.000000px;}
.w0_c00054{width:892.500000px;}
.x0_c00054{left:0.000000px;}
.x5_c00054{left:127.619739px;}
.x6_c00054{left:180.719930px;}
.x1_c00054{left:181.799927px;}
.x2_c00054{left:329.039408px;}
.x4_c00054{left:438.119825px;}
.x3_c00054{left:765.359694px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
._e_c00054{margin-left:-2.350409pt;}
._1_c00054{margin-left:-0.982555pt;}
._0_c00054{width:1.314090pt;}
._9_c00054{width:2.369365pt;}
._4_c00054{width:3.829679pt;}
._5_c00054{width:4.732437pt;}
._2_c00054{width:5.665761pt;}
._3_c00054{width:6.694056pt;}
._8_c00054{width:7.892488pt;}
._b_c00054{width:8.983544pt;}
._6_c00054{width:10.309030pt;}
._7_c00054{width:11.874186pt;}
._a_c00054{width:13.151909pt;}
._c_c00054{width:15.060549pt;}
._d_c00054{width:29.403798pt;}
.fs0_c00054{font-size:53.119979pt;}
.fs1_c00054{font-size:58.879976pt;}
.fs2_c00054{font-size:63.999974pt;}
.y0_c00054{bottom:0.000000pt;}
.y4_c00054{bottom:67.466906pt;}
.y3_c00054{bottom:101.386893pt;}
.y24_c00054{bottom:139.146611pt;}
.y23_c00054{bottom:166.826600pt;}
.y22_c00054{bottom:194.346589pt;}
.y21_c00054{bottom:222.026578pt;}
.y20_c00054{bottom:249.546567pt;}
.y1f_c00054{bottom:277.226556pt;}
.y1e_c00054{bottom:304.746545pt;}
.y1d_c00054{bottom:332.426534pt;}
.y1c_c00054{bottom:359.946523pt;}
.y1b_c00054{bottom:387.626512pt;}
.y1a_c00054{bottom:415.146501pt;}
.y19_c00054{bottom:442.826490pt;}
.y18_c00054{bottom:470.346479pt;}
.y17_c00054{bottom:498.026467pt;}
.y16_c00054{bottom:525.546456pt;}
.y15_c00054{bottom:553.066445pt;}
.y14_c00054{bottom:580.746434pt;}
.y13_c00054{bottom:608.266423pt;}
.y12_c00054{bottom:635.946412pt;}
.y11_c00054{bottom:663.466401pt;}
.y10_c00054{bottom:691.146390pt;}
.yf_c00054{bottom:718.666379pt;}
.ye_c00054{bottom:746.346368pt;}
.yd_c00054{bottom:773.866357pt;}
.yc_c00054{bottom:801.546346pt;}
.yb_c00054{bottom:829.066335pt;}
.ya_c00054{bottom:856.746324pt;}
.y9_c00054{bottom:884.266313pt;}
.y8_c00054{bottom:911.946302pt;}
.y7_c00054{bottom:939.466291pt;}
.y6_c00054{bottom:967.146280pt;}
.y5_c00054{bottom:994.666269pt;}
.y2_c00054{bottom:1045.386249pt;}
.y1_c00054{bottom:1063.306241pt;}
.h2_c00054{height:39.243734pt;}
.h1_c00054{height:52.134354pt;}
.h3_c00054{height:62.812475pt;}
.h0_c00054{height:1122.666667pt;}
.w0_c00054{width:793.333333pt;}
.x0_c00054{left:0.000000pt;}
.x5_c00054{left:113.439768pt;}
.x6_c00054{left:160.639938pt;}
.x1_c00054{left:161.599935pt;}
.x2_c00054{left:292.479474pt;}
.x4_c00054{left:389.439844pt;}
.x3_c00054{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ffb1aeff98b028203bc5ab0.woff2')format("woff");}.ff1_c00055{font-family:ff1_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:ff2_c00055;src:url('chunks/assets/font_ab469a8290910c687a3d0f47.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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:0.000000px;}
._c_c00055{margin-left:-2.255268px;}
._1_c00055{margin-left:-1.105374px;}
._0_c00055{width:1.195563px;}
._10_c00055{width:2.778981px;}
._14_c00055{width:3.783800px;}
._f_c00055{width:4.848091px;}
._11_c00055{width:6.318153px;}
._7_c00055{width:7.481726px;}
._8_c00055{width:8.499923px;}
._4_c00055{width:9.977261px;}
._5_c00055{width:11.690465px;}
._e_c00055{width:12.855192px;}
._d_c00055{width:14.091595px;}
._6_c00055{width:15.249374px;}
._b_c00055{width:16.324998px;}
._2_c00055{width:19.168016px;}
._3_c00055{width:20.169735px;}
._12_c00055{width:21.598592px;}
._13_c00055{width:22.620998px;}
._9_c00055{width:24.412998px;}
._a_c00055{width:25.462803px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:59.759976px;}
.fs1_c00055{font-size:66.239974px;}
.fs2_c00055{font-size:71.999971px;}
.y0_c00055{bottom:0.000000px;}
.y4_c00055{bottom:75.899970px;}
.y3_c00055{bottom:114.059954px;}
.y23_c00055{bottom:186.779925px;}
.y22_c00055{bottom:217.739913px;}
.y21_c00055{bottom:248.879900px;}
.y20_c00055{bottom:279.839888px;}
.y1f_c00055{bottom:310.979876px;}
.y1e_c00055{bottom:341.939863px;}
.y1d_c00055{bottom:373.079851px;}
.y1c_c00055{bottom:404.039838px;}
.y1b_c00055{bottom:435.179826px;}
.y1a_c00055{bottom:466.139814px;}
.y19_c00055{bottom:497.279801px;}
.y18_c00055{bottom:528.239789px;}
.y17_c00055{bottom:559.379776px;}
.y16_c00055{bottom:590.339764px;}
.y15_c00055{bottom:621.479751px;}
.y14_c00055{bottom:652.439739px;}
.y13_c00055{bottom:683.579727px;}
.y12_c00055{bottom:714.539714px;}
.y11_c00055{bottom:745.679702px;}
.y10_c00055{bottom:776.639689px;}
.yf_c00055{bottom:807.779677px;}
.ye_c00055{bottom:838.739665px;}
.yd_c00055{bottom:869.879652px;}
.yc_c00055{bottom:900.839640px;}
.yb_c00055{bottom:931.979627px;}
.ya_c00055{bottom:962.939615px;}
.y9_c00055{bottom:994.079602px;}
.y8_c00055{bottom:1025.039590px;}
.y7_c00055{bottom:1056.179578px;}
.y6_c00055{bottom:1087.139565px;}
.y5_c00055{bottom:1118.279553px;}
.y2_c00055{bottom:1157.159537px;}
.y1_c00055{bottom:1196.039522px;}
.h2_c00055{height:44.149201px;}
.h1_c00055{height:58.651148px;}
.h3_c00055{height:70.664034px;}
.h0_c00055{height:1263.000000px;}
.w0_c00055{width:892.500000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:127.619949px;}
.x3_c00055{left:180.719930px;}
.x2_c00055{left:438.120035px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
._c_c00055{margin-left:-2.004683pt;}
._1_c00055{margin-left:-0.982555pt;}
._0_c00055{width:1.062723pt;}
._10_c00055{width:2.470206pt;}
._14_c00055{width:3.363378pt;}
._f_c00055{width:4.309414pt;}
._11_c00055{width:5.616136pt;}
._7_c00055{width:6.650423pt;}
._8_c00055{width:7.555487pt;}
._4_c00055{width:8.868676pt;}
._5_c00055{width:10.391525pt;}
._e_c00055{width:11.426837pt;}
._d_c00055{width:12.525862pt;}
._6_c00055{width:13.554999pt;}
._b_c00055{width:14.511109pt;}
._2_c00055{width:17.038236pt;}
._3_c00055{width:17.928654pt;}
._12_c00055{width:19.198748pt;}
._13_c00055{width:20.107554pt;}
._9_c00055{width:21.700443pt;}
._a_c00055{width:22.633603pt;}
.fs0_c00055{font-size:53.119979pt;}
.fs1_c00055{font-size:58.879976pt;}
.fs2_c00055{font-size:63.999974pt;}
.y0_c00055{bottom:0.000000pt;}
.y4_c00055{bottom:67.466640pt;}
.y3_c00055{bottom:101.386626pt;}
.y23_c00055{bottom:166.026600pt;}
.y22_c00055{bottom:193.546589pt;}
.y21_c00055{bottom:221.226578pt;}
.y20_c00055{bottom:248.746567pt;}
.y1f_c00055{bottom:276.426556pt;}
.y1e_c00055{bottom:303.946545pt;}
.y1d_c00055{bottom:331.626534pt;}
.y1c_c00055{bottom:359.146523pt;}
.y1b_c00055{bottom:386.826512pt;}
.y1a_c00055{bottom:414.346501pt;}
.y19_c00055{bottom:442.026490pt;}
.y18_c00055{bottom:469.546479pt;}
.y17_c00055{bottom:497.226468pt;}
.y16_c00055{bottom:524.746457pt;}
.y15_c00055{bottom:552.426446pt;}
.y14_c00055{bottom:579.946435pt;}
.y13_c00055{bottom:607.626424pt;}
.y12_c00055{bottom:635.146413pt;}
.y11_c00055{bottom:662.826402pt;}
.y10_c00055{bottom:690.346391pt;}
.yf_c00055{bottom:718.026379pt;}
.ye_c00055{bottom:745.546368pt;}
.yd_c00055{bottom:773.226357pt;}
.yc_c00055{bottom:800.746346pt;}
.yb_c00055{bottom:828.426335pt;}
.ya_c00055{bottom:855.946324pt;}
.y9_c00055{bottom:883.626313pt;}
.y8_c00055{bottom:911.146302pt;}
.y7_c00055{bottom:938.826291pt;}
.y6_c00055{bottom:966.346280pt;}
.y5_c00055{bottom:994.026269pt;}
.y2_c00055{bottom:1028.586255pt;}
.y1_c00055{bottom:1063.146241pt;}
.h2_c00055{height:39.243734pt;}
.h1_c00055{height:52.134354pt;}
.h3_c00055{height:62.812475pt;}
.h0_c00055{height:1122.666667pt;}
.w0_c00055{width:793.333333pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:113.439955pt;}
.x3_c00055{left:160.639938pt;}
.x2_c00055{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c69d1a5fe4c6c21cce4407b0.woff2')format("woff");}.ff1_c00056{font-family:ff1_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:ff2_c00056;src:url('chunks/assets/font_639532d66cd4c7c45451cc2c.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:0.675781;font-style:normal;font-weight:normal;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_6be836d21fc9ae5112099df9.woff2')format("woff");}.ff3_c00056{font-family:ff3_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;}
.m0_c00056{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls1_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.189300px;}
.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:-17.999993px;}
.ws3_c00056{word-spacing:-14.939994px;}
.ws1_c00056{word-spacing:-12.059995px;}
.ws2_c00056{word-spacing:-9.719996px;}
.ws4_c00056{word-spacing:0.000000px;}
._d_c00056{margin-left:-9.205582px;}
._1_c00056{margin-left:-1.105374px;}
._0_c00056{width:1.478351px;}
._6_c00056{width:2.677721px;}
._3_c00056{width:4.075694px;}
._2_c00056{width:5.163453px;}
._c_c00056{width:6.762481px;}
._9_c00056{width:7.797089px;}
._4_c00056{width:9.128154px;}
._a_c00056{width:10.255521px;}
._5_c00056{width:11.261098px;}
._7_c00056{width:15.176124px;}
._8_c00056{width:16.353720px;}
._b_c00056{width:19.235293px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs4_c00056{font-size:38.879984px;}
.fs3_c00056{font-size:48.239981px;}
.fs0_c00056{font-size:59.759976px;}
.fs1_c00056{font-size:66.239974px;}
.fs2_c00056{font-size:71.999971px;}
.y0_c00056{bottom:0.000000px;}
.y4_c00056{bottom:75.900270px;}
.y3_c00056{bottom:114.060254px;}
.y27_c00056{bottom:133.320247px;}
.y26_c00056{bottom:140.160244px;}
.y25_c00056{bottom:151.499939px;}
.y24_c00056{bottom:187.679925px;}
.y23_c00056{bottom:218.639913px;}
.y22_c00056{bottom:249.779900px;}
.y21_c00056{bottom:280.739888px;}
.y20_c00056{bottom:311.879875px;}
.y1f_c00056{bottom:342.839863px;}
.y1e_c00056{bottom:373.979850px;}
.y1d_c00056{bottom:404.939838px;}
.y1c_c00056{bottom:436.079826px;}
.y1b_c00056{bottom:467.039813px;}
.y1a_c00056{bottom:498.179801px;}
.y19_c00056{bottom:529.139788px;}
.y18_c00056{bottom:560.279776px;}
.y17_c00056{bottom:591.239764px;}
.y16_c00056{bottom:622.199751px;}
.y15_c00056{bottom:653.339739px;}
.y14_c00056{bottom:684.299726px;}
.y13_c00056{bottom:715.439714px;}
.y12_c00056{bottom:746.399701px;}
.y10_c00056{bottom:777.539689px;}
.y11_c00056{bottom:785.819686px;}
.yf_c00056{bottom:808.499677px;}
.ye_c00056{bottom:839.639664px;}
.yd_c00056{bottom:870.599652px;}
.yc_c00056{bottom:901.739639px;}
.yb_c00056{bottom:932.699627px;}
.ya_c00056{bottom:963.839614px;}
.y9_c00056{bottom:994.799602px;}
.y8_c00056{bottom:1025.939590px;}
.y7_c00056{bottom:1056.899577px;}
.y6_c00056{bottom:1088.039565px;}
.y5_c00056{bottom:1118.999552px;}
.y2_c00056{bottom:1176.059530px;}
.y1_c00056{bottom:1196.219522px;}
.h5_c00056{height:38.158578px;}
.h2_c00056{height:44.149201px;}
.h4_c00056{height:47.344903px;}
.h1_c00056{height:58.651148px;}
.h3_c00056{height:70.664034px;}
.h0_c00056{height:1263.000000px;}
.w0_c00056{width:892.500000px;}
.x0_c00056{left:0.000000px;}
.x5_c00056{left:127.619739px;}
.x9_c00056{left:137.339945px;}
.x6_c00056{left:180.719928px;}
.x1_c00056{left:181.799927px;}
.x7_c00056{left:212.039915px;}
.x8_c00056{left:224.279910px;}
.x2_c00056{left:329.039408px;}
.x4_c00056{left:438.119825px;}
.x3_c00056{left:765.359694px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls1_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.168267pt;}
.ws0_c00056{word-spacing:-15.999994pt;}
.ws3_c00056{word-spacing:-13.279995pt;}
.ws1_c00056{word-spacing:-10.719996pt;}
.ws2_c00056{word-spacing:-8.639997pt;}
.ws4_c00056{word-spacing:0.000000pt;}
._d_c00056{margin-left:-8.182739pt;}
._1_c00056{margin-left:-0.982555pt;}
._0_c00056{width:1.314090pt;}
._6_c00056{width:2.380197pt;}
._3_c00056{width:3.622839pt;}
._2_c00056{width:4.589736pt;}
._c_c00056{width:6.011094pt;}
._9_c00056{width:6.930746pt;}
._4_c00056{width:8.113915pt;}
._a_c00056{width:9.116019pt;}
._5_c00056{width:10.009865pt;}
._7_c00056{width:13.489888pt;}
._8_c00056{width:14.536640pt;}
._b_c00056{width:17.098038pt;}
.fs4_c00056{font-size:34.559986pt;}
.fs3_c00056{font-size:42.879983pt;}
.fs0_c00056{font-size:53.119979pt;}
.fs1_c00056{font-size:58.879976pt;}
.fs2_c00056{font-size:63.999974pt;}
.y0_c00056{bottom:0.000000pt;}
.y4_c00056{bottom:67.466906pt;}
.y3_c00056{bottom:101.386893pt;}
.y27_c00056{bottom:118.506886pt;}
.y26_c00056{bottom:124.586883pt;}
.y25_c00056{bottom:134.666613pt;}
.y24_c00056{bottom:166.826600pt;}
.y23_c00056{bottom:194.346589pt;}
.y22_c00056{bottom:222.026578pt;}
.y21_c00056{bottom:249.546567pt;}
.y20_c00056{bottom:277.226556pt;}
.y1f_c00056{bottom:304.746545pt;}
.y1e_c00056{bottom:332.426534pt;}
.y1d_c00056{bottom:359.946523pt;}
.y1c_c00056{bottom:387.626512pt;}
.y1b_c00056{bottom:415.146501pt;}
.y1a_c00056{bottom:442.826490pt;}
.y19_c00056{bottom:470.346479pt;}
.y18_c00056{bottom:498.026467pt;}
.y17_c00056{bottom:525.546456pt;}
.y16_c00056{bottom:553.066445pt;}
.y15_c00056{bottom:580.746434pt;}
.y14_c00056{bottom:608.266423pt;}
.y13_c00056{bottom:635.946412pt;}
.y12_c00056{bottom:663.466401pt;}
.y10_c00056{bottom:691.146390pt;}
.y11_c00056{bottom:698.506387pt;}
.yf_c00056{bottom:718.666379pt;}
.ye_c00056{bottom:746.346368pt;}
.yd_c00056{bottom:773.866357pt;}
.yc_c00056{bottom:801.546346pt;}
.yb_c00056{bottom:829.066335pt;}
.ya_c00056{bottom:856.746324pt;}
.y9_c00056{bottom:884.266313pt;}
.y8_c00056{bottom:911.946302pt;}
.y7_c00056{bottom:939.466291pt;}
.y6_c00056{bottom:967.146280pt;}
.y5_c00056{bottom:994.666269pt;}
.y2_c00056{bottom:1045.386249pt;}
.y1_c00056{bottom:1063.306241pt;}
.h5_c00056{height:33.918736pt;}
.h2_c00056{height:39.243734pt;}
.h4_c00056{height:42.084358pt;}
.h1_c00056{height:52.134354pt;}
.h3_c00056{height:62.812475pt;}
.h0_c00056{height:1122.666667pt;}
.w0_c00056{width:793.333333pt;}
.x0_c00056{left:0.000000pt;}
.x5_c00056{left:113.439768pt;}
.x9_c00056{left:122.079951pt;}
.x6_c00056{left:160.639936pt;}
.x1_c00056{left:161.599935pt;}
.x7_c00056{left:188.479925pt;}
.x8_c00056{left:199.359920pt;}
.x2_c00056{left:292.479474pt;}
.x4_c00056{left:389.439844pt;}
.x3_c00056{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1afaf4c1220b9f61980c4ded.woff2')format("woff");}.ff1_c00057{font-family:ff1_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:ff2_c00057;src:url('chunks/assets/font_5a85299423751c402d40b93f.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:0.675781;font-style:normal;font-weight:normal;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_1b8c81e01cf34d9c440e77ec.woff2')format("woff");}.ff3_c00057{font-family:ff3_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;}
.m0_c00057{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.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:0.000000px;}
._9_c00057{margin-left:-2.139990px;}
._1_c00057{margin-left:-1.105374px;}
._0_c00057{width:1.195563px;}
._c_c00057{width:2.208543px;}
._d_c00057{width:4.237507px;}
._e_c00057{width:5.301776px;}
._4_c00057{width:7.055449px;}
._7_c00057{width:8.476056px;}
._f_c00057{width:9.671791px;}
._5_c00057{width:10.923222px;}
._6_c00057{width:12.625083px;}
._a_c00057{width:13.698715px;}
._8_c00057{width:15.343590px;}
._b_c00057{width:16.530798px;}
._10_c00057{width:19.366414px;}
._2_c00057{width:21.510033px;}
._3_c00057{width:22.872973px;}
._11_c00057{width:42.600823px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:59.759976px;}
.fs1_c00057{font-size:66.239974px;}
.fs2_c00057{font-size:71.999971px;}
.y0_c00057{bottom:0.000000px;}
.y4_c00057{bottom:75.899970px;}
.y3_c00057{bottom:114.059954px;}
.y24_c00057{bottom:155.639938px;}
.y23_c00057{bottom:186.779925px;}
.y22_c00057{bottom:217.739913px;}
.y21_c00057{bottom:248.879900px;}
.y20_c00057{bottom:279.839888px;}
.y1f_c00057{bottom:310.979876px;}
.y1e_c00057{bottom:341.939863px;}
.y1d_c00057{bottom:373.079851px;}
.y1c_c00057{bottom:404.039838px;}
.y1b_c00057{bottom:435.179826px;}
.y1a_c00057{bottom:466.139814px;}
.y19_c00057{bottom:497.279801px;}
.y18_c00057{bottom:528.239789px;}
.y17_c00057{bottom:559.379776px;}
.y16_c00057{bottom:590.339764px;}
.y15_c00057{bottom:621.479751px;}
.y14_c00057{bottom:652.439739px;}
.y13_c00057{bottom:683.579727px;}
.y12_c00057{bottom:714.539714px;}
.y11_c00057{bottom:745.679702px;}
.y10_c00057{bottom:776.639689px;}
.yf_c00057{bottom:807.779677px;}
.ye_c00057{bottom:838.739665px;}
.yd_c00057{bottom:869.879652px;}
.yc_c00057{bottom:900.839640px;}
.yb_c00057{bottom:931.979627px;}
.ya_c00057{bottom:962.939615px;}
.y9_c00057{bottom:994.079602px;}
.y8_c00057{bottom:1025.039590px;}
.y7_c00057{bottom:1056.179578px;}
.y6_c00057{bottom:1087.139565px;}
.y5_c00057{bottom:1118.279553px;}
.y2_c00057{bottom:1157.159537px;}
.y1_c00057{bottom:1196.039522px;}
.h2_c00057{height:44.149201px;}
.h1_c00057{height:58.651148px;}
.h3_c00057{height:70.664034px;}
.h0_c00057{height:1263.000000px;}
.w0_c00057{width:892.500000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:127.619949px;}
.x3_c00057{left:180.719930px;}
.x2_c00057{left:438.120035px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._9_c00057{margin-left:-1.902214pt;}
._1_c00057{margin-left:-0.982555pt;}
._0_c00057{width:1.062723pt;}
._c_c00057{width:1.963149pt;}
._d_c00057{width:3.766673pt;}
._e_c00057{width:4.712690pt;}
._4_c00057{width:6.271510pt;}
._7_c00057{width:7.534272pt;}
._f_c00057{width:8.597147pt;}
._5_c00057{width:9.709530pt;}
._6_c00057{width:11.222296pt;}
._a_c00057{width:12.176635pt;}
._8_c00057{width:13.638747pt;}
._b_c00057{width:14.694043pt;}
._10_c00057{width:17.214590pt;}
._2_c00057{width:19.120029pt;}
._3_c00057{width:20.331532pt;}
._11_c00057{width:37.867399pt;}
.fs0_c00057{font-size:53.119979pt;}
.fs1_c00057{font-size:58.879976pt;}
.fs2_c00057{font-size:63.999974pt;}
.y0_c00057{bottom:0.000000pt;}
.y4_c00057{bottom:67.466640pt;}
.y3_c00057{bottom:101.386626pt;}
.y24_c00057{bottom:138.346611pt;}
.y23_c00057{bottom:166.026600pt;}
.y22_c00057{bottom:193.546589pt;}
.y21_c00057{bottom:221.226578pt;}
.y20_c00057{bottom:248.746567pt;}
.y1f_c00057{bottom:276.426556pt;}
.y1e_c00057{bottom:303.946545pt;}
.y1d_c00057{bottom:331.626534pt;}
.y1c_c00057{bottom:359.146523pt;}
.y1b_c00057{bottom:386.826512pt;}
.y1a_c00057{bottom:414.346501pt;}
.y19_c00057{bottom:442.026490pt;}
.y18_c00057{bottom:469.546479pt;}
.y17_c00057{bottom:497.226468pt;}
.y16_c00057{bottom:524.746457pt;}
.y15_c00057{bottom:552.426446pt;}
.y14_c00057{bottom:579.946435pt;}
.y13_c00057{bottom:607.626424pt;}
.y12_c00057{bottom:635.146413pt;}
.y11_c00057{bottom:662.826402pt;}
.y10_c00057{bottom:690.346391pt;}
.yf_c00057{bottom:718.026379pt;}
.ye_c00057{bottom:745.546368pt;}
.yd_c00057{bottom:773.226357pt;}
.yc_c00057{bottom:800.746346pt;}
.yb_c00057{bottom:828.426335pt;}
.ya_c00057{bottom:855.946324pt;}
.y9_c00057{bottom:883.626313pt;}
.y8_c00057{bottom:911.146302pt;}
.y7_c00057{bottom:938.826291pt;}
.y6_c00057{bottom:966.346280pt;}
.y5_c00057{bottom:994.026269pt;}
.y2_c00057{bottom:1028.586255pt;}
.y1_c00057{bottom:1063.146241pt;}
.h2_c00057{height:39.243734pt;}
.h1_c00057{height:52.134354pt;}
.h3_c00057{height:62.812475pt;}
.h0_c00057{height:1122.666667pt;}
.w0_c00057{width:793.333333pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:113.439955pt;}
.x3_c00057{left:160.639938pt;}
.x2_c00057{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec8de50dfd508d82b34588c1.woff2')format("woff");}.ff1_c00058{font-family:ff1_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:ff2_c00058;src:url('chunks/assets/font_d32964ff21e274d05e0ee94e.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:0.675781;font-style:normal;font-weight:normal;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_ab7541bac8bc379394add9fe.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00058{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls2_c00058{letter-spacing:0.000000px;}
.ls1_c00058{letter-spacing:0.378602px;}
.ls0_c00058{letter-spacing:0.909720px;}
.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:-15.318596px;}
.ws0_c00058{word-spacing:-12.059995px;}
.ws1_c00058{word-spacing:-9.437756px;}
.ws3_c00058{word-spacing:0.000000px;}
._e_c00058{margin-left:-9.720399px;}
._1_c00058{margin-left:-1.105374px;}
._0_c00058{width:1.478351px;}
._c_c00058{width:2.673924px;}
._8_c00058{width:4.088883px;}
._7_c00058{width:5.678270px;}
._9_c00058{width:7.698746px;}
._4_c00058{width:8.762182px;}
._5_c00058{width:9.834376px;}
._d_c00058{width:11.602277px;}
._b_c00058{width:19.495148px;}
._6_c00058{width:20.672594px;}
._a_c00058{width:23.170533px;}
._3_c00058{width:27.444727px;}
._2_c00058{width:28.645721px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs4_c00058{font-size:41.759983px;}
.fs3_c00058{font-size:48.239981px;}
.fs0_c00058{font-size:59.759976px;}
.fs1_c00058{font-size:66.239974px;}
.fs2_c00058{font-size:71.999971px;}
.y0_c00058{bottom:0.000000px;}
.y4_c00058{bottom:75.900270px;}
.y3_c00058{bottom:114.060254px;}
.y27_c00058{bottom:137.280245px;}
.y26_c00058{bottom:158.879936px;}
.y25_c00058{bottom:179.759928px;}
.y24_c00058{bottom:187.319925px;}
.y23_c00058{bottom:200.099920px;}
.y22_c00058{bottom:249.779900px;}
.y21_c00058{bottom:280.739888px;}
.y20_c00058{bottom:311.879875px;}
.y1f_c00058{bottom:342.839863px;}
.y1e_c00058{bottom:373.979850px;}
.y1d_c00058{bottom:404.939838px;}
.y1c_c00058{bottom:436.079826px;}
.y1b_c00058{bottom:467.039813px;}
.y1a_c00058{bottom:498.179801px;}
.y19_c00058{bottom:529.139788px;}
.y18_c00058{bottom:560.279776px;}
.y17_c00058{bottom:591.239764px;}
.y16_c00058{bottom:622.199751px;}
.y15_c00058{bottom:653.339739px;}
.y14_c00058{bottom:684.299726px;}
.y13_c00058{bottom:715.439714px;}
.y12_c00058{bottom:746.399701px;}
.y11_c00058{bottom:777.539689px;}
.y10_c00058{bottom:808.499677px;}
.yf_c00058{bottom:839.639664px;}
.ye_c00058{bottom:870.599652px;}
.yd_c00058{bottom:901.739639px;}
.yc_c00058{bottom:932.699627px;}
.yb_c00058{bottom:963.839614px;}
.ya_c00058{bottom:994.799602px;}
.y8_c00058{bottom:1025.939590px;}
.y9_c00058{bottom:1034.219586px;}
.y7_c00058{bottom:1056.899577px;}
.y6_c00058{bottom:1088.039565px;}
.y5_c00058{bottom:1118.999552px;}
.y2_c00058{bottom:1176.059530px;}
.y1_c00058{bottom:1196.219522px;}
.h5_c00058{height:27.833192px;}
.h2_c00058{height:44.149201px;}
.h4_c00058{height:47.344903px;}
.h1_c00058{height:58.651148px;}
.h6_c00058{height:60.226851px;}
.h3_c00058{height:70.664034px;}
.h0_c00058{height:1263.000000px;}
.w0_c00058{width:892.500000px;}
.x0_c00058{left:0.000000px;}
.x5_c00058{left:127.619739px;}
.x9_c00058{left:138.059945px;}
.xa_c00058{left:142.019943px;}
.xb_c00058{left:153.899938px;}
.x6_c00058{left:180.720080px;}
.x1_c00058{left:181.799927px;}
.x2_c00058{left:329.039408px;}
.x4_c00058{left:438.119825px;}
.x7_c00058{left:559.799776px;}
.x8_c00058{left:572.039771px;}
.x3_c00058{left:765.359694px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls2_c00058{letter-spacing:0.000000pt;}
.ls1_c00058{letter-spacing:0.336535pt;}
.ls0_c00058{letter-spacing:0.808640pt;}
.ws2_c00058{word-spacing:-13.616529pt;}
.ws0_c00058{word-spacing:-10.719996pt;}
.ws1_c00058{word-spacing:-8.389117pt;}
.ws3_c00058{word-spacing:0.000000pt;}
._e_c00058{margin-left:-8.640354pt;}
._1_c00058{margin-left:-0.982555pt;}
._0_c00058{width:1.314090pt;}
._c_c00058{width:2.376821pt;}
._8_c00058{width:3.634562pt;}
._7_c00058{width:5.047351pt;}
._9_c00058{width:6.843330pt;}
._4_c00058{width:7.788606pt;}
._5_c00058{width:8.741667pt;}
._d_c00058{width:10.313135pt;}
._b_c00058{width:17.329020pt;}
._6_c00058{width:18.375639pt;}
._a_c00058{width:20.596029pt;}
._3_c00058{width:24.395313pt;}
._2_c00058{width:25.462863pt;}
.fs4_c00058{font-size:37.119985pt;}
.fs3_c00058{font-size:42.879983pt;}
.fs0_c00058{font-size:53.119979pt;}
.fs1_c00058{font-size:58.879976pt;}
.fs2_c00058{font-size:63.999974pt;}
.y0_c00058{bottom:0.000000pt;}
.y4_c00058{bottom:67.466906pt;}
.y3_c00058{bottom:101.386893pt;}
.y27_c00058{bottom:122.026885pt;}
.y26_c00058{bottom:141.226610pt;}
.y25_c00058{bottom:159.786603pt;}
.y24_c00058{bottom:166.506600pt;}
.y23_c00058{bottom:177.866596pt;}
.y22_c00058{bottom:222.026578pt;}
.y21_c00058{bottom:249.546567pt;}
.y20_c00058{bottom:277.226556pt;}
.y1f_c00058{bottom:304.746545pt;}
.y1e_c00058{bottom:332.426534pt;}
.y1d_c00058{bottom:359.946523pt;}
.y1c_c00058{bottom:387.626512pt;}
.y1b_c00058{bottom:415.146501pt;}
.y1a_c00058{bottom:442.826490pt;}
.y19_c00058{bottom:470.346479pt;}
.y18_c00058{bottom:498.026467pt;}
.y17_c00058{bottom:525.546456pt;}
.y16_c00058{bottom:553.066445pt;}
.y15_c00058{bottom:580.746434pt;}
.y14_c00058{bottom:608.266423pt;}
.y13_c00058{bottom:635.946412pt;}
.y12_c00058{bottom:663.466401pt;}
.y11_c00058{bottom:691.146390pt;}
.y10_c00058{bottom:718.666379pt;}
.yf_c00058{bottom:746.346368pt;}
.ye_c00058{bottom:773.866357pt;}
.yd_c00058{bottom:801.546346pt;}
.yc_c00058{bottom:829.066335pt;}
.yb_c00058{bottom:856.746324pt;}
.ya_c00058{bottom:884.266313pt;}
.y8_c00058{bottom:911.946302pt;}
.y9_c00058{bottom:919.306299pt;}
.y7_c00058{bottom:939.466291pt;}
.y6_c00058{bottom:967.146280pt;}
.y5_c00058{bottom:994.666269pt;}
.y2_c00058{bottom:1045.386249pt;}
.y1_c00058{bottom:1063.306241pt;}
.h5_c00058{height:24.740615pt;}
.h2_c00058{height:39.243734pt;}
.h4_c00058{height:42.084358pt;}
.h1_c00058{height:52.134354pt;}
.h6_c00058{height:53.534979pt;}
.h3_c00058{height:62.812475pt;}
.h0_c00058{height:1122.666667pt;}
.w0_c00058{width:793.333333pt;}
.x0_c00058{left:0.000000pt;}
.x5_c00058{left:113.439768pt;}
.x9_c00058{left:122.719951pt;}
.xa_c00058{left:126.239950pt;}
.xb_c00058{left:136.799945pt;}
.x6_c00058{left:160.640071pt;}
.x1_c00058{left:161.599935pt;}
.x2_c00058{left:292.479474pt;}
.x4_c00058{left:389.439844pt;}
.x7_c00058{left:497.599801pt;}
.x8_c00058{left:508.479797pt;}
.x3_c00058{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fed28ba39c865dc24ac0954.woff2')format("woff");}.ff1_c00059{font-family:ff1_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:ff2_c00059;src:url('chunks/assets/font_2a9439706e5cb32cb0c1421c.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:0.675781;font-style:normal;font-weight:normal;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_0c8b6bea0eab10680076de09.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.311035;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00059;src:url('chunks/assets/font_d268bea2d0c3608a9fd1d3b6.woff2')format("woff");}.ff5_c00059{font-family:ff5_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;}
.m0_c00059{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls1_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:88.047565px;}
.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;}
}
.ws0_c00059{word-spacing:-17.999993px;}
.ws1_c00059{word-spacing:0.000000px;}
._e_c00059{margin-left:-2.604585px;}
._1_c00059{margin-left:-1.105374px;}
._0_c00059{width:1.195563px;}
._4_c00059{width:2.734963px;}
._2_c00059{width:4.308389px;}
._5_c00059{width:5.545840px;}
._a_c00059{width:6.966859px;}
._b_c00059{width:8.060857px;}
._8_c00059{width:9.129299px;}
._9_c00059{width:10.403373px;}
._d_c00059{width:15.589777px;}
._c_c00059{width:16.711475px;}
._7_c00059{width:19.343205px;}
._3_c00059{width:30.534238px;}
._f_c00059{width:31.754920px;}
._6_c00059{width:33.219745px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs0_c00059{font-size:59.759976px;}
.fs1_c00059{font-size:66.239974px;}
.fs2_c00059{font-size:71.999971px;}
.y0_c00059{bottom:0.000000px;}
.y4_c00059{bottom:75.899970px;}
.y3_c00059{bottom:114.059954px;}
.y23_c00059{bottom:186.779925px;}
.y22_c00059{bottom:217.739913px;}
.y21_c00059{bottom:248.879900px;}
.y20_c00059{bottom:279.839888px;}
.y1f_c00059{bottom:310.979876px;}
.y1e_c00059{bottom:341.939863px;}
.y1d_c00059{bottom:373.079851px;}
.y1c_c00059{bottom:404.039838px;}
.y1b_c00059{bottom:435.179826px;}
.y1a_c00059{bottom:466.139814px;}
.y19_c00059{bottom:497.279801px;}
.y18_c00059{bottom:528.239789px;}
.y17_c00059{bottom:559.379776px;}
.y16_c00059{bottom:590.339764px;}
.y15_c00059{bottom:621.479751px;}
.y14_c00059{bottom:652.439739px;}
.y13_c00059{bottom:683.579727px;}
.y12_c00059{bottom:714.539714px;}
.y11_c00059{bottom:745.679702px;}
.y10_c00059{bottom:776.639689px;}
.yf_c00059{bottom:807.779677px;}
.ye_c00059{bottom:838.739665px;}
.yd_c00059{bottom:869.879652px;}
.yc_c00059{bottom:900.839640px;}
.yb_c00059{bottom:931.979627px;}
.ya_c00059{bottom:962.939615px;}
.y9_c00059{bottom:994.079602px;}
.y8_c00059{bottom:1025.039590px;}
.y7_c00059{bottom:1056.179578px;}
.y6_c00059{bottom:1086.779565px;}
.y5_c00059{bottom:1117.919553px;}
.y2_c00059{bottom:1157.159537px;}
.y1_c00059{bottom:1196.039522px;}
.h2_c00059{height:44.149201px;}
.h1_c00059{height:58.651148px;}
.h5_c00059{height:70.664034px;}
.h4_c00059{height:72.562471px;}
.h3_c00059{height:75.093720px;}
.h0_c00059{height:1263.000000px;}
.w0_c00059{width:892.500000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:127.619949px;}
.x3_c00059{left:181.619849px;}
.x2_c00059{left:438.120035px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls1_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:78.264502pt;}
.ws0_c00059{word-spacing:-15.999994pt;}
.ws1_c00059{word-spacing:0.000000pt;}
._e_c00059{margin-left:-2.315187pt;}
._1_c00059{margin-left:-0.982555pt;}
._0_c00059{width:1.062723pt;}
._4_c00059{width:2.431078pt;}
._2_c00059{width:3.829679pt;}
._5_c00059{width:4.929636pt;}
._a_c00059{width:6.192764pt;}
._b_c00059{width:7.165206pt;}
._8_c00059{width:8.114932pt;}
._9_c00059{width:9.247443pt;}
._d_c00059{width:13.857580pt;}
._c_c00059{width:14.854645pt;}
._7_c00059{width:17.193960pt;}
._3_c00059{width:27.141545pt;}
._f_c00059{width:28.226596pt;}
._6_c00059{width:29.528662pt;}
.fs0_c00059{font-size:53.119979pt;}
.fs1_c00059{font-size:58.879976pt;}
.fs2_c00059{font-size:63.999974pt;}
.y0_c00059{bottom:0.000000pt;}
.y4_c00059{bottom:67.466640pt;}
.y3_c00059{bottom:101.386626pt;}
.y23_c00059{bottom:166.026600pt;}
.y22_c00059{bottom:193.546589pt;}
.y21_c00059{bottom:221.226578pt;}
.y20_c00059{bottom:248.746567pt;}
.y1f_c00059{bottom:276.426556pt;}
.y1e_c00059{bottom:303.946545pt;}
.y1d_c00059{bottom:331.626534pt;}
.y1c_c00059{bottom:359.146523pt;}
.y1b_c00059{bottom:386.826512pt;}
.y1a_c00059{bottom:414.346501pt;}
.y19_c00059{bottom:442.026490pt;}
.y18_c00059{bottom:469.546479pt;}
.y17_c00059{bottom:497.226468pt;}
.y16_c00059{bottom:524.746457pt;}
.y15_c00059{bottom:552.426446pt;}
.y14_c00059{bottom:579.946435pt;}
.y13_c00059{bottom:607.626424pt;}
.y12_c00059{bottom:635.146413pt;}
.y11_c00059{bottom:662.826402pt;}
.y10_c00059{bottom:690.346391pt;}
.yf_c00059{bottom:718.026379pt;}
.ye_c00059{bottom:745.546368pt;}
.yd_c00059{bottom:773.226357pt;}
.yc_c00059{bottom:800.746346pt;}
.yb_c00059{bottom:828.426335pt;}
.ya_c00059{bottom:855.946324pt;}
.y9_c00059{bottom:883.626313pt;}
.y8_c00059{bottom:911.146302pt;}
.y7_c00059{bottom:938.826291pt;}
.y6_c00059{bottom:966.026280pt;}
.y5_c00059{bottom:993.706269pt;}
.y2_c00059{bottom:1028.586255pt;}
.y1_c00059{bottom:1063.146241pt;}
.h2_c00059{height:39.243734pt;}
.h1_c00059{height:52.134354pt;}
.h5_c00059{height:62.812475pt;}
.h4_c00059{height:64.499974pt;}
.h3_c00059{height:66.749973pt;}
.h0_c00059{height:1122.666667pt;}
.w0_c00059{width:793.333333pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:113.439955pt;}
.x3_c00059{left:161.439865pt;}
.x2_c00059{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c4e22b97f77eb7dc0cfb2017.woff2')format("woff");}.ff1_c00060{font-family:ff1_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:ff2_c00060;src:url('chunks/assets/font_07453fb24d31c17d6ec03335.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:0.675781;font-style:normal;font-weight:normal;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_61fa1d760d1c244660d6bf55.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;}
.m0_c00060{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00060{word-spacing:0.000000px;}
._c_c00060{margin-left:-2.162456px;}
._1_c00060{margin-left:-1.105374px;}
._0_c00060{width:1.478351px;}
._5_c00060{width:2.744998px;}
._a_c00060{width:4.076925px;}
._b_c00060{width:5.547217px;}
._7_c00060{width:6.668060px;}
._2_c00060{width:8.805801px;}
._3_c00060{width:10.208192px;}
._4_c00060{width:12.147769px;}
._6_c00060{width:13.752402px;}
._8_c00060{width:19.214054px;}
._9_c00060{width:20.246886px;}
._e_c00060{width:21.396075px;}
._d_c00060{width:23.487177px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs0_c00060{font-size:59.759976px;}
.fs1_c00060{font-size:66.239974px;}
.fs2_c00060{font-size:71.999971px;}
.y0_c00060{bottom:0.000000px;}
.y4_c00060{bottom:75.900270px;}
.y3_c00060{bottom:114.060254px;}
.y23_c00060{bottom:187.679925px;}
.y22_c00060{bottom:218.639913px;}
.y21_c00060{bottom:249.779900px;}
.y20_c00060{bottom:280.739888px;}
.y1f_c00060{bottom:311.879875px;}
.y1e_c00060{bottom:342.839863px;}
.y1d_c00060{bottom:373.979850px;}
.y1c_c00060{bottom:404.939838px;}
.y1b_c00060{bottom:436.079826px;}
.y1a_c00060{bottom:467.039813px;}
.y19_c00060{bottom:498.179801px;}
.y18_c00060{bottom:529.139788px;}
.y17_c00060{bottom:560.279776px;}
.y16_c00060{bottom:591.239764px;}
.y15_c00060{bottom:622.199751px;}
.y14_c00060{bottom:653.339739px;}
.y13_c00060{bottom:684.299726px;}
.y12_c00060{bottom:715.439714px;}
.y11_c00060{bottom:746.399701px;}
.y10_c00060{bottom:777.539689px;}
.yf_c00060{bottom:808.499677px;}
.ye_c00060{bottom:839.639664px;}
.yd_c00060{bottom:870.599652px;}
.yc_c00060{bottom:901.739639px;}
.yb_c00060{bottom:932.699627px;}
.ya_c00060{bottom:963.839614px;}
.y9_c00060{bottom:994.799602px;}
.y8_c00060{bottom:1025.939590px;}
.y7_c00060{bottom:1056.899577px;}
.y6_c00060{bottom:1088.039565px;}
.y5_c00060{bottom:1118.999552px;}
.y2_c00060{bottom:1176.059530px;}
.y1_c00060{bottom:1196.219522px;}
.h2_c00060{height:44.149201px;}
.h1_c00060{height:58.651148px;}
.h3_c00060{height:70.664034px;}
.h0_c00060{height:1263.000000px;}
.w0_c00060{width:892.500000px;}
.x0_c00060{left:0.000000px;}
.x5_c00060{left:127.619739px;}
.x6_c00060{left:180.719930px;}
.x1_c00060{left:181.799927px;}
.x2_c00060{left:329.039408px;}
.x4_c00060{left:438.119825px;}
.x3_c00060{left:765.359694px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
._c_c00060{margin-left:-1.922183pt;}
._1_c00060{margin-left:-0.982555pt;}
._0_c00060{width:1.314090pt;}
._5_c00060{width:2.439998pt;}
._a_c00060{width:3.623933pt;}
._b_c00060{width:4.930859pt;}
._7_c00060{width:5.927165pt;}
._2_c00060{width:7.827378pt;}
._3_c00060{width:9.073948pt;}
._4_c00060{width:10.798017pt;}
._6_c00060{width:12.224358pt;}
._8_c00060{width:17.079160pt;}
._9_c00060{width:17.997232pt;}
._e_c00060{width:19.018734pt;}
._d_c00060{width:20.877491pt;}
.fs0_c00060{font-size:53.119979pt;}
.fs1_c00060{font-size:58.879976pt;}
.fs2_c00060{font-size:63.999974pt;}
.y0_c00060{bottom:0.000000pt;}
.y4_c00060{bottom:67.466906pt;}
.y3_c00060{bottom:101.386893pt;}
.y23_c00060{bottom:166.826600pt;}
.y22_c00060{bottom:194.346589pt;}
.y21_c00060{bottom:222.026578pt;}
.y20_c00060{bottom:249.546567pt;}
.y1f_c00060{bottom:277.226556pt;}
.y1e_c00060{bottom:304.746545pt;}
.y1d_c00060{bottom:332.426534pt;}
.y1c_c00060{bottom:359.946523pt;}
.y1b_c00060{bottom:387.626512pt;}
.y1a_c00060{bottom:415.146501pt;}
.y19_c00060{bottom:442.826490pt;}
.y18_c00060{bottom:470.346479pt;}
.y17_c00060{bottom:498.026467pt;}
.y16_c00060{bottom:525.546456pt;}
.y15_c00060{bottom:553.066445pt;}
.y14_c00060{bottom:580.746434pt;}
.y13_c00060{bottom:608.266423pt;}
.y12_c00060{bottom:635.946412pt;}
.y11_c00060{bottom:663.466401pt;}
.y10_c00060{bottom:691.146390pt;}
.yf_c00060{bottom:718.666379pt;}
.ye_c00060{bottom:746.346368pt;}
.yd_c00060{bottom:773.866357pt;}
.yc_c00060{bottom:801.546346pt;}
.yb_c00060{bottom:829.066335pt;}
.ya_c00060{bottom:856.746324pt;}
.y9_c00060{bottom:884.266313pt;}
.y8_c00060{bottom:911.946302pt;}
.y7_c00060{bottom:939.466291pt;}
.y6_c00060{bottom:967.146280pt;}
.y5_c00060{bottom:994.666269pt;}
.y2_c00060{bottom:1045.386249pt;}
.y1_c00060{bottom:1063.306241pt;}
.h2_c00060{height:39.243734pt;}
.h1_c00060{height:52.134354pt;}
.h3_c00060{height:62.812475pt;}
.h0_c00060{height:1122.666667pt;}
.w0_c00060{width:793.333333pt;}
.x0_c00060{left:0.000000pt;}
.x5_c00060{left:113.439768pt;}
.x6_c00060{left:160.639938pt;}
.x1_c00060{left:161.599935pt;}
.x2_c00060{left:292.479474pt;}
.x4_c00060{left:389.439844pt;}
.x3_c00060{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5fd00a0de9bd3042b1201a8d.woff2')format("woff");}.ff1_c00061{font-family:ff1_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:ff2_c00061;src:url('chunks/assets/font_65c6500b83b42b14b7c70577.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:0.675781;font-style:normal;font-weight:normal;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_ea2b4754d50f1695c7c6b411.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;}
.m0_c00061{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00061{word-spacing:0.000000px;}
._1_c00061{margin-left:-1.105374px;}
._0_c00061{width:1.195563px;}
._2_c00061{width:2.844789px;}
._10_c00061{width:4.018997px;}
._f_c00061{width:5.188296px;}
._7_c00061{width:6.496973px;}
._6_c00061{width:7.747526px;}
._b_c00061{width:9.026770px;}
._13_c00061{width:10.290614px;}
._3_c00061{width:11.445299px;}
._12_c00061{width:12.752711px;}
._a_c00061{width:14.297479px;}
._9_c00061{width:15.422972px;}
._8_c00061{width:16.940546px;}
._e_c00061{width:19.829089px;}
._11_c00061{width:22.429190px;}
._5_c00061{width:24.320466px;}
._4_c00061{width:25.335318px;}
._c_c00061{width:33.054473px;}
._d_c00061{width:34.073726px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:59.759976px;}
.fs1_c00061{font-size:66.239974px;}
.fs2_c00061{font-size:71.999971px;}
.y0_c00061{bottom:0.000000px;}
.y4_c00061{bottom:75.899970px;}
.y3_c00061{bottom:114.059954px;}
.y24_c00061{bottom:155.639938px;}
.y23_c00061{bottom:186.779925px;}
.y22_c00061{bottom:217.739913px;}
.y21_c00061{bottom:248.879900px;}
.y20_c00061{bottom:279.839888px;}
.y1f_c00061{bottom:310.979876px;}
.y1e_c00061{bottom:341.939863px;}
.y1d_c00061{bottom:373.079851px;}
.y1c_c00061{bottom:404.039838px;}
.y1b_c00061{bottom:435.179826px;}
.y1a_c00061{bottom:466.139814px;}
.y19_c00061{bottom:497.279801px;}
.y18_c00061{bottom:528.239789px;}
.y17_c00061{bottom:559.379776px;}
.y16_c00061{bottom:590.339764px;}
.y15_c00061{bottom:621.479751px;}
.y14_c00061{bottom:652.439739px;}
.y13_c00061{bottom:683.579727px;}
.y12_c00061{bottom:714.539714px;}
.y11_c00061{bottom:745.679702px;}
.y10_c00061{bottom:776.639689px;}
.yf_c00061{bottom:807.779677px;}
.ye_c00061{bottom:838.739665px;}
.yd_c00061{bottom:869.879652px;}
.yc_c00061{bottom:900.839640px;}
.yb_c00061{bottom:931.979627px;}
.ya_c00061{bottom:962.939615px;}
.y9_c00061{bottom:994.079602px;}
.y8_c00061{bottom:1025.039590px;}
.y7_c00061{bottom:1056.179578px;}
.y6_c00061{bottom:1087.139565px;}
.y5_c00061{bottom:1118.279553px;}
.y2_c00061{bottom:1157.159537px;}
.y1_c00061{bottom:1196.039522px;}
.h2_c00061{height:44.149201px;}
.h1_c00061{height:58.651148px;}
.h3_c00061{height:70.664034px;}
.h0_c00061{height:1263.000000px;}
.w0_c00061{width:892.500000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:127.619949px;}
.x3_c00061{left:180.719928px;}
.x2_c00061{left:438.120035px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._1_c00061{margin-left:-0.982555pt;}
._0_c00061{width:1.062723pt;}
._2_c00061{width:2.528701pt;}
._10_c00061{width:3.572442pt;}
._f_c00061{width:4.611818pt;}
._7_c00061{width:5.775087pt;}
._6_c00061{width:6.886690pt;}
._b_c00061{width:8.023796pt;}
._13_c00061{width:9.147212pt;}
._3_c00061{width:10.173599pt;}
._12_c00061{width:11.335743pt;}
._a_c00061{width:12.708871pt;}
._9_c00061{width:13.709308pt;}
._8_c00061{width:15.058263pt;}
._e_c00061{width:17.625856pt;}
._11_c00061{width:19.937058pt;}
._5_c00061{width:21.618192pt;}
._4_c00061{width:22.520282pt;}
._c_c00061{width:29.381754pt;}
._d_c00061{width:30.287756pt;}
.fs0_c00061{font-size:53.119979pt;}
.fs1_c00061{font-size:58.879976pt;}
.fs2_c00061{font-size:63.999974pt;}
.y0_c00061{bottom:0.000000pt;}
.y4_c00061{bottom:67.466640pt;}
.y3_c00061{bottom:101.386626pt;}
.y24_c00061{bottom:138.346611pt;}
.y23_c00061{bottom:166.026600pt;}
.y22_c00061{bottom:193.546589pt;}
.y21_c00061{bottom:221.226578pt;}
.y20_c00061{bottom:248.746567pt;}
.y1f_c00061{bottom:276.426556pt;}
.y1e_c00061{bottom:303.946545pt;}
.y1d_c00061{bottom:331.626534pt;}
.y1c_c00061{bottom:359.146523pt;}
.y1b_c00061{bottom:386.826512pt;}
.y1a_c00061{bottom:414.346501pt;}
.y19_c00061{bottom:442.026490pt;}
.y18_c00061{bottom:469.546479pt;}
.y17_c00061{bottom:497.226468pt;}
.y16_c00061{bottom:524.746457pt;}
.y15_c00061{bottom:552.426446pt;}
.y14_c00061{bottom:579.946435pt;}
.y13_c00061{bottom:607.626424pt;}
.y12_c00061{bottom:635.146413pt;}
.y11_c00061{bottom:662.826402pt;}
.y10_c00061{bottom:690.346391pt;}
.yf_c00061{bottom:718.026379pt;}
.ye_c00061{bottom:745.546368pt;}
.yd_c00061{bottom:773.226357pt;}
.yc_c00061{bottom:800.746346pt;}
.yb_c00061{bottom:828.426335pt;}
.ya_c00061{bottom:855.946324pt;}
.y9_c00061{bottom:883.626313pt;}
.y8_c00061{bottom:911.146302pt;}
.y7_c00061{bottom:938.826291pt;}
.y6_c00061{bottom:966.346280pt;}
.y5_c00061{bottom:994.026269pt;}
.y2_c00061{bottom:1028.586255pt;}
.y1_c00061{bottom:1063.146241pt;}
.h2_c00061{height:39.243734pt;}
.h1_c00061{height:52.134354pt;}
.h3_c00061{height:62.812475pt;}
.h0_c00061{height:1122.666667pt;}
.w0_c00061{width:793.333333pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:113.439955pt;}
.x3_c00061{left:160.639936pt;}
.x2_c00061{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdec7395225ef0cc2309e434.woff2')format("woff");}.ff1_c00062{font-family:ff1_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:ff2_c00062;src:url('chunks/assets/font_91d7e376b06ac8fab0aa4413.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:0.675781;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:34.015846px;}
.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;}
}
.ws0_c00062{word-spacing:-17.999993px;}
.ws1_c00062{word-spacing:0.000000px;}
._3_c00062{margin-left:-2.242334px;}
._1_c00062{margin-left:-1.105374px;}
._0_c00062{width:1.478351px;}
._8_c00062{width:2.992725px;}
._9_c00062{width:4.274600px;}
._6_c00062{width:5.749223px;}
._a_c00062{width:6.861554px;}
._7_c00062{width:7.968424px;}
._10_c00062{width:9.419882px;}
._f_c00062{width:10.716594px;}
._e_c00062{width:13.317068px;}
._b_c00062{width:14.369503px;}
._2_c00062{width:16.555642px;}
._13_c00062{width:19.899028px;}
._11_c00062{width:25.549050px;}
._12_c00062{width:26.552976px;}
._4_c00062{width:28.124880px;}
._5_c00062{width:29.571721px;}
._c_c00062{width:38.793126px;}
._d_c00062{width:40.309636px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs0_c00062{font-size:59.759976px;}
.fs1_c00062{font-size:66.239974px;}
.fs2_c00062{font-size:71.999971px;}
.y0_c00062{bottom:0.000000px;}
.y4_c00062{bottom:75.900270px;}
.y3_c00062{bottom:114.060254px;}
.y24_c00062{bottom:156.539937px;}
.y23_c00062{bottom:187.679925px;}
.y22_c00062{bottom:218.639913px;}
.y21_c00062{bottom:249.779900px;}
.y20_c00062{bottom:280.739888px;}
.y1f_c00062{bottom:311.879875px;}
.y1e_c00062{bottom:342.839863px;}
.y1d_c00062{bottom:373.979850px;}
.y1c_c00062{bottom:404.939838px;}
.y1b_c00062{bottom:436.079826px;}
.y1a_c00062{bottom:467.039813px;}
.y19_c00062{bottom:498.179801px;}
.y18_c00062{bottom:529.139788px;}
.y17_c00062{bottom:560.279776px;}
.y16_c00062{bottom:591.239764px;}
.y15_c00062{bottom:622.199751px;}
.y14_c00062{bottom:653.339739px;}
.y13_c00062{bottom:684.299726px;}
.y12_c00062{bottom:715.439714px;}
.y11_c00062{bottom:746.399701px;}
.y10_c00062{bottom:777.539689px;}
.yf_c00062{bottom:808.499677px;}
.ye_c00062{bottom:839.639664px;}
.yd_c00062{bottom:870.599652px;}
.yc_c00062{bottom:901.739639px;}
.yb_c00062{bottom:932.699627px;}
.ya_c00062{bottom:963.839614px;}
.y9_c00062{bottom:994.799602px;}
.y8_c00062{bottom:1025.939590px;}
.y7_c00062{bottom:1056.899577px;}
.y6_c00062{bottom:1088.039565px;}
.y5_c00062{bottom:1118.999552px;}
.y2_c00062{bottom:1176.059530px;}
.y1_c00062{bottom:1196.219522px;}
.h2_c00062{height:44.149201px;}
.h1_c00062{height:58.651148px;}
.h3_c00062{height:70.664034px;}
.h4_c00062{height:75.093720px;}
.h0_c00062{height:1263.000000px;}
.w0_c00062{width:892.500000px;}
.x0_c00062{left:0.000000px;}
.x5_c00062{left:127.619739px;}
.x7_c00062{left:154.619896px;}
.x6_c00062{left:180.719928px;}
.x1_c00062{left:181.799927px;}
.x2_c00062{left:329.039408px;}
.x4_c00062{left:438.119825px;}
.x3_c00062{left:765.359694px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:30.236308pt;}
.ws0_c00062{word-spacing:-15.999994pt;}
.ws1_c00062{word-spacing:0.000000pt;}
._3_c00062{margin-left:-1.993186pt;}
._1_c00062{margin-left:-0.982555pt;}
._0_c00062{width:1.314090pt;}
._8_c00062{width:2.660200pt;}
._9_c00062{width:3.799645pt;}
._6_c00062{width:5.110420pt;}
._a_c00062{width:6.099160pt;}
._7_c00062{width:7.083044pt;}
._10_c00062{width:8.373228pt;}
._f_c00062{width:9.525861pt;}
._e_c00062{width:11.837394pt;}
._b_c00062{width:12.772891pt;}
._2_c00062{width:14.716126pt;}
._13_c00062{width:17.688025pt;}
._11_c00062{width:22.710267pt;}
._12_c00062{width:23.602645pt;}
._4_c00062{width:24.999894pt;}
._5_c00062{width:26.285974pt;}
._c_c00062{width:34.482779pt;}
._d_c00062{width:35.830787pt;}
.fs0_c00062{font-size:53.119979pt;}
.fs1_c00062{font-size:58.879976pt;}
.fs2_c00062{font-size:63.999974pt;}
.y0_c00062{bottom:0.000000pt;}
.y4_c00062{bottom:67.466906pt;}
.y3_c00062{bottom:101.386893pt;}
.y24_c00062{bottom:139.146611pt;}
.y23_c00062{bottom:166.826600pt;}
.y22_c00062{bottom:194.346589pt;}
.y21_c00062{bottom:222.026578pt;}
.y20_c00062{bottom:249.546567pt;}
.y1f_c00062{bottom:277.226556pt;}
.y1e_c00062{bottom:304.746545pt;}
.y1d_c00062{bottom:332.426534pt;}
.y1c_c00062{bottom:359.946523pt;}
.y1b_c00062{bottom:387.626512pt;}
.y1a_c00062{bottom:415.146501pt;}
.y19_c00062{bottom:442.826490pt;}
.y18_c00062{bottom:470.346479pt;}
.y17_c00062{bottom:498.026467pt;}
.y16_c00062{bottom:525.546456pt;}
.y15_c00062{bottom:553.066445pt;}
.y14_c00062{bottom:580.746434pt;}
.y13_c00062{bottom:608.266423pt;}
.y12_c00062{bottom:635.946412pt;}
.y11_c00062{bottom:663.466401pt;}
.y10_c00062{bottom:691.146390pt;}
.yf_c00062{bottom:718.666379pt;}
.ye_c00062{bottom:746.346368pt;}
.yd_c00062{bottom:773.866357pt;}
.yc_c00062{bottom:801.546346pt;}
.yb_c00062{bottom:829.066335pt;}
.ya_c00062{bottom:856.746324pt;}
.y9_c00062{bottom:884.266313pt;}
.y8_c00062{bottom:911.946302pt;}
.y7_c00062{bottom:939.466291pt;}
.y6_c00062{bottom:967.146280pt;}
.y5_c00062{bottom:994.666269pt;}
.y2_c00062{bottom:1045.386249pt;}
.y1_c00062{bottom:1063.306241pt;}
.h2_c00062{height:39.243734pt;}
.h1_c00062{height:52.134354pt;}
.h3_c00062{height:62.812475pt;}
.h4_c00062{height:66.749973pt;}
.h0_c00062{height:1122.666667pt;}
.w0_c00062{width:793.333333pt;}
.x0_c00062{left:0.000000pt;}
.x5_c00062{left:113.439768pt;}
.x7_c00062{left:137.439908pt;}
.x6_c00062{left:160.639936pt;}
.x1_c00062{left:161.599935pt;}
.x2_c00062{left:292.479474pt;}
.x4_c00062{left:389.439844pt;}
.x3_c00062{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6d54714c26dc0aa0399605a.woff2')format("woff");}.ff1_c00063{font-family:ff1_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:ff2_c00063;src:url('chunks/assets/font_2a65a5a5cd95cf49b94ae7b4.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:0.675781;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_09bf71ccd353435892b4b84b.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.311035;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls2_c00063{letter-spacing:0.000000px;}
.ls0_c00063{letter-spacing:34.015846px;}
.ls1_c00063{letter-spacing:88.047565px;}
.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:-17.999993px;}
.ws1_c00063{word-spacing:0.000000px;}
._12_c00063{margin-left:-2.207147px;}
._1_c00063{margin-left:-1.105374px;}
._0_c00063{width:1.195563px;}
._3_c00063{width:2.246874px;}
._2_c00063{width:3.377782px;}
._11_c00063{width:4.459492px;}
._10_c00063{width:6.424738px;}
._4_c00063{width:7.651833px;}
._5_c00063{width:8.804618px;}
._c_c00063{width:9.876964px;}
._8_c00063{width:11.176063px;}
._9_c00063{width:12.751567px;}
._e_c00063{width:13.919727px;}
._d_c00063{width:15.209168px;}
._6_c00063{width:24.435402px;}
._7_c00063{width:25.916300px;}
._a_c00063{width:27.333655px;}
._b_c00063{width:28.970348px;}
._f_c00063{width:30.002736px;}
.fc1_c00063{color:rgb(255,0,0);}
.fc0_c00063{color:rgb(0,0,0);}
.fs0_c00063{font-size:59.759976px;}
.fs1_c00063{font-size:66.239974px;}
.fs2_c00063{font-size:71.999971px;}
.y0_c00063{bottom:0.000000px;}
.y4_c00063{bottom:75.899970px;}
.y3_c00063{bottom:114.059954px;}
.y22_c00063{bottom:217.739913px;}
.y21_c00063{bottom:248.879900px;}
.y20_c00063{bottom:279.839888px;}
.y1f_c00063{bottom:310.979876px;}
.y1e_c00063{bottom:341.939863px;}
.y1d_c00063{bottom:373.079851px;}
.y1c_c00063{bottom:404.039838px;}
.y1b_c00063{bottom:435.179826px;}
.y1a_c00063{bottom:466.139814px;}
.y19_c00063{bottom:497.279801px;}
.y18_c00063{bottom:528.239789px;}
.y17_c00063{bottom:559.379776px;}
.y16_c00063{bottom:590.339764px;}
.y15_c00063{bottom:621.479751px;}
.y14_c00063{bottom:652.439739px;}
.y13_c00063{bottom:683.579727px;}
.y12_c00063{bottom:714.539714px;}
.y11_c00063{bottom:745.679702px;}
.y10_c00063{bottom:776.279689px;}
.yf_c00063{bottom:807.419677px;}
.ye_c00063{bottom:838.379665px;}
.yd_c00063{bottom:869.879652px;}
.yc_c00063{bottom:900.839640px;}
.yb_c00063{bottom:931.979627px;}
.ya_c00063{bottom:962.939615px;}
.y9_c00063{bottom:994.079602px;}
.y8_c00063{bottom:1025.039590px;}
.y7_c00063{bottom:1056.179578px;}
.y6_c00063{bottom:1087.139565px;}
.y5_c00063{bottom:1118.279553px;}
.y2_c00063{bottom:1157.159537px;}
.y1_c00063{bottom:1196.039522px;}
.h2_c00063{height:44.149201px;}
.h1_c00063{height:58.651148px;}
.h3_c00063{height:70.664034px;}
.h5_c00063{height:72.562471px;}
.h4_c00063{height:75.093720px;}
.h0_c00063{height:1263.000000px;}
.w0_c00063{width:892.500000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:127.619949px;}
.x4_c00063{left:154.619378px;}
.x3_c00063{left:181.619927px;}
.x2_c00063{left:438.120035px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls2_c00063{letter-spacing:0.000000pt;}
.ls0_c00063{letter-spacing:30.236308pt;}
.ls1_c00063{letter-spacing:78.264502pt;}
.ws0_c00063{word-spacing:-15.999994pt;}
.ws1_c00063{word-spacing:0.000000pt;}
._12_c00063{margin-left:-1.961908pt;}
._1_c00063{margin-left:-0.982555pt;}
._0_c00063{width:1.062723pt;}
._3_c00063{width:1.997221pt;}
._2_c00063{width:3.002473pt;}
._11_c00063{width:3.963992pt;}
._10_c00063{width:5.710878pt;}
._4_c00063{width:6.801629pt;}
._5_c00063{width:7.826327pt;}
._c_c00063{width:8.779523pt;}
._8_c00063{width:9.934279pt;}
._9_c00063{width:11.334726pt;}
._e_c00063{width:12.373091pt;}
._d_c00063{width:13.519260pt;}
._6_c00063{width:21.720358pt;}
._7_c00063{width:23.036711pt;}
._a_c00063{width:24.296583pt;}
._b_c00063{width:25.751421pt;}
._f_c00063{width:26.669099pt;}
.fs0_c00063{font-size:53.119979pt;}
.fs1_c00063{font-size:58.879976pt;}
.fs2_c00063{font-size:63.999974pt;}
.y0_c00063{bottom:0.000000pt;}
.y4_c00063{bottom:67.466640pt;}
.y3_c00063{bottom:101.386626pt;}
.y22_c00063{bottom:193.546589pt;}
.y21_c00063{bottom:221.226578pt;}
.y20_c00063{bottom:248.746567pt;}
.y1f_c00063{bottom:276.426556pt;}
.y1e_c00063{bottom:303.946545pt;}
.y1d_c00063{bottom:331.626534pt;}
.y1c_c00063{bottom:359.146523pt;}
.y1b_c00063{bottom:386.826512pt;}
.y1a_c00063{bottom:414.346501pt;}
.y19_c00063{bottom:442.026490pt;}
.y18_c00063{bottom:469.546479pt;}
.y17_c00063{bottom:497.226468pt;}
.y16_c00063{bottom:524.746457pt;}
.y15_c00063{bottom:552.426446pt;}
.y14_c00063{bottom:579.946435pt;}
.y13_c00063{bottom:607.626424pt;}
.y12_c00063{bottom:635.146413pt;}
.y11_c00063{bottom:662.826402pt;}
.y10_c00063{bottom:690.026391pt;}
.yf_c00063{bottom:717.706380pt;}
.ye_c00063{bottom:745.226369pt;}
.yd_c00063{bottom:773.226357pt;}
.yc_c00063{bottom:800.746346pt;}
.yb_c00063{bottom:828.426335pt;}
.ya_c00063{bottom:855.946324pt;}
.y9_c00063{bottom:883.626313pt;}
.y8_c00063{bottom:911.146302pt;}
.y7_c00063{bottom:938.826291pt;}
.y6_c00063{bottom:966.346280pt;}
.y5_c00063{bottom:994.026269pt;}
.y2_c00063{bottom:1028.586255pt;}
.y1_c00063{bottom:1063.146241pt;}
.h2_c00063{height:39.243734pt;}
.h1_c00063{height:52.134354pt;}
.h3_c00063{height:62.812475pt;}
.h5_c00063{height:64.499974pt;}
.h4_c00063{height:66.749973pt;}
.h0_c00063{height:1122.666667pt;}
.w0_c00063{width:793.333333pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:113.439955pt;}
.x4_c00063{left:137.439447pt;}
.x3_c00063{left:161.439935pt;}
.x2_c00063{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98b32a31a8fd2de72f06577c.woff2')format("woff");}.ff1_c00064{font-family:ff1_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:ff2_c00064;src:url('chunks/assets/font_8c4dc3d1e76b3924e4cfc15e.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:0.675781;font-style:normal;font-weight:normal;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_d42c62a21d9bb1777f0e459a.woff2')format("woff");}.ff3_c00064{font-family:ff3_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;}
.m0_c00064{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00064{word-spacing:0.000000px;}
._d_c00064{margin-left:-2.126971px;}
._1_c00064{margin-left:-1.105374px;}
._0_c00064{width:1.478351px;}
._2_c00064{width:3.013763px;}
._e_c00064{width:4.227400px;}
._9_c00064{width:5.704211px;}
._a_c00064{width:8.083934px;}
._f_c00064{width:9.375864px;}
._8_c00064{width:10.856051px;}
._7_c00064{width:11.943616px;}
._11_c00064{width:14.313948px;}
._10_c00064{width:15.832836px;}
._b_c00064{width:19.214054px;}
._c_c00064{width:20.977368px;}
._5_c00064{width:22.613168px;}
._4_c00064{width:23.942829px;}
._3_c00064{width:30.804648px;}
._6_c00064{width:32.018681px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs3_c00064{font-size:48.239981px;}
.fs0_c00064{font-size:59.759976px;}
.fs1_c00064{font-size:66.239974px;}
.fs2_c00064{font-size:71.999971px;}
.y0_c00064{bottom:0.000000px;}
.y4_c00064{bottom:75.900270px;}
.y3_c00064{bottom:114.060254px;}
.y19_c00064{bottom:498.179801px;}
.y18_c00064{bottom:529.139788px;}
.y17_c00064{bottom:560.279776px;}
.y16_c00064{bottom:591.239764px;}
.y15_c00064{bottom:622.199751px;}
.y14_c00064{bottom:653.339739px;}
.y13_c00064{bottom:684.299726px;}
.y12_c00064{bottom:715.439714px;}
.y11_c00064{bottom:746.399701px;}
.y10_c00064{bottom:777.539689px;}
.yf_c00064{bottom:808.499677px;}
.ye_c00064{bottom:839.639664px;}
.yd_c00064{bottom:870.599652px;}
.yc_c00064{bottom:901.739639px;}
.yb_c00064{bottom:932.699627px;}
.ya_c00064{bottom:963.839614px;}
.y9_c00064{bottom:994.799602px;}
.y8_c00064{bottom:1025.939590px;}
.y7_c00064{bottom:1056.899577px;}
.y6_c00064{bottom:1088.039565px;}
.y5_c00064{bottom:1118.999552px;}
.y2_c00064{bottom:1176.059530px;}
.y1_c00064{bottom:1196.219522px;}
.h2_c00064{height:44.149201px;}
.h4_c00064{height:47.344903px;}
.h1_c00064{height:58.651148px;}
.h3_c00064{height:70.664034px;}
.h0_c00064{height:1263.000000px;}
.w0_c00064{width:892.500000px;}
.x0_c00064{left:0.000000px;}
.x5_c00064{left:127.619739px;}
.x6_c00064{left:180.719928px;}
.x1_c00064{left:181.799927px;}
.x2_c00064{left:329.039408px;}
.x4_c00064{left:438.119825px;}
.x7_c00064{left:736.379705px;}
.x3_c00064{left:765.359694px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._d_c00064{margin-left:-1.890641pt;}
._1_c00064{margin-left:-0.982555pt;}
._0_c00064{width:1.314090pt;}
._2_c00064{width:2.678900pt;}
._e_c00064{width:3.757689pt;}
._9_c00064{width:5.070410pt;}
._a_c00064{width:7.185719pt;}
._f_c00064{width:8.334101pt;}
._8_c00064{width:9.649823pt;}
._7_c00064{width:10.616548pt;}
._11_c00064{width:12.723509pt;}
._10_c00064{width:14.073632pt;}
._b_c00064{width:17.079160pt;}
._c_c00064{width:18.646549pt;}
._5_c00064{width:20.100593pt;}
._4_c00064{width:21.282515pt;}
._3_c00064{width:27.381909pt;}
._6_c00064{width:28.461050pt;}
.fs3_c00064{font-size:42.879983pt;}
.fs0_c00064{font-size:53.119979pt;}
.fs1_c00064{font-size:58.879976pt;}
.fs2_c00064{font-size:63.999974pt;}
.y0_c00064{bottom:0.000000pt;}
.y4_c00064{bottom:67.466906pt;}
.y3_c00064{bottom:101.386893pt;}
.y19_c00064{bottom:442.826490pt;}
.y18_c00064{bottom:470.346479pt;}
.y17_c00064{bottom:498.026467pt;}
.y16_c00064{bottom:525.546456pt;}
.y15_c00064{bottom:553.066445pt;}
.y14_c00064{bottom:580.746434pt;}
.y13_c00064{bottom:608.266423pt;}
.y12_c00064{bottom:635.946412pt;}
.y11_c00064{bottom:663.466401pt;}
.y10_c00064{bottom:691.146390pt;}
.yf_c00064{bottom:718.666379pt;}
.ye_c00064{bottom:746.346368pt;}
.yd_c00064{bottom:773.866357pt;}
.yc_c00064{bottom:801.546346pt;}
.yb_c00064{bottom:829.066335pt;}
.ya_c00064{bottom:856.746324pt;}
.y9_c00064{bottom:884.266313pt;}
.y8_c00064{bottom:911.946302pt;}
.y7_c00064{bottom:939.466291pt;}
.y6_c00064{bottom:967.146280pt;}
.y5_c00064{bottom:994.666269pt;}
.y2_c00064{bottom:1045.386249pt;}
.y1_c00064{bottom:1063.306241pt;}
.h2_c00064{height:39.243734pt;}
.h4_c00064{height:42.084358pt;}
.h1_c00064{height:52.134354pt;}
.h3_c00064{height:62.812475pt;}
.h0_c00064{height:1122.666667pt;}
.w0_c00064{width:793.333333pt;}
.x0_c00064{left:0.000000pt;}
.x5_c00064{left:113.439768pt;}
.x6_c00064{left:160.639936pt;}
.x1_c00064{left:161.599935pt;}
.x2_c00064{left:292.479474pt;}
.x4_c00064{left:389.439844pt;}
.x7_c00064{left:654.559738pt;}
.x3_c00064{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e0b4291e17275ebd179ce5f.woff2')format("woff");}.ff1_c00065{font-family:ff1_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:ff2_c00065;src:url('chunks/assets/font_6284294944ae21e76192d334.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:0.675781;font-style:normal;font-weight:normal;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_ec55c89c1922515e74244690.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;}
.m0_c00065{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls6_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.021282px;}
.ls5_c00065{letter-spacing:0.153901px;}
.ls2_c00065{letter-spacing:2.892299px;}
.ls3_c00065{letter-spacing:6.494457px;}
.ls1_c00065{letter-spacing:7.214877px;}
.ls4_c00065{letter-spacing:18.741653px;}
.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:-17.999993px;}
.ws1_c00065{word-spacing:-12.059995px;}
.ws2_c00065{word-spacing:-9.437756px;}
.ws3_c00065{word-spacing:0.000000px;}
._d_c00065{margin-left:-12.716934px;}
._1_c00065{margin-left:-1.105374px;}
._0_c00065{width:1.195563px;}
._b_c00065{width:2.839310px;}
._6_c00065{width:3.859530px;}
._7_c00065{width:5.068755px;}
._9_c00065{width:6.621979px;}
._a_c00065{width:7.660640px;}
._8_c00065{width:10.568946px;}
._3_c00065{width:12.047024px;}
._2_c00065{width:13.088123px;}
._c_c00065{width:19.165688px;}
._5_c00065{width:22.458264px;}
._4_c00065{width:23.550935px;}
.fc1_c00065{color:rgb(255,0,0);}
.fc0_c00065{color:rgb(0,0,0);}
.fs4_c00065{font-size:41.759983px;}
.fs3_c00065{font-size:48.239981px;}
.fs0_c00065{font-size:59.759976px;}
.fs1_c00065{font-size:66.239974px;}
.fs2_c00065{font-size:71.999971px;}
.y0_c00065{bottom:0.000000px;}
.y4_c00065{bottom:75.719970px;}
.y3_c00065{bottom:113.879954px;}
.y19_c00065{bottom:155.099938px;}
.y18_c00065{bottom:196.139922px;}
.y17_c00065{bottom:203.699919px;}
.y16_c00065{bottom:237.359905px;}
.y15_c00065{bottom:285.599886px;}
.y14_c00065{bottom:316.559873px;}
.y13_c00065{bottom:347.699861px;}
.y12_c00065{bottom:378.659849px;}
.y11_c00065{bottom:409.619836px;}
.y10_c00065{bottom:440.759824px;}
.yf_c00065{bottom:471.719811px;}
.ye_c00065{bottom:502.859799px;}
.yd_c00065{bottom:533.819786px;}
.yb_c00065{bottom:564.959774px;}
.yc_c00065{bottom:573.239771px;}
.ya_c00065{bottom:595.919762px;}
.y9_c00065{bottom:627.059749px;}
.y8_c00065{bottom:658.019737px;}
.y7_c00065{bottom:689.159724px;}
.y6_c00065{bottom:719.039712px;}
.y5_c00065{bottom:762.419695px;}
.y2_c00065{bottom:1156.979537px;}
.y1_c00065{bottom:1195.859522px;}
.h7_c00065{height:27.833192px;}
.h2_c00065{height:44.149201px;}
.h5_c00065{height:47.344903px;}
.h1_c00065{height:58.651148px;}
.h4_c00065{height:65.010911px;}
.h6_c00065{height:70.628878px;}
.h3_c00065{height:70.664034px;}
.h0_c00065{height:1263.000000px;}
.w0_c00065{width:892.500000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:127.799949px;}
.x8_c00065{left:138.239945px;}
.x9_c00065{left:142.019943px;}
.x5_c00065{left:180.899928px;}
.x4_c00065{left:233.999906px;}
.x2_c00065{left:438.300034px;}
.x3_c00065{left:556.199778px;}
.x6_c00065{left:583.739767px;}
.x7_c00065{left:595.979762px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls6_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.018917pt;}
.ls5_c00065{letter-spacing:0.136801pt;}
.ls2_c00065{letter-spacing:2.570932pt;}
.ls3_c00065{letter-spacing:5.772851pt;}
.ls1_c00065{letter-spacing:6.413224pt;}
.ls4_c00065{letter-spacing:16.659247pt;}
.ws0_c00065{word-spacing:-15.999994pt;}
.ws1_c00065{word-spacing:-10.719996pt;}
.ws2_c00065{word-spacing:-8.389117pt;}
.ws3_c00065{word-spacing:0.000000pt;}
._d_c00065{margin-left:-11.303941pt;}
._1_c00065{margin-left:-0.982555pt;}
._0_c00065{width:1.062723pt;}
._b_c00065{width:2.523831pt;}
._6_c00065{width:3.430693pt;}
._7_c00065{width:4.505560pt;}
._9_c00065{width:5.886203pt;}
._a_c00065{width:6.809458pt;}
._8_c00065{width:9.394619pt;}
._3_c00065{width:10.708466pt;}
._2_c00065{width:11.633887pt;}
._c_c00065{width:17.036167pt;}
._5_c00065{width:19.962901pt;}
._4_c00065{width:20.934164pt;}
.fs4_c00065{font-size:37.119985pt;}
.fs3_c00065{font-size:42.879983pt;}
.fs0_c00065{font-size:53.119979pt;}
.fs1_c00065{font-size:58.879976pt;}
.fs2_c00065{font-size:63.999974pt;}
.y0_c00065{bottom:0.000000pt;}
.y4_c00065{bottom:67.306640pt;}
.y3_c00065{bottom:101.226626pt;}
.y19_c00065{bottom:137.866612pt;}
.y18_c00065{bottom:174.346597pt;}
.y17_c00065{bottom:181.066594pt;}
.y16_c00065{bottom:210.986582pt;}
.y15_c00065{bottom:253.866565pt;}
.y14_c00065{bottom:281.386554pt;}
.y13_c00065{bottom:309.066543pt;}
.y12_c00065{bottom:336.586532pt;}
.y11_c00065{bottom:364.106521pt;}
.y10_c00065{bottom:391.786510pt;}
.yf_c00065{bottom:419.306499pt;}
.ye_c00065{bottom:446.986488pt;}
.yd_c00065{bottom:474.506477pt;}
.yb_c00065{bottom:502.186466pt;}
.yc_c00065{bottom:509.546463pt;}
.ya_c00065{bottom:529.706455pt;}
.y9_c00065{bottom:557.386444pt;}
.y8_c00065{bottom:584.906433pt;}
.y7_c00065{bottom:612.586422pt;}
.y6_c00065{bottom:639.146411pt;}
.y5_c00065{bottom:677.706396pt;}
.y2_c00065{bottom:1028.426255pt;}
.y1_c00065{bottom:1062.986241pt;}
.h7_c00065{height:24.740615pt;}
.h2_c00065{height:39.243734pt;}
.h5_c00065{height:42.084358pt;}
.h1_c00065{height:52.134354pt;}
.h4_c00065{height:57.787477pt;}
.h6_c00065{height:62.781225pt;}
.h3_c00065{height:62.812475pt;}
.h0_c00065{height:1122.666667pt;}
.w0_c00065{width:793.333333pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:113.599955pt;}
.x8_c00065{left:122.879951pt;}
.x9_c00065{left:126.239950pt;}
.x5_c00065{left:160.799936pt;}
.x4_c00065{left:207.999917pt;}
.x2_c00065{left:389.600031pt;}
.x3_c00065{left:494.399802pt;}
.x6_c00065{left:518.879792pt;}
.x7_c00065{left:529.759788pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48b3503c1fe68df94bb2a092.woff2')format("woff");}.ff1_c00066{font-family:ff1_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:ff2_c00066;src:url('chunks/assets/font_5a85299423751c402d40b93f.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:0.675781;font-style:normal;font-weight:normal;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_63fcaf1533f6dfe07a0e7730.woff2')format("woff");}.ff3_c00066{font-family:ff3_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;}
.m0_c00066{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls5_c00066{letter-spacing:0.000000px;}
.ls4_c00066{letter-spacing:0.155922px;}
.ls1_c00066{letter-spacing:0.731040px;}
.ls2_c00066{letter-spacing:2.892299px;}
.ls0_c00066{letter-spacing:6.494457px;}
.ls3_c00066{letter-spacing:13.698715px;}
.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;}
}
.ws0_c00066{word-spacing:0.000000px;}
._e_c00066{margin-left:-2.663773px;}
._1_c00066{margin-left:-1.105374px;}
._0_c00066{width:1.478351px;}
._4_c00066{width:3.066026px;}
._10_c00066{width:4.644661px;}
._3_c00066{width:5.764366px;}
._2_c00066{width:6.976473px;}
._8_c00066{width:8.407767px;}
._9_c00066{width:9.898300px;}
._f_c00066{width:10.908351px;}
._6_c00066{width:12.820081px;}
._5_c00066{width:13.875918px;}
._a_c00066{width:19.880261px;}
._b_c00066{width:22.251746px;}
._c_c00066{width:23.288607px;}
._d_c00066{width:25.218419px;}
._7_c00066{width:33.121896px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs0_c00066{font-size:59.759976px;}
.fs1_c00066{font-size:66.239974px;}
.fs3_c00066{font-size:69.119972px;}
.fs2_c00066{font-size:71.999971px;}
.y0_c00066{bottom:0.000000px;}
.y4_c00066{bottom:75.900270px;}
.y3_c00066{bottom:114.060254px;}
.y23_c00066{bottom:192.719923px;}
.y22_c00066{bottom:223.859910px;}
.y21_c00066{bottom:254.819898px;}
.y20_c00066{bottom:285.959886px;}
.y1f_c00066{bottom:316.919873px;}
.y1e_c00066{bottom:348.059861px;}
.y1d_c00066{bottom:379.019848px;}
.y1c_c00066{bottom:409.619836px;}
.y1b_c00066{bottom:439.319824px;}
.y1a_c00066{bottom:469.019812px;}
.y19_c00066{bottom:498.899800px;}
.y18_c00066{bottom:529.139788px;}
.y17_c00066{bottom:560.279776px;}
.y16_c00066{bottom:591.239764px;}
.y15_c00066{bottom:622.199751px;}
.y14_c00066{bottom:653.339739px;}
.y13_c00066{bottom:684.299726px;}
.y12_c00066{bottom:715.439714px;}
.y11_c00066{bottom:746.399701px;}
.y10_c00066{bottom:777.539689px;}
.yf_c00066{bottom:808.499677px;}
.ye_c00066{bottom:839.639664px;}
.yd_c00066{bottom:870.599652px;}
.yc_c00066{bottom:901.739639px;}
.yb_c00066{bottom:932.699627px;}
.ya_c00066{bottom:963.839614px;}
.y9_c00066{bottom:994.799602px;}
.y8_c00066{bottom:1025.939590px;}
.y7_c00066{bottom:1056.899577px;}
.y6_c00066{bottom:1088.039565px;}
.y5_c00066{bottom:1118.999552px;}
.y2_c00066{bottom:1176.059530px;}
.y1_c00066{bottom:1196.219522px;}
.h2_c00066{height:44.149201px;}
.h1_c00066{height:58.651148px;}
.h5_c00066{height:67.837473px;}
.h4_c00066{height:70.628878px;}
.h3_c00066{height:70.664034px;}
.h0_c00066{height:1263.000000px;}
.w0_c00066{width:892.500000px;}
.x0_c00066{left:0.000000px;}
.x5_c00066{left:127.619739px;}
.x6_c00066{left:180.719928px;}
.x1_c00066{left:181.799927px;}
.x2_c00066{left:329.039408px;}
.x4_c00066{left:438.119825px;}
.x3_c00066{left:765.359694px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls5_c00066{letter-spacing:0.000000pt;}
.ls4_c00066{letter-spacing:0.138597pt;}
.ls1_c00066{letter-spacing:0.649813pt;}
.ls2_c00066{letter-spacing:2.570932pt;}
.ls0_c00066{letter-spacing:5.772851pt;}
.ls3_c00066{letter-spacing:12.176635pt;}
.ws0_c00066{word-spacing:0.000000pt;}
._e_c00066{margin-left:-2.367798pt;}
._1_c00066{margin-left:-0.982555pt;}
._0_c00066{width:1.314090pt;}
._4_c00066{width:2.725356pt;}
._10_c00066{width:4.128588pt;}
._3_c00066{width:5.123881pt;}
._2_c00066{width:6.201309pt;}
._8_c00066{width:7.473570pt;}
._9_c00066{width:8.798489pt;}
._f_c00066{width:9.696312pt;}
._6_c00066{width:11.395627pt;}
._5_c00066{width:12.334150pt;}
._a_c00066{width:17.671343pt;}
._b_c00066{width:19.779330pt;}
._c_c00066{width:20.700984pt;}
._d_c00066{width:22.416373pt;}
._7_c00066{width:29.441686pt;}
.fs0_c00066{font-size:53.119979pt;}
.fs1_c00066{font-size:58.879976pt;}
.fs3_c00066{font-size:61.439975pt;}
.fs2_c00066{font-size:63.999974pt;}
.y0_c00066{bottom:0.000000pt;}
.y4_c00066{bottom:67.466906pt;}
.y3_c00066{bottom:101.386893pt;}
.y23_c00066{bottom:171.306598pt;}
.y22_c00066{bottom:198.986587pt;}
.y21_c00066{bottom:226.506576pt;}
.y20_c00066{bottom:254.186565pt;}
.y1f_c00066{bottom:281.706554pt;}
.y1e_c00066{bottom:309.386543pt;}
.y1d_c00066{bottom:336.906532pt;}
.y1c_c00066{bottom:364.106521pt;}
.y1b_c00066{bottom:390.506510pt;}
.y1a_c00066{bottom:416.906500pt;}
.y19_c00066{bottom:443.466489pt;}
.y18_c00066{bottom:470.346479pt;}
.y17_c00066{bottom:498.026467pt;}
.y16_c00066{bottom:525.546456pt;}
.y15_c00066{bottom:553.066445pt;}
.y14_c00066{bottom:580.746434pt;}
.y13_c00066{bottom:608.266423pt;}
.y12_c00066{bottom:635.946412pt;}
.y11_c00066{bottom:663.466401pt;}
.y10_c00066{bottom:691.146390pt;}
.yf_c00066{bottom:718.666379pt;}
.ye_c00066{bottom:746.346368pt;}
.yd_c00066{bottom:773.866357pt;}
.yc_c00066{bottom:801.546346pt;}
.yb_c00066{bottom:829.066335pt;}
.ya_c00066{bottom:856.746324pt;}
.y9_c00066{bottom:884.266313pt;}
.y8_c00066{bottom:911.946302pt;}
.y7_c00066{bottom:939.466291pt;}
.y6_c00066{bottom:967.146280pt;}
.y5_c00066{bottom:994.666269pt;}
.y2_c00066{bottom:1045.386249pt;}
.y1_c00066{bottom:1063.306241pt;}
.h2_c00066{height:39.243734pt;}
.h1_c00066{height:52.134354pt;}
.h5_c00066{height:60.299976pt;}
.h4_c00066{height:62.781225pt;}
.h3_c00066{height:62.812475pt;}
.h0_c00066{height:1122.666667pt;}
.w0_c00066{width:793.333333pt;}
.x0_c00066{left:0.000000pt;}
.x5_c00066{left:113.439768pt;}
.x6_c00066{left:160.639936pt;}
.x1_c00066{left:161.599935pt;}
.x2_c00066{left:292.479474pt;}
.x4_c00066{left:389.439844pt;}
.x3_c00066{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_516a49e9daefdbc00abd9f5c.woff2')format("woff");}.ff1_c00067{font-family:ff1_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:ff2_c00067;src:url('chunks/assets/font_ad1f6ff06ec55fba7c45e8a3.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:0.675781;font-style:normal;font-weight:normal;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_29e0c151c00f728ca2c6d28a.woff2')format("woff");}.ff3_c00067{font-family:ff3_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:ff4_c00067;src:url('chunks/assets/font_94978e2233be04ab4a4e5c3b.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls1_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:5.232418px;}
.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;}
}
.ws1_c00067{word-spacing:-17.999993px;}
.ws3_c00067{word-spacing:-14.939994px;}
.ws0_c00067{word-spacing:-12.059995px;}
.ws2_c00067{word-spacing:-9.437756px;}
.ws4_c00067{word-spacing:0.000000px;}
._12_c00067{margin-left:-9.716910px;}
._11_c00067{margin-left:-2.139990px;}
._1_c00067{margin-left:-1.105374px;}
._0_c00067{width:1.195563px;}
._6_c00067{width:3.049404px;}
._7_c00067{width:4.249043px;}
._a_c00067{width:5.674781px;}
._9_c00067{width:7.420421px;}
._3_c00067{width:8.829363px;}
._4_c00067{width:9.951068px;}
._8_c00067{width:11.062489px;}
._2_c00067{width:12.186969px;}
._5_c00067{width:13.366819px;}
._f_c00067{width:22.669787px;}
._10_c00067{width:24.505935px;}
._c_c00067{width:30.112693px;}
._b_c00067{width:31.281698px;}
._e_c00067{width:32.593697px;}
._d_c00067{width:33.876559px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs4_c00067{font-size:41.759983px;}
.fs3_c00067{font-size:48.239981px;}
.fs0_c00067{font-size:59.759976px;}
.fs1_c00067{font-size:66.239974px;}
.fs2_c00067{font-size:71.999971px;}
.y0_c00067{bottom:0.000000px;}
.y4_c00067{bottom:75.899970px;}
.y3_c00067{bottom:114.059954px;}
.y29_c00067{bottom:133.319947px;}
.y28_c00067{bottom:150.599940px;}
.y27_c00067{bottom:168.779932px;}
.y26_c00067{bottom:176.339929px;}
.y25_c00067{bottom:197.579921px;}
.y24_c00067{bottom:205.139918px;}
.y23_c00067{bottom:217.739913px;}
.y22_c00067{bottom:279.839888px;}
.y21_c00067{bottom:310.979876px;}
.y20_c00067{bottom:341.939863px;}
.y1f_c00067{bottom:373.079851px;}
.y1e_c00067{bottom:404.039838px;}
.y1d_c00067{bottom:435.179826px;}
.y1c_c00067{bottom:466.139814px;}
.y1b_c00067{bottom:497.279801px;}
.y19_c00067{bottom:528.239789px;}
.y1a_c00067{bottom:536.519785px;}
.y18_c00067{bottom:559.379776px;}
.y17_c00067{bottom:590.339764px;}
.y16_c00067{bottom:621.479751px;}
.y15_c00067{bottom:652.439739px;}
.y14_c00067{bottom:683.579727px;}
.y13_c00067{bottom:714.539714px;}
.y12_c00067{bottom:745.679702px;}
.y11_c00067{bottom:776.639689px;}
.y10_c00067{bottom:807.779677px;}
.yf_c00067{bottom:838.739665px;}
.ye_c00067{bottom:869.879652px;}
.yd_c00067{bottom:900.839640px;}
.yc_c00067{bottom:931.979627px;}
.yb_c00067{bottom:962.939615px;}
.ya_c00067{bottom:994.079602px;}
.y9_c00067{bottom:1025.039590px;}
.y8_c00067{bottom:1056.179578px;}
.y6_c00067{bottom:1087.139565px;}
.y7_c00067{bottom:1095.419562px;}
.y5_c00067{bottom:1118.279553px;}
.y2_c00067{bottom:1157.159537px;}
.y1_c00067{bottom:1196.039522px;}
.h6_c00067{height:27.833192px;}
.h2_c00067{height:44.149201px;}
.h4_c00067{height:47.344903px;}
.h1_c00067{height:58.651148px;}
.h7_c00067{height:60.226851px;}
.h3_c00067{height:70.664034px;}
.h5_c00067{height:72.562471px;}
.h0_c00067{height:1263.000000px;}
.w0_c00067{width:892.500000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:127.619949px;}
.x8_c00067{left:138.059945px;}
.x9_c00067{left:141.839943px;}
.xa_c00067{left:143.099943px;}
.x5_c00067{left:180.719586px;}
.x2_c00067{left:438.120035px;}
.x3_c00067{left:457.559817px;}
.x4_c00067{left:469.799812px;}
.x6_c00067{left:534.599786px;}
.x7_c00067{left:546.839781px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls1_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:4.651038pt;}
.ws1_c00067{word-spacing:-15.999994pt;}
.ws3_c00067{word-spacing:-13.279995pt;}
.ws0_c00067{word-spacing:-10.719996pt;}
.ws2_c00067{word-spacing:-8.389117pt;}
.ws4_c00067{word-spacing:0.000000pt;}
._12_c00067{margin-left:-8.637253pt;}
._11_c00067{margin-left:-1.902214pt;}
._1_c00067{margin-left:-0.982555pt;}
._0_c00067{width:1.062723pt;}
._6_c00067{width:2.710582pt;}
._7_c00067{width:3.776927pt;}
._a_c00067{width:5.044250pt;}
._9_c00067{width:6.595930pt;}
._3_c00067{width:7.848322pt;}
._4_c00067{width:8.845393pt;}
._8_c00067{width:9.833323pt;}
._2_c00067{width:10.832861pt;}
._5_c00067{width:11.881616pt;}
._f_c00067{width:20.150922pt;}
._10_c00067{width:21.783053pt;}
._c_c00067{width:26.766839pt;}
._b_c00067{width:27.805954pt;}
._e_c00067{width:28.972175pt;}
._d_c00067{width:30.112497pt;}
.fs4_c00067{font-size:37.119985pt;}
.fs3_c00067{font-size:42.879983pt;}
.fs0_c00067{font-size:53.119979pt;}
.fs1_c00067{font-size:58.879976pt;}
.fs2_c00067{font-size:63.999974pt;}
.y0_c00067{bottom:0.000000pt;}
.y4_c00067{bottom:67.466640pt;}
.y3_c00067{bottom:101.386626pt;}
.y29_c00067{bottom:118.506619pt;}
.y28_c00067{bottom:133.866613pt;}
.y27_c00067{bottom:150.026607pt;}
.y26_c00067{bottom:156.746604pt;}
.y25_c00067{bottom:175.626596pt;}
.y24_c00067{bottom:182.346594pt;}
.y23_c00067{bottom:193.546589pt;}
.y22_c00067{bottom:248.746567pt;}
.y21_c00067{bottom:276.426556pt;}
.y20_c00067{bottom:303.946545pt;}
.y1f_c00067{bottom:331.626534pt;}
.y1e_c00067{bottom:359.146523pt;}
.y1d_c00067{bottom:386.826512pt;}
.y1c_c00067{bottom:414.346501pt;}
.y1b_c00067{bottom:442.026490pt;}
.y19_c00067{bottom:469.546479pt;}
.y1a_c00067{bottom:476.906476pt;}
.y18_c00067{bottom:497.226468pt;}
.y17_c00067{bottom:524.746457pt;}
.y16_c00067{bottom:552.426446pt;}
.y15_c00067{bottom:579.946435pt;}
.y14_c00067{bottom:607.626424pt;}
.y13_c00067{bottom:635.146413pt;}
.y12_c00067{bottom:662.826402pt;}
.y11_c00067{bottom:690.346391pt;}
.y10_c00067{bottom:718.026379pt;}
.yf_c00067{bottom:745.546368pt;}
.ye_c00067{bottom:773.226357pt;}
.yd_c00067{bottom:800.746346pt;}
.yc_c00067{bottom:828.426335pt;}
.yb_c00067{bottom:855.946324pt;}
.ya_c00067{bottom:883.626313pt;}
.y9_c00067{bottom:911.146302pt;}
.y8_c00067{bottom:938.826291pt;}
.y6_c00067{bottom:966.346280pt;}
.y7_c00067{bottom:973.706277pt;}
.y5_c00067{bottom:994.026269pt;}
.y2_c00067{bottom:1028.586255pt;}
.y1_c00067{bottom:1063.146241pt;}
.h6_c00067{height:24.740615pt;}
.h2_c00067{height:39.243734pt;}
.h4_c00067{height:42.084358pt;}
.h1_c00067{height:52.134354pt;}
.h7_c00067{height:53.534979pt;}
.h3_c00067{height:62.812475pt;}
.h5_c00067{height:64.499974pt;}
.h0_c00067{height:1122.666667pt;}
.w0_c00067{width:793.333333pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:113.439955pt;}
.x8_c00067{left:122.719951pt;}
.x9_c00067{left:126.079950pt;}
.xa_c00067{left:127.199949pt;}
.x5_c00067{left:160.639632pt;}
.x2_c00067{left:389.440031pt;}
.x3_c00067{left:406.719837pt;}
.x4_c00067{left:417.599833pt;}
.x6_c00067{left:475.199810pt;}
.x7_c00067{left:486.079806pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6de3377ba1cce13a7faa6ca.woff2')format("woff");}.ff1_c00068{font-family:ff1_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:ff2_c00068;src:url('chunks/assets/font_a472d7460e38fb13aff1c170.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:0.675781;font-style:normal;font-weight:normal;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_546507fa5ef0cf7bf32d90e6.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls2_c00068{letter-spacing:0.000000px;}
.ls1_c00068{letter-spacing:0.378602px;}
.ls0_c00068{letter-spacing:3.064439px;}
.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:-15.318596px;}
.ws0_c00068{word-spacing:-12.059995px;}
.ws3_c00068{word-spacing:-9.437756px;}
.ws1_c00068{word-spacing:-8.786876px;}
.ws4_c00068{word-spacing:0.000000px;}
._c_c00068{margin-left:-10.383060px;}
._9_c00068{margin-left:-2.139990px;}
._1_c00068{margin-left:-1.105374px;}
._0_c00068{width:1.478351px;}
._a_c00068{width:3.179296px;}
._b_c00068{width:6.340931px;}
._4_c00068{width:7.506613px;}
._d_c00068{width:8.683298px;}
._3_c00068{width:11.538586px;}
._2_c00068{width:12.729089px;}
._8_c00068{width:13.909908px;}
._5_c00068{width:19.132330px;}
._6_c00068{width:27.032452px;}
._7_c00068{width:28.057205px;}
.fc1_c00068{color:rgb(255,0,0);}
.fc0_c00068{color:rgb(0,0,0);}
.fs4_c00068{font-size:38.879984px;}
.fs5_c00068{font-size:41.759983px;}
.fs3_c00068{font-size:48.239981px;}
.fs0_c00068{font-size:59.759976px;}
.fs1_c00068{font-size:66.239974px;}
.fs2_c00068{font-size:71.999971px;}
.y0_c00068{bottom:0.000000px;}
.y4_c00068{bottom:75.900270px;}
.y3_c00068{bottom:114.060254px;}
.y23_c00068{bottom:156.899937px;}
.y22_c00068{bottom:177.599929px;}
.y21_c00068{bottom:185.159926px;}
.y20_c00068{bottom:220.439912px;}
.y1f_c00068{bottom:240.599904px;}
.y1e_c00068{bottom:248.159901px;}
.y1d_c00068{bottom:259.679896px;}
.y1c_c00068{bottom:309.539876px;}
.y1b_c00068{bottom:355.619858px;}
.y1a_c00068{bottom:401.699839px;}
.y19_c00068{bottom:447.779821px;}
.y18_c00068{bottom:493.679803px;}
.y17_c00068{bottom:539.759784px;}
.y16_c00068{bottom:585.839766px;}
.y15_c00068{bottom:631.919747px;}
.y14_c00068{bottom:677.999729px;}
.y13_c00068{bottom:724.079710px;}
.y12_c00068{bottom:769.979692px;}
.y11_c00068{bottom:809.219676px;}
.y10_c00068{bottom:839.639664px;}
.ye_c00068{bottom:870.599652px;}
.yf_c00068{bottom:878.879648px;}
.yd_c00068{bottom:901.739639px;}
.yc_c00068{bottom:932.699627px;}
.yb_c00068{bottom:963.839614px;}
.ya_c00068{bottom:994.799602px;}
.y9_c00068{bottom:1025.939590px;}
.y8_c00068{bottom:1056.899577px;}
.y6_c00068{bottom:1088.039565px;}
.y7_c00068{bottom:1096.319561px;}
.y5_c00068{bottom:1118.999552px;}
.y2_c00068{bottom:1176.059530px;}
.y1_c00068{bottom:1196.219522px;}
.h7_c00068{height:25.913662px;}
.h8_c00068{height:27.833192px;}
.h2_c00068{height:44.149201px;}
.h4_c00068{height:47.344903px;}
.h1_c00068{height:58.651148px;}
.h5_c00068{height:70.628878px;}
.h3_c00068{height:70.664034px;}
.h6_c00068{height:72.562471px;}
.h0_c00068{height:1263.000000px;}
.w0_c00068{width:892.500000px;}
.x0_c00068{left:0.000000px;}
.x5_c00068{left:127.619739px;}
.xb_c00068{left:137.339945px;}
.xd_c00068{left:143.819942px;}
.xc_c00068{left:153.899938px;}
.x8_c00068{left:180.719990px;}
.x1_c00068{left:181.799927px;}
.xe_c00068{left:220.139912px;}
.x6_c00068{left:256.499897px;}
.x7_c00068{left:268.739893px;}
.x9_c00068{left:276.479889px;}
.xa_c00068{left:288.719885px;}
.x2_c00068{left:329.039408px;}
.x4_c00068{left:438.119825px;}
.x3_c00068{left:765.359694px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls2_c00068{letter-spacing:0.000000pt;}
.ls1_c00068{letter-spacing:0.336535pt;}
.ls0_c00068{letter-spacing:2.723946pt;}
.ws2_c00068{word-spacing:-13.616529pt;}
.ws0_c00068{word-spacing:-10.719996pt;}
.ws3_c00068{word-spacing:-8.389117pt;}
.ws1_c00068{word-spacing:-7.810557pt;}
.ws4_c00068{word-spacing:0.000000pt;}
._c_c00068{margin-left:-9.229387pt;}
._9_c00068{margin-left:-1.902214pt;}
._1_c00068{margin-left:-0.982555pt;}
._0_c00068{width:1.314090pt;}
._a_c00068{width:2.826041pt;}
._b_c00068{width:5.636383pt;}
._4_c00068{width:6.672545pt;}
._d_c00068{width:7.718487pt;}
._3_c00068{width:10.256521pt;}
._2_c00068{width:11.314746pt;}
._8_c00068{width:12.364362pt;}
._5_c00068{width:17.006515pt;}
._6_c00068{width:24.028846pt;}
._7_c00068{width:24.939738pt;}
.fs4_c00068{font-size:34.559986pt;}
.fs5_c00068{font-size:37.119985pt;}
.fs3_c00068{font-size:42.879983pt;}
.fs0_c00068{font-size:53.119979pt;}
.fs1_c00068{font-size:58.879976pt;}
.fs2_c00068{font-size:63.999974pt;}
.y0_c00068{bottom:0.000000pt;}
.y4_c00068{bottom:67.466906pt;}
.y3_c00068{bottom:101.386893pt;}
.y23_c00068{bottom:139.466611pt;}
.y22_c00068{bottom:157.866604pt;}
.y21_c00068{bottom:164.586601pt;}
.y20_c00068{bottom:195.946588pt;}
.y1f_c00068{bottom:213.866581pt;}
.y1e_c00068{bottom:220.586578pt;}
.y1d_c00068{bottom:230.826574pt;}
.y1c_c00068{bottom:275.146557pt;}
.y1b_c00068{bottom:316.106540pt;}
.y1a_c00068{bottom:357.066524pt;}
.y19_c00068{bottom:398.026507pt;}
.y18_c00068{bottom:438.826491pt;}
.y17_c00068{bottom:479.786475pt;}
.y16_c00068{bottom:520.746458pt;}
.y15_c00068{bottom:561.706442pt;}
.y14_c00068{bottom:602.666426pt;}
.y13_c00068{bottom:643.626409pt;}
.y12_c00068{bottom:684.426393pt;}
.y11_c00068{bottom:719.306379pt;}
.y10_c00068{bottom:746.346368pt;}
.ye_c00068{bottom:773.866357pt;}
.yf_c00068{bottom:781.226354pt;}
.yd_c00068{bottom:801.546346pt;}
.yc_c00068{bottom:829.066335pt;}
.yb_c00068{bottom:856.746324pt;}
.ya_c00068{bottom:884.266313pt;}
.y9_c00068{bottom:911.946302pt;}
.y8_c00068{bottom:939.466291pt;}
.y6_c00068{bottom:967.146280pt;}
.y7_c00068{bottom:974.506277pt;}
.y5_c00068{bottom:994.666269pt;}
.y2_c00068{bottom:1045.386249pt;}
.y1_c00068{bottom:1063.306241pt;}
.h7_c00068{height:23.034366pt;}
.h8_c00068{height:24.740615pt;}
.h2_c00068{height:39.243734pt;}
.h4_c00068{height:42.084358pt;}
.h1_c00068{height:52.134354pt;}
.h5_c00068{height:62.781225pt;}
.h3_c00068{height:62.812475pt;}
.h6_c00068{height:64.499974pt;}
.h0_c00068{height:1122.666667pt;}
.w0_c00068{width:793.333333pt;}
.x0_c00068{left:0.000000pt;}
.x5_c00068{left:113.439768pt;}
.xb_c00068{left:122.079951pt;}
.xd_c00068{left:127.839949pt;}
.xc_c00068{left:136.799945pt;}
.x8_c00068{left:160.639991pt;}
.x1_c00068{left:161.599935pt;}
.xe_c00068{left:195.679922pt;}
.x6_c00068{left:227.999909pt;}
.x7_c00068{left:238.879904pt;}
.x9_c00068{left:245.759902pt;}
.xa_c00068{left:256.639897pt;}
.x2_c00068{left:292.479474pt;}
.x4_c00068{left:389.439844pt;}
.x3_c00068{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00069{font-family:ff1_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:ff2_c00069;src:url('chunks/assets/font_49885fcc4fe01a87c22cb529.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00069{word-spacing:0.000000px;}
._1_c00069{margin-left:-1.105374px;}
._0_c00069{width:1.195563px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:59.759976px;}
.fs1_c00069{font-size:66.239974px;}
.fs2_c00069{font-size:71.999971px;}
.y0_c00069{bottom:0.000000px;}
.y4_c00069{bottom:75.899970px;}
.y3_c00069{bottom:114.059954px;}
.y1a_c00069{bottom:150.779940px;}
.y19_c00069{bottom:196.859921px;}
.y18_c00069{bottom:242.939903px;}
.y17_c00069{bottom:289.019884px;}
.y16_c00069{bottom:335.099866px;}
.y15_c00069{bottom:380.999848px;}
.y14_c00069{bottom:427.079829px;}
.y13_c00069{bottom:473.159811px;}
.y12_c00069{bottom:519.239792px;}
.y11_c00069{bottom:565.319774px;}
.y10_c00069{bottom:611.399755px;}
.yf_c00069{bottom:657.299737px;}
.ye_c00069{bottom:703.379719px;}
.yd_c00069{bottom:749.459700px;}
.yc_c00069{bottom:795.539682px;}
.yb_c00069{bottom:841.619663px;}
.ya_c00069{bottom:887.519645px;}
.y9_c00069{bottom:933.599627px;}
.y8_c00069{bottom:979.679608px;}
.y7_c00069{bottom:1025.759590px;}
.y6_c00069{bottom:1071.839571px;}
.y5_c00069{bottom:1117.919553px;}
.y2_c00069{bottom:1157.159537px;}
.y1_c00069{bottom:1196.039522px;}
.h2_c00069{height:44.149201px;}
.h1_c00069{height:58.651148px;}
.h3_c00069{height:72.562471px;}
.h0_c00069{height:1263.000000px;}
.w0_c00069{width:892.500000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:127.619949px;}
.x2_c00069{left:438.120035px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
._1_c00069{margin-left:-0.982555pt;}
._0_c00069{width:1.062723pt;}
.fs0_c00069{font-size:53.119979pt;}
.fs1_c00069{font-size:58.879976pt;}
.fs2_c00069{font-size:63.999974pt;}
.y0_c00069{bottom:0.000000pt;}
.y4_c00069{bottom:67.466640pt;}
.y3_c00069{bottom:101.386626pt;}
.y1a_c00069{bottom:134.026613pt;}
.y19_c00069{bottom:174.986597pt;}
.y18_c00069{bottom:215.946580pt;}
.y17_c00069{bottom:256.906564pt;}
.y16_c00069{bottom:297.866548pt;}
.y15_c00069{bottom:338.666531pt;}
.y14_c00069{bottom:379.626515pt;}
.y13_c00069{bottom:420.586498pt;}
.y12_c00069{bottom:461.546482pt;}
.y11_c00069{bottom:502.506466pt;}
.y10_c00069{bottom:543.466449pt;}
.yf_c00069{bottom:584.266433pt;}
.ye_c00069{bottom:625.226417pt;}
.yd_c00069{bottom:666.186400pt;}
.yc_c00069{bottom:707.146384pt;}
.yb_c00069{bottom:748.106367pt;}
.ya_c00069{bottom:788.906351pt;}
.y9_c00069{bottom:829.866335pt;}
.y8_c00069{bottom:870.826318pt;}
.y7_c00069{bottom:911.786302pt;}
.y6_c00069{bottom:952.746286pt;}
.y5_c00069{bottom:993.706269pt;}
.y2_c00069{bottom:1028.586255pt;}
.y1_c00069{bottom:1063.146241pt;}
.h2_c00069{height:39.243734pt;}
.h1_c00069{height:52.134354pt;}
.h3_c00069{height:64.499974pt;}
.h0_c00069{height:1122.666667pt;}
.w0_c00069{width:793.333333pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:113.439955pt;}
.x2_c00069{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_596273964a0b55baa03187c9.woff2')format("woff");}.ff1_c00070{font-family:ff1_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:ff2_c00070;src:url('chunks/assets/font_e5e9eb92abcbc84599c71acc.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:0.675781;font-style:normal;font-weight:normal;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_61612a0b65d483859b33d3d8.woff2')format("woff");}.ff3_c00070{font-family:ff3_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:ff4_c00070;src:url('chunks/assets/font_851197d28979c4748585a388.woff2')format("woff");}.ff4_c00070{font-family:ff4_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;}
.m0_c00070{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls4_c00070{letter-spacing:0.000000px;}
.ls3_c00070{letter-spacing:0.189300px;}
.ls0_c00070{letter-spacing:0.731040px;}
.ls2_c00070{letter-spacing:2.343959px;}
.ls1_c00070{letter-spacing:12.978295px;}
.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;}
}
.ws1_c00070{word-spacing:-17.999993px;}
.ws0_c00070{word-spacing:-12.059995px;}
.ws3_c00070{word-spacing:-9.719996px;}
.ws2_c00070{word-spacing:-8.786876px;}
.ws4_c00070{word-spacing:0.000000px;}
._e_c00070{margin-left:-10.321400px;}
._1_c00070{margin-left:-1.105374px;}
._0_c00070{width:1.478351px;}
._c_c00070{width:3.003279px;}
._6_c00070{width:5.028813px;}
._7_c00070{width:6.279271px;}
._8_c00070{width:7.332021px;}
._3_c00070{width:8.719523px;}
._a_c00070{width:12.279642px;}
._2_c00070{width:13.432210px;}
._b_c00070{width:15.003771px;}
._d_c00070{width:19.718318px;}
._9_c00070{width:22.520983px;}
._4_c00070{width:23.963040px;}
._5_c00070{width:25.112120px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs4_c00070{font-size:38.879984px;}
.fs3_c00070{font-size:48.239981px;}
.fs0_c00070{font-size:59.759976px;}
.fs1_c00070{font-size:66.239974px;}
.fs2_c00070{font-size:71.999971px;}
.y0_c00070{bottom:0.000000px;}
.y4_c00070{bottom:75.900270px;}
.y3_c00070{bottom:114.060254px;}
.y27_c00070{bottom:134.400246px;}
.y26_c00070{bottom:153.479939px;}
.y25_c00070{bottom:160.319936px;}
.y24_c00070{bottom:171.659931px;}
.y23_c00070{bottom:190.919924px;}
.y22_c00070{bottom:208.559917px;}
.y21_c00070{bottom:216.119914px;}
.y20_c00070{bottom:227.459909px;}
.y1e_c00070{bottom:305.579878px;}
.y1f_c00070{bottom:313.859874px;}
.y1d_c00070{bottom:336.719865px;}
.y1c_c00070{bottom:367.679853px;}
.y1b_c00070{bottom:398.819840px;}
.y1a_c00070{bottom:429.779828px;}
.y19_c00070{bottom:460.919816px;}
.y18_c00070{bottom:491.879803px;}
.y16_c00070{bottom:523.019791px;}
.y17_c00070{bottom:531.299787px;}
.y15_c00070{bottom:553.979778px;}
.y14_c00070{bottom:585.119766px;}
.y13_c00070{bottom:616.079754px;}
.y12_c00070{bottom:647.219741px;}
.y11_c00070{bottom:678.179729px;}
.y10_c00070{bottom:709.319716px;}
.yf_c00070{bottom:740.279704px;}
.ye_c00070{bottom:786.359685px;}
.yd_c00070{bottom:817.319673px;}
.yc_c00070{bottom:848.459661px;}
.yb_c00070{bottom:886.799645px;}
.ya_c00070{bottom:925.679630px;}
.y9_c00070{bottom:949.439620px;}
.y8_c00070{bottom:995.519602px;}
.y7_c00070{bottom:1026.659589px;}
.y6_c00070{bottom:1072.559571px;}
.y5_c00070{bottom:1118.639553px;}
.y2_c00070{bottom:1176.059530px;}
.y1_c00070{bottom:1196.219522px;}
.h6_c00070{height:25.913662px;}
.h7_c00070{height:38.158578px;}
.h2_c00070{height:44.149201px;}
.h5_c00070{height:47.344903px;}
.h1_c00070{height:58.651148px;}
.h4_c00070{height:70.664034px;}
.h3_c00070{height:72.562471px;}
.h0_c00070{height:1263.000000px;}
.w0_c00070{width:892.500000px;}
.x0_c00070{left:0.000000px;}
.x5_c00070{left:127.619739px;}
.xb_c00070{left:137.339945px;}
.x6_c00070{left:180.719930px;}
.x1_c00070{left:181.799927px;}
.x7_c00070{left:240.119904px;}
.x9_c00070{left:250.019900px;}
.x8_c00070{left:252.359899px;}
.xa_c00070{left:262.259895px;}
.x2_c00070{left:329.039408px;}
.x4_c00070{left:438.119825px;}
.x3_c00070{left:765.359694px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls4_c00070{letter-spacing:0.000000pt;}
.ls3_c00070{letter-spacing:0.168267pt;}
.ls0_c00070{letter-spacing:0.649813pt;}
.ls2_c00070{letter-spacing:2.083519pt;}
.ls1_c00070{letter-spacing:11.536262pt;}
.ws1_c00070{word-spacing:-15.999994pt;}
.ws0_c00070{word-spacing:-10.719996pt;}
.ws3_c00070{word-spacing:-8.639997pt;}
.ws2_c00070{word-spacing:-7.810557pt;}
.ws4_c00070{word-spacing:0.000000pt;}
._e_c00070{margin-left:-9.174578pt;}
._1_c00070{margin-left:-0.982555pt;}
._0_c00070{width:1.314090pt;}
._c_c00070{width:2.669581pt;}
._6_c00070{width:4.470056pt;}
._7_c00070{width:5.581574pt;}
._8_c00070{width:6.517352pt;}
._3_c00070{width:7.750687pt;}
._a_c00070{width:10.915237pt;}
._2_c00070{width:11.939743pt;}
._b_c00070{width:13.336685pt;}
._d_c00070{width:17.527393pt;}
._9_c00070{width:20.018651pt;}
._4_c00070{width:21.300480pt;}
._5_c00070{width:22.321884pt;}
.fs4_c00070{font-size:34.559986pt;}
.fs3_c00070{font-size:42.879983pt;}
.fs0_c00070{font-size:53.119979pt;}
.fs1_c00070{font-size:58.879976pt;}
.fs2_c00070{font-size:63.999974pt;}
.y0_c00070{bottom:0.000000pt;}
.y4_c00070{bottom:67.466906pt;}
.y3_c00070{bottom:101.386893pt;}
.y27_c00070{bottom:119.466886pt;}
.y26_c00070{bottom:136.426612pt;}
.y25_c00070{bottom:142.506610pt;}
.y24_c00070{bottom:152.586606pt;}
.y23_c00070{bottom:169.706599pt;}
.y22_c00070{bottom:185.386593pt;}
.y21_c00070{bottom:192.106590pt;}
.y20_c00070{bottom:202.186586pt;}
.y1e_c00070{bottom:271.626558pt;}
.y1f_c00070{bottom:278.986555pt;}
.y1d_c00070{bottom:299.306547pt;}
.y1c_c00070{bottom:326.826536pt;}
.y1b_c00070{bottom:354.506525pt;}
.y1a_c00070{bottom:382.026514pt;}
.y19_c00070{bottom:409.706503pt;}
.y18_c00070{bottom:437.226492pt;}
.y16_c00070{bottom:464.906481pt;}
.y17_c00070{bottom:472.266478pt;}
.y15_c00070{bottom:492.426470pt;}
.y14_c00070{bottom:520.106459pt;}
.y13_c00070{bottom:547.626448pt;}
.y12_c00070{bottom:575.306437pt;}
.y11_c00070{bottom:602.826426pt;}
.y10_c00070{bottom:630.506414pt;}
.yf_c00070{bottom:658.026403pt;}
.ye_c00070{bottom:698.986387pt;}
.yd_c00070{bottom:726.506376pt;}
.yc_c00070{bottom:754.186365pt;}
.yb_c00070{bottom:788.266351pt;}
.ya_c00070{bottom:822.826338pt;}
.y9_c00070{bottom:843.946329pt;}
.y8_c00070{bottom:884.906313pt;}
.y7_c00070{bottom:912.586302pt;}
.y6_c00070{bottom:953.386285pt;}
.y5_c00070{bottom:994.346269pt;}
.y2_c00070{bottom:1045.386249pt;}
.y1_c00070{bottom:1063.306241pt;}
.h6_c00070{height:23.034366pt;}
.h7_c00070{height:33.918736pt;}
.h2_c00070{height:39.243734pt;}
.h5_c00070{height:42.084358pt;}
.h1_c00070{height:52.134354pt;}
.h4_c00070{height:62.812475pt;}
.h3_c00070{height:64.499974pt;}
.h0_c00070{height:1122.666667pt;}
.w0_c00070{width:793.333333pt;}
.x0_c00070{left:0.000000pt;}
.x5_c00070{left:113.439768pt;}
.xb_c00070{left:122.079951pt;}
.x6_c00070{left:160.639938pt;}
.x1_c00070{left:161.599935pt;}
.x7_c00070{left:213.439915pt;}
.x9_c00070{left:222.239911pt;}
.x8_c00070{left:224.319910pt;}
.xa_c00070{left:233.119907pt;}
.x2_c00070{left:292.479474pt;}
.x4_c00070{left:389.439844pt;}
.x3_c00070{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec735f2138f932b1e4e21ce9.woff2')format("woff");}.ff1_c00071{font-family:ff1_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:ff2_c00071;src:url('chunks/assets/font_df5b2a60045d349dc1b022b2.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:0.675781;font-style:normal;font-weight:normal;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_6a34df99d52d23681bb53dd8.woff2')format("woff");}.ff3_c00071{font-family:ff3_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;}
.m0_c00071{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls1_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.189300px;}
.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;}
}
.ws3_c00071{word-spacing:-14.939994px;}
.ws0_c00071{word-spacing:-12.059995px;}
.ws2_c00071{word-spacing:-9.719996px;}
.ws1_c00071{word-spacing:-9.437756px;}
.ws4_c00071{word-spacing:0.000000px;}
._f_c00071{margin-left:-9.800807px;}
._1_c00071{margin-left:-1.105374px;}
._0_c00071{width:1.195563px;}
._b_c00071{width:2.403355px;}
._5_c00071{width:4.211563px;}
._9_c00071{width:5.758678px;}
._6_c00071{width:7.101543px;}
._7_c00071{width:8.126777px;}
._8_c00071{width:9.330552px;}
._d_c00071{width:11.268139px;}
._e_c00071{width:12.523726px;}
._2_c00071{width:14.394346px;}
._a_c00071{width:16.502509px;}
._c_c00071{width:19.214054px;}
._3_c00071{width:20.266381px;}
._4_c00071{width:21.967016px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs5_c00071{font-size:38.879984px;}
.fs4_c00071{font-size:41.759983px;}
.fs3_c00071{font-size:48.239981px;}
.fs0_c00071{font-size:59.759976px;}
.fs1_c00071{font-size:66.239974px;}
.fs2_c00071{font-size:71.999971px;}
.y0_c00071{bottom:0.000000px;}
.y4_c00071{bottom:75.899970px;}
.y3_c00071{bottom:114.059954px;}
.y2a_c00071{bottom:133.320247px;}
.y29_c00071{bottom:140.160244px;}
.y28_c00071{bottom:151.499939px;}
.y27_c00071{bottom:170.759932px;}
.y26_c00071{bottom:188.939924px;}
.y25_c00071{bottom:196.499921px;}
.y24_c00071{bottom:209.099916px;}
.y23_c00071{bottom:248.879900px;}
.y22_c00071{bottom:279.839888px;}
.y21_c00071{bottom:310.979876px;}
.y20_c00071{bottom:341.939863px;}
.y1f_c00071{bottom:373.079851px;}
.y1e_c00071{bottom:404.039838px;}
.y1d_c00071{bottom:435.179826px;}
.y1c_c00071{bottom:466.139814px;}
.y1b_c00071{bottom:497.279801px;}
.y1a_c00071{bottom:528.239789px;}
.y19_c00071{bottom:559.379776px;}
.y18_c00071{bottom:590.339764px;}
.y16_c00071{bottom:621.479751px;}
.y17_c00071{bottom:629.759748px;}
.y15_c00071{bottom:652.439739px;}
.y14_c00071{bottom:683.579727px;}
.y13_c00071{bottom:714.539714px;}
.y12_c00071{bottom:745.679702px;}
.y11_c00071{bottom:776.639689px;}
.y10_c00071{bottom:807.779677px;}
.yf_c00071{bottom:838.739665px;}
.ye_c00071{bottom:869.879652px;}
.yd_c00071{bottom:900.839640px;}
.yc_c00071{bottom:931.979627px;}
.yb_c00071{bottom:962.939615px;}
.y9_c00071{bottom:994.079602px;}
.ya_c00071{bottom:1002.359599px;}
.y8_c00071{bottom:1025.039590px;}
.y7_c00071{bottom:1056.179578px;}
.y6_c00071{bottom:1087.139565px;}
.y5_c00071{bottom:1118.279553px;}
.y2_c00071{bottom:1157.159537px;}
.y1_c00071{bottom:1196.039522px;}
.h6_c00071{height:27.833192px;}
.h7_c00071{height:38.158578px;}
.h2_c00071{height:44.149201px;}
.h4_c00071{height:47.344903px;}
.h1_c00071{height:58.651148px;}
.h5_c00071{height:70.628878px;}
.h3_c00071{height:70.664034px;}
.h0_c00071{height:1263.000000px;}
.w0_c00071{width:892.500000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:127.619949px;}
.x8_c00071{left:138.059945px;}
.x9_c00071{left:142.199943px;}
.x4_c00071{left:175.679930px;}
.x3_c00071{left:180.719928px;}
.x5_c00071{left:187.919925px;}
.x2_c00071{left:438.120035px;}
.x6_c00071{left:475.559810px;}
.x7_c00071{left:487.799805px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls1_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.168267pt;}
.ws3_c00071{word-spacing:-13.279995pt;}
.ws0_c00071{word-spacing:-10.719996pt;}
.ws2_c00071{word-spacing:-8.639997pt;}
.ws1_c00071{word-spacing:-8.389117pt;}
.ws4_c00071{word-spacing:0.000000pt;}
._f_c00071{margin-left:-8.711828pt;}
._1_c00071{margin-left:-0.982555pt;}
._0_c00071{width:1.062723pt;}
._b_c00071{width:2.136316pt;}
._5_c00071{width:3.743612pt;}
._9_c00071{width:5.118825pt;}
._6_c00071{width:6.312483pt;}
._7_c00071{width:7.223802pt;}
._8_c00071{width:8.293824pt;}
._d_c00071{width:10.016124pt;}
._e_c00071{width:11.132201pt;}
._2_c00071{width:12.794975pt;}
._a_c00071{width:14.668897pt;}
._c_c00071{width:17.079160pt;}
._3_c00071{width:18.014561pt;}
._4_c00071{width:19.526236pt;}
.fs5_c00071{font-size:34.559986pt;}
.fs4_c00071{font-size:37.119985pt;}
.fs3_c00071{font-size:42.879983pt;}
.fs0_c00071{font-size:53.119979pt;}
.fs1_c00071{font-size:58.879976pt;}
.fs2_c00071{font-size:63.999974pt;}
.y0_c00071{bottom:0.000000pt;}
.y4_c00071{bottom:67.466640pt;}
.y3_c00071{bottom:101.386626pt;}
.y2a_c00071{bottom:118.506886pt;}
.y29_c00071{bottom:124.586883pt;}
.y28_c00071{bottom:134.666613pt;}
.y27_c00071{bottom:151.786606pt;}
.y26_c00071{bottom:167.946599pt;}
.y25_c00071{bottom:174.666597pt;}
.y24_c00071{bottom:185.866592pt;}
.y23_c00071{bottom:221.226578pt;}
.y22_c00071{bottom:248.746567pt;}
.y21_c00071{bottom:276.426556pt;}
.y20_c00071{bottom:303.946545pt;}
.y1f_c00071{bottom:331.626534pt;}
.y1e_c00071{bottom:359.146523pt;}
.y1d_c00071{bottom:386.826512pt;}
.y1c_c00071{bottom:414.346501pt;}
.y1b_c00071{bottom:442.026490pt;}
.y1a_c00071{bottom:469.546479pt;}
.y19_c00071{bottom:497.226468pt;}
.y18_c00071{bottom:524.746457pt;}
.y16_c00071{bottom:552.426446pt;}
.y17_c00071{bottom:559.786443pt;}
.y15_c00071{bottom:579.946435pt;}
.y14_c00071{bottom:607.626424pt;}
.y13_c00071{bottom:635.146413pt;}
.y12_c00071{bottom:662.826402pt;}
.y11_c00071{bottom:690.346391pt;}
.y10_c00071{bottom:718.026379pt;}
.yf_c00071{bottom:745.546368pt;}
.ye_c00071{bottom:773.226357pt;}
.yd_c00071{bottom:800.746346pt;}
.yc_c00071{bottom:828.426335pt;}
.yb_c00071{bottom:855.946324pt;}
.y9_c00071{bottom:883.626313pt;}
.ya_c00071{bottom:890.986310pt;}
.y8_c00071{bottom:911.146302pt;}
.y7_c00071{bottom:938.826291pt;}
.y6_c00071{bottom:966.346280pt;}
.y5_c00071{bottom:994.026269pt;}
.y2_c00071{bottom:1028.586255pt;}
.y1_c00071{bottom:1063.146241pt;}
.h6_c00071{height:24.740615pt;}
.h7_c00071{height:33.918736pt;}
.h2_c00071{height:39.243734pt;}
.h4_c00071{height:42.084358pt;}
.h1_c00071{height:52.134354pt;}
.h5_c00071{height:62.781225pt;}
.h3_c00071{height:62.812475pt;}
.h0_c00071{height:1122.666667pt;}
.w0_c00071{width:793.333333pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:113.439955pt;}
.x8_c00071{left:122.719951pt;}
.x9_c00071{left:126.399949pt;}
.x4_c00071{left:156.159938pt;}
.x3_c00071{left:160.639936pt;}
.x5_c00071{left:167.039933pt;}
.x2_c00071{left:389.440031pt;}
.x6_c00071{left:422.719831pt;}
.x7_c00071{left:433.599827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54bec7c5fcb75a9ebbe3ae44.woff2')format("woff");}.ff1_c00072{font-family:ff1_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:ff2_c00072;src:url('chunks/assets/font_25762209eaa53888a327bf2b.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:0.675781;font-style:normal;font-weight:normal;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_92256f135de427c65720a7ea.woff2')format("woff");}.ff3_c00072{font-family:ff3_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;}
.m0_c00072{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls1_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00072{word-spacing:-17.999993px;}
.ws1_c00072{word-spacing:-12.059995px;}
.ws2_c00072{word-spacing:-9.719996px;}
.ws3_c00072{word-spacing:0.000000px;}
._e_c00072{margin-left:-9.899564px;}
._1_c00072{margin-left:-1.105374px;}
._0_c00072{width:1.478351px;}
._d_c00072{width:2.527678px;}
._2_c00072{width:3.609202px;}
._3_c00072{width:4.662955px;}
._9_c00072{width:5.857435px;}
._8_c00072{width:6.930377px;}
._6_c00072{width:8.630965px;}
._7_c00072{width:9.884015px;}
._c_c00072{width:11.554297px;}
._4_c00072{width:12.797561px;}
._5_c00072{width:13.898685px;}
._a_c00072{width:16.122342px;}
._b_c00072{width:19.405506px;}
.fc1_c00072{color:rgb(51,51,51);}
.fc0_c00072{color:rgb(0,0,0);}
.fs4_c00072{font-size:38.879984px;}
.fs3_c00072{font-size:48.239981px;}
.fs0_c00072{font-size:59.759976px;}
.fs1_c00072{font-size:66.239974px;}
.fs2_c00072{font-size:71.999971px;}
.y0_c00072{bottom:0.000000px;}
.y4_c00072{bottom:75.900270px;}
.y3_c00072{bottom:114.060254px;}
.y2a_c00072{bottom:134.400246px;}
.y29_c00072{bottom:153.479939px;}
.y28_c00072{bottom:170.759932px;}
.y27_c00072{bottom:177.599929px;}
.y26_c00072{bottom:188.399925px;}
.y25_c00072{bottom:206.399917px;}
.y24_c00072{bottom:213.239915px;}
.y23_c00072{bottom:224.579910px;}
.y22_c00072{bottom:280.739888px;}
.y21_c00072{bottom:311.879875px;}
.y20_c00072{bottom:342.839863px;}
.y1f_c00072{bottom:373.979850px;}
.y1e_c00072{bottom:404.939838px;}
.y1c_c00072{bottom:436.079826px;}
.y1d_c00072{bottom:444.359822px;}
.y1b_c00072{bottom:467.039813px;}
.y1a_c00072{bottom:498.179801px;}
.y19_c00072{bottom:529.139788px;}
.y18_c00072{bottom:560.279776px;}
.y17_c00072{bottom:591.239764px;}
.y16_c00072{bottom:622.199751px;}
.y14_c00072{bottom:653.339739px;}
.y15_c00072{bottom:661.619735px;}
.y13_c00072{bottom:684.299726px;}
.y12_c00072{bottom:715.439714px;}
.y11_c00072{bottom:746.399701px;}
.y10_c00072{bottom:777.539689px;}
.yf_c00072{bottom:808.499677px;}
.ye_c00072{bottom:839.639664px;}
.yd_c00072{bottom:870.599652px;}
.yc_c00072{bottom:901.739639px;}
.yb_c00072{bottom:932.699627px;}
.ya_c00072{bottom:963.839614px;}
.y9_c00072{bottom:994.799602px;}
.y8_c00072{bottom:1025.939590px;}
.y7_c00072{bottom:1056.899577px;}
.y6_c00072{bottom:1088.039565px;}
.y5_c00072{bottom:1118.999552px;}
.y2_c00072{bottom:1176.059530px;}
.y1_c00072{bottom:1196.219522px;}
.h6_c00072{height:38.158578px;}
.h7_c00072{height:39.830258px;}
.h2_c00072{height:44.149201px;}
.h5_c00072{height:47.321348px;}
.h1_c00072{height:58.651148px;}
.h4_c00072{height:70.628878px;}
.h3_c00072{height:70.664034px;}
.h0_c00072{height:1263.000000px;}
.w0_c00072{width:892.500000px;}
.x0_c00072{left:0.000000px;}
.x5_c00072{left:127.619739px;}
.xb_c00072{left:137.339945px;}
.xc_c00072{left:141.479943px;}
.x6_c00072{left:180.720230px;}
.x1_c00072{left:181.799927px;}
.x7_c00072{left:239.219904px;}
.x8_c00072{left:251.459899px;}
.x2_c00072{left:329.039408px;}
.x9_c00072{left:369.719852px;}
.xa_c00072{left:381.959847px;}
.x4_c00072{left:438.119825px;}
.x3_c00072{left:765.359694px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls1_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.168267pt;}
.ws0_c00072{word-spacing:-15.999994pt;}
.ws1_c00072{word-spacing:-10.719996pt;}
.ws2_c00072{word-spacing:-8.639997pt;}
.ws3_c00072{word-spacing:0.000000pt;}
._e_c00072{margin-left:-8.799613pt;}
._1_c00072{margin-left:-0.982555pt;}
._0_c00072{width:1.314090pt;}
._d_c00072{width:2.246825pt;}
._2_c00072{width:3.208179pt;}
._3_c00072{width:4.144849pt;}
._9_c00072{width:5.206609pt;}
._8_c00072{width:6.160335pt;}
._6_c00072{width:7.671969pt;}
._7_c00072{width:8.785791pt;}
._c_c00072{width:10.270486pt;}
._4_c00072{width:11.375610pt;}
._5_c00072{width:12.354387pt;}
._a_c00072{width:14.330971pt;}
._b_c00072{width:17.249338pt;}
.fs4_c00072{font-size:34.559986pt;}
.fs3_c00072{font-size:42.879983pt;}
.fs0_c00072{font-size:53.119979pt;}
.fs1_c00072{font-size:58.879976pt;}
.fs2_c00072{font-size:63.999974pt;}
.y0_c00072{bottom:0.000000pt;}
.y4_c00072{bottom:67.466906pt;}
.y3_c00072{bottom:101.386893pt;}
.y2a_c00072{bottom:119.466886pt;}
.y29_c00072{bottom:136.426612pt;}
.y28_c00072{bottom:151.786606pt;}
.y27_c00072{bottom:157.866604pt;}
.y26_c00072{bottom:167.466600pt;}
.y25_c00072{bottom:183.466593pt;}
.y24_c00072{bottom:189.546591pt;}
.y23_c00072{bottom:199.626587pt;}
.y22_c00072{bottom:249.546567pt;}
.y21_c00072{bottom:277.226556pt;}
.y20_c00072{bottom:304.746545pt;}
.y1f_c00072{bottom:332.426534pt;}
.y1e_c00072{bottom:359.946523pt;}
.y1c_c00072{bottom:387.626512pt;}
.y1d_c00072{bottom:394.986509pt;}
.y1b_c00072{bottom:415.146501pt;}
.y1a_c00072{bottom:442.826490pt;}
.y19_c00072{bottom:470.346479pt;}
.y18_c00072{bottom:498.026467pt;}
.y17_c00072{bottom:525.546456pt;}
.y16_c00072{bottom:553.066445pt;}
.y14_c00072{bottom:580.746434pt;}
.y15_c00072{bottom:588.106431pt;}
.y13_c00072{bottom:608.266423pt;}
.y12_c00072{bottom:635.946412pt;}
.y11_c00072{bottom:663.466401pt;}
.y10_c00072{bottom:691.146390pt;}
.yf_c00072{bottom:718.666379pt;}
.ye_c00072{bottom:746.346368pt;}
.yd_c00072{bottom:773.866357pt;}
.yc_c00072{bottom:801.546346pt;}
.yb_c00072{bottom:829.066335pt;}
.ya_c00072{bottom:856.746324pt;}
.y9_c00072{bottom:884.266313pt;}
.y8_c00072{bottom:911.946302pt;}
.y7_c00072{bottom:939.466291pt;}
.y6_c00072{bottom:967.146280pt;}
.y5_c00072{bottom:994.666269pt;}
.y2_c00072{bottom:1045.386249pt;}
.y1_c00072{bottom:1063.306241pt;}
.h6_c00072{height:33.918736pt;}
.h7_c00072{height:35.404673pt;}
.h2_c00072{height:39.243734pt;}
.h5_c00072{height:42.063421pt;}
.h1_c00072{height:52.134354pt;}
.h4_c00072{height:62.781225pt;}
.h3_c00072{height:62.812475pt;}
.h0_c00072{height:1122.666667pt;}
.w0_c00072{width:793.333333pt;}
.x0_c00072{left:0.000000pt;}
.x5_c00072{left:113.439768pt;}
.xb_c00072{left:122.079951pt;}
.xc_c00072{left:125.759950pt;}
.x6_c00072{left:160.640204pt;}
.x1_c00072{left:161.599935pt;}
.x7_c00072{left:212.639915pt;}
.x8_c00072{left:223.519911pt;}
.x2_c00072{left:292.479474pt;}
.x9_c00072{left:328.639869pt;}
.xa_c00072{left:339.519864pt;}
.x4_c00072{left:389.439844pt;}
.x3_c00072{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8975d5b1e93cc6778b5c3fa9.woff2')format("woff");}.ff1_c00073{font-family:ff1_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:ff2_c00073;src:url('chunks/assets/font_00d8f7fe644ec4f803a2d0ec.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:0.675781;font-style:normal;font-weight:normal;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_3043f37c8797d33796e050ef.woff2')format("woff");}.ff3_c00073{font-family:ff3_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:ff4_c00073;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00073{font-family:ff4_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:ff5_c00073;src:url('chunks/assets/font_e849af301284289c02f05d3c.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:0.666504;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls1_c00073{letter-spacing:0.000000px;}
.ls0_c00073{letter-spacing:4.333198px;}
.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;}
}
.ws1_c00073{word-spacing:-17.999993px;}
.ws0_c00073{word-spacing:-12.059995px;}
.ws2_c00073{word-spacing:-9.719996px;}
.ws3_c00073{word-spacing:0.000000px;}
._d_c00073{margin-left:-10.272046px;}
._8_c00073{margin-left:-2.116905px;}
._1_c00073{margin-left:-1.105374px;}
._0_c00073{width:1.195563px;}
._4_c00073{width:3.044680px;}
._3_c00073{width:4.308389px;}
._2_c00073{width:6.229917px;}
._9_c00073{width:7.892075px;}
._e_c00073{width:9.359894px;}
._6_c00073{width:10.583039px;}
._5_c00073{width:11.668541px;}
._a_c00073{width:13.404634px;}
._c_c00073{width:14.440142px;}
._b_c00073{width:15.806760px;}
._7_c00073{width:38.122295px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs4_c00073{font-size:38.879984px;}
.fs3_c00073{font-size:48.239981px;}
.fs0_c00073{font-size:59.759976px;}
.fs1_c00073{font-size:66.239974px;}
.fs2_c00073{font-size:71.999971px;}
.fs5_c00073{font-size:84.239966px;}
.y0_c00073{bottom:0.000000px;}
.y4_c00073{bottom:75.899970px;}
.y3_c00073{bottom:114.059954px;}
.y2d_c00073{bottom:148.260241px;}
.y2c_c00073{bottom:155.099938px;}
.y2b_c00073{bottom:165.719934px;}
.y2a_c00073{bottom:182.819927px;}
.y29_c00073{bottom:189.659924px;}
.y28_c00073{bottom:215.939914px;}
.y27_c00073{bottom:235.199906px;}
.y26_c00073{bottom:252.479899px;}
.y25_c00073{bottom:259.319896px;}
.y24_c00073{bottom:305.759878px;}
.y23_c00073{bottom:312.599875px;}
.y22_c00073{bottom:323.939870px;}
.y20_c00073{bottom:373.079851px;}
.y21_c00073{bottom:381.359847px;}
.y1f_c00073{bottom:404.039838px;}
.y1e_c00073{bottom:435.179826px;}
.y1d_c00073{bottom:466.139814px;}
.y1c_c00073{bottom:497.279801px;}
.y1b_c00073{bottom:528.239789px;}
.y1a_c00073{bottom:559.379776px;}
.y19_c00073{bottom:590.339764px;}
.y18_c00073{bottom:621.479751px;}
.y16_c00073{bottom:652.439739px;}
.y17_c00073{bottom:660.719736px;}
.y15_c00073{bottom:683.579727px;}
.y14_c00073{bottom:714.539714px;}
.y13_c00073{bottom:745.679702px;}
.y12_c00073{bottom:776.639689px;}
.y11_c00073{bottom:807.779677px;}
.y10_c00073{bottom:838.739665px;}
.ye_c00073{bottom:869.879652px;}
.yf_c00073{bottom:878.159649px;}
.yd_c00073{bottom:900.839640px;}
.yc_c00073{bottom:931.979627px;}
.yb_c00073{bottom:962.939615px;}
.ya_c00073{bottom:994.079602px;}
.y9_c00073{bottom:1025.039590px;}
.y8_c00073{bottom:1056.179578px;}
.y6_c00073{bottom:1087.139565px;}
.y7_c00073{bottom:1095.419562px;}
.y5_c00073{bottom:1118.279553px;}
.y2_c00073{bottom:1157.159537px;}
.y1_c00073{bottom:1196.039522px;}
.h7_c00073{height:38.139594px;}
.h8_c00073{height:38.158578px;}
.h2_c00073{height:44.149201px;}
.h4_c00073{height:47.321348px;}
.h6_c00073{height:47.344903px;}
.h9_c00073{height:56.146267px;}
.ha_c00073{height:58.621969px;}
.h1_c00073{height:58.651148px;}
.h3_c00073{height:70.628878px;}
.h5_c00073{height:70.664034px;}
.h0_c00073{height:1263.000000px;}
.w0_c00073{width:892.500000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:127.619949px;}
.xc_c00073{left:137.339945px;}
.xd_c00073{left:143.999942px;}
.x5_c00073{left:180.720004px;}
.x3_c00073{left:275.579890px;}
.x4_c00073{left:287.819885px;}
.x6_c00073{left:356.759857px;}
.x7_c00073{left:368.999852px;}
.x2_c00073{left:438.120035px;}
.xe_c00073{left:552.599779px;}
.xa_c00073{left:592.019763px;}
.xb_c00073{left:604.259758px;}
.x8_c00073{left:624.959750px;}
.x9_c00073{left:637.199745px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls1_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:3.851732pt;}
.ws1_c00073{word-spacing:-15.999994pt;}
.ws0_c00073{word-spacing:-10.719996pt;}
.ws2_c00073{word-spacing:-8.639997pt;}
.ws3_c00073{word-spacing:0.000000pt;}
._d_c00073{margin-left:-9.130707pt;}
._8_c00073{margin-left:-1.881694pt;}
._1_c00073{margin-left:-0.982555pt;}
._0_c00073{width:1.062723pt;}
._4_c00073{width:2.706382pt;}
._3_c00073{width:3.829679pt;}
._2_c00073{width:5.537704pt;}
._9_c00073{width:7.015178pt;}
._e_c00073{width:8.319906pt;}
._6_c00073{width:9.407145pt;}
._5_c00073{width:10.372037pt;}
._a_c00073{width:11.915230pt;}
._c_c00073{width:12.835681pt;}
._b_c00073{width:14.050453pt;}
._7_c00073{width:33.886484pt;}
.fs4_c00073{font-size:34.559986pt;}
.fs3_c00073{font-size:42.879983pt;}
.fs0_c00073{font-size:53.119979pt;}
.fs1_c00073{font-size:58.879976pt;}
.fs2_c00073{font-size:63.999974pt;}
.fs5_c00073{font-size:74.879970pt;}
.y0_c00073{bottom:0.000000pt;}
.y4_c00073{bottom:67.466640pt;}
.y3_c00073{bottom:101.386626pt;}
.y2d_c00073{bottom:131.786881pt;}
.y2c_c00073{bottom:137.866612pt;}
.y2b_c00073{bottom:147.306608pt;}
.y2a_c00073{bottom:162.506602pt;}
.y29_c00073{bottom:168.586599pt;}
.y28_c00073{bottom:191.946590pt;}
.y27_c00073{bottom:209.066583pt;}
.y26_c00073{bottom:224.426577pt;}
.y25_c00073{bottom:230.506574pt;}
.y24_c00073{bottom:271.786558pt;}
.y23_c00073{bottom:277.866556pt;}
.y22_c00073{bottom:287.946551pt;}
.y20_c00073{bottom:331.626534pt;}
.y21_c00073{bottom:338.986531pt;}
.y1f_c00073{bottom:359.146523pt;}
.y1e_c00073{bottom:386.826512pt;}
.y1d_c00073{bottom:414.346501pt;}
.y1c_c00073{bottom:442.026490pt;}
.y1b_c00073{bottom:469.546479pt;}
.y1a_c00073{bottom:497.226468pt;}
.y19_c00073{bottom:524.746457pt;}
.y18_c00073{bottom:552.426446pt;}
.y16_c00073{bottom:579.946435pt;}
.y17_c00073{bottom:587.306432pt;}
.y15_c00073{bottom:607.626424pt;}
.y14_c00073{bottom:635.146413pt;}
.y13_c00073{bottom:662.826402pt;}
.y12_c00073{bottom:690.346391pt;}
.y11_c00073{bottom:718.026379pt;}
.y10_c00073{bottom:745.546368pt;}
.ye_c00073{bottom:773.226357pt;}
.yf_c00073{bottom:780.586354pt;}
.yd_c00073{bottom:800.746346pt;}
.yc_c00073{bottom:828.426335pt;}
.yb_c00073{bottom:855.946324pt;}
.ya_c00073{bottom:883.626313pt;}
.y9_c00073{bottom:911.146302pt;}
.y8_c00073{bottom:938.826291pt;}
.y6_c00073{bottom:966.346280pt;}
.y7_c00073{bottom:973.706277pt;}
.y5_c00073{bottom:994.026269pt;}
.y2_c00073{bottom:1028.586255pt;}
.y1_c00073{bottom:1063.146241pt;}
.h7_c00073{height:33.901861pt;}
.h8_c00073{height:33.918736pt;}
.h2_c00073{height:39.243734pt;}
.h4_c00073{height:42.063421pt;}
.h6_c00073{height:42.084358pt;}
.h9_c00073{height:49.907793pt;}
.ha_c00073{height:52.108417pt;}
.h1_c00073{height:52.134354pt;}
.h3_c00073{height:62.781225pt;}
.h5_c00073{height:62.812475pt;}
.h0_c00073{height:1122.666667pt;}
.w0_c00073{width:793.333333pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:113.439955pt;}
.xc_c00073{left:122.079951pt;}
.xd_c00073{left:127.999949pt;}
.x5_c00073{left:160.640004pt;}
.x3_c00073{left:244.959902pt;}
.x4_c00073{left:255.839898pt;}
.x6_c00073{left:317.119873pt;}
.x7_c00073{left:327.999869pt;}
.x2_c00073{left:389.440031pt;}
.xe_c00073{left:491.199804pt;}
.xa_c00073{left:526.239790pt;}
.xb_c00073{left:537.119785pt;}
.x8_c00073{left:555.519778pt;}
.x9_c00073{left:566.399773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_484ecedced4caa382351b5b0.woff2')format("woff");}.ff1_c00074{font-family:ff1_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:ff2_c00074;src:url('chunks/assets/font_62f46f6dc20671cc465a22ba.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:0.675781;font-style:normal;font-weight:normal;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_94ae6f59641d26f76c987546.woff2')format("woff");}.ff3_c00074{font-family:ff3_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;}
.m0_c00074{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.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;}
}
.ws2_c00074{word-spacing:-17.999993px;}
.ws0_c00074{word-spacing:-16.559993px;}
.ws3_c00074{word-spacing:-12.059995px;}
.ws1_c00074{word-spacing:-10.439996px;}
.ws5_c00074{word-spacing:-9.719996px;}
.ws4_c00074{word-spacing:-9.437756px;}
.ws6_c00074{word-spacing:0.000000px;}
._f_c00074{margin-left:-9.537170px;}
._1_c00074{margin-left:-1.105374px;}
._0_c00074{width:1.478351px;}
._6_c00074{width:2.755322px;}
._3_c00074{width:4.204762px;}
._2_c00074{width:5.495041px;}
._d_c00074{width:7.136727px;}
._9_c00074{width:8.341573px;}
._8_c00074{width:9.529590px;}
._c_c00074{width:10.912203px;}
._5_c00074{width:12.000428px;}
._4_c00074{width:13.144454px;}
._7_c00074{width:14.812947px;}
._e_c00074{width:16.159822px;}
._a_c00074{width:22.994515px;}
._b_c00074{width:24.263022px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs5_c00074{font-size:38.879984px;}
.fs2_c00074{font-size:41.759983px;}
.fs4_c00074{font-size:48.239981px;}
.fs0_c00074{font-size:59.759976px;}
.fs1_c00074{font-size:66.239974px;}
.fs3_c00074{font-size:71.999971px;}
.y0_c00074{bottom:0.000000px;}
.y4_c00074{bottom:75.900270px;}
.y3_c00074{bottom:114.060254px;}
.y30_c00074{bottom:134.400246px;}
.y2f_c00074{bottom:153.479939px;}
.y2e_c00074{bottom:170.759932px;}
.y2d_c00074{bottom:177.599929px;}
.y2c_c00074{bottom:188.939924px;}
.y2b_c00074{bottom:208.199917px;}
.y2a_c00074{bottom:226.379909px;}
.y29_c00074{bottom:233.939906px;}
.y28_c00074{bottom:246.539901px;}
.y27_c00074{bottom:265.799894px;}
.y26_c00074{bottom:283.799886px;}
.y25_c00074{bottom:291.359883px;}
.y24_c00074{bottom:303.959878px;}
.y23_c00074{bottom:324.659870px;}
.y22_c00074{bottom:355.799858px;}
.y21_c00074{bottom:386.759845px;}
.y20_c00074{bottom:417.899833px;}
.y1f_c00074{bottom:448.859820px;}
.y1d_c00074{bottom:479.999808px;}
.y1e_c00074{bottom:488.279805px;}
.y1c_c00074{bottom:510.959796px;}
.y1b_c00074{bottom:542.099783px;}
.y1a_c00074{bottom:573.059771px;}
.y19_c00074{bottom:604.199758px;}
.y18_c00074{bottom:635.159746px;}
.y17_c00074{bottom:666.299733px;}
.y16_c00074{bottom:697.259721px;}
.y15_c00074{bottom:728.399709px;}
.y14_c00074{bottom:759.359696px;}
.y13_c00074{bottom:790.499684px;}
.y12_c00074{bottom:821.459671px;}
.y11_c00074{bottom:852.599659px;}
.y10_c00074{bottom:883.559647px;}
.ye_c00074{bottom:914.699634px;}
.yf_c00074{bottom:922.979631px;}
.yd_c00074{bottom:945.659622px;}
.yc_c00074{bottom:976.799609px;}
.yb_c00074{bottom:1006.679597px;}
.y9_c00074{bottom:1006.679897px;}
.ya_c00074{bottom:1014.239594px;}
.y8_c00074{bottom:1035.119886px;}
.y7_c00074{bottom:1063.559875px;}
.y6_c00074{bottom:1091.999863px;}
.y5_c00074{bottom:1120.439852px;}
.y2_c00074{bottom:1176.059530px;}
.y1_c00074{bottom:1196.219522px;}
.h8_c00074{height:27.833192px;}
.h9_c00074{height:38.158578px;}
.h5_c00074{height:40.985140px;}
.h2_c00074{height:44.149201px;}
.h7_c00074{height:47.344903px;}
.h1_c00074{height:58.651148px;}
.h4_c00074{height:64.978568px;}
.h3_c00074{height:65.010911px;}
.h6_c00074{height:70.664034px;}
.h0_c00074{height:1263.000000px;}
.w0_c00074{width:892.500000px;}
.x0_c00074{left:0.000000px;}
.x5_c00074{left:127.619739px;}
.xc_c00074{left:138.059945px;}
.xd_c00074{left:144.539942px;}
.x7_c00074{left:170.279932px;}
.x6_c00074{left:180.719745px;}
.x1_c00074{left:181.799927px;}
.x2_c00074{left:329.039408px;}
.x4_c00074{left:438.119825px;}
.x8_c00074{left:466.019814px;}
.x9_c00074{left:478.259809px;}
.xa_c00074{left:544.499782px;}
.xb_c00074{left:556.739777px;}
.x3_c00074{left:765.359694px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws2_c00074{word-spacing:-15.999994pt;}
.ws0_c00074{word-spacing:-14.719994pt;}
.ws3_c00074{word-spacing:-10.719996pt;}
.ws1_c00074{word-spacing:-9.279996pt;}
.ws5_c00074{word-spacing:-8.639997pt;}
.ws4_c00074{word-spacing:-8.389117pt;}
.ws6_c00074{word-spacing:0.000000pt;}
._f_c00074{margin-left:-8.477484pt;}
._1_c00074{margin-left:-0.982555pt;}
._0_c00074{width:1.314090pt;}
._6_c00074{width:2.449175pt;}
._3_c00074{width:3.737566pt;}
._2_c00074{width:4.884481pt;}
._d_c00074{width:6.343758pt;}
._9_c00074{width:7.414732pt;}
._8_c00074{width:8.470747pt;}
._c_c00074{width:9.699736pt;}
._5_c00074{width:10.667048pt;}
._4_c00074{width:11.683959pt;}
._7_c00074{width:13.167064pt;}
._e_c00074{width:14.364286pt;}
._a_c00074{width:20.439569pt;}
._b_c00074{width:21.567131pt;}
.fs5_c00074{font-size:34.559986pt;}
.fs2_c00074{font-size:37.119985pt;}
.fs4_c00074{font-size:42.879983pt;}
.fs0_c00074{font-size:53.119979pt;}
.fs1_c00074{font-size:58.879976pt;}
.fs3_c00074{font-size:63.999974pt;}
.y0_c00074{bottom:0.000000pt;}
.y4_c00074{bottom:67.466906pt;}
.y3_c00074{bottom:101.386893pt;}
.y30_c00074{bottom:119.466886pt;}
.y2f_c00074{bottom:136.426612pt;}
.y2e_c00074{bottom:151.786606pt;}
.y2d_c00074{bottom:157.866604pt;}
.y2c_c00074{bottom:167.946599pt;}
.y2b_c00074{bottom:185.066593pt;}
.y2a_c00074{bottom:201.226586pt;}
.y29_c00074{bottom:207.946583pt;}
.y28_c00074{bottom:219.146579pt;}
.y27_c00074{bottom:236.266572pt;}
.y26_c00074{bottom:252.266566pt;}
.y25_c00074{bottom:258.986563pt;}
.y24_c00074{bottom:270.186559pt;}
.y23_c00074{bottom:288.586551pt;}
.y22_c00074{bottom:316.266540pt;}
.y21_c00074{bottom:343.786529pt;}
.y20_c00074{bottom:371.466518pt;}
.y1f_c00074{bottom:398.986507pt;}
.y1d_c00074{bottom:426.666496pt;}
.y1e_c00074{bottom:434.026493pt;}
.y1c_c00074{bottom:454.186485pt;}
.y1b_c00074{bottom:481.866474pt;}
.y1a_c00074{bottom:509.386463pt;}
.y19_c00074{bottom:537.066452pt;}
.y18_c00074{bottom:564.586441pt;}
.y17_c00074{bottom:592.266430pt;}
.y16_c00074{bottom:619.786419pt;}
.y15_c00074{bottom:647.466408pt;}
.y14_c00074{bottom:674.986397pt;}
.y13_c00074{bottom:702.666386pt;}
.y12_c00074{bottom:730.186375pt;}
.y11_c00074{bottom:757.866364pt;}
.y10_c00074{bottom:785.386353pt;}
.ye_c00074{bottom:813.066341pt;}
.yf_c00074{bottom:820.426338pt;}
.yd_c00074{bottom:840.586330pt;}
.yc_c00074{bottom:868.266319pt;}
.yb_c00074{bottom:894.826309pt;}
.y9_c00074{bottom:894.826575pt;}
.ya_c00074{bottom:901.546306pt;}
.y8_c00074{bottom:920.106565pt;}
.y7_c00074{bottom:945.386555pt;}
.y6_c00074{bottom:970.666545pt;}
.y5_c00074{bottom:995.946535pt;}
.y2_c00074{bottom:1045.386249pt;}
.y1_c00074{bottom:1063.306241pt;}
.h8_c00074{height:24.740615pt;}
.h9_c00074{height:33.918736pt;}
.h5_c00074{height:36.431235pt;}
.h2_c00074{height:39.243734pt;}
.h7_c00074{height:42.084358pt;}
.h1_c00074{height:52.134354pt;}
.h4_c00074{height:57.758727pt;}
.h3_c00074{height:57.787477pt;}
.h6_c00074{height:62.812475pt;}
.h0_c00074{height:1122.666667pt;}
.w0_c00074{width:793.333333pt;}
.x0_c00074{left:0.000000pt;}
.x5_c00074{left:113.439768pt;}
.xc_c00074{left:122.719951pt;}
.xd_c00074{left:128.479949pt;}
.x7_c00074{left:151.359939pt;}
.x6_c00074{left:160.639773pt;}
.x1_c00074{left:161.599935pt;}
.x2_c00074{left:292.479474pt;}
.x4_c00074{left:389.439844pt;}
.x8_c00074{left:414.239834pt;}
.x9_c00074{left:425.119830pt;}
.xa_c00074{left:483.999806pt;}
.xb_c00074{left:494.879802pt;}
.x3_c00074{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b908c620483ff9f34817682.woff2')format("woff");}.ff1_c00075{font-family:ff1_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:ff2_c00075;src:url('chunks/assets/font_515f9771740e546de390b269.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:0.675781;font-style:normal;font-weight:normal;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_ba68982e9adc3f861344088d.woff2')format("woff");}.ff3_c00075{font-family:ff3_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;}
.m0_c00075{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00075{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls2_c00075{letter-spacing:0.000000px;}
.ls1_c00075{letter-spacing:0.021282px;}
.ls0_c00075{letter-spacing:2.892299px;}
.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;}
}
.ws1_c00075{word-spacing:-17.999993px;}
.ws0_c00075{word-spacing:-12.059995px;}
.ws3_c00075{word-spacing:-9.719996px;}
.ws2_c00075{word-spacing:-9.437756px;}
.ws4_c00075{word-spacing:0.000000px;}
._e_c00075{margin-left:-9.939862px;}
._1_c00075{margin-left:-1.105374px;}
._0_c00075{width:1.195563px;}
._a_c00075{width:2.362786px;}
._9_c00075{width:3.364722px;}
._3_c00075{width:4.852796px;}
._4_c00075{width:5.897733px;}
._2_c00075{width:7.101543px;}
._5_c00075{width:8.439203px;}
._8_c00075{width:10.043505px;}
._6_c00075{width:12.301477px;}
._7_c00075{width:13.485177px;}
._d_c00075{width:16.595393px;}
._b_c00075{width:26.393455px;}
._c_c00075{width:27.617574px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs5_c00075{font-size:38.879984px;}
.fs4_c00075{font-size:41.759983px;}
.fs3_c00075{font-size:48.239981px;}
.fs0_c00075{font-size:59.759976px;}
.fs1_c00075{font-size:66.239974px;}
.fs2_c00075{font-size:71.999971px;}
.y0_c00075{bottom:0.000000px;}
.y4_c00075{bottom:75.899970px;}
.y3_c00075{bottom:114.059954px;}
.y2d_c00075{bottom:134.400246px;}
.y2c_c00075{bottom:153.479939px;}
.y2b_c00075{bottom:170.759932px;}
.y2a_c00075{bottom:177.599929px;}
.y29_c00075{bottom:188.939924px;}
.y28_c00075{bottom:208.199917px;}
.y27_c00075{bottom:225.479910px;}
.y26_c00075{bottom:232.319907px;}
.y25_c00075{bottom:243.659903px;}
.y24_c00075{bottom:263.819894px;}
.y23_c00075{bottom:271.379891px;}
.y22_c00075{bottom:298.739881px;}
.y21_c00075{bottom:306.299877px;}
.y20_c00075{bottom:319.079872px;}
.y1f_c00075{bottom:414.479834px;}
.y1e_c00075{bottom:452.639819px;}
.y1d_c00075{bottom:490.799804px;}
.y1c_c00075{bottom:528.959788px;}
.y1a_c00075{bottom:559.379776px;}
.y1b_c00075{bottom:567.659773px;}
.y19_c00075{bottom:590.339764px;}
.y18_c00075{bottom:621.479751px;}
.y17_c00075{bottom:652.439739px;}
.y16_c00075{bottom:683.579727px;}
.y15_c00075{bottom:714.539714px;}
.y14_c00075{bottom:745.679702px;}
.y13_c00075{bottom:776.639689px;}
.y12_c00075{bottom:807.779677px;}
.y11_c00075{bottom:838.739665px;}
.y10_c00075{bottom:869.879652px;}
.ye_c00075{bottom:900.839640px;}
.yf_c00075{bottom:909.119636px;}
.yc_c00075{bottom:931.979627px;}
.yd_c00075{bottom:940.259624px;}
.yb_c00075{bottom:962.939615px;}
.ya_c00075{bottom:994.079602px;}
.y8_c00075{bottom:1025.039590px;}
.y9_c00075{bottom:1033.319587px;}
.y7_c00075{bottom:1056.179578px;}
.y6_c00075{bottom:1087.139565px;}
.y5_c00075{bottom:1118.279553px;}
.y2_c00075{bottom:1157.159537px;}
.y1_c00075{bottom:1196.039522px;}
.h5_c00075{height:27.833192px;}
.h6_c00075{height:38.158578px;}
.h2_c00075{height:44.149201px;}
.h4_c00075{height:47.344903px;}
.h1_c00075{height:58.651148px;}
.h3_c00075{height:70.664034px;}
.h0_c00075{height:1263.000000px;}
.w0_c00075{width:892.500000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:127.619949px;}
.xc_c00075{left:138.059945px;}
.xd_c00075{left:141.839943px;}
.x5_c00075{left:180.719871px;}
.xa_c00075{left:195.659922px;}
.xb_c00075{left:207.899917px;}
.x3_c00075{left:254.519898px;}
.x4_c00075{left:266.759893px;}
.x2_c00075{left:438.120035px;}
.x6_c00075{left:480.419808px;}
.x7_c00075{left:492.659803px;}
.x8_c00075{left:689.039724px;}
.x9_c00075{left:701.279719px;}
.xe_c00075{left:704.339718px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls2_c00075{letter-spacing:0.000000pt;}
.ls1_c00075{letter-spacing:0.018917pt;}
.ls0_c00075{letter-spacing:2.570932pt;}
.ws1_c00075{word-spacing:-15.999994pt;}
.ws0_c00075{word-spacing:-10.719996pt;}
.ws3_c00075{word-spacing:-8.639997pt;}
.ws2_c00075{word-spacing:-8.389117pt;}
.ws4_c00075{word-spacing:0.000000pt;}
._e_c00075{margin-left:-8.835433pt;}
._1_c00075{margin-left:-0.982555pt;}
._0_c00075{width:1.062723pt;}
._a_c00075{width:2.100254pt;}
._9_c00075{width:2.990864pt;}
._3_c00075{width:4.313596pt;}
._4_c00075{width:5.242429pt;}
._2_c00075{width:6.312483pt;}
._5_c00075{width:7.501514pt;}
._8_c00075{width:8.927560pt;}
._6_c00075{width:10.934647pt;}
._7_c00075{width:11.986824pt;}
._d_c00075{width:14.751461pt;}
._b_c00075{width:23.460849pt;}
._c_c00075{width:24.548955pt;}
.fs5_c00075{font-size:34.559986pt;}
.fs4_c00075{font-size:37.119985pt;}
.fs3_c00075{font-size:42.879983pt;}
.fs0_c00075{font-size:53.119979pt;}
.fs1_c00075{font-size:58.879976pt;}
.fs2_c00075{font-size:63.999974pt;}
.y0_c00075{bottom:0.000000pt;}
.y4_c00075{bottom:67.466640pt;}
.y3_c00075{bottom:101.386626pt;}
.y2d_c00075{bottom:119.466886pt;}
.y2c_c00075{bottom:136.426612pt;}
.y2b_c00075{bottom:151.786606pt;}
.y2a_c00075{bottom:157.866604pt;}
.y29_c00075{bottom:167.946599pt;}
.y28_c00075{bottom:185.066593pt;}
.y27_c00075{bottom:200.426586pt;}
.y26_c00075{bottom:206.506584pt;}
.y25_c00075{bottom:216.586580pt;}
.y24_c00075{bottom:234.506573pt;}
.y23_c00075{bottom:241.226570pt;}
.y22_c00075{bottom:265.546560pt;}
.y21_c00075{bottom:272.266558pt;}
.y20_c00075{bottom:283.626553pt;}
.y1f_c00075{bottom:368.426519pt;}
.y1e_c00075{bottom:402.346506pt;}
.y1d_c00075{bottom:436.266492pt;}
.y1c_c00075{bottom:470.186479pt;}
.y1a_c00075{bottom:497.226468pt;}
.y1b_c00075{bottom:504.586465pt;}
.y19_c00075{bottom:524.746457pt;}
.y18_c00075{bottom:552.426446pt;}
.y17_c00075{bottom:579.946435pt;}
.y16_c00075{bottom:607.626424pt;}
.y15_c00075{bottom:635.146413pt;}
.y14_c00075{bottom:662.826402pt;}
.y13_c00075{bottom:690.346391pt;}
.y12_c00075{bottom:718.026379pt;}
.y11_c00075{bottom:745.546368pt;}
.y10_c00075{bottom:773.226357pt;}
.ye_c00075{bottom:800.746346pt;}
.yf_c00075{bottom:808.106343pt;}
.yc_c00075{bottom:828.426335pt;}
.yd_c00075{bottom:835.786332pt;}
.yb_c00075{bottom:855.946324pt;}
.ya_c00075{bottom:883.626313pt;}
.y8_c00075{bottom:911.146302pt;}
.y9_c00075{bottom:918.506299pt;}
.y7_c00075{bottom:938.826291pt;}
.y6_c00075{bottom:966.346280pt;}
.y5_c00075{bottom:994.026269pt;}
.y2_c00075{bottom:1028.586255pt;}
.y1_c00075{bottom:1063.146241pt;}
.h5_c00075{height:24.740615pt;}
.h6_c00075{height:33.918736pt;}
.h2_c00075{height:39.243734pt;}
.h4_c00075{height:42.084358pt;}
.h1_c00075{height:52.134354pt;}
.h3_c00075{height:62.812475pt;}
.h0_c00075{height:1122.666667pt;}
.w0_c00075{width:793.333333pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:113.439955pt;}
.xc_c00075{left:122.719951pt;}
.xd_c00075{left:126.079950pt;}
.x5_c00075{left:160.639886pt;}
.xa_c00075{left:173.919930pt;}
.xb_c00075{left:184.799926pt;}
.x3_c00075{left:226.239910pt;}
.x4_c00075{left:237.119905pt;}
.x2_c00075{left:389.440031pt;}
.x6_c00075{left:427.039829pt;}
.x7_c00075{left:437.919825pt;}
.x8_c00075{left:612.479755pt;}
.x9_c00075{left:623.359751pt;}
.xe_c00075{left:626.079750pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a812ea43a8ac651b0469363.woff2')format("woff");}.ff1_c00076{font-family:ff1_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:ff2_c00076;src:url('chunks/assets/font_d3edaf4a0594ada296c2cb79.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:0.675781;font-style:normal;font-weight:normal;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_2a90c132464b56cddc10e7ef.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;line-height:1.311035;font-style:normal;font-weight:normal;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_dd1b8702e20f520bd0c61917.woff2')format("woff");}.ff4_c00076{font-family:ff4_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:ff5_c00076;src:url('chunks/assets/font_4ff5ce24634496c44195e05f.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls2_c00076{letter-spacing:0.000000px;}
.ls1_c00076{letter-spacing:0.378602px;}
.ls0_c00076{letter-spacing:13.157275px;}
.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;}
}
.ws2_c00076{word-spacing:-19.673272px;}
.ws1_c00076{word-spacing:-17.999993px;}
.ws3_c00076{word-spacing:-15.318596px;}
.ws0_c00076{word-spacing:-10.439996px;}
.ws4_c00076{word-spacing:0.000000px;}
._13_c00076{margin-left:-10.125503px;}
._4_c00076{margin-left:-2.139990px;}
._1_c00076{margin-left:-1.105374px;}
._0_c00076{width:1.478351px;}
._e_c00076{width:2.686774px;}
._f_c00076{width:3.723426px;}
._11_c00076{width:4.927214px;}
._5_c00076{width:6.083374px;}
._6_c00076{width:7.515650px;}
._b_c00076{width:9.015983px;}
._c_c00076{width:10.251336px;}
._12_c00076{width:11.349765px;}
._2_c00076{width:12.367691px;}
._3_c00076{width:13.627729px;}
._10_c00076{width:14.939347px;}
._d_c00076{width:15.956701px;}
._7_c00076{width:19.973488px;}
._8_c00076{width:21.102753px;}
._a_c00076{width:22.422334px;}
._9_c00076{width:23.757562px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs4_c00076{font-size:38.879984px;}
.fs2_c00076{font-size:41.759983px;}
.fs0_c00076{font-size:59.759976px;}
.fs1_c00076{font-size:66.239974px;}
.fs3_c00076{font-size:71.999971px;}
.y0_c00076{bottom:0.000000px;}
.y4_c00076{bottom:75.900270px;}
.y3_c00076{bottom:114.060254px;}
.y26_c00076{bottom:149.160240px;}
.y25_c00076{bottom:183.359927px;}
.y24_c00076{bottom:201.179920px;}
.y23_c00076{bottom:208.739917px;}
.y22_c00076{bottom:220.079912px;}
.y21_c00076{bottom:247.259901px;}
.y20_c00076{bottom:278.399889px;}
.y1f_c00076{bottom:309.359876px;}
.y1e_c00076{bottom:340.499864px;}
.y1d_c00076{bottom:371.459851px;}
.y1c_c00076{bottom:417.539833px;}
.y1b_c00076{bottom:448.499821px;}
.y1a_c00076{bottom:479.639808px;}
.y19_c00076{bottom:525.719790px;}
.y18_c00076{bottom:556.679777px;}
.y17_c00076{bottom:587.819765px;}
.y16_c00076{bottom:618.779752px;}
.y15_c00076{bottom:649.919740px;}
.y14_c00076{bottom:695.819722px;}
.y13_c00076{bottom:726.959709px;}
.y12_c00076{bottom:757.919697px;}
.y11_c00076{bottom:789.059684px;}
.y10_c00076{bottom:835.139666px;}
.yf_c00076{bottom:866.099654px;}
.ye_c00076{bottom:897.239641px;}
.yd_c00076{bottom:928.199629px;}
.yc_c00076{bottom:959.339616px;}
.yb_c00076{bottom:990.299604px;}
.ya_c00076{bottom:1021.439591px;}
.y9_c00076{bottom:1052.399579px;}
.y8_c00076{bottom:1091.279563px;}
.y7_c00076{bottom:1120.079552px;}
.y5_c00076{bottom:1120.079852px;}
.y6_c00076{bottom:1127.639549px;}
.y2_c00076{bottom:1176.059530px;}
.y1_c00076{bottom:1196.219522px;}
.h6_c00076{height:25.913662px;}
.h4_c00076{height:42.086233px;}
.h2_c00076{height:44.149201px;}
.h1_c00076{height:58.651148px;}
.h3_c00076{height:66.757473px;}
.h5_c00076{height:70.664034px;}
.h0_c00076{height:1263.000000px;}
.w0_c00076{width:892.500000px;}
.x0_c00076{left:0.000000px;}
.x5_c00076{left:127.619739px;}
.x9_c00076{left:137.339945px;}
.x8_c00076{left:180.719928px;}
.x1_c00076{left:181.799927px;}
.x2_c00076{left:329.039408px;}
.x6_c00076{left:345.779862px;}
.x7_c00076{left:356.219858px;}
.x4_c00076{left:438.119825px;}
.x3_c00076{left:765.359694px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls2_c00076{letter-spacing:0.000000pt;}
.ls1_c00076{letter-spacing:0.336535pt;}
.ls0_c00076{letter-spacing:11.695355pt;}
.ws2_c00076{word-spacing:-17.487353pt;}
.ws1_c00076{word-spacing:-15.999994pt;}
.ws3_c00076{word-spacing:-13.616529pt;}
.ws0_c00076{word-spacing:-9.279996pt;}
.ws4_c00076{word-spacing:0.000000pt;}
._13_c00076{margin-left:-9.000447pt;}
._4_c00076{margin-left:-1.902214pt;}
._1_c00076{margin-left:-0.982555pt;}
._0_c00076{width:1.314090pt;}
._e_c00076{width:2.388244pt;}
._f_c00076{width:3.309712pt;}
._11_c00076{width:4.379746pt;}
._5_c00076{width:5.407444pt;}
._6_c00076{width:6.680578pt;}
._b_c00076{width:8.014207pt;}
._c_c00076{width:9.112299pt;}
._12_c00076{width:10.088680pt;}
._2_c00076{width:10.993503pt;}
._3_c00076{width:12.113537pt;}
._10_c00076{width:13.279419pt;}
._d_c00076{width:14.183734pt;}
._7_c00076{width:17.754212pt;}
._8_c00076{width:18.758002pt;}
._a_c00076{width:19.930964pt;}
._9_c00076{width:21.117833pt;}
.fs4_c00076{font-size:34.559986pt;}
.fs2_c00076{font-size:37.119985pt;}
.fs0_c00076{font-size:53.119979pt;}
.fs1_c00076{font-size:58.879976pt;}
.fs3_c00076{font-size:63.999974pt;}
.y0_c00076{bottom:0.000000pt;}
.y4_c00076{bottom:67.466906pt;}
.y3_c00076{bottom:101.386893pt;}
.y26_c00076{bottom:132.586880pt;}
.y25_c00076{bottom:162.986601pt;}
.y24_c00076{bottom:178.826595pt;}
.y23_c00076{bottom:185.546592pt;}
.y22_c00076{bottom:195.626588pt;}
.y21_c00076{bottom:219.786579pt;}
.y20_c00076{bottom:247.466568pt;}
.y1f_c00076{bottom:274.986557pt;}
.y1e_c00076{bottom:302.666546pt;}
.y1d_c00076{bottom:330.186535pt;}
.y1c_c00076{bottom:371.146518pt;}
.y1b_c00076{bottom:398.666507pt;}
.y1a_c00076{bottom:426.346496pt;}
.y19_c00076{bottom:467.306480pt;}
.y18_c00076{bottom:494.826469pt;}
.y17_c00076{bottom:522.506458pt;}
.y16_c00076{bottom:550.026447pt;}
.y15_c00076{bottom:577.706436pt;}
.y14_c00076{bottom:618.506419pt;}
.y13_c00076{bottom:646.186408pt;}
.y12_c00076{bottom:673.706397pt;}
.y11_c00076{bottom:701.386386pt;}
.y10_c00076{bottom:742.346370pt;}
.yf_c00076{bottom:769.866359pt;}
.ye_c00076{bottom:797.546348pt;}
.yd_c00076{bottom:825.066337pt;}
.yc_c00076{bottom:852.746326pt;}
.yb_c00076{bottom:880.266315pt;}
.ya_c00076{bottom:907.946303pt;}
.y9_c00076{bottom:935.466292pt;}
.y8_c00076{bottom:970.026279pt;}
.y7_c00076{bottom:995.626268pt;}
.y5_c00076{bottom:995.626535pt;}
.y6_c00076{bottom:1002.346266pt;}
.y2_c00076{bottom:1045.386249pt;}
.y1_c00076{bottom:1063.306241pt;}
.h6_c00076{height:23.034366pt;}
.h4_c00076{height:37.409985pt;}
.h2_c00076{height:39.243734pt;}
.h1_c00076{height:52.134354pt;}
.h3_c00076{height:59.339976pt;}
.h5_c00076{height:62.812475pt;}
.h0_c00076{height:1122.666667pt;}
.w0_c00076{width:793.333333pt;}
.x0_c00076{left:0.000000pt;}
.x5_c00076{left:113.439768pt;}
.x9_c00076{left:122.079951pt;}
.x8_c00076{left:160.639936pt;}
.x1_c00076{left:161.599935pt;}
.x2_c00076{left:292.479474pt;}
.x6_c00076{left:307.359877pt;}
.x7_c00076{left:316.639873pt;}
.x4_c00076{left:389.439844pt;}
.x3_c00076{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ec86bca8b16df36cd79eb53.woff2')format("woff");}.ff1_c00077{font-family:ff1_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:ff2_c00077;src:url('chunks/assets/font_ef67e7cfbc4d69c2861b76ab.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:0.675781;font-style:normal;font-weight:normal;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_67b6e8b8973044dedacab729.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls7_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:0.021238px;}
.ls3_c00077{letter-spacing:0.021282px;}
.ls6_c00077{letter-spacing:0.153901px;}
.ls5_c00077{letter-spacing:7.214877px;}
.ls1_c00077{letter-spacing:10.096556px;}
.ls4_c00077{letter-spacing:22.343811px;}
.ls2_c00077{letter-spacing:23.064231px;}
.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;}
}
.ws3_c00077{word-spacing:-18.021275px;}
.ws1_c00077{word-spacing:-18.021231px;}
.ws0_c00077{word-spacing:-17.999993px;}
.ws2_c00077{word-spacing:-12.059995px;}
.ws4_c00077{word-spacing:-9.437756px;}
.ws5_c00077{word-spacing:0.000000px;}
._c_c00077{margin-left:-12.716934px;}
._1_c00077{margin-left:-1.105374px;}
._0_c00077{width:1.195563px;}
._5_c00077{width:2.607876px;}
._3_c00077{width:4.414622px;}
._b_c00077{width:6.298364px;}
._4_c00077{width:7.553838px;}
._7_c00077{width:10.241836px;}
._8_c00077{width:11.335465px;}
._a_c00077{width:14.411994px;}
._2_c00077{width:20.789601px;}
._9_c00077{width:22.361587px;}
._6_c00077{width:34.378469px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs4_c00077{font-size:41.759983px;}
.fs3_c00077{font-size:48.239981px;}
.fs0_c00077{font-size:59.759976px;}
.fs1_c00077{font-size:66.239974px;}
.fs2_c00077{font-size:71.999971px;}
.y0_c00077{bottom:0.000000px;}
.y4_c00077{bottom:75.719970px;}
.y3_c00077{bottom:113.879954px;}
.y22_c00077{bottom:136.560245px;}
.y21_c00077{bottom:144.120242px;}
.y20_c00077{bottom:156.899937px;}
.y1f_c00077{bottom:225.659910px;}
.y1e_c00077{bottom:256.619897px;}
.y1d_c00077{bottom:287.759885px;}
.y1c_c00077{bottom:318.719873px;}
.y1b_c00077{bottom:353.459859px;}
.y1a_c00077{bottom:398.279841px;}
.y19_c00077{bottom:442.919823px;}
.y18_c00077{bottom:488.999804px;}
.y17_c00077{bottom:534.719786px;}
.y16_c00077{bottom:580.619768px;}
.y15_c00077{bottom:626.699749px;}
.y14_c00077{bottom:661.799735px;}
.y13_c00077{bottom:696.359721px;}
.y12_c00077{bottom:731.099708px;}
.y11_c00077{bottom:765.659694px;}
.y10_c00077{bottom:800.399680px;}
.ye_c00077{bottom:834.959666px;}
.yf_c00077{bottom:843.239663px;}
.yd_c00077{bottom:866.099654px;}
.yc_c00077{bottom:897.059641px;}
.yb_c00077{bottom:928.199629px;}
.ya_c00077{bottom:959.159616px;}
.y9_c00077{bottom:993.899602px;}
.y8_c00077{bottom:1024.859590px;}
.y7_c00077{bottom:1055.999578px;}
.y6_c00077{bottom:1086.959565px;}
.y5_c00077{bottom:1118.099553px;}
.y2_c00077{bottom:1156.979537px;}
.y1_c00077{bottom:1195.859522px;}
.h7_c00077{height:27.833192px;}
.h2_c00077{height:44.149201px;}
.h4_c00077{height:47.344903px;}
.h1_c00077{height:58.651148px;}
.h6_c00077{height:65.010911px;}
.h3_c00077{height:70.664034px;}
.h5_c00077{height:72.562471px;}
.h0_c00077{height:1263.000000px;}
.w0_c00077{width:892.500000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:127.799949px;}
.x9_c00077{left:138.239945px;}
.xa_c00077{left:142.019943px;}
.x3_c00077{left:180.900080px;}
.x7_c00077{left:192.959528px;}
.x6_c00077{left:219.599541px;}
.x8_c00077{left:238.319905px;}
.x2_c00077{left:438.300034px;}
.xb_c00077{left:440.819824px;}
.x4_c00077{left:607.679757px;}
.x5_c00077{left:619.919752px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls7_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:0.018878pt;}
.ls3_c00077{letter-spacing:0.018917pt;}
.ls6_c00077{letter-spacing:0.136801pt;}
.ls5_c00077{letter-spacing:6.413224pt;}
.ls1_c00077{letter-spacing:8.974716pt;}
.ls4_c00077{letter-spacing:19.861165pt;}
.ls2_c00077{letter-spacing:20.501538pt;}
.ws3_c00077{word-spacing:-16.018911pt;}
.ws1_c00077{word-spacing:-16.018872pt;}
.ws0_c00077{word-spacing:-15.999994pt;}
.ws2_c00077{word-spacing:-10.719996pt;}
.ws4_c00077{word-spacing:-8.389117pt;}
.ws5_c00077{word-spacing:0.000000pt;}
._c_c00077{margin-left:-11.303941pt;}
._1_c00077{margin-left:-0.982555pt;}
._0_c00077{width:1.062723pt;}
._5_c00077{width:2.318112pt;}
._3_c00077{width:3.924109pt;}
._b_c00077{width:5.598546pt;}
._4_c00077{width:6.714522pt;}
._7_c00077{width:9.103854pt;}
._8_c00077{width:10.075969pt;}
._a_c00077{width:12.810662pt;}
._2_c00077{width:18.479646pt;}
._9_c00077{width:19.876966pt;}
._6_c00077{width:30.558639pt;}
.fs4_c00077{font-size:37.119985pt;}
.fs3_c00077{font-size:42.879983pt;}
.fs0_c00077{font-size:53.119979pt;}
.fs1_c00077{font-size:58.879976pt;}
.fs2_c00077{font-size:63.999974pt;}
.y0_c00077{bottom:0.000000pt;}
.y4_c00077{bottom:67.306640pt;}
.y3_c00077{bottom:101.226626pt;}
.y22_c00077{bottom:121.386885pt;}
.y21_c00077{bottom:128.106882pt;}
.y20_c00077{bottom:139.466611pt;}
.y1f_c00077{bottom:200.586586pt;}
.y1e_c00077{bottom:228.106575pt;}
.y1d_c00077{bottom:255.786564pt;}
.y1c_c00077{bottom:283.306553pt;}
.y1b_c00077{bottom:314.186541pt;}
.y1a_c00077{bottom:354.026525pt;}
.y19_c00077{bottom:393.706509pt;}
.y18_c00077{bottom:434.666493pt;}
.y17_c00077{bottom:475.306477pt;}
.y16_c00077{bottom:516.106460pt;}
.y15_c00077{bottom:557.066444pt;}
.y14_c00077{bottom:588.266431pt;}
.y13_c00077{bottom:618.986419pt;}
.y12_c00077{bottom:649.866407pt;}
.y11_c00077{bottom:680.586394pt;}
.y10_c00077{bottom:711.466382pt;}
.ye_c00077{bottom:742.186370pt;}
.yf_c00077{bottom:749.546367pt;}
.yd_c00077{bottom:769.866359pt;}
.yc_c00077{bottom:797.386348pt;}
.yb_c00077{bottom:825.066337pt;}
.ya_c00077{bottom:852.586326pt;}
.y9_c00077{bottom:883.466313pt;}
.y8_c00077{bottom:910.986302pt;}
.y7_c00077{bottom:938.666291pt;}
.y6_c00077{bottom:966.186280pt;}
.y5_c00077{bottom:993.866269pt;}
.y2_c00077{bottom:1028.426255pt;}
.y1_c00077{bottom:1062.986241pt;}
.h7_c00077{height:24.740615pt;}
.h2_c00077{height:39.243734pt;}
.h4_c00077{height:42.084358pt;}
.h1_c00077{height:52.134354pt;}
.h6_c00077{height:57.787477pt;}
.h3_c00077{height:62.812475pt;}
.h5_c00077{height:64.499974pt;}
.h0_c00077{height:1122.666667pt;}
.w0_c00077{width:793.333333pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:113.599955pt;}
.x9_c00077{left:122.879951pt;}
.xa_c00077{left:126.239950pt;}
.x3_c00077{left:160.800071pt;}
.x7_c00077{left:171.519581pt;}
.x6_c00077{left:195.199592pt;}
.x8_c00077{left:211.839915pt;}
.x2_c00077{left:389.600031pt;}
.xb_c00077{left:391.839843pt;}
.x4_c00077{left:540.159784pt;}
.x5_c00077{left:551.039780pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff7ef1b70a17f53f0427b2e5.woff2')format("woff");}.ff1_c00078{font-family:ff1_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:ff2_c00078;src:url('chunks/assets/font_5cf3ab6eb3d9e436ccbd4701.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:0.675781;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_66b73b0417965e474dbcaf40.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;}
.m0_c00078{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls4_c00078{letter-spacing:0.000000px;}
.ls1_c00078{letter-spacing:0.042600px;}
.ls2_c00078{letter-spacing:0.153901px;}
.ls3_c00078{letter-spacing:0.189300px;}
.ls0_c00078{letter-spacing:34.015846px;}
.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:-17.999993px;}
.ws3_c00078{word-spacing:-14.939994px;}
.ws1_c00078{word-spacing:-12.059995px;}
.ws2_c00078{word-spacing:-8.786876px;}
.ws4_c00078{word-spacing:0.000000px;}
._3_c00078{margin-left:-12.716934px;}
._2_c00078{margin-left:-2.252350px;}
._1_c00078{margin-left:-1.105374px;}
._0_c00078{width:1.478351px;}
._4_c00078{width:5.952841px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs4_c00078{font-size:38.879984px;}
.fs3_c00078{font-size:48.239981px;}
.fs0_c00078{font-size:59.759976px;}
.fs1_c00078{font-size:66.239974px;}
.fs2_c00078{font-size:71.999971px;}
.y0_c00078{bottom:0.000000px;}
.y4_c00078{bottom:75.720270px;}
.y3_c00078{bottom:113.880254px;}
.y1b_c00078{bottom:142.140243px;}
.y1a_c00078{bottom:149.700240px;}
.y19_c00078{bottom:161.039936px;}
.y18_c00078{bottom:180.299928px;}
.y17_c00078{bottom:197.939921px;}
.y16_c00078{bottom:205.499918px;}
.y15_c00078{bottom:216.839913px;}
.y14_c00078{bottom:237.719905px;}
.y13_c00078{bottom:272.279891px;}
.y11_c00078{bottom:307.019877px;}
.y12_c00078{bottom:315.299874px;}
.y10_c00078{bottom:341.579863px;}
.yf_c00078{bottom:372.719851px;}
.ye_c00078{bottom:407.279837px;}
.yd_c00078{bottom:440.759824px;}
.yc_c00078{bottom:469.199812px;}
.yb_c00078{bottom:497.999801px;}
.ya_c00078{bottom:973.739611px;}
.y8_c00078{bottom:1025.759590px;}
.y9_c00078{bottom:1034.039586px;}
.y7_c00078{bottom:1056.719577px;}
.y6_c00078{bottom:1087.859565px;}
.y5_c00078{bottom:1118.819552px;}
.y2_c00078{bottom:1175.879530px;}
.y1_c00078{bottom:1196.039522px;}
.h8_c00078{height:25.913662px;}
.h2_c00078{height:44.149201px;}
.h4_c00078{height:47.344903px;}
.h1_c00078{height:58.651148px;}
.h6_c00078{height:65.010911px;}
.h7_c00078{height:70.628878px;}
.h5_c00078{height:70.664034px;}
.h3_c00078{height:75.093720px;}
.h0_c00078{height:1263.000000px;}
.w0_c00078{width:892.500000px;}
.x0_c00078{left:0.000000px;}
.x5_c00078{left:127.799739px;}
.xe_c00078{left:137.519945px;}
.x6_c00078{left:154.799938px;}
.xc_c00078{left:180.899928px;}
.x1_c00078{left:181.979927px;}
.xa_c00078{left:216.179914px;}
.xb_c00078{left:264.419979px;}
.x2_c00078{left:329.219408px;}
.x7_c00078{left:433.259827px;}
.x4_c00078{left:438.299825px;}
.x8_c00078{left:445.499822px;}
.x9_c00078{left:603.719354px;}
.xd_c00078{left:615.239754px;}
.x3_c00078{left:765.539694px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls4_c00078{letter-spacing:0.000000pt;}
.ls1_c00078{letter-spacing:0.037867pt;}
.ls2_c00078{letter-spacing:0.136801pt;}
.ls3_c00078{letter-spacing:0.168267pt;}
.ls0_c00078{letter-spacing:30.236308pt;}
.ws0_c00078{word-spacing:-15.999994pt;}
.ws3_c00078{word-spacing:-13.279995pt;}
.ws1_c00078{word-spacing:-10.719996pt;}
.ws2_c00078{word-spacing:-7.810557pt;}
.ws4_c00078{word-spacing:0.000000pt;}
._3_c00078{margin-left:-11.303941pt;}
._2_c00078{margin-left:-2.002089pt;}
._1_c00078{margin-left:-0.982555pt;}
._0_c00078{width:1.314090pt;}
._4_c00078{width:5.291414pt;}
.fs4_c00078{font-size:34.559986pt;}
.fs3_c00078{font-size:42.879983pt;}
.fs0_c00078{font-size:53.119979pt;}
.fs1_c00078{font-size:58.879976pt;}
.fs2_c00078{font-size:63.999974pt;}
.y0_c00078{bottom:0.000000pt;}
.y4_c00078{bottom:67.306906pt;}
.y3_c00078{bottom:101.226893pt;}
.y1b_c00078{bottom:126.346883pt;}
.y1a_c00078{bottom:133.066880pt;}
.y19_c00078{bottom:143.146609pt;}
.y18_c00078{bottom:160.266603pt;}
.y17_c00078{bottom:175.946596pt;}
.y16_c00078{bottom:182.666594pt;}
.y15_c00078{bottom:192.746590pt;}
.y14_c00078{bottom:211.306582pt;}
.y13_c00078{bottom:242.026570pt;}
.y11_c00078{bottom:272.906558pt;}
.y12_c00078{bottom:280.266555pt;}
.y10_c00078{bottom:303.626545pt;}
.yf_c00078{bottom:331.306534pt;}
.ye_c00078{bottom:362.026522pt;}
.yd_c00078{bottom:391.786510pt;}
.yc_c00078{bottom:417.066500pt;}
.yb_c00078{bottom:442.666490pt;}
.ya_c00078{bottom:865.546320pt;}
.y8_c00078{bottom:911.786302pt;}
.y9_c00078{bottom:919.146299pt;}
.y7_c00078{bottom:939.306291pt;}
.y6_c00078{bottom:966.986280pt;}
.y5_c00078{bottom:994.506269pt;}
.y2_c00078{bottom:1045.226249pt;}
.y1_c00078{bottom:1063.146241pt;}
.h8_c00078{height:23.034366pt;}
.h2_c00078{height:39.243734pt;}
.h4_c00078{height:42.084358pt;}
.h1_c00078{height:52.134354pt;}
.h6_c00078{height:57.787477pt;}
.h7_c00078{height:62.781225pt;}
.h5_c00078{height:62.812475pt;}
.h3_c00078{height:66.749973pt;}
.h0_c00078{height:1122.666667pt;}
.w0_c00078{width:793.333333pt;}
.x0_c00078{left:0.000000pt;}
.x5_c00078{left:113.599768pt;}
.xe_c00078{left:122.239951pt;}
.x6_c00078{left:137.599945pt;}
.xc_c00078{left:160.799936pt;}
.x1_c00078{left:161.759935pt;}
.xa_c00078{left:192.159923pt;}
.xb_c00078{left:235.039982pt;}
.x2_c00078{left:292.639474pt;}
.x7_c00078{left:385.119846pt;}
.x4_c00078{left:389.599844pt;}
.x8_c00078{left:395.999842pt;}
.x9_c00078{left:536.639426pt;}
.xd_c00078{left:546.879781pt;}
.x3_c00078{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc74f1cb82ab957717d3a737.woff2')format("woff");}.ff1_c00079{font-family:ff1_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:ff2_c00079;src:url('chunks/assets/font_fb61375f15a0d489e5b06f1f.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:0.675781;font-style:normal;font-weight:normal;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_3e73ad5c10488b5858558608.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;}
.m0_c00079{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls1_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.153901px;}
.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:-17.999993px;}
.ws0_c00079{word-spacing:-12.059995px;}
.ws2_c00079{word-spacing:-9.437756px;}
.ws3_c00079{word-spacing:0.000000px;}
._f_c00079{margin-left:-12.716934px;}
._a_c00079{margin-left:-2.139990px;}
._1_c00079{margin-left:-1.105374px;}
._0_c00079{width:1.195563px;}
._2_c00079{width:2.222476px;}
._3_c00079{width:3.689510px;}
._7_c00079{width:6.267659px;}
._8_c00079{width:7.448270px;}
._9_c00079{width:8.696380px;}
._b_c00079{width:10.248915px;}
._5_c00079{width:12.183431px;}
._6_c00079{width:13.491792px;}
._c_c00079{width:14.623717px;}
._4_c00079{width:16.842562px;}
._d_c00079{width:24.800292px;}
._e_c00079{width:26.557177px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs4_c00079{font-size:41.759983px;}
.fs3_c00079{font-size:48.239981px;}
.fs0_c00079{font-size:59.759976px;}
.fs1_c00079{font-size:66.239974px;}
.fs2_c00079{font-size:71.999971px;}
.y0_c00079{bottom:0.000000px;}
.y4_c00079{bottom:75.719970px;}
.y3_c00079{bottom:113.879954px;}
.y22_c00079{bottom:134.220246px;}
.y21_c00079{bottom:153.299939px;}
.y20_c00079{bottom:171.479931px;}
.y1f_c00079{bottom:179.039928px;}
.y1e_c00079{bottom:191.639923px;}
.y1d_c00079{bottom:261.299895px;}
.y1c_c00079{bottom:292.439883px;}
.y1b_c00079{bottom:323.399871px;}
.y1a_c00079{bottom:354.539858px;}
.y19_c00079{bottom:385.499846px;}
.y18_c00079{bottom:416.639833px;}
.y17_c00079{bottom:447.599821px;}
.y16_c00079{bottom:478.739809px;}
.y15_c00079{bottom:509.699796px;}
.y14_c00079{bottom:540.839784px;}
.y12_c00079{bottom:571.799771px;}
.y13_c00079{bottom:580.079768px;}
.y11_c00079{bottom:602.939759px;}
.y10_c00079{bottom:633.899746px;}
.yf_c00079{bottom:665.039734px;}
.ye_c00079{bottom:695.999722px;}
.yd_c00079{bottom:727.139709px;}
.yc_c00079{bottom:758.099697px;}
.yb_c00079{bottom:789.239684px;}
.ya_c00079{bottom:822.719671px;}
.y9_c00079{bottom:854.759658px;}
.y8_c00079{bottom:883.199647px;}
.y7_c00079{bottom:912.179635px;}
.y6_c00079{bottom:1083.359567px;}
.y5_c00079{bottom:1118.099553px;}
.y2_c00079{bottom:1156.979537px;}
.y1_c00079{bottom:1195.859522px;}
.h6_c00079{height:27.833192px;}
.h2_c00079{height:44.149201px;}
.h5_c00079{height:47.344903px;}
.h1_c00079{height:58.651148px;}
.h4_c00079{height:65.010911px;}
.h3_c00079{height:70.664034px;}
.h0_c00079{height:1263.000000px;}
.w0_c00079{width:892.500000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:127.799949px;}
.xa_c00079{left:138.239945px;}
.x5_c00079{left:142.379943px;}
.xb_c00079{left:145.259942px;}
.x3_c00079{left:180.899928px;}
.x6_c00079{left:256.679980px;}
.x2_c00079{left:438.300034px;}
.x7_c00079{left:446.579676px;}
.x8_c00079{left:619.199752px;}
.x9_c00079{left:631.439747px;}
.x4_c00079{left:703.078951px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls1_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.136801pt;}
.ws1_c00079{word-spacing:-15.999994pt;}
.ws0_c00079{word-spacing:-10.719996pt;}
.ws2_c00079{word-spacing:-8.389117pt;}
.ws3_c00079{word-spacing:0.000000pt;}
._f_c00079{margin-left:-11.303941pt;}
._a_c00079{margin-left:-1.902214pt;}
._1_c00079{margin-left:-0.982555pt;}
._0_c00079{width:1.062723pt;}
._2_c00079{width:1.975534pt;}
._3_c00079{width:3.279564pt;}
._7_c00079{width:5.571252pt;}
._8_c00079{width:6.620684pt;}
._9_c00079{width:7.730116pt;}
._b_c00079{width:9.110147pt;}
._5_c00079{width:10.829717pt;}
._6_c00079{width:11.992704pt;}
._c_c00079{width:12.998859pt;}
._4_c00079{width:14.971166pt;}
._d_c00079{width:22.044704pt;}
._e_c00079{width:23.606380pt;}
.fs4_c00079{font-size:37.119985pt;}
.fs3_c00079{font-size:42.879983pt;}
.fs0_c00079{font-size:53.119979pt;}
.fs1_c00079{font-size:58.879976pt;}
.fs2_c00079{font-size:63.999974pt;}
.y0_c00079{bottom:0.000000pt;}
.y4_c00079{bottom:67.306640pt;}
.y3_c00079{bottom:101.226626pt;}
.y22_c00079{bottom:119.306886pt;}
.y21_c00079{bottom:136.266612pt;}
.y20_c00079{bottom:152.426606pt;}
.y1f_c00079{bottom:159.146603pt;}
.y1e_c00079{bottom:170.346599pt;}
.y1d_c00079{bottom:232.266574pt;}
.y1c_c00079{bottom:259.946563pt;}
.y1b_c00079{bottom:287.466552pt;}
.y1a_c00079{bottom:315.146541pt;}
.y19_c00079{bottom:342.666530pt;}
.y18_c00079{bottom:370.346519pt;}
.y17_c00079{bottom:397.866508pt;}
.y16_c00079{bottom:425.546496pt;}
.y15_c00079{bottom:453.066485pt;}
.y14_c00079{bottom:480.746474pt;}
.y12_c00079{bottom:508.266463pt;}
.y13_c00079{bottom:515.626460pt;}
.y11_c00079{bottom:535.946452pt;}
.y10_c00079{bottom:563.466441pt;}
.yf_c00079{bottom:591.146430pt;}
.ye_c00079{bottom:618.666419pt;}
.yd_c00079{bottom:646.346408pt;}
.yc_c00079{bottom:673.866397pt;}
.yb_c00079{bottom:701.546386pt;}
.ya_c00079{bottom:731.306374pt;}
.y9_c00079{bottom:759.786363pt;}
.y8_c00079{bottom:785.066353pt;}
.y7_c00079{bottom:810.826342pt;}
.y6_c00079{bottom:962.986281pt;}
.y5_c00079{bottom:993.866269pt;}
.y2_c00079{bottom:1028.426255pt;}
.y1_c00079{bottom:1062.986241pt;}
.h6_c00079{height:24.740615pt;}
.h2_c00079{height:39.243734pt;}
.h5_c00079{height:42.084358pt;}
.h1_c00079{height:52.134354pt;}
.h4_c00079{height:57.787477pt;}
.h3_c00079{height:62.812475pt;}
.h0_c00079{height:1122.666667pt;}
.w0_c00079{width:793.333333pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:113.599955pt;}
.xa_c00079{left:122.879951pt;}
.x5_c00079{left:126.559949pt;}
.xb_c00079{left:129.119948pt;}
.x3_c00079{left:160.799936pt;}
.x6_c00079{left:228.159982pt;}
.x2_c00079{left:389.600031pt;}
.x7_c00079{left:396.959712pt;}
.x8_c00079{left:550.399780pt;}
.x9_c00079{left:561.279775pt;}
.x4_c00079{left:624.959068pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7cce07b5d27adcc7c9fc4a2.woff2')format("woff");}.ff1_c00080{font-family:ff1_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:ff2_c00080;src:url('chunks/assets/font_034bd037ccf7d5df3633401e.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:0.675781;font-style:normal;font-weight:normal;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_b4e41954d6314cfa70c0370e.woff2')format("woff");}.ff3_c00080{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws0_c00080{word-spacing:-12.059995px;}
.ws2_c00080{word-spacing:-9.719996px;}
.ws3_c00080{word-spacing:0.000000px;}
._10_c00080{margin-left:-10.037963px;}
._4_c00080{margin-left:-2.139990px;}
._1_c00080{margin-left:-1.105374px;}
._0_c00080{width:1.478351px;}
._f_c00080{width:2.485463px;}
._7_c00080{width:3.633968px;}
._6_c00080{width:4.735966px;}
._8_c00080{width:5.995835px;}
._e_c00080{width:12.364268px;}
._9_c00080{width:13.673914px;}
._a_c00080{width:14.717109px;}
._2_c00080{width:15.969850px;}
._5_c00080{width:19.022818px;}
._3_c00080{width:20.373802px;}
._b_c00080{width:22.263802px;}
._c_c00080{width:26.564731px;}
._d_c00080{width:27.640043px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs4_c00080{font-size:38.879984px;}
.fs3_c00080{font-size:48.239981px;}
.fs0_c00080{font-size:59.759976px;}
.fs1_c00080{font-size:66.239974px;}
.fs2_c00080{font-size:71.999971px;}
.y0_c00080{bottom:0.000000px;}
.y4_c00080{bottom:75.900270px;}
.y3_c00080{bottom:114.060254px;}
.y27_c00080{bottom:156.899937px;}
.y26_c00080{bottom:163.739935px;}
.y25_c00080{bottom:174.539930px;}
.y24_c00080{bottom:192.899923px;}
.y23_c00080{bottom:199.739920px;}
.y22_c00080{bottom:211.799915px;}
.y21_c00080{bottom:266.879893px;}
.y20_c00080{bottom:297.839881px;}
.y1f_c00080{bottom:328.979868px;}
.y1e_c00080{bottom:359.939856px;}
.y1d_c00080{bottom:391.079844px;}
.y1c_c00080{bottom:422.039831px;}
.y1a_c00080{bottom:468.119813px;}
.y1b_c00080{bottom:476.399809px;}
.y19_c00080{bottom:499.079800px;}
.y18_c00080{bottom:530.219788px;}
.y17_c00080{bottom:561.179776px;}
.y16_c00080{bottom:592.319763px;}
.y15_c00080{bottom:623.279751px;}
.y14_c00080{bottom:654.419738px;}
.y13_c00080{bottom:685.379726px;}
.y11_c00080{bottom:731.459707px;}
.y12_c00080{bottom:739.739704px;}
.y10_c00080{bottom:762.599695px;}
.yf_c00080{bottom:793.559683px;}
.ye_c00080{bottom:824.699670px;}
.yd_c00080{bottom:870.599652px;}
.yc_c00080{bottom:901.739639px;}
.yb_c00080{bottom:932.699627px;}
.ya_c00080{bottom:963.839614px;}
.y9_c00080{bottom:994.799602px;}
.y8_c00080{bottom:1025.939590px;}
.y7_c00080{bottom:1056.899577px;}
.y6_c00080{bottom:1088.039565px;}
.y5_c00080{bottom:1118.999552px;}
.y2_c00080{bottom:1176.059530px;}
.y1_c00080{bottom:1196.219522px;}
.h5_c00080{height:38.158578px;}
.h6_c00080{height:39.830258px;}
.h2_c00080{height:44.149201px;}
.h4_c00080{height:47.344903px;}
.h1_c00080{height:58.651148px;}
.h3_c00080{height:70.664034px;}
.h0_c00080{height:1263.000000px;}
.w0_c00080{width:892.500000px;}
.x0_c00080{left:0.000000px;}
.x5_c00080{left:127.619739px;}
.xb_c00080{left:137.339945px;}
.x6_c00080{left:180.719928px;}
.x1_c00080{left:181.799927px;}
.x7_c00080{left:298.079881px;}
.x8_c00080{left:310.319876px;}
.x2_c00080{left:329.039408px;}
.x4_c00080{left:438.119825px;}
.xc_c00080{left:538.199785px;}
.x9_c00080{left:667.979733px;}
.xa_c00080{left:680.219728px;}
.x3_c00080{left:765.359694px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws1_c00080{word-spacing:-15.999994pt;}
.ws0_c00080{word-spacing:-10.719996pt;}
.ws2_c00080{word-spacing:-8.639997pt;}
.ws3_c00080{word-spacing:0.000000pt;}
._10_c00080{margin-left:-8.922634pt;}
._4_c00080{margin-left:-1.902214pt;}
._1_c00080{margin-left:-0.982555pt;}
._0_c00080{width:1.314090pt;}
._f_c00080{width:2.209300pt;}
._7_c00080{width:3.230193pt;}
._6_c00080{width:4.209747pt;}
._8_c00080{width:5.329631pt;}
._e_c00080{width:10.990461pt;}
._9_c00080{width:12.154590pt;}
._a_c00080{width:13.081875pt;}
._2_c00080{width:14.195422pt;}
._5_c00080{width:16.909172pt;}
._3_c00080{width:18.110046pt;}
._b_c00080{width:19.790046pt;}
._c_c00080{width:23.613094pt;}
._d_c00080{width:24.568927pt;}
.fs4_c00080{font-size:34.559986pt;}
.fs3_c00080{font-size:42.879983pt;}
.fs0_c00080{font-size:53.119979pt;}
.fs1_c00080{font-size:58.879976pt;}
.fs2_c00080{font-size:63.999974pt;}
.y0_c00080{bottom:0.000000pt;}
.y4_c00080{bottom:67.466906pt;}
.y3_c00080{bottom:101.386893pt;}
.y27_c00080{bottom:139.466611pt;}
.y26_c00080{bottom:145.546608pt;}
.y25_c00080{bottom:155.146605pt;}
.y24_c00080{bottom:171.466598pt;}
.y23_c00080{bottom:177.546596pt;}
.y22_c00080{bottom:188.266591pt;}
.y21_c00080{bottom:237.226572pt;}
.y20_c00080{bottom:264.746561pt;}
.y1f_c00080{bottom:292.426550pt;}
.y1e_c00080{bottom:319.946539pt;}
.y1d_c00080{bottom:347.626528pt;}
.y1c_c00080{bottom:375.146517pt;}
.y1a_c00080{bottom:416.106500pt;}
.y1b_c00080{bottom:423.466497pt;}
.y19_c00080{bottom:443.626489pt;}
.y18_c00080{bottom:471.306478pt;}
.y17_c00080{bottom:498.826467pt;}
.y16_c00080{bottom:526.506456pt;}
.y15_c00080{bottom:554.026445pt;}
.y14_c00080{bottom:581.706434pt;}
.y13_c00080{bottom:609.226423pt;}
.y11_c00080{bottom:650.186407pt;}
.y12_c00080{bottom:657.546404pt;}
.y10_c00080{bottom:677.866396pt;}
.yf_c00080{bottom:705.386385pt;}
.ye_c00080{bottom:733.066373pt;}
.yd_c00080{bottom:773.866357pt;}
.yc_c00080{bottom:801.546346pt;}
.yb_c00080{bottom:829.066335pt;}
.ya_c00080{bottom:856.746324pt;}
.y9_c00080{bottom:884.266313pt;}
.y8_c00080{bottom:911.946302pt;}
.y7_c00080{bottom:939.466291pt;}
.y6_c00080{bottom:967.146280pt;}
.y5_c00080{bottom:994.666269pt;}
.y2_c00080{bottom:1045.386249pt;}
.y1_c00080{bottom:1063.306241pt;}
.h5_c00080{height:33.918736pt;}
.h6_c00080{height:35.404673pt;}
.h2_c00080{height:39.243734pt;}
.h4_c00080{height:42.084358pt;}
.h1_c00080{height:52.134354pt;}
.h3_c00080{height:62.812475pt;}
.h0_c00080{height:1122.666667pt;}
.w0_c00080{width:793.333333pt;}
.x0_c00080{left:0.000000pt;}
.x5_c00080{left:113.439768pt;}
.xb_c00080{left:122.079951pt;}
.x6_c00080{left:160.639936pt;}
.x1_c00080{left:161.599935pt;}
.x7_c00080{left:264.959894pt;}
.x8_c00080{left:275.839890pt;}
.x2_c00080{left:292.479474pt;}
.x4_c00080{left:389.439844pt;}
.xc_c00080{left:478.399809pt;}
.x9_c00080{left:593.759762pt;}
.xa_c00080{left:604.639758pt;}
.x3_c00080{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdc3375107bff0aa4d9da09b.woff2')format("woff");}.ff1_c00081{font-family:ff1_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:ff2_c00081;src:url('chunks/assets/font_31be8424345a2691eef23b62.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:0.675781;font-style:normal;font-weight:normal;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_59e1c87cbf0bd816ad1b5cbe.woff2')format("woff");}.ff3_c00081{font-family:ff3_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;}
@font-face{font-family:ff4_c00081;src:url('chunks/assets/font_7e1b98c4e632ad34a6bd6c0b.woff2')format("woff");}.ff4_c00081{font-family:ff4_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:ff5_c00081;src:url('chunks/assets/font_ce7dcfcd07ce4a46e4b0d892.woff2')format("woff");}.ff5_c00081{font-family:ff5_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;}
.m0_c00081{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00081{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00081{word-spacing:-12.059995px;}
.ws1_c00081{word-spacing:-9.719996px;}
.ws2_c00081{word-spacing:0.000000px;}
._11_c00081{margin-left:-9.526058px;}
._c_c00081{margin-left:-2.313830px;}
._1_c00081{margin-left:-1.105374px;}
._0_c00081{width:1.195563px;}
._7_c00081{width:2.719972px;}
._3_c00081{width:4.419416px;}
._4_c00081{width:5.483929px;}
._5_c00081{width:7.190066px;}
._6_c00081{width:8.358061px;}
._8_c00081{width:9.539201px;}
._2_c00081{width:11.512620px;}
._b_c00081{width:15.271850px;}
._a_c00081{width:16.701819px;}
._9_c00081{width:19.190441px;}
._f_c00081{width:21.755663px;}
._10_c00081{width:22.828018px;}
._d_c00081{width:28.802836px;}
._e_c00081{width:29.957053px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs4_c00081{font-size:38.879984px;}
.fs3_c00081{font-size:48.239981px;}
.fs0_c00081{font-size:59.759976px;}
.fs1_c00081{font-size:66.239974px;}
.fs2_c00081{font-size:71.999971px;}
.y0_c00081{bottom:0.000000px;}
.y4_c00081{bottom:75.899970px;}
.y3_c00081{bottom:114.059954px;}
.y27_c00081{bottom:156.899937px;}
.y26_c00081{bottom:163.739935px;}
.y25_c00081{bottom:195.239922px;}
.y24_c00081{bottom:212.339915px;}
.y23_c00081{bottom:219.179912px;}
.y22_c00081{bottom:236.639905px;}
.y21_c00081{bottom:269.399892px;}
.y20_c00081{bottom:300.359880px;}
.y1f_c00081{bottom:331.499867px;}
.y1e_c00081{bottom:362.459855px;}
.y1c_c00081{bottom:408.539837px;}
.y1d_c00081{bottom:416.819833px;}
.y1b_c00081{bottom:439.499824px;}
.y1a_c00081{bottom:470.639812px;}
.y19_c00081{bottom:501.599799px;}
.y18_c00081{bottom:532.739787px;}
.y17_c00081{bottom:563.699775px;}
.y16_c00081{bottom:594.839762px;}
.y15_c00081{bottom:625.799750px;}
.y14_c00081{bottom:656.939737px;}
.y13_c00081{bottom:703.019719px;}
.y12_c00081{bottom:733.979706px;}
.y11_c00081{bottom:765.119694px;}
.y10_c00081{bottom:796.079682px;}
.yf_c00081{bottom:827.039669px;}
.ye_c00081{bottom:858.179657px;}
.yd_c00081{bottom:897.059641px;}
.yc_c00081{bottom:925.859630px;}
.yb_c00081{bottom:963.659615px;}
.y9_c00081{bottom:994.079602px;}
.ya_c00081{bottom:1002.359599px;}
.y8_c00081{bottom:1025.039590px;}
.y7_c00081{bottom:1056.179578px;}
.y6_c00081{bottom:1087.139565px;}
.y5_c00081{bottom:1118.279553px;}
.y2_c00081{bottom:1157.159537px;}
.y1_c00081{bottom:1196.039522px;}
.h6_c00081{height:38.158578px;}
.h2_c00081{height:44.149201px;}
.h4_c00081{height:47.344903px;}
.h1_c00081{height:58.651148px;}
.h5_c00081{height:66.757473px;}
.h3_c00081{height:70.664034px;}
.h0_c00081{height:1263.000000px;}
.w0_c00081{width:892.500000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:127.619949px;}
.x8_c00081{left:137.339945px;}
.x3_c00081{left:180.719928px;}
.x6_c00081{left:266.039894px;}
.x7_c00081{left:278.279889px;}
.x9_c00081{left:305.099878px;}
.x4_c00081{left:316.619873px;}
.x5_c00081{left:328.859868px;}
.x2_c00081{left:438.120035px;}
.xa_c00081{left:593.819762px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:-10.719996pt;}
.ws1_c00081{word-spacing:-8.639997pt;}
.ws2_c00081{word-spacing:0.000000pt;}
._11_c00081{margin-left:-8.467607pt;}
._c_c00081{margin-left:-2.056737pt;}
._1_c00081{margin-left:-0.982555pt;}
._0_c00081{width:1.062723pt;}
._7_c00081{width:2.417753pt;}
._3_c00081{width:3.928370pt;}
._4_c00081{width:4.874603pt;}
._5_c00081{width:6.391170pt;}
._6_c00081{width:7.429387pt;}
._8_c00081{width:8.479290pt;}
._2_c00081{width:10.233440pt;}
._b_c00081{width:13.574978pt;}
._a_c00081{width:14.846062pt;}
._9_c00081{width:17.058170pt;}
._f_c00081{width:19.338367pt;}
._10_c00081{width:20.291572pt;}
._d_c00081{width:25.602521pt;}
._e_c00081{width:26.628492pt;}
.fs4_c00081{font-size:34.559986pt;}
.fs3_c00081{font-size:42.879983pt;}
.fs0_c00081{font-size:53.119979pt;}
.fs1_c00081{font-size:58.879976pt;}
.fs2_c00081{font-size:63.999974pt;}
.y0_c00081{bottom:0.000000pt;}
.y4_c00081{bottom:67.466640pt;}
.y3_c00081{bottom:101.386626pt;}
.y27_c00081{bottom:139.466611pt;}
.y26_c00081{bottom:145.546608pt;}
.y25_c00081{bottom:173.546597pt;}
.y24_c00081{bottom:188.746591pt;}
.y23_c00081{bottom:194.826589pt;}
.y22_c00081{bottom:210.346583pt;}
.y21_c00081{bottom:239.466571pt;}
.y20_c00081{bottom:266.986560pt;}
.y1f_c00081{bottom:294.666549pt;}
.y1e_c00081{bottom:322.186538pt;}
.y1c_c00081{bottom:363.146521pt;}
.y1d_c00081{bottom:370.506518pt;}
.y1b_c00081{bottom:390.666510pt;}
.y1a_c00081{bottom:418.346499pt;}
.y19_c00081{bottom:445.866488pt;}
.y18_c00081{bottom:473.546477pt;}
.y17_c00081{bottom:501.066466pt;}
.y16_c00081{bottom:528.746455pt;}
.y15_c00081{bottom:556.266444pt;}
.y14_c00081{bottom:583.946433pt;}
.y13_c00081{bottom:624.906417pt;}
.y12_c00081{bottom:652.426406pt;}
.y11_c00081{bottom:680.106395pt;}
.y10_c00081{bottom:707.626384pt;}
.yf_c00081{bottom:735.146373pt;}
.ye_c00081{bottom:762.826362pt;}
.yd_c00081{bottom:797.386348pt;}
.yc_c00081{bottom:822.986337pt;}
.yb_c00081{bottom:856.586324pt;}
.y9_c00081{bottom:883.626313pt;}
.ya_c00081{bottom:890.986310pt;}
.y8_c00081{bottom:911.146302pt;}
.y7_c00081{bottom:938.826291pt;}
.y6_c00081{bottom:966.346280pt;}
.y5_c00081{bottom:994.026269pt;}
.y2_c00081{bottom:1028.586255pt;}
.y1_c00081{bottom:1063.146241pt;}
.h6_c00081{height:33.918736pt;}
.h2_c00081{height:39.243734pt;}
.h4_c00081{height:42.084358pt;}
.h1_c00081{height:52.134354pt;}
.h5_c00081{height:59.339976pt;}
.h3_c00081{height:62.812475pt;}
.h0_c00081{height:1122.666667pt;}
.w0_c00081{width:793.333333pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:113.439955pt;}
.x8_c00081{left:122.079951pt;}
.x3_c00081{left:160.639936pt;}
.x6_c00081{left:236.479905pt;}
.x7_c00081{left:247.359901pt;}
.x9_c00081{left:271.199892pt;}
.x4_c00081{left:281.439887pt;}
.x5_c00081{left:292.319883pt;}
.x2_c00081{left:389.440031pt;}
.xa_c00081{left:527.839789pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22935a164b62f823debd5408.woff2')format("woff");}.ff1_c00082{font-family:ff1_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:ff2_c00082;src:url('chunks/assets/font_4a0ccb6bddf956610ad84792.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:0.675781;font-style:normal;font-weight:normal;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_fffd66ed516098469fce774f.woff2')format("woff");}.ff3_c00082{font-family:ff3_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:ff4_c00082;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:2.350619px;}
.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:-17.999993px;}
.ws0_c00082{word-spacing:-12.059995px;}
.ws2_c00082{word-spacing:-9.437756px;}
.ws3_c00082{word-spacing:0.000000px;}
._10_c00082{margin-left:-9.388039px;}
._1_c00082{margin-left:-1.105374px;}
._0_c00082{width:1.478351px;}
._3_c00082{width:2.549289px;}
._2_c00082{width:3.578956px;}
._7_c00082{width:5.345910px;}
._6_c00082{width:6.536938px;}
._4_c00082{width:7.687291px;}
._5_c00082{width:9.169617px;}
._f_c00082{width:10.914785px;}
._e_c00082{width:12.053429px;}
._8_c00082{width:13.471911px;}
._9_c00082{width:14.647313px;}
._d_c00082{width:20.789601px;}
._a_c00082{width:21.865459px;}
._b_c00082{width:23.312297px;}
._c_c00082{width:28.778036px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs4_c00082{font-size:41.759983px;}
.fs3_c00082{font-size:48.239981px;}
.fs0_c00082{font-size:59.759976px;}
.fs1_c00082{font-size:66.239974px;}
.fs2_c00082{font-size:71.999971px;}
.y0_c00082{bottom:0.000000px;}
.y4_c00082{bottom:75.900270px;}
.y3_c00082{bottom:114.060254px;}
.y2b_c00082{bottom:134.400246px;}
.y2a_c00082{bottom:154.379938px;}
.y29_c00082{bottom:161.939935px;}
.y28_c00082{bottom:174.539930px;}
.y27_c00082{bottom:193.799922px;}
.y26_c00082{bottom:211.979915px;}
.y25_c00082{bottom:219.539912px;}
.y24_c00082{bottom:232.139907px;}
.y23_c00082{bottom:251.399899px;}
.y22_c00082{bottom:269.579892px;}
.y21_c00082{bottom:277.139889px;}
.y20_c00082{bottom:289.739884px;}
.y1e_c00082{bottom:374.879850px;}
.y1f_c00082{bottom:383.159847px;}
.y1d_c00082{bottom:406.019838px;}
.y1c_c00082{bottom:436.979825px;}
.y1b_c00082{bottom:468.119813px;}
.y1a_c00082{bottom:499.079800px;}
.y19_c00082{bottom:530.219788px;}
.y18_c00082{bottom:561.179776px;}
.y17_c00082{bottom:592.319763px;}
.y16_c00082{bottom:623.279751px;}
.y15_c00082{bottom:654.419738px;}
.y13_c00082{bottom:700.499720px;}
.y14_c00082{bottom:708.779716px;}
.y12_c00082{bottom:731.459707px;}
.y11_c00082{bottom:762.599695px;}
.y10_c00082{bottom:793.559683px;}
.yf_c00082{bottom:824.699670px;}
.ye_c00082{bottom:855.659658px;}
.yd_c00082{bottom:886.799645px;}
.yc_c00082{bottom:917.759633px;}
.yb_c00082{bottom:948.719621px;}
.y9_c00082{bottom:994.799602px;}
.ya_c00082{bottom:1003.079599px;}
.y8_c00082{bottom:1025.939590px;}
.y7_c00082{bottom:1056.899577px;}
.y6_c00082{bottom:1088.039565px;}
.y5_c00082{bottom:1118.999552px;}
.y2_c00082{bottom:1176.059530px;}
.y1_c00082{bottom:1196.219522px;}
.h5_c00082{height:27.833192px;}
.h2_c00082{height:44.149201px;}
.h4_c00082{height:47.344903px;}
.h1_c00082{height:58.651148px;}
.h6_c00082{height:60.226851px;}
.h3_c00082{height:70.664034px;}
.h0_c00082{height:1263.000000px;}
.w0_c00082{width:892.500000px;}
.x0_c00082{left:0.000000px;}
.x5_c00082{left:127.619739px;}
.xd_c00082{left:138.059945px;}
.xe_c00082{left:142.019943px;}
.x6_c00082{left:180.719928px;}
.x1_c00082{left:181.799927px;}
.xb_c00082{left:215.099914px;}
.xc_c00082{left:227.339909px;}
.x7_c00082{left:295.559882px;}
.x8_c00082{left:307.799877px;}
.x2_c00082{left:329.039408px;}
.x4_c00082{left:438.119825px;}
.x9_c00082{left:734.399706px;}
.xa_c00082{left:746.639701px;}
.x3_c00082{left:765.359694px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:2.089439pt;}
.ws1_c00082{word-spacing:-15.999994pt;}
.ws0_c00082{word-spacing:-10.719996pt;}
.ws2_c00082{word-spacing:-8.389117pt;}
.ws3_c00082{word-spacing:0.000000pt;}
._10_c00082{margin-left:-8.344924pt;}
._1_c00082{margin-left:-0.982555pt;}
._0_c00082{width:1.314090pt;}
._3_c00082{width:2.266035pt;}
._2_c00082{width:3.181294pt;}
._7_c00082{width:4.751920pt;}
._6_c00082{width:5.810612pt;}
._4_c00082{width:6.833148pt;}
._5_c00082{width:8.150771pt;}
._f_c00082{width:9.702031pt;}
._e_c00082{width:10.714159pt;}
._8_c00082{width:11.975032pt;}
._9_c00082{width:13.019833pt;}
._d_c00082{width:18.479646pt;}
._a_c00082{width:19.435964pt;}
._b_c00082{width:20.722042pt;}
._c_c00082{width:25.580476pt;}
.fs4_c00082{font-size:37.119985pt;}
.fs3_c00082{font-size:42.879983pt;}
.fs0_c00082{font-size:53.119979pt;}
.fs1_c00082{font-size:58.879976pt;}
.fs2_c00082{font-size:63.999974pt;}
.y0_c00082{bottom:0.000000pt;}
.y4_c00082{bottom:67.466906pt;}
.y3_c00082{bottom:101.386893pt;}
.y2b_c00082{bottom:119.466886pt;}
.y2a_c00082{bottom:137.226612pt;}
.y29_c00082{bottom:143.946609pt;}
.y28_c00082{bottom:155.146605pt;}
.y27_c00082{bottom:172.266598pt;}
.y26_c00082{bottom:188.426591pt;}
.y25_c00082{bottom:195.146589pt;}
.y24_c00082{bottom:206.346584pt;}
.y23_c00082{bottom:223.466577pt;}
.y22_c00082{bottom:239.626571pt;}
.y21_c00082{bottom:246.346568pt;}
.y20_c00082{bottom:257.546564pt;}
.y1e_c00082{bottom:333.226533pt;}
.y1f_c00082{bottom:340.586530pt;}
.y1d_c00082{bottom:360.906522pt;}
.y1c_c00082{bottom:388.426511pt;}
.y1b_c00082{bottom:416.106500pt;}
.y1a_c00082{bottom:443.626489pt;}
.y19_c00082{bottom:471.306478pt;}
.y18_c00082{bottom:498.826467pt;}
.y17_c00082{bottom:526.506456pt;}
.y16_c00082{bottom:554.026445pt;}
.y15_c00082{bottom:581.706434pt;}
.y13_c00082{bottom:622.666418pt;}
.y14_c00082{bottom:630.026415pt;}
.y12_c00082{bottom:650.186407pt;}
.y11_c00082{bottom:677.866396pt;}
.y10_c00082{bottom:705.386385pt;}
.yf_c00082{bottom:733.066373pt;}
.ye_c00082{bottom:760.586362pt;}
.yd_c00082{bottom:788.266351pt;}
.yc_c00082{bottom:815.786340pt;}
.yb_c00082{bottom:843.306329pt;}
.y9_c00082{bottom:884.266313pt;}
.ya_c00082{bottom:891.626310pt;}
.y8_c00082{bottom:911.946302pt;}
.y7_c00082{bottom:939.466291pt;}
.y6_c00082{bottom:967.146280pt;}
.y5_c00082{bottom:994.666269pt;}
.y2_c00082{bottom:1045.386249pt;}
.y1_c00082{bottom:1063.306241pt;}
.h5_c00082{height:24.740615pt;}
.h2_c00082{height:39.243734pt;}
.h4_c00082{height:42.084358pt;}
.h1_c00082{height:52.134354pt;}
.h6_c00082{height:53.534979pt;}
.h3_c00082{height:62.812475pt;}
.h0_c00082{height:1122.666667pt;}
.w0_c00082{width:793.333333pt;}
.x0_c00082{left:0.000000pt;}
.x5_c00082{left:113.439768pt;}
.xd_c00082{left:122.719951pt;}
.xe_c00082{left:126.239950pt;}
.x6_c00082{left:160.639936pt;}
.x1_c00082{left:161.599935pt;}
.xb_c00082{left:191.199924pt;}
.xc_c00082{left:202.079919pt;}
.x7_c00082{left:262.719895pt;}
.x8_c00082{left:273.599891pt;}
.x2_c00082{left:292.479474pt;}
.x4_c00082{left:389.439844pt;}
.x9_c00082{left:652.799739pt;}
.xa_c00082{left:663.679735pt;}
.x3_c00082{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7631699ea95e2b51fa735e8.woff2')format("woff");}.ff1_c00083{font-family:ff1_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:ff2_c00083;src:url('chunks/assets/font_7b0af0d1272783ba457d6eaf.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:0.675781;font-style:normal;font-weight:normal;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_4b28e870c358ed2fd7a6de58.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;}
.m0_c00083{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00083{word-spacing:-17.999993px;}
.ws1_c00083{word-spacing:-12.059995px;}
.ws2_c00083{word-spacing:-9.437756px;}
.ws3_c00083{word-spacing:0.000000px;}
._12_c00083{margin-left:-9.239566px;}
._1_c00083{margin-left:-1.105374px;}
._0_c00083{width:1.195563px;}
._6_c00083{width:2.665536px;}
._7_c00083{width:4.176775px;}
._f_c00083{width:5.197437px;}
._5_c00083{width:6.222747px;}
._4_c00083{width:7.715603px;}
._8_c00083{width:9.694147px;}
._3_c00083{width:10.858155px;}
._2_c00083{width:12.327441px;}
._10_c00083{width:13.471911px;}
._9_c00083{width:14.577364px;}
._a_c00083{width:15.811718px;}
._d_c00083{width:16.843757px;}
._e_c00083{width:19.056118px;}
._b_c00083{width:28.568997px;}
._c_c00083{width:29.729854px;}
._11_c00083{width:40.637882px;}
.fc1_c00083{color:rgb(255,0,0);}
.fc0_c00083{color:rgb(0,0,0);}
.fs4_c00083{font-size:41.759983px;}
.fs3_c00083{font-size:48.239981px;}
.fs0_c00083{font-size:59.759976px;}
.fs1_c00083{font-size:66.239974px;}
.fs2_c00083{font-size:71.999971px;}
.y0_c00083{bottom:0.000000px;}
.y4_c00083{bottom:75.899970px;}
.y3_c00083{bottom:114.059954px;}
.y28_c00083{bottom:134.400246px;}
.y27_c00083{bottom:154.379938px;}
.y26_c00083{bottom:161.939935px;}
.y25_c00083{bottom:189.479924px;}
.y24_c00083{bottom:197.039921px;}
.y23_c00083{bottom:224.579910px;}
.y22_c00083{bottom:244.919902px;}
.y21_c00083{bottom:280.919888px;}
.y20_c00083{bottom:312.059875px;}
.y1e_c00083{bottom:358.139857px;}
.y1f_c00083{bottom:366.419853px;}
.y1d_c00083{bottom:389.099844px;}
.y1c_c00083{bottom:420.239832px;}
.y1b_c00083{bottom:451.199820px;}
.y1a_c00083{bottom:482.159807px;}
.y19_c00083{bottom:513.299795px;}
.y18_c00083{bottom:544.259782px;}
.y17_c00083{bottom:575.399770px;}
.y16_c00083{bottom:606.359757px;}
.y15_c00083{bottom:637.499745px;}
.y14_c00083{bottom:668.459733px;}
.y13_c00083{bottom:699.599720px;}
.y12_c00083{bottom:730.559708px;}
.y11_c00083{bottom:761.699695px;}
.yf_c00083{bottom:807.779677px;}
.y10_c00083{bottom:816.059674px;}
.ye_c00083{bottom:838.739665px;}
.yd_c00083{bottom:869.879652px;}
.yc_c00083{bottom:900.839640px;}
.yb_c00083{bottom:931.979627px;}
.ya_c00083{bottom:962.939615px;}
.y9_c00083{bottom:994.079602px;}
.y8_c00083{bottom:1025.039590px;}
.y7_c00083{bottom:1056.179578px;}
.y6_c00083{bottom:1087.139565px;}
.y5_c00083{bottom:1118.279553px;}
.y2_c00083{bottom:1157.159537px;}
.y1_c00083{bottom:1196.039522px;}
.h5_c00083{height:27.833192px;}
.h2_c00083{height:44.149201px;}
.h4_c00083{height:47.344903px;}
.h1_c00083{height:58.651148px;}
.h3_c00083{height:70.664034px;}
.h0_c00083{height:1263.000000px;}
.w0_c00083{width:892.500000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:127.619949px;}
.x8_c00083{left:138.059945px;}
.x9_c00083{left:141.839943px;}
.x3_c00083{left:180.719928px;}
.x4_c00083{left:194.039922px;}
.x5_c00083{left:206.279917px;}
.x6_c00083{left:237.059905px;}
.x7_c00083{left:249.299900px;}
.x2_c00083{left:438.120035px;}
.xa_c00083{left:472.139811px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:-15.999994pt;}
.ws1_c00083{word-spacing:-10.719996pt;}
.ws2_c00083{word-spacing:-8.389117pt;}
.ws3_c00083{word-spacing:0.000000pt;}
._12_c00083{margin-left:-8.212948pt;}
._1_c00083{margin-left:-0.982555pt;}
._0_c00083{width:1.062723pt;}
._6_c00083{width:2.369365pt;}
._7_c00083{width:3.712688pt;}
._f_c00083{width:4.619944pt;}
._5_c00083{width:5.531331pt;}
._4_c00083{width:6.858313pt;}
._8_c00083{width:8.617019pt;}
._3_c00083{width:9.651694pt;}
._2_c00083{width:10.957725pt;}
._10_c00083{width:11.975032pt;}
._9_c00083{width:12.957657pt;}
._a_c00083{width:14.054860pt;}
._d_c00083{width:14.972229pt;}
._e_c00083{width:16.938771pt;}
._b_c00083{width:25.394664pt;}
._c_c00083{width:26.426537pt;}
._11_c00083{width:36.122561pt;}
.fs4_c00083{font-size:37.119985pt;}
.fs3_c00083{font-size:42.879983pt;}
.fs0_c00083{font-size:53.119979pt;}
.fs1_c00083{font-size:58.879976pt;}
.fs2_c00083{font-size:63.999974pt;}
.y0_c00083{bottom:0.000000pt;}
.y4_c00083{bottom:67.466640pt;}
.y3_c00083{bottom:101.386626pt;}
.y28_c00083{bottom:119.466886pt;}
.y27_c00083{bottom:137.226612pt;}
.y26_c00083{bottom:143.946609pt;}
.y25_c00083{bottom:168.426599pt;}
.y24_c00083{bottom:175.146597pt;}
.y23_c00083{bottom:199.626587pt;}
.y22_c00083{bottom:217.706580pt;}
.y21_c00083{bottom:249.706567pt;}
.y20_c00083{bottom:277.386556pt;}
.y1e_c00083{bottom:318.346539pt;}
.y1f_c00083{bottom:325.706536pt;}
.y1d_c00083{bottom:345.866528pt;}
.y1c_c00083{bottom:373.546517pt;}
.y1b_c00083{bottom:401.066506pt;}
.y1a_c00083{bottom:428.586495pt;}
.y19_c00083{bottom:456.266484pt;}
.y18_c00083{bottom:483.786473pt;}
.y17_c00083{bottom:511.466462pt;}
.y16_c00083{bottom:538.986451pt;}
.y15_c00083{bottom:566.666440pt;}
.y14_c00083{bottom:594.186429pt;}
.y13_c00083{bottom:621.866418pt;}
.y12_c00083{bottom:649.386407pt;}
.y11_c00083{bottom:677.066396pt;}
.yf_c00083{bottom:718.026379pt;}
.y10_c00083{bottom:725.386377pt;}
.ye_c00083{bottom:745.546368pt;}
.yd_c00083{bottom:773.226357pt;}
.yc_c00083{bottom:800.746346pt;}
.yb_c00083{bottom:828.426335pt;}
.ya_c00083{bottom:855.946324pt;}
.y9_c00083{bottom:883.626313pt;}
.y8_c00083{bottom:911.146302pt;}
.y7_c00083{bottom:938.826291pt;}
.y6_c00083{bottom:966.346280pt;}
.y5_c00083{bottom:994.026269pt;}
.y2_c00083{bottom:1028.586255pt;}
.y1_c00083{bottom:1063.146241pt;}
.h5_c00083{height:24.740615pt;}
.h2_c00083{height:39.243734pt;}
.h4_c00083{height:42.084358pt;}
.h1_c00083{height:52.134354pt;}
.h3_c00083{height:62.812475pt;}
.h0_c00083{height:1122.666667pt;}
.w0_c00083{width:793.333333pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:113.439955pt;}
.x8_c00083{left:122.719951pt;}
.x9_c00083{left:126.079950pt;}
.x3_c00083{left:160.639936pt;}
.x4_c00083{left:172.479931pt;}
.x5_c00083{left:183.359927pt;}
.x6_c00083{left:210.719916pt;}
.x7_c00083{left:221.599911pt;}
.x2_c00083{left:389.440031pt;}
.xa_c00083{left:419.679832pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4917d676e12ddd264887e44.woff2')format("woff");}.ff1_c00084{font-family:ff1_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:ff2_c00084;src:url('chunks/assets/font_53d71d1d3e2379013ece2f13.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:0.675781;font-style:normal;font-weight:normal;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_cf4d443201ea26684dc5e0ef.woff2')format("woff");}.ff3_c00084{font-family:ff3_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:ff4_c00084;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00084{font-family:ff4_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;}
.m0_c00084{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls6_c00084{letter-spacing:0.000000px;}
.ls1_c00084{letter-spacing:0.010620px;}
.ls2_c00084{letter-spacing:0.731040px;}
.ls5_c00084{letter-spacing:1.451459px;}
.ls4_c00084{letter-spacing:4.333198px;}
.ls3_c00084{letter-spacing:7.214877px;}
.ls0_c00084{letter-spacing:12.978295px;}
.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;}
}
.ws1_c00084{word-spacing:-17.999993px;}
.ws0_c00084{word-spacing:-12.059995px;}
.ws3_c00084{word-spacing:-9.719996px;}
.ws2_c00084{word-spacing:-9.437756px;}
.ws4_c00084{word-spacing:0.000000px;}
._e_c00084{margin-left:-10.175147px;}
._1_c00084{margin-left:-1.105374px;}
._0_c00084{width:1.478351px;}
._d_c00084{width:2.552178px;}
._c_c00084{width:4.512678px;}
._4_c00084{width:6.133018px;}
._b_c00084{width:7.296423px;}
._9_c00084{width:8.549398px;}
._a_c00084{width:10.005998px;}
._8_c00084{width:11.315459px;}
._7_c00084{width:12.722012px;}
._5_c00084{width:15.089778px;}
._6_c00084{width:16.106491px;}
._2_c00084{width:22.071068px;}
._3_c00084{width:23.156290px;}
.fc1_c00084{color:rgb(255,0,0);}
.fc0_c00084{color:rgb(0,0,0);}
.fs5_c00084{font-size:38.879984px;}
.fs4_c00084{font-size:41.759983px;}
.fs3_c00084{font-size:48.239981px;}
.fs0_c00084{font-size:59.759976px;}
.fs1_c00084{font-size:66.239974px;}
.fs2_c00084{font-size:71.999971px;}
.y0_c00084{bottom:0.000000px;}
.y4_c00084{bottom:75.900270px;}
.y3_c00084{bottom:114.060254px;}
.y2a_c00084{bottom:133.320247px;}
.y29_c00084{bottom:140.160244px;}
.y28_c00084{bottom:150.599940px;}
.y27_c00084{bottom:167.879933px;}
.y26_c00084{bottom:186.059926px;}
.y25_c00084{bottom:193.619923px;}
.y24_c00084{bottom:206.219918px;}
.y23_c00084{bottom:240.239904px;}
.y22_c00084{bottom:260.939896px;}
.y21_c00084{bottom:281.639887px;}
.y20_c00084{bottom:312.779875px;}
.y1f_c00084{bottom:343.919862px;}
.y1e_c00084{bottom:374.879850px;}
.y1d_c00084{bottom:406.019838px;}
.y1c_c00084{bottom:436.979825px;}
.y1b_c00084{bottom:468.119813px;}
.y1a_c00084{bottom:499.079800px;}
.y19_c00084{bottom:530.219788px;}
.y18_c00084{bottom:561.179776px;}
.y17_c00084{bottom:592.319763px;}
.y16_c00084{bottom:623.279751px;}
.y15_c00084{bottom:654.419738px;}
.y14_c00084{bottom:685.379726px;}
.y13_c00084{bottom:716.519713px;}
.y12_c00084{bottom:747.479701px;}
.y11_c00084{bottom:778.619689px;}
.y10_c00084{bottom:809.579676px;}
.yf_c00084{bottom:840.719664px;}
.ye_c00084{bottom:871.679651px;}
.yd_c00084{bottom:902.819639px;}
.yc_c00084{bottom:933.779626px;}
.ya_c00084{bottom:979.859608px;}
.yb_c00084{bottom:988.139605px;}
.y9_c00084{bottom:1010.819596px;}
.y8_c00084{bottom:1041.959583px;}
.y6_c00084{bottom:1088.039565px;}
.y7_c00084{bottom:1096.319561px;}
.y5_c00084{bottom:1118.999552px;}
.y2_c00084{bottom:1176.059530px;}
.y1_c00084{bottom:1196.219522px;}
.h6_c00084{height:27.833192px;}
.h7_c00084{height:38.158578px;}
.h2_c00084{height:44.149201px;}
.h4_c00084{height:47.344903px;}
.h1_c00084{height:58.651148px;}
.h3_c00084{height:70.664034px;}
.h5_c00084{height:72.562471px;}
.h0_c00084{height:1263.000000px;}
.w0_c00084{width:892.500000px;}
.x0_c00084{left:0.000000px;}
.x5_c00084{left:127.619739px;}
.xd_c00084{left:138.059945px;}
.xe_c00084{left:142.019943px;}
.x8_c00084{left:180.720009px;}
.x1_c00084{left:181.799927px;}
.xb_c00084{left:230.579908px;}
.xc_c00084{left:233.999906px;}
.x6_c00084{left:257.039897px;}
.x7_c00084{left:269.279892px;}
.x2_c00084{left:329.039408px;}
.x4_c00084{left:438.119825px;}
.x9_c00084{left:658.979736px;}
.xa_c00084{left:671.219732px;}
.x3_c00084{left:765.359694px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls6_c00084{letter-spacing:0.000000pt;}
.ls1_c00084{letter-spacing:0.009440pt;}
.ls2_c00084{letter-spacing:0.649813pt;}
.ls5_c00084{letter-spacing:1.290186pt;}
.ls4_c00084{letter-spacing:3.851732pt;}
.ls3_c00084{letter-spacing:6.413224pt;}
.ls0_c00084{letter-spacing:11.536262pt;}
.ws1_c00084{word-spacing:-15.999994pt;}
.ws0_c00084{word-spacing:-10.719996pt;}
.ws3_c00084{word-spacing:-8.639997pt;}
.ws2_c00084{word-spacing:-8.389117pt;}
.ws4_c00084{word-spacing:0.000000pt;}
._e_c00084{margin-left:-9.044575pt;}
._1_c00084{margin-left:-0.982555pt;}
._0_c00084{width:1.314090pt;}
._d_c00084{width:2.268602pt;}
._c_c00084{width:4.011269pt;}
._4_c00084{width:5.451572pt;}
._b_c00084{width:6.485709pt;}
._9_c00084{width:7.599465pt;}
._a_c00084{width:8.894220pt;}
._8_c00084{width:10.058186pt;}
._7_c00084{width:11.308455pt;}
._5_c00084{width:13.413136pt;}
._6_c00084{width:14.316881pt;}
._2_c00084{width:19.618728pt;}
._3_c00084{width:20.583369pt;}
.fs5_c00084{font-size:34.559986pt;}
.fs4_c00084{font-size:37.119985pt;}
.fs3_c00084{font-size:42.879983pt;}
.fs0_c00084{font-size:53.119979pt;}
.fs1_c00084{font-size:58.879976pt;}
.fs2_c00084{font-size:63.999974pt;}
.y0_c00084{bottom:0.000000pt;}
.y4_c00084{bottom:67.466906pt;}
.y3_c00084{bottom:101.386893pt;}
.y2a_c00084{bottom:118.506886pt;}
.y29_c00084{bottom:124.586883pt;}
.y28_c00084{bottom:133.866613pt;}
.y27_c00084{bottom:149.226607pt;}
.y26_c00084{bottom:165.386601pt;}
.y25_c00084{bottom:172.106598pt;}
.y24_c00084{bottom:183.306593pt;}
.y23_c00084{bottom:213.546581pt;}
.y22_c00084{bottom:231.946574pt;}
.y21_c00084{bottom:250.346567pt;}
.y20_c00084{bottom:278.026555pt;}
.y1f_c00084{bottom:305.706544pt;}
.y1e_c00084{bottom:333.226533pt;}
.y1d_c00084{bottom:360.906522pt;}
.y1c_c00084{bottom:388.426511pt;}
.y1b_c00084{bottom:416.106500pt;}
.y1a_c00084{bottom:443.626489pt;}
.y19_c00084{bottom:471.306478pt;}
.y18_c00084{bottom:498.826467pt;}
.y17_c00084{bottom:526.506456pt;}
.y16_c00084{bottom:554.026445pt;}
.y15_c00084{bottom:581.706434pt;}
.y14_c00084{bottom:609.226423pt;}
.y13_c00084{bottom:636.906412pt;}
.y12_c00084{bottom:664.426401pt;}
.y11_c00084{bottom:692.106390pt;}
.y10_c00084{bottom:719.626379pt;}
.yf_c00084{bottom:747.306368pt;}
.ye_c00084{bottom:774.826357pt;}
.yd_c00084{bottom:802.506346pt;}
.yc_c00084{bottom:830.026335pt;}
.ya_c00084{bottom:870.986318pt;}
.yb_c00084{bottom:878.346315pt;}
.y9_c00084{bottom:898.506307pt;}
.y8_c00084{bottom:926.186296pt;}
.y6_c00084{bottom:967.146280pt;}
.y7_c00084{bottom:974.506277pt;}
.y5_c00084{bottom:994.666269pt;}
.y2_c00084{bottom:1045.386249pt;}
.y1_c00084{bottom:1063.306241pt;}
.h6_c00084{height:24.740615pt;}
.h7_c00084{height:33.918736pt;}
.h2_c00084{height:39.243734pt;}
.h4_c00084{height:42.084358pt;}
.h1_c00084{height:52.134354pt;}
.h3_c00084{height:62.812475pt;}
.h5_c00084{height:64.499974pt;}
.h0_c00084{height:1122.666667pt;}
.w0_c00084{width:793.333333pt;}
.x0_c00084{left:0.000000pt;}
.x5_c00084{left:113.439768pt;}
.xd_c00084{left:122.719951pt;}
.xe_c00084{left:126.239950pt;}
.x8_c00084{left:160.640008pt;}
.x1_c00084{left:161.599935pt;}
.xb_c00084{left:204.959918pt;}
.xc_c00084{left:207.999917pt;}
.x6_c00084{left:228.479909pt;}
.x7_c00084{left:239.359904pt;}
.x2_c00084{left:292.479474pt;}
.x4_c00084{left:389.439844pt;}
.x9_c00084{left:585.759766pt;}
.xa_c00084{left:596.639761pt;}
.x3_c00084{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4ce771340675f80f776e48a.woff2')format("woff");}.ff1_c00085{font-family:ff1_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:ff2_c00085;src:url('chunks/assets/font_22665239f61422b197fcfc83.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:0.675781;font-style:normal;font-weight:normal;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_da118bc97428c76d55db3ae4.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.311035;font-style:normal;font-weight:normal;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_e835e83c3d85f93bbab24ee0.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;}
.m0_c00085{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00085{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00085{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v1_c00085{vertical-align:-83.519967px;}
.v0_c00085{vertical-align:0.000000px;}
.ls1_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:194.525322px;}
.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:-17.999993px;}
.ws1_c00085{word-spacing:-12.059995px;}
.ws2_c00085{word-spacing:-9.437756px;}
.ws3_c00085{word-spacing:0.000000px;}
._12_c00085{margin-left:-9.556339px;}
._1_c00085{margin-left:-1.105374px;}
._0_c00085{width:1.195563px;}
._7_c00085{width:2.956102px;}
._2_c00085{width:4.308389px;}
._11_c00085{width:5.514210px;}
._3_c00085{width:8.542406px;}
._4_c00085{width:10.094815px;}
._c_c00085{width:11.289378px;}
._10_c00085{width:12.687777px;}
._5_c00085{width:13.783667px;}
._d_c00085{width:15.721851px;}
._e_c00085{width:16.835287px;}
._6_c00085{width:19.680094px;}
._b_c00085{width:23.961846px;}
._f_c00085{width:25.964779px;}
._9_c00085{width:27.168304px;}
._8_c00085{width:28.390598px;}
._a_c00085{width:29.419506px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs4_c00085{font-size:41.759983px;}
.fs3_c00085{font-size:48.239981px;}
.fs0_c00085{font-size:59.759976px;}
.fs1_c00085{font-size:66.239974px;}
.fs2_c00085{font-size:71.999971px;}
.y0_c00085{bottom:0.000000px;}
.y4_c00085{bottom:75.899970px;}
.y3_c00085{bottom:114.059954px;}
.y26_c00085{bottom:133.319947px;}
.y25_c00085{bottom:151.499939px;}
.y24_c00085{bottom:159.059936px;}
.y23_c00085{bottom:171.659931px;}
.y21_c00085{bottom:248.879900px;}
.y22_c00085{bottom:257.159897px;}
.y20_c00085{bottom:279.839888px;}
.y1f_c00085{bottom:310.979876px;}
.y1e_c00085{bottom:341.939863px;}
.y1d_c00085{bottom:373.079851px;}
.y1c_c00085{bottom:404.039838px;}
.y1b_c00085{bottom:435.179826px;}
.y1a_c00085{bottom:466.139814px;}
.y19_c00085{bottom:497.279801px;}
.y18_c00085{bottom:528.239789px;}
.y17_c00085{bottom:559.379776px;}
.y16_c00085{bottom:590.339764px;}
.y15_c00085{bottom:621.479751px;}
.y14_c00085{bottom:652.439739px;}
.y13_c00085{bottom:683.579727px;}
.y12_c00085{bottom:714.539714px;}
.y11_c00085{bottom:745.679702px;}
.y10_c00085{bottom:776.639689px;}
.yf_c00085{bottom:807.779677px;}
.ye_c00085{bottom:838.739665px;}
.yd_c00085{bottom:869.879652px;}
.yc_c00085{bottom:900.839640px;}
.yb_c00085{bottom:931.979627px;}
.ya_c00085{bottom:962.939615px;}
.y9_c00085{bottom:994.079602px;}
.y8_c00085{bottom:1025.039590px;}
.y7_c00085{bottom:1077.059569px;}
.y6_c00085{bottom:1097.399561px;}
.y5_c00085{bottom:1118.099553px;}
.y2_c00085{bottom:1157.159537px;}
.y1_c00085{bottom:1196.039522px;}
.h6_c00085{height:27.833192px;}
.h2_c00085{height:44.149201px;}
.h5_c00085{height:47.344903px;}
.h1_c00085{height:58.651148px;}
.h4_c00085{height:70.664034px;}
.h3_c00085{height:72.562471px;}
.h0_c00085{height:1263.000000px;}
.w0_c00085{width:892.500000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:127.619949px;}
.x6_c00085{left:138.059945px;}
.x7_c00085{left:141.839943px;}
.x3_c00085{left:180.719780px;}
.x4_c00085{left:364.499854px;}
.x5_c00085{left:376.739849px;}
.x2_c00085{left:438.120035px;}
@media print{
.v1_c00085{vertical-align:-74.239970pt;}
.v0_c00085{vertical-align:0.000000pt;}
.ls1_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:172.911398pt;}
.ws0_c00085{word-spacing:-15.999994pt;}
.ws1_c00085{word-spacing:-10.719996pt;}
.ws2_c00085{word-spacing:-8.389117pt;}
.ws3_c00085{word-spacing:0.000000pt;}
._12_c00085{margin-left:-8.494524pt;}
._1_c00085{margin-left:-0.982555pt;}
._0_c00085{width:1.062723pt;}
._7_c00085{width:2.627646pt;}
._2_c00085{width:3.829679pt;}
._11_c00085{width:4.901520pt;}
._3_c00085{width:7.593250pt;}
._4_c00085{width:8.973169pt;}
._c_c00085{width:10.035002pt;}
._10_c00085{width:11.278024pt;}
._5_c00085{width:12.252148pt;}
._d_c00085{width:13.974979pt;}
._e_c00085{width:14.964700pt;}
._6_c00085{width:17.493417pt;}
._b_c00085{width:21.299419pt;}
._f_c00085{width:23.079804pt;}
._9_c00085{width:24.149603pt;}
._8_c00085{width:25.236087pt;}
._a_c00085{width:26.150672pt;}
.fs4_c00085{font-size:37.119985pt;}
.fs3_c00085{font-size:42.879983pt;}
.fs0_c00085{font-size:53.119979pt;}
.fs1_c00085{font-size:58.879976pt;}
.fs2_c00085{font-size:63.999974pt;}
.y0_c00085{bottom:0.000000pt;}
.y4_c00085{bottom:67.466640pt;}
.y3_c00085{bottom:101.386626pt;}
.y26_c00085{bottom:118.506619pt;}
.y25_c00085{bottom:134.666613pt;}
.y24_c00085{bottom:141.386610pt;}
.y23_c00085{bottom:152.586606pt;}
.y21_c00085{bottom:221.226578pt;}
.y22_c00085{bottom:228.586575pt;}
.y20_c00085{bottom:248.746567pt;}
.y1f_c00085{bottom:276.426556pt;}
.y1e_c00085{bottom:303.946545pt;}
.y1d_c00085{bottom:331.626534pt;}
.y1c_c00085{bottom:359.146523pt;}
.y1b_c00085{bottom:386.826512pt;}
.y1a_c00085{bottom:414.346501pt;}
.y19_c00085{bottom:442.026490pt;}
.y18_c00085{bottom:469.546479pt;}
.y17_c00085{bottom:497.226468pt;}
.y16_c00085{bottom:524.746457pt;}
.y15_c00085{bottom:552.426446pt;}
.y14_c00085{bottom:579.946435pt;}
.y13_c00085{bottom:607.626424pt;}
.y12_c00085{bottom:635.146413pt;}
.y11_c00085{bottom:662.826402pt;}
.y10_c00085{bottom:690.346391pt;}
.yf_c00085{bottom:718.026379pt;}
.ye_c00085{bottom:745.546368pt;}
.yd_c00085{bottom:773.226357pt;}
.yc_c00085{bottom:800.746346pt;}
.yb_c00085{bottom:828.426335pt;}
.ya_c00085{bottom:855.946324pt;}
.y9_c00085{bottom:883.626313pt;}
.y8_c00085{bottom:911.146302pt;}
.y7_c00085{bottom:957.386284pt;}
.y6_c00085{bottom:975.466276pt;}
.y5_c00085{bottom:993.866269pt;}
.y2_c00085{bottom:1028.586255pt;}
.y1_c00085{bottom:1063.146241pt;}
.h6_c00085{height:24.740615pt;}
.h2_c00085{height:39.243734pt;}
.h5_c00085{height:42.084358pt;}
.h1_c00085{height:52.134354pt;}
.h4_c00085{height:62.812475pt;}
.h3_c00085{height:64.499974pt;}
.h0_c00085{height:1122.666667pt;}
.w0_c00085{width:793.333333pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:113.439955pt;}
.x6_c00085{left:122.719951pt;}
.x7_c00085{left:126.079950pt;}
.x3_c00085{left:160.639805pt;}
.x4_c00085{left:323.999870pt;}
.x5_c00085{left:334.879866pt;}
.x2_c00085{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08588101e772434544bd7712.woff2')format("woff");}.ff1_c00086{font-family:ff1_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:ff2_c00086;src:url('chunks/assets/font_2d82bd8f5640cbcc9abe145a.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:0.675781;font-style:normal;font-weight:normal;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_42a8301790b30311c23811b2.woff2')format("woff");}.ff3_c00086{font-family:ff3_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;}
.m0_c00086{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00086{word-spacing:-12.059995px;}
.ws3_c00086{word-spacing:-9.719996px;}
.ws2_c00086{word-spacing:-9.437756px;}
.ws4_c00086{word-spacing:0.000000px;}
._11_c00086{margin-left:-9.767709px;}
._d_c00086{margin-left:-3.055029px;}
._1_c00086{margin-left:-1.105374px;}
._0_c00086{width:1.478351px;}
._2_c00086{width:2.821457px;}
._3_c00086{width:4.260019px;}
._a_c00086{width:5.725580px;}
._b_c00086{width:6.966890px;}
._12_c00086{width:8.143540px;}
._8_c00086{width:9.853138px;}
._7_c00086{width:11.104032px;}
._10_c00086{width:12.529417px;}
._6_c00086{width:13.673915px;}
._4_c00086{width:15.611968px;}
._5_c00086{width:16.705145px;}
._c_c00086{width:19.294383px;}
._9_c00086{width:22.962688px;}
._f_c00086{width:27.031266px;}
._e_c00086{width:28.176795px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs5_c00086{font-size:38.879984px;}
.fs4_c00086{font-size:41.759983px;}
.fs3_c00086{font-size:48.239981px;}
.fs0_c00086{font-size:59.759976px;}
.fs1_c00086{font-size:66.239974px;}
.fs2_c00086{font-size:71.999971px;}
.y0_c00086{bottom:0.000000px;}
.y4_c00086{bottom:75.900270px;}
.y3_c00086{bottom:114.060254px;}
.y31_c00086{bottom:133.319947px;}
.y30_c00086{bottom:151.499939px;}
.y2f_c00086{bottom:159.059936px;}
.y2e_c00086{bottom:170.759932px;}
.y2d_c00086{bottom:188.039925px;}
.y2c_c00086{bottom:205.319918px;}
.y2b_c00086{bottom:212.159915px;}
.y2a_c00086{bottom:222.599911px;}
.y29_c00086{bottom:239.699904px;}
.y28_c00086{bottom:257.879897px;}
.y27_c00086{bottom:265.439894px;}
.y26_c00086{bottom:277.139889px;}
.y25_c00086{bottom:294.419882px;}
.y24_c00086{bottom:312.599875px;}
.y23_c00086{bottom:320.159872px;}
.y22_c00086{bottom:332.759867px;}
.y21_c00086{bottom:373.979850px;}
.y20_c00086{bottom:404.939838px;}
.y1f_c00086{bottom:436.079826px;}
.y1d_c00086{bottom:467.039813px;}
.y1e_c00086{bottom:475.319810px;}
.y1c_c00086{bottom:498.179801px;}
.y1b_c00086{bottom:529.139788px;}
.y1a_c00086{bottom:560.279776px;}
.y19_c00086{bottom:591.239764px;}
.y18_c00086{bottom:622.199751px;}
.y17_c00086{bottom:653.339739px;}
.y15_c00086{bottom:684.299726px;}
.y16_c00086{bottom:692.579723px;}
.y14_c00086{bottom:715.439714px;}
.y13_c00086{bottom:746.399701px;}
.y12_c00086{bottom:777.539689px;}
.y11_c00086{bottom:808.499677px;}
.y10_c00086{bottom:839.639664px;}
.yf_c00086{bottom:870.599652px;}
.ye_c00086{bottom:901.739639px;}
.yc_c00086{bottom:932.699627px;}
.yd_c00086{bottom:940.979624px;}
.yb_c00086{bottom:963.839614px;}
.ya_c00086{bottom:994.799602px;}
.y8_c00086{bottom:1025.939590px;}
.y9_c00086{bottom:1034.219586px;}
.y7_c00086{bottom:1056.899577px;}
.y6_c00086{bottom:1088.039565px;}
.y5_c00086{bottom:1118.999552px;}
.y2_c00086{bottom:1176.059530px;}
.y1_c00086{bottom:1196.219522px;}
.h5_c00086{height:27.833192px;}
.h6_c00086{height:38.158578px;}
.h2_c00086{height:44.149201px;}
.h4_c00086{height:47.344903px;}
.h1_c00086{height:58.651148px;}
.h3_c00086{height:70.664034px;}
.h0_c00086{height:1263.000000px;}
.w0_c00086{width:892.500000px;}
.x0_c00086{left:0.000000px;}
.x5_c00086{left:127.619739px;}
.xf_c00086{left:138.059945px;}
.x11_c00086{left:141.839943px;}
.x10_c00086{left:143.819942px;}
.x6_c00086{left:180.719928px;}
.x1_c00086{left:181.799927px;}
.x9_c00086{left:186.119926px;}
.xa_c00086{left:198.359921px;}
.xb_c00086{left:255.959898px;}
.xc_c00086{left:268.199893px;}
.x2_c00086{left:329.039408px;}
.xd_c00086{left:375.119850px;}
.xe_c00086{left:387.359845px;}
.x4_c00086{left:438.119825px;}
.x7_c00086{left:751.499699px;}
.x8_c00086{left:763.739695px;}
.x3_c00086{left:765.359694px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:-15.999994pt;}
.ws1_c00086{word-spacing:-10.719996pt;}
.ws3_c00086{word-spacing:-8.639997pt;}
.ws2_c00086{word-spacing:-8.389117pt;}
.ws4_c00086{word-spacing:0.000000pt;}
._11_c00086{margin-left:-8.682408pt;}
._d_c00086{margin-left:-2.715581pt;}
._1_c00086{margin-left:-0.982555pt;}
._0_c00086{width:1.314090pt;}
._2_c00086{width:2.507962pt;}
._3_c00086{width:3.786683pt;}
._a_c00086{width:5.089405pt;}
._b_c00086{width:6.192791pt;}
._12_c00086{width:7.238702pt;}
._8_c00086{width:8.758345pt;}
._7_c00086{width:9.870251pt;}
._10_c00086{width:11.137259pt;}
._6_c00086{width:12.154591pt;}
._4_c00086{width:13.877305pt;}
._5_c00086{width:14.849017pt;}
._c_c00086{width:17.150562pt;}
._9_c00086{width:20.411278pt;}
._f_c00086{width:24.027792pt;}
._e_c00086{width:25.046040pt;}
.fs5_c00086{font-size:34.559986pt;}
.fs4_c00086{font-size:37.119985pt;}
.fs3_c00086{font-size:42.879983pt;}
.fs0_c00086{font-size:53.119979pt;}
.fs1_c00086{font-size:58.879976pt;}
.fs2_c00086{font-size:63.999974pt;}
.y0_c00086{bottom:0.000000pt;}
.y4_c00086{bottom:67.466906pt;}
.y3_c00086{bottom:101.386893pt;}
.y31_c00086{bottom:118.506619pt;}
.y30_c00086{bottom:134.666613pt;}
.y2f_c00086{bottom:141.386610pt;}
.y2e_c00086{bottom:151.786606pt;}
.y2d_c00086{bottom:167.146600pt;}
.y2c_c00086{bottom:182.506594pt;}
.y2b_c00086{bottom:188.586591pt;}
.y2a_c00086{bottom:197.866588pt;}
.y29_c00086{bottom:213.066581pt;}
.y28_c00086{bottom:229.226575pt;}
.y27_c00086{bottom:235.946572pt;}
.y26_c00086{bottom:246.346568pt;}
.y25_c00086{bottom:261.706562pt;}
.y24_c00086{bottom:277.866556pt;}
.y23_c00086{bottom:284.586553pt;}
.y22_c00086{bottom:295.786548pt;}
.y21_c00086{bottom:332.426534pt;}
.y20_c00086{bottom:359.946523pt;}
.y1f_c00086{bottom:387.626512pt;}
.y1d_c00086{bottom:415.146501pt;}
.y1e_c00086{bottom:422.506498pt;}
.y1c_c00086{bottom:442.826490pt;}
.y1b_c00086{bottom:470.346479pt;}
.y1a_c00086{bottom:498.026467pt;}
.y19_c00086{bottom:525.546456pt;}
.y18_c00086{bottom:553.066445pt;}
.y17_c00086{bottom:580.746434pt;}
.y15_c00086{bottom:608.266423pt;}
.y16_c00086{bottom:615.626420pt;}
.y14_c00086{bottom:635.946412pt;}
.y13_c00086{bottom:663.466401pt;}
.y12_c00086{bottom:691.146390pt;}
.y11_c00086{bottom:718.666379pt;}
.y10_c00086{bottom:746.346368pt;}
.yf_c00086{bottom:773.866357pt;}
.ye_c00086{bottom:801.546346pt;}
.yc_c00086{bottom:829.066335pt;}
.yd_c00086{bottom:836.426332pt;}
.yb_c00086{bottom:856.746324pt;}
.ya_c00086{bottom:884.266313pt;}
.y8_c00086{bottom:911.946302pt;}
.y9_c00086{bottom:919.306299pt;}
.y7_c00086{bottom:939.466291pt;}
.y6_c00086{bottom:967.146280pt;}
.y5_c00086{bottom:994.666269pt;}
.y2_c00086{bottom:1045.386249pt;}
.y1_c00086{bottom:1063.306241pt;}
.h5_c00086{height:24.740615pt;}
.h6_c00086{height:33.918736pt;}
.h2_c00086{height:39.243734pt;}
.h4_c00086{height:42.084358pt;}
.h1_c00086{height:52.134354pt;}
.h3_c00086{height:62.812475pt;}
.h0_c00086{height:1122.666667pt;}
.w0_c00086{width:793.333333pt;}
.x0_c00086{left:0.000000pt;}
.x5_c00086{left:113.439768pt;}
.xf_c00086{left:122.719951pt;}
.x11_c00086{left:126.079950pt;}
.x10_c00086{left:127.839949pt;}
.x6_c00086{left:160.639936pt;}
.x1_c00086{left:161.599935pt;}
.x9_c00086{left:165.439934pt;}
.xa_c00086{left:176.319929pt;}
.xb_c00086{left:227.519909pt;}
.xc_c00086{left:238.399905pt;}
.x2_c00086{left:292.479474pt;}
.xd_c00086{left:333.439867pt;}
.xe_c00086{left:344.319862pt;}
.x4_c00086{left:389.439844pt;}
.x7_c00086{left:667.999733pt;}
.x8_c00086{left:678.879728pt;}
.x3_c00086{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e47b0168a3222912faa6dba7.woff2')format("woff");}.ff1_c00087{font-family:ff1_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:ff2_c00087;src:url('chunks/assets/font_65655c7d8c67444fba0ba1ae.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:0.675781;font-style:normal;font-weight:normal;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_8ae36f4e4fa7df20363fd26b.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;}
.m0_c00087{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls2_c00087{letter-spacing:0.000000px;}
.ls0_c00087{letter-spacing:0.731040px;}
.ls1_c00087{letter-spacing:6.494457px;}
.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:-17.999993px;}
.ws1_c00087{word-spacing:-12.059995px;}
.ws2_c00087{word-spacing:-9.437756px;}
.ws3_c00087{word-spacing:0.000000px;}
._16_c00087{margin-left:-10.596757px;}
._c_c00087{margin-left:-2.139990px;}
._1_c00087{margin-left:-1.105374px;}
._0_c00087{width:1.195563px;}
._8_c00087{width:2.581346px;}
._9_c00087{width:3.818412px;}
._4_c00087{width:4.826810px;}
._2_c00087{width:6.554628px;}
._3_c00087{width:7.754779px;}
._d_c00087{width:9.595967px;}
._e_c00087{width:15.026220px;}
._f_c00087{width:16.043317px;}
._7_c00087{width:19.102605px;}
._14_c00087{width:21.893837px;}
._12_c00087{width:22.902396px;}
._13_c00087{width:23.945841px;}
._15_c00087{width:25.058314px;}
._10_c00087{width:28.487475px;}
._11_c00087{width:29.510171px;}
._5_c00087{width:33.019196px;}
._6_c00087{width:34.512841px;}
._a_c00087{width:44.336784px;}
._b_c00087{width:46.182842px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs4_c00087{font-size:41.759983px;}
.fs3_c00087{font-size:48.239981px;}
.fs0_c00087{font-size:59.759976px;}
.fs1_c00087{font-size:66.239974px;}
.fs2_c00087{font-size:71.999971px;}
.y0_c00087{bottom:0.000000px;}
.y4_c00087{bottom:75.899970px;}
.y3_c00087{bottom:114.059954px;}
.y29_c00087{bottom:134.400246px;}
.y28_c00087{bottom:154.379938px;}
.y27_c00087{bottom:161.939935px;}
.y26_c00087{bottom:173.639931px;}
.y25_c00087{bottom:191.819923px;}
.y24_c00087{bottom:199.379920px;}
.y23_c00087{bottom:211.979915px;}
.y22_c00087{bottom:279.839888px;}
.y21_c00087{bottom:310.979876px;}
.y20_c00087{bottom:341.939863px;}
.y1f_c00087{bottom:373.079851px;}
.y1e_c00087{bottom:404.039838px;}
.y1d_c00087{bottom:435.179826px;}
.y1c_c00087{bottom:466.139814px;}
.y1b_c00087{bottom:497.279801px;}
.y1a_c00087{bottom:528.239789px;}
.y19_c00087{bottom:559.379776px;}
.y18_c00087{bottom:590.339764px;}
.y17_c00087{bottom:621.479751px;}
.y16_c00087{bottom:652.439739px;}
.y15_c00087{bottom:683.579727px;}
.y14_c00087{bottom:714.539714px;}
.y12_c00087{bottom:745.679702px;}
.y13_c00087{bottom:753.959698px;}
.y11_c00087{bottom:776.639689px;}
.y10_c00087{bottom:807.779677px;}
.yf_c00087{bottom:838.739665px;}
.ye_c00087{bottom:869.879652px;}
.yd_c00087{bottom:900.839640px;}
.yc_c00087{bottom:931.979627px;}
.ya_c00087{bottom:962.939615px;}
.yb_c00087{bottom:971.219612px;}
.y9_c00087{bottom:994.079602px;}
.y8_c00087{bottom:1025.039590px;}
.y7_c00087{bottom:1056.179578px;}
.y6_c00087{bottom:1087.139565px;}
.y5_c00087{bottom:1118.279553px;}
.y2_c00087{bottom:1157.159537px;}
.y1_c00087{bottom:1196.039522px;}
.h5_c00087{height:27.833192px;}
.h2_c00087{height:44.149201px;}
.h4_c00087{height:47.344903px;}
.h1_c00087{height:58.651148px;}
.h3_c00087{height:70.664034px;}
.h0_c00087{height:1263.000000px;}
.w0_c00087{width:892.500000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:127.619949px;}
.xa_c00087{left:138.059945px;}
.xb_c00087{left:141.839943px;}
.x5_c00087{left:180.719961px;}
.x3_c00087{left:201.059920px;}
.x4_c00087{left:213.299915px;}
.x2_c00087{left:438.120035px;}
.x8_c00087{left:512.639795px;}
.x9_c00087{left:524.879790px;}
.x6_c00087{left:580.859768px;}
.x7_c00087{left:585.719766px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls2_c00087{letter-spacing:0.000000pt;}
.ls0_c00087{letter-spacing:0.649813pt;}
.ls1_c00087{letter-spacing:5.772851pt;}
.ws0_c00087{word-spacing:-15.999994pt;}
.ws1_c00087{word-spacing:-10.719996pt;}
.ws2_c00087{word-spacing:-8.389117pt;}
.ws3_c00087{word-spacing:0.000000pt;}
._16_c00087{margin-left:-9.419340pt;}
._c_c00087{margin-left:-1.902214pt;}
._1_c00087{margin-left:-0.982555pt;}
._0_c00087{width:1.062723pt;}
._8_c00087{width:2.294530pt;}
._9_c00087{width:3.394144pt;}
._4_c00087{width:4.290497pt;}
._2_c00087{width:5.826336pt;}
._3_c00087{width:6.893137pt;}
._d_c00087{width:8.529748pt;}
._e_c00087{width:13.356640pt;}
._f_c00087{width:14.260726pt;}
._7_c00087{width:16.980093pt;}
._14_c00087{width:19.461189pt;}
._12_c00087{width:20.357685pt;}
._13_c00087{width:21.285192pt;}
._15_c00087{width:22.274057pt;}
._10_c00087{width:25.322200pt;}
._11_c00087{width:26.231263pt;}
._5_c00087{width:29.350396pt;}
._6_c00087{width:30.678081pt;}
._a_c00087{width:39.410475pt;}
._b_c00087{width:41.051415pt;}
.fs4_c00087{font-size:37.119985pt;}
.fs3_c00087{font-size:42.879983pt;}
.fs0_c00087{font-size:53.119979pt;}
.fs1_c00087{font-size:58.879976pt;}
.fs2_c00087{font-size:63.999974pt;}
.y0_c00087{bottom:0.000000pt;}
.y4_c00087{bottom:67.466640pt;}
.y3_c00087{bottom:101.386626pt;}
.y29_c00087{bottom:119.466886pt;}
.y28_c00087{bottom:137.226612pt;}
.y27_c00087{bottom:143.946609pt;}
.y26_c00087{bottom:154.346605pt;}
.y25_c00087{bottom:170.506598pt;}
.y24_c00087{bottom:177.226596pt;}
.y23_c00087{bottom:188.426591pt;}
.y22_c00087{bottom:248.746567pt;}
.y21_c00087{bottom:276.426556pt;}
.y20_c00087{bottom:303.946545pt;}
.y1f_c00087{bottom:331.626534pt;}
.y1e_c00087{bottom:359.146523pt;}
.y1d_c00087{bottom:386.826512pt;}
.y1c_c00087{bottom:414.346501pt;}
.y1b_c00087{bottom:442.026490pt;}
.y1a_c00087{bottom:469.546479pt;}
.y19_c00087{bottom:497.226468pt;}
.y18_c00087{bottom:524.746457pt;}
.y17_c00087{bottom:552.426446pt;}
.y16_c00087{bottom:579.946435pt;}
.y15_c00087{bottom:607.626424pt;}
.y14_c00087{bottom:635.146413pt;}
.y12_c00087{bottom:662.826402pt;}
.y13_c00087{bottom:670.186399pt;}
.y11_c00087{bottom:690.346391pt;}
.y10_c00087{bottom:718.026379pt;}
.yf_c00087{bottom:745.546368pt;}
.ye_c00087{bottom:773.226357pt;}
.yd_c00087{bottom:800.746346pt;}
.yc_c00087{bottom:828.426335pt;}
.ya_c00087{bottom:855.946324pt;}
.yb_c00087{bottom:863.306321pt;}
.y9_c00087{bottom:883.626313pt;}
.y8_c00087{bottom:911.146302pt;}
.y7_c00087{bottom:938.826291pt;}
.y6_c00087{bottom:966.346280pt;}
.y5_c00087{bottom:994.026269pt;}
.y2_c00087{bottom:1028.586255pt;}
.y1_c00087{bottom:1063.146241pt;}
.h5_c00087{height:24.740615pt;}
.h2_c00087{height:39.243734pt;}
.h4_c00087{height:42.084358pt;}
.h1_c00087{height:52.134354pt;}
.h3_c00087{height:62.812475pt;}
.h0_c00087{height:1122.666667pt;}
.w0_c00087{width:793.333333pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:113.439955pt;}
.xa_c00087{left:122.719951pt;}
.xb_c00087{left:126.079950pt;}
.x5_c00087{left:160.639966pt;}
.x3_c00087{left:178.719929pt;}
.x4_c00087{left:189.599924pt;}
.x2_c00087{left:389.440031pt;}
.x8_c00087{left:455.679818pt;}
.x9_c00087{left:466.559813pt;}
.x6_c00087{left:516.319793pt;}
.x7_c00087{left:520.639792pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3d8002fa67e54384c7ac797.woff2')format("woff");}.ff1_c00088{font-family:ff1_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:ff2_c00088;src:url('chunks/assets/font_bbafbfc788abfa80f1284c8f.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:0.675781;font-style:normal;font-weight:normal;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_e7900d98006f7941f0f4a360.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;}
.m0_c00088{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls2_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.021282px;}
.ls0_c00088{letter-spacing:2.171879px;}
.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:-18.021275px;}
.ws0_c00088{word-spacing:-17.999993px;}
.ws2_c00088{word-spacing:-12.059995px;}
.ws3_c00088{word-spacing:-9.437756px;}
.ws4_c00088{word-spacing:0.000000px;}
._12_c00088{margin-left:-9.253247px;}
._4_c00088{margin-left:-2.139990px;}
._1_c00088{margin-left:-1.105374px;}
._0_c00088{width:1.478351px;}
._2_c00088{width:2.492480px;}
._3_c00088{width:3.618391px;}
._5_c00088{width:5.211118px;}
._6_c00088{width:7.005861px;}
._7_c00088{width:8.160190px;}
._c_c00088{width:9.169546px;}
._8_c00088{width:10.363655px;}
._11_c00088{width:11.793646px;}
._a_c00088{width:13.699865px;}
._9_c00088{width:14.837267px;}
._b_c00088{width:16.150632px;}
._e_c00088{width:19.139700px;}
._d_c00088{width:20.182478px;}
._f_c00088{width:30.623973px;}
._10_c00088{width:31.911016px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs4_c00088{font-size:41.759983px;}
.fs3_c00088{font-size:48.239981px;}
.fs0_c00088{font-size:59.759976px;}
.fs1_c00088{font-size:66.239974px;}
.fs2_c00088{font-size:71.999971px;}
.y0_c00088{bottom:0.000000px;}
.y4_c00088{bottom:75.900270px;}
.y3_c00088{bottom:114.060254px;}
.y22_c00088{bottom:134.400246px;}
.y21_c00088{bottom:153.479939px;}
.y20_c00088{bottom:171.659931px;}
.y1f_c00088{bottom:179.219928px;}
.y1e_c00088{bottom:191.819923px;}
.y1d_c00088{bottom:404.939838px;}
.y1c_c00088{bottom:436.079826px;}
.y1b_c00088{bottom:467.039813px;}
.y1a_c00088{bottom:498.179801px;}
.y19_c00088{bottom:529.139788px;}
.y18_c00088{bottom:560.279776px;}
.y17_c00088{bottom:591.239764px;}
.y16_c00088{bottom:622.199751px;}
.y15_c00088{bottom:653.339739px;}
.y14_c00088{bottom:684.299726px;}
.y13_c00088{bottom:715.439714px;}
.y12_c00088{bottom:746.399701px;}
.y11_c00088{bottom:777.539689px;}
.y10_c00088{bottom:808.499677px;}
.yf_c00088{bottom:839.639664px;}
.ye_c00088{bottom:870.599652px;}
.yd_c00088{bottom:901.739639px;}
.yc_c00088{bottom:932.699627px;}
.yb_c00088{bottom:963.839614px;}
.ya_c00088{bottom:994.799602px;}
.y9_c00088{bottom:1025.939590px;}
.y8_c00088{bottom:1056.899577px;}
.y6_c00088{bottom:1088.039565px;}
.y7_c00088{bottom:1096.319561px;}
.y5_c00088{bottom:1118.999552px;}
.y2_c00088{bottom:1176.059530px;}
.y1_c00088{bottom:1196.219522px;}
.h5_c00088{height:27.833192px;}
.h2_c00088{height:44.149201px;}
.h4_c00088{height:47.344903px;}
.h1_c00088{height:58.651148px;}
.h3_c00088{height:70.664034px;}
.h0_c00088{height:1263.000000px;}
.w0_c00088{width:892.500000px;}
.x0_c00088{left:0.000000px;}
.x5_c00088{left:127.619739px;}
.x9_c00088{left:138.059945px;}
.xa_c00088{left:145.079942px;}
.x8_c00088{left:180.720560px;}
.x1_c00088{left:181.799927px;}
.x2_c00088{left:329.039408px;}
.x4_c00088{left:438.119825px;}
.x6_c00088{left:543.059783px;}
.x7_c00088{left:555.299778px;}
.x3_c00088{left:765.359694px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls2_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.018917pt;}
.ls0_c00088{letter-spacing:1.930559pt;}
.ws1_c00088{word-spacing:-16.018911pt;}
.ws0_c00088{word-spacing:-15.999994pt;}
.ws2_c00088{word-spacing:-10.719996pt;}
.ws3_c00088{word-spacing:-8.389117pt;}
.ws4_c00088{word-spacing:0.000000pt;}
._12_c00088{margin-left:-8.225108pt;}
._4_c00088{margin-left:-1.902214pt;}
._1_c00088{margin-left:-0.982555pt;}
._0_c00088{width:1.314090pt;}
._2_c00088{width:2.215538pt;}
._3_c00088{width:3.216348pt;}
._5_c00088{width:4.632105pt;}
._6_c00088{width:6.227432pt;}
._7_c00088{width:7.253502pt;}
._c_c00088{width:8.150708pt;}
._8_c00088{width:9.212137pt;}
._11_c00088{width:10.483241pt;}
._a_c00088{width:12.177658pt;}
._9_c00088{width:13.188682pt;}
._b_c00088{width:14.356117pt;}
._e_c00088{width:17.013067pt;}
._d_c00088{width:17.939980pt;}
._f_c00088{width:27.221310pt;}
._10_c00088{width:28.365348pt;}
.fs4_c00088{font-size:37.119985pt;}
.fs3_c00088{font-size:42.879983pt;}
.fs0_c00088{font-size:53.119979pt;}
.fs1_c00088{font-size:58.879976pt;}
.fs2_c00088{font-size:63.999974pt;}
.y0_c00088{bottom:0.000000pt;}
.y4_c00088{bottom:67.466906pt;}
.y3_c00088{bottom:101.386893pt;}
.y22_c00088{bottom:119.466886pt;}
.y21_c00088{bottom:136.426612pt;}
.y20_c00088{bottom:152.586606pt;}
.y1f_c00088{bottom:159.306603pt;}
.y1e_c00088{bottom:170.506598pt;}
.y1d_c00088{bottom:359.946523pt;}
.y1c_c00088{bottom:387.626512pt;}
.y1b_c00088{bottom:415.146501pt;}
.y1a_c00088{bottom:442.826490pt;}
.y19_c00088{bottom:470.346479pt;}
.y18_c00088{bottom:498.026467pt;}
.y17_c00088{bottom:525.546456pt;}
.y16_c00088{bottom:553.066445pt;}
.y15_c00088{bottom:580.746434pt;}
.y14_c00088{bottom:608.266423pt;}
.y13_c00088{bottom:635.946412pt;}
.y12_c00088{bottom:663.466401pt;}
.y11_c00088{bottom:691.146390pt;}
.y10_c00088{bottom:718.666379pt;}
.yf_c00088{bottom:746.346368pt;}
.ye_c00088{bottom:773.866357pt;}
.yd_c00088{bottom:801.546346pt;}
.yc_c00088{bottom:829.066335pt;}
.yb_c00088{bottom:856.746324pt;}
.ya_c00088{bottom:884.266313pt;}
.y9_c00088{bottom:911.946302pt;}
.y8_c00088{bottom:939.466291pt;}
.y6_c00088{bottom:967.146280pt;}
.y7_c00088{bottom:974.506277pt;}
.y5_c00088{bottom:994.666269pt;}
.y2_c00088{bottom:1045.386249pt;}
.y1_c00088{bottom:1063.306241pt;}
.h5_c00088{height:24.740615pt;}
.h2_c00088{height:39.243734pt;}
.h4_c00088{height:42.084358pt;}
.h1_c00088{height:52.134354pt;}
.h3_c00088{height:62.812475pt;}
.h0_c00088{height:1122.666667pt;}
.w0_c00088{width:793.333333pt;}
.x0_c00088{left:0.000000pt;}
.x5_c00088{left:113.439768pt;}
.x9_c00088{left:122.719951pt;}
.xa_c00088{left:128.959948pt;}
.x8_c00088{left:160.640498pt;}
.x1_c00088{left:161.599935pt;}
.x2_c00088{left:292.479474pt;}
.x4_c00088{left:389.439844pt;}
.x6_c00088{left:482.719807pt;}
.x7_c00088{left:493.599803pt;}
.x3_c00088{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_008cf484006273249197b49f.woff2')format("woff");}.ff1_c00089{font-family:ff1_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;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_8f6b95ef7c2d056a21b19ab1.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:0.675781;font-style:normal;font-weight:normal;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_e5f4a3247efccf4f8d1958f6.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls1_c00089{letter-spacing:0.000000px;}
.ls0_c00089{letter-spacing:0.010620px;}
.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:-17.999993px;}
.ws1_c00089{word-spacing:0.000000px;}
._1_c00089{margin-left:-1.105374px;}
._0_c00089{width:1.195563px;}
._a_c00089{width:2.244090px;}
._9_c00089{width:3.449806px;}
._7_c00089{width:4.482075px;}
._8_c00089{width:5.619280px;}
._b_c00089{width:6.930377px;}
._c_c00089{width:7.931836px;}
._2_c00089{width:10.202973px;}
._5_c00089{width:11.761855px;}
._4_c00089{width:12.877933px;}
._6_c00089{width:15.969850px;}
._3_c00089{width:16.985300px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs0_c00089{font-size:59.759976px;}
.fs1_c00089{font-size:66.239974px;}
.fs2_c00089{font-size:71.999971px;}
.y0_c00089{bottom:0.000000px;}
.y4_c00089{bottom:75.719970px;}
.y3_c00089{bottom:113.879954px;}
.y19_c00089{bottom:192.899923px;}
.y18_c00089{bottom:224.039910px;}
.y17_c00089{bottom:254.999898px;}
.y16_c00089{bottom:285.959886px;}
.y15_c00089{bottom:317.099873px;}
.y14_c00089{bottom:348.059861px;}
.y13_c00089{bottom:379.199848px;}
.y12_c00089{bottom:410.159836px;}
.y11_c00089{bottom:441.299823px;}
.y10_c00089{bottom:472.259811px;}
.yf_c00089{bottom:503.399799px;}
.ye_c00089{bottom:534.359786px;}
.yd_c00089{bottom:565.499774px;}
.yc_c00089{bottom:596.459761px;}
.yb_c00089{bottom:627.599749px;}
.ya_c00089{bottom:673.679731px;}
.y9_c00089{bottom:704.639718px;}
.y8_c00089{bottom:735.779706px;}
.y7_c00089{bottom:781.679687px;}
.y6_c00089{bottom:815.339674px;}
.y5_c00089{bottom:844.319662px;}
.y2_c00089{bottom:1156.979537px;}
.y1_c00089{bottom:1195.859522px;}
.h2_c00089{height:44.149201px;}
.h1_c00089{height:58.651148px;}
.h5_c00089{height:64.978568px;}
.h4_c00089{height:65.010911px;}
.h6_c00089{height:70.628878px;}
.h3_c00089{height:70.664034px;}
.h0_c00089{height:1263.000000px;}
.w0_c00089{width:892.500000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:127.799949px;}
.x5_c00089{left:180.899928px;}
.x6_c00089{left:209.339916px;}
.x4_c00089{left:234.179906px;}
.x2_c00089{left:438.300034px;}
.x7_c00089{left:495.719802px;}
.x8_c00089{left:591.839763px;}
.x3_c00089{left:661.499735px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls1_c00089{letter-spacing:0.000000pt;}
.ls0_c00089{letter-spacing:0.009440pt;}
.ws0_c00089{word-spacing:-15.999994pt;}
.ws1_c00089{word-spacing:0.000000pt;}
._1_c00089{margin-left:-0.982555pt;}
._0_c00089{width:1.062723pt;}
._a_c00089{width:1.994747pt;}
._9_c00089{width:3.066494pt;}
._7_c00089{width:3.984066pt;}
._8_c00089{width:4.994916pt;}
._b_c00089{width:6.160335pt;}
._c_c00089{width:7.050521pt;}
._2_c00089{width:9.069310pt;}
._5_c00089{width:10.454982pt;}
._4_c00089{width:11.447051pt;}
._6_c00089{width:14.195422pt;}
._3_c00089{width:15.098044pt;}
.fs0_c00089{font-size:53.119979pt;}
.fs1_c00089{font-size:58.879976pt;}
.fs2_c00089{font-size:63.999974pt;}
.y0_c00089{bottom:0.000000pt;}
.y4_c00089{bottom:67.306640pt;}
.y3_c00089{bottom:101.226626pt;}
.y19_c00089{bottom:171.466598pt;}
.y18_c00089{bottom:199.146587pt;}
.y17_c00089{bottom:226.666576pt;}
.y16_c00089{bottom:254.186565pt;}
.y15_c00089{bottom:281.866554pt;}
.y14_c00089{bottom:309.386543pt;}
.y13_c00089{bottom:337.066532pt;}
.y12_c00089{bottom:364.586521pt;}
.y11_c00089{bottom:392.266510pt;}
.y10_c00089{bottom:419.786499pt;}
.yf_c00089{bottom:447.466488pt;}
.ye_c00089{bottom:474.986477pt;}
.yd_c00089{bottom:502.666466pt;}
.yc_c00089{bottom:530.186455pt;}
.yb_c00089{bottom:557.866444pt;}
.ya_c00089{bottom:598.826427pt;}
.y9_c00089{bottom:626.346416pt;}
.y8_c00089{bottom:654.026405pt;}
.y7_c00089{bottom:694.826389pt;}
.y6_c00089{bottom:724.746377pt;}
.y5_c00089{bottom:750.506366pt;}
.y2_c00089{bottom:1028.426255pt;}
.y1_c00089{bottom:1062.986241pt;}
.h2_c00089{height:39.243734pt;}
.h1_c00089{height:52.134354pt;}
.h5_c00089{height:57.758727pt;}
.h4_c00089{height:57.787477pt;}
.h6_c00089{height:62.781225pt;}
.h3_c00089{height:62.812475pt;}
.h0_c00089{height:1122.666667pt;}
.w0_c00089{width:793.333333pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:113.599955pt;}
.x5_c00089{left:160.799936pt;}
.x6_c00089{left:186.079926pt;}
.x4_c00089{left:208.159917pt;}
.x2_c00089{left:389.600031pt;}
.x7_c00089{left:440.639824pt;}
.x8_c00089{left:526.079790pt;}
.x3_c00089{left:587.999765pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_724685a4725bbc393651169d.woff2')format("woff");}.ff1_c00090{font-family:ff1_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:ff2_c00090;src:url('chunks/assets/font_05b3a4efaceb40a2ccc40783.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:0.675781;font-style:normal;font-weight:normal;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_6d953ae30382b017e9758752.woff2')format("woff");}.ff3_c00090{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:16.039014px;}
.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;}
}
.ws0_c00090{word-spacing:-17.999993px;}
.ws3_c00090{word-spacing:-14.939994px;}
.ws1_c00090{word-spacing:-12.059995px;}
.ws2_c00090{word-spacing:-9.719996px;}
.ws4_c00090{word-spacing:0.000000px;}
._f_c00090{margin-left:-9.635444px;}
._a_c00090{margin-left:-2.388284px;}
._1_c00090{margin-left:-1.105374px;}
._0_c00090{width:1.478351px;}
._c_c00090{width:3.140590px;}
._e_c00090{width:4.375665px;}
._b_c00090{width:5.593316px;}
._8_c00090{width:6.992515px;}
._7_c00090{width:7.999134px;}
._9_c00090{width:13.049164px;}
._3_c00090{width:15.114778px;}
._4_c00090{width:16.232215px;}
._2_c00090{width:19.405506px;}
._d_c00090{width:22.433619px;}
._6_c00090{width:23.736237px;}
._5_c00090{width:25.115819px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs4_c00090{font-size:38.879984px;}
.fs3_c00090{font-size:48.239981px;}
.fs0_c00090{font-size:59.759976px;}
.fs1_c00090{font-size:66.239974px;}
.fs2_c00090{font-size:71.999971px;}
.y0_c00090{bottom:0.000000px;}
.y4_c00090{bottom:75.900270px;}
.y3_c00090{bottom:114.060254px;}
.y28_c00090{bottom:134.400246px;}
.y27_c00090{bottom:153.479939px;}
.y26_c00090{bottom:170.759932px;}
.y25_c00090{bottom:177.599929px;}
.y24_c00090{bottom:188.939924px;}
.y23_c00090{bottom:218.639913px;}
.y22_c00090{bottom:249.779900px;}
.y21_c00090{bottom:280.739888px;}
.y20_c00090{bottom:311.879875px;}
.y1f_c00090{bottom:342.839863px;}
.y1e_c00090{bottom:373.979850px;}
.y1d_c00090{bottom:404.939838px;}
.y1c_c00090{bottom:436.079826px;}
.y1b_c00090{bottom:467.039813px;}
.y1a_c00090{bottom:498.179801px;}
.y18_c00090{bottom:529.139788px;}
.y19_c00090{bottom:537.419785px;}
.y17_c00090{bottom:560.279776px;}
.y16_c00090{bottom:591.239764px;}
.y15_c00090{bottom:622.199751px;}
.y14_c00090{bottom:653.339739px;}
.y13_c00090{bottom:684.299726px;}
.y12_c00090{bottom:715.439714px;}
.y11_c00090{bottom:746.399701px;}
.y10_c00090{bottom:777.539689px;}
.yf_c00090{bottom:808.499677px;}
.ye_c00090{bottom:839.639664px;}
.yd_c00090{bottom:870.599652px;}
.yc_c00090{bottom:901.739639px;}
.yb_c00090{bottom:932.699627px;}
.ya_c00090{bottom:963.839614px;}
.y9_c00090{bottom:994.799602px;}
.y8_c00090{bottom:1025.939590px;}
.y7_c00090{bottom:1056.899577px;}
.y6_c00090{bottom:1088.039565px;}
.y5_c00090{bottom:1118.999552px;}
.y2_c00090{bottom:1176.059530px;}
.y1_c00090{bottom:1196.219522px;}
.h6_c00090{height:38.158578px;}
.h2_c00090{height:44.149201px;}
.h5_c00090{height:47.344903px;}
.h1_c00090{height:58.651148px;}
.h3_c00090{height:70.628878px;}
.h4_c00090{height:70.664034px;}
.h0_c00090{height:1263.000000px;}
.w0_c00090{width:892.500000px;}
.x0_c00090{left:0.000000px;}
.x5_c00090{left:127.619739px;}
.x9_c00090{left:137.339945px;}
.x6_c00090{left:180.719928px;}
.x1_c00090{left:181.799927px;}
.x7_c00090{left:188.099925px;}
.x8_c00090{left:200.339920px;}
.x2_c00090{left:329.039408px;}
.x4_c00090{left:438.119825px;}
.x3_c00090{left:765.359694px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:14.256901pt;}
.ws0_c00090{word-spacing:-15.999994pt;}
.ws3_c00090{word-spacing:-13.279995pt;}
.ws1_c00090{word-spacing:-10.719996pt;}
.ws2_c00090{word-spacing:-8.639997pt;}
.ws4_c00090{word-spacing:0.000000pt;}
._f_c00090{margin-left:-8.564839pt;}
._a_c00090{margin-left:-2.122919pt;}
._1_c00090{margin-left:-0.982555pt;}
._0_c00090{width:1.314090pt;}
._c_c00090{width:2.791635pt;}
._e_c00090{width:3.889480pt;}
._b_c00090{width:4.971836pt;}
._8_c00090{width:6.215569pt;}
._7_c00090{width:7.110342pt;}
._9_c00090{width:11.599257pt;}
._3_c00090{width:13.435358pt;}
._4_c00090{width:14.428635pt;}
._2_c00090{width:17.249338pt;}
._d_c00090{width:19.940994pt;}
._6_c00090{width:21.098877pt;}
._5_c00090{width:22.325172pt;}
.fs4_c00090{font-size:34.559986pt;}
.fs3_c00090{font-size:42.879983pt;}
.fs0_c00090{font-size:53.119979pt;}
.fs1_c00090{font-size:58.879976pt;}
.fs2_c00090{font-size:63.999974pt;}
.y0_c00090{bottom:0.000000pt;}
.y4_c00090{bottom:67.466906pt;}
.y3_c00090{bottom:101.386893pt;}
.y28_c00090{bottom:119.466886pt;}
.y27_c00090{bottom:136.426612pt;}
.y26_c00090{bottom:151.786606pt;}
.y25_c00090{bottom:157.866604pt;}
.y24_c00090{bottom:167.946599pt;}
.y23_c00090{bottom:194.346589pt;}
.y22_c00090{bottom:222.026578pt;}
.y21_c00090{bottom:249.546567pt;}
.y20_c00090{bottom:277.226556pt;}
.y1f_c00090{bottom:304.746545pt;}
.y1e_c00090{bottom:332.426534pt;}
.y1d_c00090{bottom:359.946523pt;}
.y1c_c00090{bottom:387.626512pt;}
.y1b_c00090{bottom:415.146501pt;}
.y1a_c00090{bottom:442.826490pt;}
.y18_c00090{bottom:470.346479pt;}
.y19_c00090{bottom:477.706476pt;}
.y17_c00090{bottom:498.026467pt;}
.y16_c00090{bottom:525.546456pt;}
.y15_c00090{bottom:553.066445pt;}
.y14_c00090{bottom:580.746434pt;}
.y13_c00090{bottom:608.266423pt;}
.y12_c00090{bottom:635.946412pt;}
.y11_c00090{bottom:663.466401pt;}
.y10_c00090{bottom:691.146390pt;}
.yf_c00090{bottom:718.666379pt;}
.ye_c00090{bottom:746.346368pt;}
.yd_c00090{bottom:773.866357pt;}
.yc_c00090{bottom:801.546346pt;}
.yb_c00090{bottom:829.066335pt;}
.ya_c00090{bottom:856.746324pt;}
.y9_c00090{bottom:884.266313pt;}
.y8_c00090{bottom:911.946302pt;}
.y7_c00090{bottom:939.466291pt;}
.y6_c00090{bottom:967.146280pt;}
.y5_c00090{bottom:994.666269pt;}
.y2_c00090{bottom:1045.386249pt;}
.y1_c00090{bottom:1063.306241pt;}
.h6_c00090{height:33.918736pt;}
.h2_c00090{height:39.243734pt;}
.h5_c00090{height:42.084358pt;}
.h1_c00090{height:52.134354pt;}
.h3_c00090{height:62.781225pt;}
.h4_c00090{height:62.812475pt;}
.h0_c00090{height:1122.666667pt;}
.w0_c00090{width:793.333333pt;}
.x0_c00090{left:0.000000pt;}
.x5_c00090{left:113.439768pt;}
.x9_c00090{left:122.079951pt;}
.x6_c00090{left:160.639936pt;}
.x1_c00090{left:161.599935pt;}
.x7_c00090{left:167.199933pt;}
.x8_c00090{left:178.079929pt;}
.x2_c00090{left:292.479474pt;}
.x4_c00090{left:389.439844pt;}
.x3_c00090{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5974675a3f964c4c8b3638b.woff2')format("woff");}.ff1_c00091{font-family:ff1_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;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_c5459bef437ee6ee093d3fbf.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:0.675781;font-style:normal;font-weight:normal;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_54fcf2903bc3a78650bcdade.woff2')format("woff");}.ff3_c00091{font-family:ff3_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;}
.m0_c00091{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls3_c00091{letter-spacing:0.000000px;}
.ls1_c00091{letter-spacing:6.494457px;}
.ls2_c00091{letter-spacing:8.655717px;}
.ls0_c00091{letter-spacing:18.021233px;}
.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;}
}
.ws1_c00091{word-spacing:-17.999993px;}
.ws0_c00091{word-spacing:-12.059995px;}
.ws2_c00091{word-spacing:-9.719996px;}
.ws3_c00091{word-spacing:0.000000px;}
._10_c00091{margin-left:-10.844846px;}
._1_c00091{margin-left:-1.105374px;}
._0_c00091{width:1.195563px;}
._9_c00091{width:3.794088px;}
._2_c00091{width:4.870371px;}
._5_c00091{width:6.802717px;}
._3_c00091{width:8.219937px;}
._4_c00091{width:9.322835px;}
._c_c00091{width:10.703629px;}
._f_c00091{width:12.433763px;}
._b_c00091{width:13.705837px;}
._a_c00091{width:14.732096px;}
._6_c00091{width:16.796023px;}
._d_c00091{width:19.214054px;}
._e_c00091{width:20.391785px;}
._7_c00091{width:26.241155px;}
._8_c00091{width:27.312462px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs4_c00091{font-size:38.879984px;}
.fs3_c00091{font-size:48.239981px;}
.fs0_c00091{font-size:59.759976px;}
.fs1_c00091{font-size:66.239974px;}
.fs2_c00091{font-size:71.999971px;}
.y0_c00091{bottom:0.000000px;}
.y4_c00091{bottom:75.899970px;}
.y3_c00091{bottom:114.059954px;}
.y2c_c00091{bottom:154.379938px;}
.y2b_c00091{bottom:161.219936px;}
.y2a_c00091{bottom:192.719923px;}
.y29_c00091{bottom:209.819916px;}
.y28_c00091{bottom:216.659913px;}
.y27_c00091{bottom:227.099909px;}
.y26_c00091{bottom:244.379902px;}
.y25_c00091{bottom:261.659895px;}
.y24_c00091{bottom:268.499893px;}
.y23_c00091{bottom:279.839888px;}
.y21_c00091{bottom:310.979876px;}
.y22_c00091{bottom:319.259872px;}
.y20_c00091{bottom:341.939863px;}
.y1f_c00091{bottom:373.079851px;}
.y1e_c00091{bottom:404.039838px;}
.y1d_c00091{bottom:435.179826px;}
.y1c_c00091{bottom:466.139814px;}
.y1b_c00091{bottom:497.279801px;}
.y19_c00091{bottom:528.239789px;}
.y1a_c00091{bottom:536.519785px;}
.y18_c00091{bottom:559.379776px;}
.y17_c00091{bottom:590.339764px;}
.y16_c00091{bottom:621.479751px;}
.y15_c00091{bottom:652.439739px;}
.y14_c00091{bottom:683.579727px;}
.y13_c00091{bottom:714.539714px;}
.y12_c00091{bottom:745.679702px;}
.y11_c00091{bottom:776.639689px;}
.yf_c00091{bottom:807.779677px;}
.y10_c00091{bottom:816.059674px;}
.ye_c00091{bottom:838.739665px;}
.yd_c00091{bottom:869.879652px;}
.yc_c00091{bottom:900.839640px;}
.yb_c00091{bottom:931.979627px;}
.ya_c00091{bottom:962.939615px;}
.y9_c00091{bottom:994.079602px;}
.y8_c00091{bottom:1025.039590px;}
.y7_c00091{bottom:1056.179578px;}
.y6_c00091{bottom:1087.139565px;}
.y5_c00091{bottom:1118.279553px;}
.y2_c00091{bottom:1157.159537px;}
.y1_c00091{bottom:1196.039522px;}
.h5_c00091{height:38.158578px;}
.h2_c00091{height:44.149201px;}
.h4_c00091{height:47.344903px;}
.h1_c00091{height:58.651148px;}
.h3_c00091{height:70.664034px;}
.h0_c00091{height:1263.000000px;}
.w0_c00091{width:892.500000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:127.619949px;}
.xc_c00091{left:137.339945px;}
.x5_c00091{left:180.719579px;}
.xd_c00091{left:186.299925px;}
.x8_c00091{left:191.159924px;}
.x9_c00091{left:203.399919px;}
.x6_c00091{left:294.659882px;}
.x7_c00091{left:300.419880px;}
.x2_c00091{left:438.120035px;}
.xa_c00091{left:697.499721px;}
.xb_c00091{left:709.739716px;}
.xe_c00091{left:713.159715px;}
.x3_c00091{left:721.799711px;}
.x4_c00091{left:734.039706px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls3_c00091{letter-spacing:0.000000pt;}
.ls1_c00091{letter-spacing:5.772851pt;}
.ls2_c00091{letter-spacing:7.693970pt;}
.ls0_c00091{letter-spacing:16.018874pt;}
.ws1_c00091{word-spacing:-15.999994pt;}
.ws0_c00091{word-spacing:-10.719996pt;}
.ws2_c00091{word-spacing:-8.639997pt;}
.ws3_c00091{word-spacing:0.000000pt;}
._10_c00091{margin-left:-9.639863pt;}
._1_c00091{margin-left:-0.982555pt;}
._0_c00091{width:1.062723pt;}
._9_c00091{width:3.372523pt;}
._2_c00091{width:4.329219pt;}
._5_c00091{width:6.046860pt;}
._3_c00091{width:7.306611pt;}
._4_c00091{width:8.286965pt;}
._c_c00091{width:9.514337pt;}
._f_c00091{width:11.052234pt;}
._b_c00091{width:12.182966pt;}
._a_c00091{width:13.095197pt;}
._6_c00091{width:14.929798pt;}
._d_c00091{width:17.079160pt;}
._e_c00091{width:18.126031pt;}
._7_c00091{width:23.325471pt;}
._8_c00091{width:24.277744pt;}
.fs4_c00091{font-size:34.559986pt;}
.fs3_c00091{font-size:42.879983pt;}
.fs0_c00091{font-size:53.119979pt;}
.fs1_c00091{font-size:58.879976pt;}
.fs2_c00091{font-size:63.999974pt;}
.y0_c00091{bottom:0.000000pt;}
.y4_c00091{bottom:67.466640pt;}
.y3_c00091{bottom:101.386626pt;}
.y2c_c00091{bottom:137.226612pt;}
.y2b_c00091{bottom:143.306609pt;}
.y2a_c00091{bottom:171.306598pt;}
.y29_c00091{bottom:186.506592pt;}
.y28_c00091{bottom:192.586590pt;}
.y27_c00091{bottom:201.866586pt;}
.y26_c00091{bottom:217.226580pt;}
.y25_c00091{bottom:232.586574pt;}
.y24_c00091{bottom:238.666571pt;}
.y23_c00091{bottom:248.746567pt;}
.y21_c00091{bottom:276.426556pt;}
.y22_c00091{bottom:283.786553pt;}
.y20_c00091{bottom:303.946545pt;}
.y1f_c00091{bottom:331.626534pt;}
.y1e_c00091{bottom:359.146523pt;}
.y1d_c00091{bottom:386.826512pt;}
.y1c_c00091{bottom:414.346501pt;}
.y1b_c00091{bottom:442.026490pt;}
.y19_c00091{bottom:469.546479pt;}
.y1a_c00091{bottom:476.906476pt;}
.y18_c00091{bottom:497.226468pt;}
.y17_c00091{bottom:524.746457pt;}
.y16_c00091{bottom:552.426446pt;}
.y15_c00091{bottom:579.946435pt;}
.y14_c00091{bottom:607.626424pt;}
.y13_c00091{bottom:635.146413pt;}
.y12_c00091{bottom:662.826402pt;}
.y11_c00091{bottom:690.346391pt;}
.yf_c00091{bottom:718.026379pt;}
.y10_c00091{bottom:725.386377pt;}
.ye_c00091{bottom:745.546368pt;}
.yd_c00091{bottom:773.226357pt;}
.yc_c00091{bottom:800.746346pt;}
.yb_c00091{bottom:828.426335pt;}
.ya_c00091{bottom:855.946324pt;}
.y9_c00091{bottom:883.626313pt;}
.y8_c00091{bottom:911.146302pt;}
.y7_c00091{bottom:938.826291pt;}
.y6_c00091{bottom:966.346280pt;}
.y5_c00091{bottom:994.026269pt;}
.y2_c00091{bottom:1028.586255pt;}
.y1_c00091{bottom:1063.146241pt;}
.h5_c00091{height:33.918736pt;}
.h2_c00091{height:39.243734pt;}
.h4_c00091{height:42.084358pt;}
.h1_c00091{height:52.134354pt;}
.h3_c00091{height:62.812475pt;}
.h0_c00091{height:1122.666667pt;}
.w0_c00091{width:793.333333pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:113.439955pt;}
.xc_c00091{left:122.079951pt;}
.x5_c00091{left:160.639626pt;}
.xd_c00091{left:165.599934pt;}
.x8_c00091{left:169.919932pt;}
.x9_c00091{left:180.799928pt;}
.x6_c00091{left:261.919895pt;}
.x7_c00091{left:267.039893pt;}
.x2_c00091{left:389.440031pt;}
.xa_c00091{left:619.999752pt;}
.xb_c00091{left:630.879748pt;}
.xe_c00091{left:633.919746pt;}
.x3_c00091{left:641.599743pt;}
.x4_c00091{left:652.479739pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0db2b9553c39c571f834b6aa.woff2')format("woff");}.ff1_c00092{font-family:ff1_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:ff2_c00092;src:url('chunks/assets/font_2b3c152adcdab3c7895274ea.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:0.675781;font-style:normal;font-weight:normal;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_e4d1ee1827be71e443110ada.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.311035;font-style:normal;font-weight:normal;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_1754858d68d99d4562cd4424.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_3acae7d11ff8d75faa19cb64.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls8_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.021238px;}
.ls1_c00092{letter-spacing:0.731040px;}
.ls2_c00092{letter-spacing:3.612719px;}
.ls6_c00092{letter-spacing:5.053618px;}
.ls5_c00092{letter-spacing:5.774038px;}
.ls7_c00092{letter-spacing:8.827976px;}
.ls4_c00092{letter-spacing:12.257815px;}
.ls3_c00092{letter-spacing:18.021233px;}
.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;}
}
.ws2_c00092{word-spacing:-19.673272px;}
.ws1_c00092{word-spacing:-18.021231px;}
.ws0_c00092{word-spacing:-10.439996px;}
.ws3_c00092{word-spacing:0.000000px;}
._10_c00092{margin-left:-11.143672px;}
._1_c00092{margin-left:-1.105374px;}
._0_c00092{width:1.478351px;}
._b_c00092{width:2.644298px;}
._c_c00092{width:3.668299px;}
._9_c00092{width:5.141028px;}
._2_c00092{width:7.101543px;}
._4_c00092{width:8.192811px;}
._3_c00092{width:9.350341px;}
._d_c00092{width:10.409549px;}
._7_c00092{width:12.197610px;}
._8_c00092{width:13.699305px;}
._a_c00092{width:14.816589px;}
._f_c00092{width:19.412110px;}
._5_c00092{width:23.332222px;}
._6_c00092{width:24.416703px;}
._e_c00092{width:48.928609px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs5_c00092{font-size:38.879984px;}
.fs2_c00092{font-size:41.759983px;}
.fs4_c00092{font-size:48.239981px;}
.fs0_c00092{font-size:59.759976px;}
.fs1_c00092{font-size:66.239974px;}
.fs3_c00092{font-size:71.999971px;}
.y0_c00092{bottom:0.000000px;}
.y4_c00092{bottom:75.900270px;}
.y3_c00092{bottom:114.060254px;}
.y27_c00092{bottom:159.239936px;}
.y26_c00092{bottom:203.159919px;}
.y25_c00092{bottom:238.439905px;}
.y24_c00092{bottom:258.599897px;}
.y23_c00092{bottom:266.159894px;}
.y22_c00092{bottom:277.679889px;}
.y21_c00092{bottom:303.599879px;}
.y20_c00092{bottom:334.739866px;}
.y1f_c00092{bottom:365.699854px;}
.y1e_c00092{bottom:396.839841px;}
.y1d_c00092{bottom:427.799829px;}
.y1c_c00092{bottom:458.939816px;}
.y1b_c00092{bottom:489.899804px;}
.y1a_c00092{bottom:521.039792px;}
.y19_c00092{bottom:551.999779px;}
.y18_c00092{bottom:586.739765px;}
.y17_c00092{bottom:617.699753px;}
.y16_c00092{bottom:648.839740px;}
.y15_c00092{bottom:679.799728px;}
.y14_c00092{bottom:710.939716px;}
.y13_c00092{bottom:741.899703px;}
.y12_c00092{bottom:773.039691px;}
.y11_c00092{bottom:803.999678px;}
.y10_c00092{bottom:835.139666px;}
.yf_c00092{bottom:866.099654px;}
.ye_c00092{bottom:897.239641px;}
.yd_c00092{bottom:928.199629px;}
.yc_c00092{bottom:959.339616px;}
.yb_c00092{bottom:990.299604px;}
.ya_c00092{bottom:1021.439591px;}
.y9_c00092{bottom:1052.399579px;}
.y8_c00092{bottom:1091.279563px;}
.y7_c00092{bottom:1120.079552px;}
.y5_c00092{bottom:1120.079852px;}
.y6_c00092{bottom:1127.639549px;}
.y2_c00092{bottom:1176.059530px;}
.y1_c00092{bottom:1196.219522px;}
.h7_c00092{height:25.913662px;}
.h8_c00092{height:39.830258px;}
.h4_c00092{height:42.086233px;}
.h2_c00092{height:44.149201px;}
.h6_c00092{height:47.344903px;}
.h1_c00092{height:58.651148px;}
.h3_c00092{height:66.757473px;}
.h5_c00092{height:70.664034px;}
.h0_c00092{height:1263.000000px;}
.w0_c00092{width:892.500000px;}
.x0_c00092{left:0.000000px;}
.x5_c00092{left:127.619739px;}
.xd_c00092{left:137.339945px;}
.x8_c00092{left:180.719928px;}
.x1_c00092{left:181.799927px;}
.x6_c00092{left:282.059887px;}
.x9_c00092{left:288.539885px;}
.x7_c00092{left:292.499883px;}
.xa_c00092{left:312.659875px;}
.x2_c00092{left:329.039408px;}
.x4_c00092{left:438.119825px;}
.xb_c00092{left:494.639802px;}
.xc_c00092{left:507.599797px;}
.x3_c00092{left:765.359694px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls8_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.018878pt;}
.ls1_c00092{letter-spacing:0.649813pt;}
.ls2_c00092{letter-spacing:3.211305pt;}
.ls6_c00092{letter-spacing:4.492105pt;}
.ls5_c00092{letter-spacing:5.132478pt;}
.ls7_c00092{letter-spacing:7.847090pt;}
.ls4_c00092{letter-spacing:10.895836pt;}
.ls3_c00092{letter-spacing:16.018874pt;}
.ws2_c00092{word-spacing:-17.487353pt;}
.ws1_c00092{word-spacing:-16.018872pt;}
.ws0_c00092{word-spacing:-9.279996pt;}
.ws3_c00092{word-spacing:0.000000pt;}
._10_c00092{margin-left:-9.905486pt;}
._1_c00092{margin-left:-0.982555pt;}
._0_c00092{width:1.314090pt;}
._b_c00092{width:2.350487pt;}
._c_c00092{width:3.260710pt;}
._9_c00092{width:4.569802pt;}
._2_c00092{width:6.312483pt;}
._4_c00092{width:7.282499pt;}
._3_c00092{width:8.311415pt;}
._d_c00092{width:9.252933pt;}
._7_c00092{width:10.842320pt;}
._8_c00092{width:12.177160pt;}
._a_c00092{width:13.170302pt;}
._f_c00092{width:17.255209pt;}
._5_c00092{width:20.739752pt;}
._6_c00092{width:21.703736pt;}
._e_c00092{width:43.492097pt;}
.fs5_c00092{font-size:34.559986pt;}
.fs2_c00092{font-size:37.119985pt;}
.fs4_c00092{font-size:42.879983pt;}
.fs0_c00092{font-size:53.119979pt;}
.fs1_c00092{font-size:58.879976pt;}
.fs3_c00092{font-size:63.999974pt;}
.y0_c00092{bottom:0.000000pt;}
.y4_c00092{bottom:67.466906pt;}
.y3_c00092{bottom:101.386893pt;}
.y27_c00092{bottom:141.546610pt;}
.y26_c00092{bottom:180.586594pt;}
.y25_c00092{bottom:211.946582pt;}
.y24_c00092{bottom:229.866575pt;}
.y23_c00092{bottom:236.586572pt;}
.y22_c00092{bottom:246.826568pt;}
.y21_c00092{bottom:269.866559pt;}
.y20_c00092{bottom:297.546548pt;}
.y1f_c00092{bottom:325.066537pt;}
.y1e_c00092{bottom:352.746526pt;}
.y1d_c00092{bottom:380.266515pt;}
.y1c_c00092{bottom:407.946503pt;}
.y1b_c00092{bottom:435.466492pt;}
.y1a_c00092{bottom:463.146481pt;}
.y19_c00092{bottom:490.666470pt;}
.y18_c00092{bottom:521.546458pt;}
.y17_c00092{bottom:549.066447pt;}
.y16_c00092{bottom:576.746436pt;}
.y15_c00092{bottom:604.266425pt;}
.y14_c00092{bottom:631.946414pt;}
.y13_c00092{bottom:659.466403pt;}
.y12_c00092{bottom:687.146392pt;}
.y11_c00092{bottom:714.666381pt;}
.y10_c00092{bottom:742.346370pt;}
.yf_c00092{bottom:769.866359pt;}
.ye_c00092{bottom:797.546348pt;}
.yd_c00092{bottom:825.066337pt;}
.yc_c00092{bottom:852.746326pt;}
.yb_c00092{bottom:880.266315pt;}
.ya_c00092{bottom:907.946303pt;}
.y9_c00092{bottom:935.466292pt;}
.y8_c00092{bottom:970.026279pt;}
.y7_c00092{bottom:995.626268pt;}
.y5_c00092{bottom:995.626535pt;}
.y6_c00092{bottom:1002.346266pt;}
.y2_c00092{bottom:1045.386249pt;}
.y1_c00092{bottom:1063.306241pt;}
.h7_c00092{height:23.034366pt;}
.h8_c00092{height:35.404673pt;}
.h4_c00092{height:37.409985pt;}
.h2_c00092{height:39.243734pt;}
.h6_c00092{height:42.084358pt;}
.h1_c00092{height:52.134354pt;}
.h3_c00092{height:59.339976pt;}
.h5_c00092{height:62.812475pt;}
.h0_c00092{height:1122.666667pt;}
.w0_c00092{width:793.333333pt;}
.x0_c00092{left:0.000000pt;}
.x5_c00092{left:113.439768pt;}
.xd_c00092{left:122.079951pt;}
.x8_c00092{left:160.639936pt;}
.x1_c00092{left:161.599935pt;}
.x6_c00092{left:250.719900pt;}
.x9_c00092{left:256.479897pt;}
.x7_c00092{left:259.999896pt;}
.xa_c00092{left:277.919889pt;}
.x2_c00092{left:292.479474pt;}
.x4_c00092{left:389.439844pt;}
.xb_c00092{left:439.679824pt;}
.xc_c00092{left:451.199820pt;}
.x3_c00092{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_787a5973f8fac484a0ed0966.woff2')format("woff");}.ff1_c00093{font-family:ff1_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:ff2_c00093;src:url('chunks/assets/font_d86bcd803d2cd714e59bdd6b.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:0.675781;font-style:normal;font-weight:normal;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_2b85948318dfeab326192375.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;}
.m0_c00093{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls2_c00093{letter-spacing:0.000000px;}
.ls0_c00093{letter-spacing:0.153901px;}
.ls1_c00093{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00093{word-spacing:-14.939994px;}
.ws0_c00093{word-spacing:-12.059995px;}
.ws1_c00093{word-spacing:-9.719996px;}
.ws3_c00093{word-spacing:0.000000px;}
._a_c00093{margin-left:-12.716934px;}
._1_c00093{margin-left:-1.105374px;}
._0_c00093{width:1.195563px;}
._2_c00093{width:2.636076px;}
._5_c00093{width:3.668299px;}
._6_c00093{width:5.883878px;}
._3_c00093{width:9.053396px;}
._4_c00093{width:10.184129px;}
._7_c00093{width:12.394828px;}
._8_c00093{width:13.664542px;}
._9_c00093{width:16.379543px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs4_c00093{font-size:38.879984px;}
.fs3_c00093{font-size:48.239981px;}
.fs0_c00093{font-size:59.759976px;}
.fs1_c00093{font-size:66.239974px;}
.fs2_c00093{font-size:71.999971px;}
.y0_c00093{bottom:0.000000px;}
.y4_c00093{bottom:75.719970px;}
.y3_c00093{bottom:113.879954px;}
.y1c_c00093{bottom:133.140247px;}
.y1b_c00093{bottom:139.980244px;}
.y1a_c00093{bottom:151.319939px;}
.y19_c00093{bottom:213.959914px;}
.y18_c00093{bottom:244.919902px;}
.y17_c00093{bottom:276.059890px;}
.y16_c00093{bottom:307.019877px;}
.y15_c00093{bottom:338.159865px;}
.y14_c00093{bottom:369.119852px;}
.y13_c00093{bottom:400.259840px;}
.y11_c00093{bottom:431.219828px;}
.y12_c00093{bottom:439.499824px;}
.y10_c00093{bottom:462.359815px;}
.yf_c00093{bottom:493.319803px;}
.ye_c00093{bottom:524.459790px;}
.yd_c00093{bottom:555.419778px;}
.yc_c00093{bottom:586.559765px;}
.yb_c00093{bottom:617.519753px;}
.ya_c00093{bottom:648.479741px;}
.y9_c00093{bottom:679.619728px;}
.y8_c00093{bottom:710.579716px;}
.y7_c00093{bottom:741.719703px;}
.y6_c00093{bottom:771.599691px;}
.y5_c00093{bottom:796.979681px;}
.y2_c00093{bottom:1156.979537px;}
.y1_c00093{bottom:1195.859522px;}
.h8_c00093{height:38.158578px;}
.h2_c00093{height:44.149201px;}
.h7_c00093{height:47.321348px;}
.h6_c00093{height:47.344903px;}
.h1_c00093{height:58.651148px;}
.h4_c00093{height:65.010911px;}
.h5_c00093{height:70.628878px;}
.h3_c00093{height:70.664034px;}
.h0_c00093{height:1263.000000px;}
.w0_c00093{width:892.500000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:127.799949px;}
.xa_c00093{left:137.519945px;}
.x5_c00093{left:180.899930px;}
.x4_c00093{left:184.319926px;}
.x8_c00093{left:398.339841px;}
.x9_c00093{left:410.579836px;}
.x2_c00093{left:438.300034px;}
.x6_c00093{left:586.619765px;}
.x7_c00093{left:590.219764px;}
.x3_c00093{left:653.579739px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls2_c00093{letter-spacing:0.000000pt;}
.ls0_c00093{letter-spacing:0.136801pt;}
.ls1_c00093{letter-spacing:0.168267pt;}
.ws2_c00093{word-spacing:-13.279995pt;}
.ws0_c00093{word-spacing:-10.719996pt;}
.ws1_c00093{word-spacing:-8.639997pt;}
.ws3_c00093{word-spacing:0.000000pt;}
._a_c00093{margin-left:-11.303941pt;}
._1_c00093{margin-left:-0.982555pt;}
._0_c00093{width:1.062723pt;}
._2_c00093{width:2.343179pt;}
._5_c00093{width:3.260711pt;}
._6_c00093{width:5.230113pt;}
._3_c00093{width:8.047463pt;}
._4_c00093{width:9.052559pt;}
._7_c00093{width:11.017625pt;}
._8_c00093{width:12.146260pt;}
._9_c00093{width:14.559594pt;}
.fs4_c00093{font-size:34.559986pt;}
.fs3_c00093{font-size:42.879983pt;}
.fs0_c00093{font-size:53.119979pt;}
.fs1_c00093{font-size:58.879976pt;}
.fs2_c00093{font-size:63.999974pt;}
.y0_c00093{bottom:0.000000pt;}
.y4_c00093{bottom:67.306640pt;}
.y3_c00093{bottom:101.226626pt;}
.y1c_c00093{bottom:118.346886pt;}
.y1b_c00093{bottom:124.426884pt;}
.y1a_c00093{bottom:134.506613pt;}
.y19_c00093{bottom:190.186591pt;}
.y18_c00093{bottom:217.706580pt;}
.y17_c00093{bottom:245.386569pt;}
.y16_c00093{bottom:272.906558pt;}
.y15_c00093{bottom:300.586546pt;}
.y14_c00093{bottom:328.106535pt;}
.y13_c00093{bottom:355.786524pt;}
.y11_c00093{bottom:383.306513pt;}
.y12_c00093{bottom:390.666510pt;}
.y10_c00093{bottom:410.986502pt;}
.yf_c00093{bottom:438.506491pt;}
.ye_c00093{bottom:466.186480pt;}
.yd_c00093{bottom:493.706469pt;}
.yc_c00093{bottom:521.386458pt;}
.yb_c00093{bottom:548.906447pt;}
.ya_c00093{bottom:576.426436pt;}
.y9_c00093{bottom:604.106425pt;}
.y8_c00093{bottom:631.626414pt;}
.y7_c00093{bottom:659.306403pt;}
.y6_c00093{bottom:685.866392pt;}
.y5_c00093{bottom:708.426383pt;}
.y2_c00093{bottom:1028.426255pt;}
.y1_c00093{bottom:1062.986241pt;}
.h8_c00093{height:33.918736pt;}
.h2_c00093{height:39.243734pt;}
.h7_c00093{height:42.063421pt;}
.h6_c00093{height:42.084358pt;}
.h1_c00093{height:52.134354pt;}
.h4_c00093{height:57.787477pt;}
.h5_c00093{height:62.781225pt;}
.h3_c00093{height:62.812475pt;}
.h0_c00093{height:1122.666667pt;}
.w0_c00093{width:793.333333pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:113.599955pt;}
.xa_c00093{left:122.239951pt;}
.x5_c00093{left:160.799938pt;}
.x4_c00093{left:163.839934pt;}
.x8_c00093{left:354.079858pt;}
.x9_c00093{left:364.959854pt;}
.x2_c00093{left:389.600031pt;}
.x6_c00093{left:521.439791pt;}
.x7_c00093{left:524.639790pt;}
.x3_c00093{left:580.959768pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b922cfc4c20e078aa92b95a5.woff2')format("woff");}.ff1_c00094{font-family:ff1_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:ff2_c00094;src:url('chunks/assets/font_6b647c2d4db0e263038a8c4f.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:0.675781;font-style:normal;font-weight:normal;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_5aa55b8bccd06bfbcccc2111.woff2')format("woff");}.ff3_c00094{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00094{word-spacing:-17.999993px;}
.ws1_c00094{word-spacing:-12.059995px;}
.ws2_c00094{word-spacing:-9.719996px;}
.ws3_c00094{word-spacing:0.000000px;}
._d_c00094{margin-left:-11.010123px;}
._1_c00094{margin-left:-1.105374px;}
._0_c00094{width:1.478351px;}
._2_c00094{width:2.678639px;}
._9_c00094{width:3.982866px;}
._8_c00094{width:5.071289px;}
._7_c00094{width:6.967994px;}
._6_c00094{width:8.052207px;}
._a_c00094{width:9.882920px;}
._4_c00094{width:11.828199px;}
._5_c00094{width:12.947283px;}
._3_c00094{width:19.603771px;}
._b_c00094{width:20.856922px;}
._c_c00094{width:30.530612px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs4_c00094{font-size:38.879984px;}
.fs3_c00094{font-size:48.239981px;}
.fs0_c00094{font-size:59.759976px;}
.fs1_c00094{font-size:66.239974px;}
.fs2_c00094{font-size:71.999971px;}
.y0_c00094{bottom:0.000000px;}
.y4_c00094{bottom:75.900270px;}
.y3_c00094{bottom:114.060254px;}
.y28_c00094{bottom:144.300242px;}
.y27_c00094{bottom:164.459934px;}
.y26_c00094{bottom:181.739927px;}
.y25_c00094{bottom:199.019920px;}
.y24_c00094{bottom:205.859918px;}
.y23_c00094{bottom:217.019913px;}
.y21_c00094{bottom:249.779900px;}
.y22_c00094{bottom:258.059897px;}
.y20_c00094{bottom:280.739888px;}
.y1f_c00094{bottom:311.879875px;}
.y1e_c00094{bottom:342.839863px;}
.y1d_c00094{bottom:373.979850px;}
.y1c_c00094{bottom:404.939838px;}
.y1b_c00094{bottom:436.079826px;}
.y1a_c00094{bottom:467.039813px;}
.y19_c00094{bottom:498.179801px;}
.y18_c00094{bottom:529.139788px;}
.y17_c00094{bottom:560.279776px;}
.y16_c00094{bottom:591.239764px;}
.y15_c00094{bottom:622.199751px;}
.y14_c00094{bottom:653.339739px;}
.y13_c00094{bottom:684.299726px;}
.y12_c00094{bottom:715.439714px;}
.y11_c00094{bottom:746.399701px;}
.y10_c00094{bottom:777.539689px;}
.yf_c00094{bottom:808.499677px;}
.ye_c00094{bottom:839.639664px;}
.yd_c00094{bottom:870.599652px;}
.yc_c00094{bottom:901.739639px;}
.yb_c00094{bottom:932.699627px;}
.ya_c00094{bottom:963.839614px;}
.y9_c00094{bottom:994.799602px;}
.y8_c00094{bottom:1025.939590px;}
.y7_c00094{bottom:1056.899577px;}
.y6_c00094{bottom:1088.039565px;}
.y5_c00094{bottom:1118.999552px;}
.y2_c00094{bottom:1176.059530px;}
.y1_c00094{bottom:1196.219522px;}
.h6_c00094{height:38.158578px;}
.h2_c00094{height:44.149201px;}
.h5_c00094{height:47.321348px;}
.h1_c00094{height:58.651148px;}
.h4_c00094{height:70.628878px;}
.h3_c00094{height:70.664034px;}
.h0_c00094{height:1263.000000px;}
.w0_c00094{width:892.500000px;}
.x0_c00094{left:0.000000px;}
.x5_c00094{left:127.619739px;}
.x9_c00094{left:137.339945px;}
.x6_c00094{left:180.719930px;}
.x1_c00094{left:181.799927px;}
.x7_c00094{left:220.139912px;}
.x8_c00094{left:232.379907px;}
.x2_c00094{left:329.039408px;}
.x4_c00094{left:438.119825px;}
.x3_c00094{left:765.359694px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:-15.999994pt;}
.ws1_c00094{word-spacing:-10.719996pt;}
.ws2_c00094{word-spacing:-8.639997pt;}
.ws3_c00094{word-spacing:0.000000pt;}
._d_c00094{margin-left:-9.786776pt;}
._1_c00094{margin-left:-0.982555pt;}
._0_c00094{width:1.314090pt;}
._2_c00094{width:2.381012pt;}
._9_c00094{width:3.540325pt;}
._8_c00094{width:4.507812pt;}
._7_c00094{width:6.193772pt;}
._6_c00094{width:7.157518pt;}
._a_c00094{width:8.784818pt;}
._4_c00094{width:10.513955pt;}
._5_c00094{width:11.508696pt;}
._3_c00094{width:17.425574pt;}
._b_c00094{width:18.539486pt;}
._c_c00094{width:27.138322pt;}
.fs4_c00094{font-size:34.559986pt;}
.fs3_c00094{font-size:42.879983pt;}
.fs0_c00094{font-size:53.119979pt;}
.fs1_c00094{font-size:58.879976pt;}
.fs2_c00094{font-size:63.999974pt;}
.y0_c00094{bottom:0.000000pt;}
.y4_c00094{bottom:67.466906pt;}
.y3_c00094{bottom:101.386893pt;}
.y28_c00094{bottom:128.266882pt;}
.y27_c00094{bottom:146.186608pt;}
.y26_c00094{bottom:161.546602pt;}
.y25_c00094{bottom:176.906596pt;}
.y24_c00094{bottom:182.986593pt;}
.y23_c00094{bottom:192.906590pt;}
.y21_c00094{bottom:222.026578pt;}
.y22_c00094{bottom:229.386575pt;}
.y20_c00094{bottom:249.546567pt;}
.y1f_c00094{bottom:277.226556pt;}
.y1e_c00094{bottom:304.746545pt;}
.y1d_c00094{bottom:332.426534pt;}
.y1c_c00094{bottom:359.946523pt;}
.y1b_c00094{bottom:387.626512pt;}
.y1a_c00094{bottom:415.146501pt;}
.y19_c00094{bottom:442.826490pt;}
.y18_c00094{bottom:470.346479pt;}
.y17_c00094{bottom:498.026467pt;}
.y16_c00094{bottom:525.546456pt;}
.y15_c00094{bottom:553.066445pt;}
.y14_c00094{bottom:580.746434pt;}
.y13_c00094{bottom:608.266423pt;}
.y12_c00094{bottom:635.946412pt;}
.y11_c00094{bottom:663.466401pt;}
.y10_c00094{bottom:691.146390pt;}
.yf_c00094{bottom:718.666379pt;}
.ye_c00094{bottom:746.346368pt;}
.yd_c00094{bottom:773.866357pt;}
.yc_c00094{bottom:801.546346pt;}
.yb_c00094{bottom:829.066335pt;}
.ya_c00094{bottom:856.746324pt;}
.y9_c00094{bottom:884.266313pt;}
.y8_c00094{bottom:911.946302pt;}
.y7_c00094{bottom:939.466291pt;}
.y6_c00094{bottom:967.146280pt;}
.y5_c00094{bottom:994.666269pt;}
.y2_c00094{bottom:1045.386249pt;}
.y1_c00094{bottom:1063.306241pt;}
.h6_c00094{height:33.918736pt;}
.h2_c00094{height:39.243734pt;}
.h5_c00094{height:42.063421pt;}
.h1_c00094{height:52.134354pt;}
.h4_c00094{height:62.781225pt;}
.h3_c00094{height:62.812475pt;}
.h0_c00094{height:1122.666667pt;}
.w0_c00094{width:793.333333pt;}
.x0_c00094{left:0.000000pt;}
.x5_c00094{left:113.439768pt;}
.x9_c00094{left:122.079951pt;}
.x6_c00094{left:160.639938pt;}
.x1_c00094{left:161.599935pt;}
.x7_c00094{left:195.679922pt;}
.x8_c00094{left:206.559917pt;}
.x2_c00094{left:292.479474pt;}
.x4_c00094{left:389.439844pt;}
.x3_c00094{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e676eeb2244f2c6262737b07.woff2')format("woff");}.ff1_c00095{font-family:ff1_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:ff2_c00095;src:url('chunks/assets/font_c8acb4f63ef3550cdbcf5339.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.311035;font-style:normal;font-weight:normal;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_65a4e654f22d74943771ffa0.woff2')format("woff");}.ff4_c00095{font-family:ff4_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;}
.m0_c00095{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls2_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:6.494457px;}
.ls1_c00095{letter-spacing:7.935297px;}
.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:-12.059995px;}
.ws1_c00095{word-spacing:-9.437756px;}
.ws2_c00095{word-spacing:0.000000px;}
._10_c00095{margin-left:-2.296555px;}
._1_c00095{margin-left:-1.105374px;}
._0_c00095{width:1.195563px;}
._9_c00095{width:2.237579px;}
._e_c00095{width:3.320197px;}
._a_c00095{width:4.398177px;}
._3_c00095{width:6.062137px;}
._4_c00095{width:7.158787px;}
._6_c00095{width:9.061962px;}
._5_c00095{width:10.181508px;}
._c_c00095{width:11.594273px;}
._f_c00095{width:13.000891px;}
._7_c00095{width:15.472704px;}
._b_c00095{width:16.659485px;}
._8_c00095{width:19.072336px;}
._d_c00095{width:20.317254px;}
._2_c00095{width:23.894526px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs4_c00095{font-size:41.759983px;}
.fs3_c00095{font-size:48.239981px;}
.fs0_c00095{font-size:59.759976px;}
.fs1_c00095{font-size:66.239974px;}
.fs2_c00095{font-size:71.999971px;}
.y0_c00095{bottom:0.000000px;}
.y4_c00095{bottom:75.899970px;}
.y3_c00095{bottom:114.059954px;}
.y27_c00095{bottom:137.639945px;}
.y26_c00095{bottom:158.519937px;}
.y25_c00095{bottom:166.079934px;}
.y24_c00095{bottom:178.859928px;}
.y23_c00095{bottom:197.939921px;}
.y22_c00095{bottom:216.119914px;}
.y20_c00095{bottom:261.299895px;}
.y21_c00095{bottom:269.579892px;}
.y1f_c00095{bottom:292.439883px;}
.y1e_c00095{bottom:323.399871px;}
.y1d_c00095{bottom:354.539858px;}
.y1c_c00095{bottom:385.499846px;}
.y1b_c00095{bottom:416.639833px;}
.y1a_c00095{bottom:462.539815px;}
.y19_c00095{bottom:493.679803px;}
.y18_c00095{bottom:524.639790px;}
.y17_c00095{bottom:555.779778px;}
.y16_c00095{bottom:586.739765px;}
.y15_c00095{bottom:617.879753px;}
.y14_c00095{bottom:648.839740px;}
.y13_c00095{bottom:679.979728px;}
.y12_c00095{bottom:710.939716px;}
.y11_c00095{bottom:742.079703px;}
.y10_c00095{bottom:773.039691px;}
.yf_c00095{bottom:804.179678px;}
.ye_c00095{bottom:835.139666px;}
.yd_c00095{bottom:866.279653px;}
.yc_c00095{bottom:897.239641px;}
.yb_c00095{bottom:928.379629px;}
.ya_c00095{bottom:959.339616px;}
.y9_c00095{bottom:994.079602px;}
.y8_c00095{bottom:1025.039590px;}
.y7_c00095{bottom:1056.179578px;}
.y6_c00095{bottom:1087.139565px;}
.y5_c00095{bottom:1118.279553px;}
.y2_c00095{bottom:1157.159537px;}
.y1_c00095{bottom:1196.039522px;}
.h6_c00095{height:27.833192px;}
.h2_c00095{height:44.149201px;}
.h5_c00095{height:47.344903px;}
.h1_c00095{height:58.651148px;}
.h3_c00095{height:70.664034px;}
.h4_c00095{height:72.562471px;}
.h0_c00095{height:1263.000000px;}
.w0_c00095{width:892.500000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:127.619949px;}
.x6_c00095{left:138.059945px;}
.x7_c00095{left:143.999942px;}
.x3_c00095{left:180.719928px;}
.x4_c00095{left:256.499897px;}
.x5_c00095{left:268.739893px;}
.x2_c00095{left:438.120035px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls2_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:5.772851pt;}
.ls1_c00095{letter-spacing:7.053597pt;}
.ws0_c00095{word-spacing:-10.719996pt;}
.ws1_c00095{word-spacing:-8.389117pt;}
.ws2_c00095{word-spacing:0.000000pt;}
._10_c00095{margin-left:-2.041382pt;}
._1_c00095{margin-left:-0.982555pt;}
._0_c00095{width:1.062723pt;}
._9_c00095{width:1.988959pt;}
._e_c00095{width:2.951286pt;}
._a_c00095{width:3.909491pt;}
._3_c00095{width:5.388566pt;}
._4_c00095{width:6.363366pt;}
._6_c00095{width:8.055077pt;}
._5_c00095{width:9.050230pt;}
._c_c00095{width:10.306020pt;}
._f_c00095{width:11.556347pt;}
._7_c00095{width:13.753515pt;}
._b_c00095{width:14.808431pt;}
._8_c00095{width:16.953188pt;}
._d_c00095{width:18.059781pt;}
._2_c00095{width:21.239579pt;}
.fs4_c00095{font-size:37.119985pt;}
.fs3_c00095{font-size:42.879983pt;}
.fs0_c00095{font-size:53.119979pt;}
.fs1_c00095{font-size:58.879976pt;}
.fs2_c00095{font-size:63.999974pt;}
.y0_c00095{bottom:0.000000pt;}
.y4_c00095{bottom:67.466640pt;}
.y3_c00095{bottom:101.386626pt;}
.y27_c00095{bottom:122.346618pt;}
.y26_c00095{bottom:140.906610pt;}
.y25_c00095{bottom:147.626608pt;}
.y24_c00095{bottom:158.986603pt;}
.y23_c00095{bottom:175.946596pt;}
.y22_c00095{bottom:192.106590pt;}
.y20_c00095{bottom:232.266574pt;}
.y21_c00095{bottom:239.626571pt;}
.y1f_c00095{bottom:259.946563pt;}
.y1e_c00095{bottom:287.466552pt;}
.y1d_c00095{bottom:315.146541pt;}
.y1c_c00095{bottom:342.666530pt;}
.y1b_c00095{bottom:370.346519pt;}
.y1a_c00095{bottom:411.146502pt;}
.y19_c00095{bottom:438.826491pt;}
.y18_c00095{bottom:466.346480pt;}
.y17_c00095{bottom:494.026469pt;}
.y16_c00095{bottom:521.546458pt;}
.y15_c00095{bottom:549.226447pt;}
.y14_c00095{bottom:576.746436pt;}
.y13_c00095{bottom:604.426425pt;}
.y12_c00095{bottom:631.946414pt;}
.y11_c00095{bottom:659.626403pt;}
.y10_c00095{bottom:687.146392pt;}
.yf_c00095{bottom:714.826381pt;}
.ye_c00095{bottom:742.346370pt;}
.yd_c00095{bottom:770.026359pt;}
.yc_c00095{bottom:797.546348pt;}
.yb_c00095{bottom:825.226337pt;}
.ya_c00095{bottom:852.746326pt;}
.y9_c00095{bottom:883.626313pt;}
.y8_c00095{bottom:911.146302pt;}
.y7_c00095{bottom:938.826291pt;}
.y6_c00095{bottom:966.346280pt;}
.y5_c00095{bottom:994.026269pt;}
.y2_c00095{bottom:1028.586255pt;}
.y1_c00095{bottom:1063.146241pt;}
.h6_c00095{height:24.740615pt;}
.h2_c00095{height:39.243734pt;}
.h5_c00095{height:42.084358pt;}
.h1_c00095{height:52.134354pt;}
.h3_c00095{height:62.812475pt;}
.h4_c00095{height:64.499974pt;}
.h0_c00095{height:1122.666667pt;}
.w0_c00095{width:793.333333pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:113.439955pt;}
.x6_c00095{left:122.719951pt;}
.x7_c00095{left:127.999949pt;}
.x3_c00095{left:160.639936pt;}
.x4_c00095{left:227.999909pt;}
.x5_c00095{left:238.879904pt;}
.x2_c00095{left:389.440031pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dae107af0a0108fd76f8be0d.woff2')format("woff");}.ff1_c00096{font-family:ff1_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:ff2_c00096;src:url('chunks/assets/font_07453fb24d31c17d6ec03335.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.311035;font-style:normal;font-weight:normal;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_1f5fdca100fcbc438e6140ef.woff2')format("woff");}.ff4_c00096{font-family:ff4_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;}
.m0_c00096{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls2_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.009900px;}
.ls1_c00096{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00096{word-spacing:-10.439996px;}
.ws1_c00096{word-spacing:-9.719996px;}
.ws2_c00096{word-spacing:0.000000px;}
._9_c00096{margin-left:-12.716934px;}
._1_c00096{margin-left:-1.105374px;}
._0_c00096{width:1.478351px;}
._2_c00096{width:3.307642px;}
._3_c00096{width:5.026350px;}
._4_c00096{width:9.419750px;}
._6_c00096{width:10.652792px;}
._8_c00096{width:11.674448px;}
._5_c00096{width:12.730241px;}
._7_c00096{width:22.926009px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs4_c00096{font-size:38.879984px;}
.fs3_c00096{font-size:41.759983px;}
.fs0_c00096{font-size:59.759976px;}
.fs1_c00096{font-size:66.239974px;}
.fs2_c00096{font-size:71.999971px;}
.y0_c00096{bottom:0.000000px;}
.y4_c00096{bottom:75.720270px;}
.y3_c00096{bottom:113.880254px;}
.y1b_c00096{bottom:148.980240px;}
.y1a_c00096{bottom:183.179927px;}
.y19_c00096{bottom:190.019924px;}
.y18_c00096{bottom:201.539919px;}
.y17_c00096{bottom:261.839895px;}
.y16_c00096{bottom:292.979883px;}
.y15_c00096{bottom:344.999862px;}
.y14_c00096{bottom:375.959850px;}
.y13_c00096{bottom:407.099837px;}
.y12_c00096{bottom:438.059825px;}
.y11_c00096{bottom:469.199812px;}
.y10_c00096{bottom:500.159800px;}
.yf_c00096{bottom:531.299787px;}
.ye_c00096{bottom:562.259775px;}
.yd_c00096{bottom:593.399763px;}
.yc_c00096{bottom:624.359750px;}
.yb_c00096{bottom:676.379729px;}
.ya_c00096{bottom:707.519717px;}
.y9_c00096{bottom:738.479705px;}
.y8_c00096{bottom:769.619692px;}
.y6_c00096{bottom:820.379672px;}
.y7_c00096{bottom:827.939669px;}
.y5_c00096{bottom:860.699656px;}
.y2_c00096{bottom:1175.879530px;}
.y1_c00096{bottom:1196.039522px;}
.h6_c00096{height:38.158578px;}
.h5_c00096{height:40.985140px;}
.h2_c00096{height:44.149201px;}
.h1_c00096{height:58.651148px;}
.h4_c00096{height:66.757473px;}
.h3_c00096{height:70.664034px;}
.h0_c00096{height:1263.000000px;}
.w0_c00096{width:892.500000px;}
.x0_c00096{left:0.000000px;}
.x5_c00096{left:127.799739px;}
.xb_c00096{left:137.519945px;}
.xa_c00096{left:180.899928px;}
.x1_c00096{left:181.979927px;}
.x7_c00096{left:306.179878px;}
.x2_c00096{left:329.219408px;}
.x4_c00096{left:438.299825px;}
.x8_c00096{left:576.539769px;}
.x9_c00096{left:586.979765px;}
.x6_c00096{left:645.659742px;}
.x3_c00096{left:765.539694px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls2_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.008800pt;}
.ls1_c00096{letter-spacing:0.136801pt;}
.ws0_c00096{word-spacing:-9.279996pt;}
.ws1_c00096{word-spacing:-8.639997pt;}
.ws2_c00096{word-spacing:0.000000pt;}
._9_c00096{margin-left:-11.303941pt;}
._1_c00096{margin-left:-0.982555pt;}
._0_c00096{width:1.314090pt;}
._2_c00096{width:2.940126pt;}
._3_c00096{width:4.467867pt;}
._4_c00096{width:8.373111pt;}
._6_c00096{width:9.469148pt;}
._8_c00096{width:10.377287pt;}
._5_c00096{width:11.315770pt;}
._7_c00096{width:20.378675pt;}
.fs4_c00096{font-size:34.559986pt;}
.fs3_c00096{font-size:37.119985pt;}
.fs0_c00096{font-size:53.119979pt;}
.fs1_c00096{font-size:58.879976pt;}
.fs2_c00096{font-size:63.999974pt;}
.y0_c00096{bottom:0.000000pt;}
.y4_c00096{bottom:67.306906pt;}
.y3_c00096{bottom:101.226893pt;}
.y1b_c00096{bottom:132.426880pt;}
.y1a_c00096{bottom:162.826602pt;}
.y19_c00096{bottom:168.906599pt;}
.y18_c00096{bottom:179.146595pt;}
.y17_c00096{bottom:232.746574pt;}
.y16_c00096{bottom:260.426562pt;}
.y15_c00096{bottom:306.666544pt;}
.y14_c00096{bottom:334.186533pt;}
.y13_c00096{bottom:361.866522pt;}
.y12_c00096{bottom:389.386511pt;}
.y11_c00096{bottom:417.066500pt;}
.y10_c00096{bottom:444.586489pt;}
.yf_c00096{bottom:472.266478pt;}
.ye_c00096{bottom:499.786467pt;}
.yd_c00096{bottom:527.466456pt;}
.yc_c00096{bottom:554.986445pt;}
.yb_c00096{bottom:601.226426pt;}
.ya_c00096{bottom:628.906415pt;}
.y9_c00096{bottom:656.426404pt;}
.y8_c00096{bottom:684.106393pt;}
.y6_c00096{bottom:729.226375pt;}
.y7_c00096{bottom:735.946372pt;}
.y5_c00096{bottom:765.066361pt;}
.y2_c00096{bottom:1045.226249pt;}
.y1_c00096{bottom:1063.146241pt;}
.h6_c00096{height:33.918736pt;}
.h5_c00096{height:36.431235pt;}
.h2_c00096{height:39.243734pt;}
.h1_c00096{height:52.134354pt;}
.h4_c00096{height:59.339976pt;}
.h3_c00096{height:62.812475pt;}
.h0_c00096{height:1122.666667pt;}
.w0_c00096{width:793.333333pt;}
.x0_c00096{left:0.000000pt;}
.x5_c00096{left:113.599768pt;}
.xb_c00096{left:122.239951pt;}
.xa_c00096{left:160.799936pt;}
.x1_c00096{left:161.759935pt;}
.x7_c00096{left:272.159891pt;}
.x2_c00096{left:292.639474pt;}
.x4_c00096{left:389.599844pt;}
.x8_c00096{left:512.479795pt;}
.x9_c00096{left:521.759791pt;}
.x6_c00096{left:573.919770pt;}
.x3_c00096{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e7890ddb1031cf5aa342f0d.woff2')format("woff");}.ff1_c00097{font-family:ff1_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:ff2_c00097;src:url('chunks/assets/font_6526a0e7200aed5323b80514.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:0.675781;font-style:normal;font-weight:normal;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_d528e27517fe5608cae284f0.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_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff4_c00097{font-family:ff4_c00097;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls5_c00097{letter-spacing:0.000000px;}
.ls2_c00097{letter-spacing:0.009850px;}
.ls1_c00097{letter-spacing:0.010553px;}
.ls3_c00097{letter-spacing:0.153901px;}
.ls4_c00097{letter-spacing:0.189300px;}
.ls0_c00097{letter-spacing:0.731040px;}
.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;}
}
.ws0_c00097{word-spacing:-10.439996px;}
.ws1_c00097{word-spacing:-9.719996px;}
.ws2_c00097{word-spacing:0.000000px;}
._c_c00097{margin-left:-12.716934px;}
._1_c00097{margin-left:-1.105374px;}
._0_c00097{width:1.195563px;}
._8_c00097{width:2.404897px;}
._5_c00097{width:4.124192px;}
._6_c00097{width:5.403009px;}
._b_c00097{width:6.580794px;}
._7_c00097{width:8.407723px;}
._3_c00097{width:10.182702px;}
._4_c00097{width:11.197339px;}
._2_c00097{width:15.969806px;}
._9_c00097{width:23.536645px;}
._a_c00097{width:24.704960px;}
.fc1_c00097{color:transparent;}
.fc0_c00097{color:rgb(0,0,0);}
.fs4_c00097{font-size:38.879984px;}
.fs3_c00097{font-size:41.759983px;}
.fs0_c00097{font-size:59.759976px;}
.fs1_c00097{font-size:66.239974px;}
.fs2_c00097{font-size:71.999971px;}
.y0_c00097{bottom:0.000000px;}
.y4_c00097{bottom:75.719970px;}
.y3_c00097{bottom:113.879954px;}
.y23_c00097{bottom:133.499947px;}
.y22_c00097{bottom:151.499939px;}
.y21_c00097{bottom:158.339937px;}
.y20_c00097{bottom:183.539927px;}
.y1f_c00097{bottom:200.999920px;}
.y1e_c00097{bottom:207.839917px;}
.y1d_c00097{bottom:219.179912px;}
.y1b_c00097{bottom:271.379891px;}
.y1c_c00097{bottom:278.939888px;}
.y1a_c00097{bottom:315.659874px;}
.y19_c00097{bottom:361.739855px;}
.y18_c00097{bottom:407.819837px;}
.y17_c00097{bottom:453.719819px;}
.y16_c00097{bottom:506.279797px;}
.y15_c00097{bottom:558.299777px;}
.y14_c00097{bottom:589.259764px;}
.y13_c00097{bottom:620.399752px;}
.y12_c00097{bottom:672.419731px;}
.y11_c00097{bottom:703.379719px;}
.y10_c00097{bottom:734.519706px;}
.yf_c00097{bottom:765.479694px;}
.ye_c00097{bottom:796.619681px;}
.yd_c00097{bottom:827.579669px;}
.yc_c00097{bottom:879.599648px;}
.yb_c00097{bottom:910.739636px;}
.ya_c00097{bottom:941.699623px;}
.y9_c00097{bottom:972.839611px;}
.y8_c00097{bottom:1003.799598px;}
.y7_c00097{bottom:1034.939586px;}
.y6_c00097{bottom:1086.959565px;}
.y5_c00097{bottom:1118.099553px;}
.y2_c00097{bottom:1156.979537px;}
.y1_c00097{bottom:1195.859522px;}
.h8_c00097{height:38.158578px;}
.h9_c00097{height:39.830258px;}
.h6_c00097{height:40.985140px;}
.h2_c00097{height:44.149201px;}
.h1_c00097{height:58.651148px;}
.h5_c00097{height:65.010911px;}
.h7_c00097{height:66.757473px;}
.h3_c00097{height:70.664034px;}
.h4_c00097{height:72.562471px;}
.h0_c00097{height:1263.000000px;}
.w0_c00097{width:892.500000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:127.799949px;}
.xa_c00097{left:137.519945px;}
.x3_c00097{left:180.900080px;}
.x6_c00097{left:377.639849px;}
.x5_c00097{left:383.759251px;}
.x7_c00097{left:388.079845px;}
.x4_c00097{left:436.859233px;}
.x2_c00097{left:438.300034px;}
.x8_c00097{left:691.559723px;}
.x9_c00097{left:701.999719px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls5_c00097{letter-spacing:0.000000pt;}
.ls2_c00097{letter-spacing:0.008755pt;}
.ls1_c00097{letter-spacing:0.009381pt;}
.ls3_c00097{letter-spacing:0.136801pt;}
.ls4_c00097{letter-spacing:0.168267pt;}
.ls0_c00097{letter-spacing:0.649813pt;}
.ws0_c00097{word-spacing:-9.279996pt;}
.ws1_c00097{word-spacing:-8.639997pt;}
.ws2_c00097{word-spacing:0.000000pt;}
._c_c00097{margin-left:-11.303941pt;}
._1_c00097{margin-left:-0.982555pt;}
._0_c00097{width:1.062723pt;}
._8_c00097{width:2.137686pt;}
._5_c00097{width:3.665949pt;}
._6_c00097{width:4.802674pt;}
._b_c00097{width:5.849595pt;}
._7_c00097{width:7.473531pt;}
._3_c00097{width:9.051291pt;}
._4_c00097{width:9.953191pt;}
._2_c00097{width:14.195383pt;}
._9_c00097{width:20.921462pt;}
._a_c00097{width:21.959965pt;}
.fs4_c00097{font-size:34.559986pt;}
.fs3_c00097{font-size:37.119985pt;}
.fs0_c00097{font-size:53.119979pt;}
.fs1_c00097{font-size:58.879976pt;}
.fs2_c00097{font-size:63.999974pt;}
.y0_c00097{bottom:0.000000pt;}
.y4_c00097{bottom:67.306640pt;}
.y3_c00097{bottom:101.226626pt;}
.y23_c00097{bottom:118.666619pt;}
.y22_c00097{bottom:134.666613pt;}
.y21_c00097{bottom:140.746610pt;}
.y20_c00097{bottom:163.146601pt;}
.y1f_c00097{bottom:178.666595pt;}
.y1e_c00097{bottom:184.746593pt;}
.y1d_c00097{bottom:194.826589pt;}
.y1b_c00097{bottom:241.226570pt;}
.y1c_c00097{bottom:247.946567pt;}
.y1a_c00097{bottom:280.586554pt;}
.y19_c00097{bottom:321.546538pt;}
.y18_c00097{bottom:362.506522pt;}
.y17_c00097{bottom:403.306505pt;}
.y16_c00097{bottom:450.026487pt;}
.y15_c00097{bottom:496.266468pt;}
.y14_c00097{bottom:523.786457pt;}
.y13_c00097{bottom:551.466446pt;}
.y12_c00097{bottom:597.706428pt;}
.y11_c00097{bottom:625.226417pt;}
.y10_c00097{bottom:652.906406pt;}
.yf_c00097{bottom:680.426394pt;}
.ye_c00097{bottom:708.106383pt;}
.yd_c00097{bottom:735.626372pt;}
.yc_c00097{bottom:781.866354pt;}
.yb_c00097{bottom:809.546343pt;}
.ya_c00097{bottom:837.066332pt;}
.y9_c00097{bottom:864.746321pt;}
.y8_c00097{bottom:892.266310pt;}
.y7_c00097{bottom:919.946299pt;}
.y6_c00097{bottom:966.186280pt;}
.y5_c00097{bottom:993.866269pt;}
.y2_c00097{bottom:1028.426255pt;}
.y1_c00097{bottom:1062.986241pt;}
.h8_c00097{height:33.918736pt;}
.h9_c00097{height:35.404673pt;}
.h6_c00097{height:36.431235pt;}
.h2_c00097{height:39.243734pt;}
.h1_c00097{height:52.134354pt;}
.h5_c00097{height:57.787477pt;}
.h7_c00097{height:59.339976pt;}
.h3_c00097{height:62.812475pt;}
.h4_c00097{height:64.499974pt;}
.h0_c00097{height:1122.666667pt;}
.w0_c00097{width:793.333333pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:113.599955pt;}
.xa_c00097{left:122.239951pt;}
.x3_c00097{left:160.800071pt;}
.x6_c00097{left:335.679866pt;}
.x5_c00097{left:341.119334pt;}
.x7_c00097{left:344.959862pt;}
.x4_c00097{left:388.319318pt;}
.x2_c00097{left:389.600031pt;}
.x8_c00097{left:614.719754pt;}
.x9_c00097{left:623.999750pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_495aee5533c49dd60e30f3af.woff2')format("woff");}.ff1_c00098{font-family:ff1_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:ff2_c00098;src:url('chunks/assets/font_a2337bc8786325e8fe9c3f2b.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:0.675781;font-style:normal;font-weight:normal;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_6484a17e152779fad36610ae.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.311035;font-style:normal;font-weight:normal;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_6c823173fe23a008e46b57d0.woff2')format("woff");}.ff4_c00098{font-family:ff4_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;}
.m0_c00098{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls1_c00098{letter-spacing:0.000000px;}
.ls0_c00098{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00098{word-spacing:-12.059995px;}
.ws1_c00098{word-spacing:-9.719996px;}
.ws2_c00098{word-spacing:0.000000px;}
._12_c00098{margin-left:-9.738252px;}
._a_c00098{margin-left:-2.259362px;}
._1_c00098{margin-left:-1.105374px;}
._0_c00098{width:1.478351px;}
._9_c00098{width:2.479365px;}
._7_c00098{width:3.587964px;}
._8_c00098{width:4.694373px;}
._10_c00098{width:5.696123px;}
._f_c00098{width:6.858450px;}
._2_c00098{width:8.428961px;}
._3_c00098{width:9.513700px;}
._b_c00098{width:10.703629px;}
._c_c00098{width:11.958702px;}
._e_c00098{width:13.963109px;}
._d_c00098{width:16.542563px;}
._4_c00098{width:34.137454px;}
._6_c00098{width:35.198984px;}
._5_c00098{width:36.311165px;}
._11_c00098{width:176.525050px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs4_c00098{font-size:38.879984px;}
.fs3_c00098{font-size:48.239981px;}
.fs0_c00098{font-size:59.759976px;}
.fs1_c00098{font-size:66.239974px;}
.fs2_c00098{font-size:71.999971px;}
.y0_c00098{bottom:0.000000px;}
.y4_c00098{bottom:75.900270px;}
.y3_c00098{bottom:114.060254px;}
.y2c_c00098{bottom:156.899937px;}
.y2b_c00098{bottom:163.739935px;}
.y2a_c00098{bottom:182.819927px;}
.y29_c00098{bottom:189.659924px;}
.y28_c00098{bottom:200.999920px;}
.y27_c00098{bottom:220.259912px;}
.y26_c00098{bottom:237.539905px;}
.y25_c00098{bottom:244.379902px;}
.y24_c00098{bottom:255.719898px;}
.y23_c00098{bottom:280.739888px;}
.y22_c00098{bottom:311.879875px;}
.y21_c00098{bottom:342.839863px;}
.y20_c00098{bottom:373.979850px;}
.y1e_c00098{bottom:404.939838px;}
.y1f_c00098{bottom:413.219835px;}
.y1d_c00098{bottom:436.079826px;}
.y1c_c00098{bottom:467.039813px;}
.y1b_c00098{bottom:498.179801px;}
.y1a_c00098{bottom:529.139788px;}
.y19_c00098{bottom:560.279776px;}
.y18_c00098{bottom:591.239764px;}
.y17_c00098{bottom:622.199751px;}
.y16_c00098{bottom:653.339739px;}
.y15_c00098{bottom:684.299726px;}
.y14_c00098{bottom:715.439714px;}
.y13_c00098{bottom:746.399701px;}
.y11_c00098{bottom:777.539689px;}
.y12_c00098{bottom:785.819686px;}
.y10_c00098{bottom:808.499677px;}
.yf_c00098{bottom:839.639664px;}
.yd_c00098{bottom:870.599652px;}
.ye_c00098{bottom:878.879648px;}
.yc_c00098{bottom:901.739639px;}
.yb_c00098{bottom:932.699627px;}
.ya_c00098{bottom:963.839614px;}
.y9_c00098{bottom:994.799602px;}
.y8_c00098{bottom:1025.939590px;}
.y7_c00098{bottom:1056.899577px;}
.y6_c00098{bottom:1087.679565px;}
.y5_c00098{bottom:1118.639553px;}
.y2_c00098{bottom:1176.059530px;}
.y1_c00098{bottom:1196.219522px;}
.h6_c00098{height:38.158578px;}
.h2_c00098{height:44.149201px;}
.h5_c00098{height:47.344903px;}
.h1_c00098{height:58.651148px;}
.h4_c00098{height:70.664034px;}
.h3_c00098{height:72.562471px;}
.h0_c00098{height:1263.000000px;}
.w0_c00098{width:892.500000px;}
.x0_c00098{left:0.000000px;}
.x5_c00098{left:127.619739px;}
.xd_c00098{left:137.339945px;}
.x6_c00098{left:180.719930px;}
.x1_c00098{left:181.799927px;}
.x2_c00098{left:329.039408px;}
.x4_c00098{left:438.119825px;}
.x9_c00098{left:457.559817px;}
.xa_c00098{left:469.799812px;}
.xb_c00098{left:594.359762px;}
.xc_c00098{left:606.599757px;}
.x7_c00098{left:649.079740px;}
.x8_c00098{left:661.319735px;}
.xe_c00098{left:678.599729px;}
.x3_c00098{left:765.359694px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls1_c00098{letter-spacing:0.000000pt;}
.ls0_c00098{letter-spacing:0.168267pt;}
.ws0_c00098{word-spacing:-10.719996pt;}
.ws1_c00098{word-spacing:-8.639997pt;}
.ws2_c00098{word-spacing:0.000000pt;}
._12_c00098{margin-left:-8.656224pt;}
._a_c00098{margin-left:-2.008322pt;}
._1_c00098{margin-left:-0.982555pt;}
._0_c00098{width:1.314090pt;}
._9_c00098{width:2.203880pt;}
._7_c00098{width:3.189302pt;}
._8_c00098{width:4.172776pt;}
._10_c00098{width:5.063220pt;}
._f_c00098{width:6.096400pt;}
._2_c00098{width:7.492410pt;}
._3_c00098{width:8.456622pt;}
._b_c00098{width:9.514337pt;}
._c_c00098{width:10.629957pt;}
._e_c00098{width:12.411652pt;}
._d_c00098{width:14.704500pt;}
._4_c00098{width:30.344404pt;}
._6_c00098{width:31.287986pt;}
._5_c00098{width:32.276591pt;}
._11_c00098{width:156.911156pt;}
.fs4_c00098{font-size:34.559986pt;}
.fs3_c00098{font-size:42.879983pt;}
.fs0_c00098{font-size:53.119979pt;}
.fs1_c00098{font-size:58.879976pt;}
.fs2_c00098{font-size:63.999974pt;}
.y0_c00098{bottom:0.000000pt;}
.y4_c00098{bottom:67.466906pt;}
.y3_c00098{bottom:101.386893pt;}
.y2c_c00098{bottom:139.466611pt;}
.y2b_c00098{bottom:145.546608pt;}
.y2a_c00098{bottom:162.506602pt;}
.y29_c00098{bottom:168.586599pt;}
.y28_c00098{bottom:178.666595pt;}
.y27_c00098{bottom:195.786588pt;}
.y26_c00098{bottom:211.146582pt;}
.y25_c00098{bottom:217.226580pt;}
.y24_c00098{bottom:227.306576pt;}
.y23_c00098{bottom:249.546567pt;}
.y22_c00098{bottom:277.226556pt;}
.y21_c00098{bottom:304.746545pt;}
.y20_c00098{bottom:332.426534pt;}
.y1e_c00098{bottom:359.946523pt;}
.y1f_c00098{bottom:367.306520pt;}
.y1d_c00098{bottom:387.626512pt;}
.y1c_c00098{bottom:415.146501pt;}
.y1b_c00098{bottom:442.826490pt;}
.y1a_c00098{bottom:470.346479pt;}
.y19_c00098{bottom:498.026467pt;}
.y18_c00098{bottom:525.546456pt;}
.y17_c00098{bottom:553.066445pt;}
.y16_c00098{bottom:580.746434pt;}
.y15_c00098{bottom:608.266423pt;}
.y14_c00098{bottom:635.946412pt;}
.y13_c00098{bottom:663.466401pt;}
.y11_c00098{bottom:691.146390pt;}
.y12_c00098{bottom:698.506387pt;}
.y10_c00098{bottom:718.666379pt;}
.yf_c00098{bottom:746.346368pt;}
.yd_c00098{bottom:773.866357pt;}
.ye_c00098{bottom:781.226354pt;}
.yc_c00098{bottom:801.546346pt;}
.yb_c00098{bottom:829.066335pt;}
.ya_c00098{bottom:856.746324pt;}
.y9_c00098{bottom:884.266313pt;}
.y8_c00098{bottom:911.946302pt;}
.y7_c00098{bottom:939.466291pt;}
.y6_c00098{bottom:966.826280pt;}
.y5_c00098{bottom:994.346269pt;}
.y2_c00098{bottom:1045.386249pt;}
.y1_c00098{bottom:1063.306241pt;}
.h6_c00098{height:33.918736pt;}
.h2_c00098{height:39.243734pt;}
.h5_c00098{height:42.084358pt;}
.h1_c00098{height:52.134354pt;}
.h4_c00098{height:62.812475pt;}
.h3_c00098{height:64.499974pt;}
.h0_c00098{height:1122.666667pt;}
.w0_c00098{width:793.333333pt;}
.x0_c00098{left:0.000000pt;}
.x5_c00098{left:113.439768pt;}
.xd_c00098{left:122.079951pt;}
.x6_c00098{left:160.639938pt;}
.x1_c00098{left:161.599935pt;}
.x2_c00098{left:292.479474pt;}
.x4_c00098{left:389.439844pt;}
.x9_c00098{left:406.719837pt;}
.xa_c00098{left:417.599833pt;}
.xb_c00098{left:528.319789pt;}
.xc_c00098{left:539.199784pt;}
.x7_c00098{left:576.959769pt;}
.x8_c00098{left:587.839765pt;}
.xe_c00098{left:603.199759pt;}
.x3_c00098{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20d38e441185f0fecc8bc9d8.woff2')format("woff");}.ff1_c00099{font-family:ff1_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;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_46ddb1cba5bd6026f4362d19.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_b931bf2c1765ff03eb1d04a2.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls1_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:0.189300px;}
.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:-12.059995px;}
.ws1_c00099{word-spacing:-9.719996px;}
.ws2_c00099{word-spacing:-9.437756px;}
.ws3_c00099{word-spacing:0.000000px;}
._d_c00099{margin-left:-9.451160px;}
._4_c00099{margin-left:-2.139990px;}
._1_c00099{margin-left:-1.105374px;}
._0_c00099{width:1.195563px;}
._2_c00099{width:2.436476px;}
._3_c00099{width:3.958244px;}
._6_c00099{width:5.409032px;}
._7_c00099{width:6.422414px;}
._b_c00099{width:7.425004px;}
._c_c00099{width:8.585133px;}
._a_c00099{width:11.011804px;}
._8_c00099{width:13.607746px;}
._9_c00099{width:14.891574px;}
._5_c00099{width:16.573405px;}
.fc1_c00099{color:rgb(255,0,0);}
.fc0_c00099{color:rgb(0,0,0);}
.fs4_c00099{font-size:38.879984px;}
.fs5_c00099{font-size:41.759983px;}
.fs3_c00099{font-size:48.239981px;}
.fs0_c00099{font-size:59.759976px;}
.fs1_c00099{font-size:66.239974px;}
.fs2_c00099{font-size:71.999971px;}
.y0_c00099{bottom:0.000000px;}
.y4_c00099{bottom:75.899970px;}
.y3_c00099{bottom:114.059954px;}
.y37_c00099{bottom:133.319947px;}
.y36_c00099{bottom:150.599940px;}
.y35_c00099{bottom:167.879933px;}
.y34_c00099{bottom:174.719930px;}
.y33_c00099{bottom:185.159926px;}
.y32_c00099{bottom:202.439919px;}
.y31_c00099{bottom:220.619912px;}
.y30_c00099{bottom:228.179909px;}
.y2f_c00099{bottom:240.779904px;}
.y2e_c00099{bottom:259.859896px;}
.y2d_c00099{bottom:277.139889px;}
.y2c_c00099{bottom:283.979886px;}
.y2b_c00099{bottom:294.419882px;}
.y2a_c00099{bottom:311.699875px;}
.y29_c00099{bottom:318.539873px;}
.y28_c00099{bottom:337.619865px;}
.y27_c00099{bottom:363.359855px;}
.y26_c00099{bottom:370.199852px;}
.y25_c00099{bottom:380.639848px;}
.y24_c00099{bottom:397.919841px;}
.y23_c00099{bottom:415.199834px;}
.y22_c00099{bottom:422.039831px;}
.y21_c00099{bottom:433.379827px;}
.y1f_c00099{bottom:466.139814px;}
.y20_c00099{bottom:474.419810px;}
.y1e_c00099{bottom:497.279801px;}
.y1c_c00099{bottom:528.239789px;}
.y1d_c00099{bottom:536.519785px;}
.y1a_c00099{bottom:559.379776px;}
.y1b_c00099{bottom:567.659773px;}
.y19_c00099{bottom:590.339764px;}
.y18_c00099{bottom:621.479751px;}
.y16_c00099{bottom:652.439739px;}
.y17_c00099{bottom:660.719736px;}
.y15_c00099{bottom:683.579727px;}
.y13_c00099{bottom:714.539714px;}
.y14_c00099{bottom:722.819711px;}
.y12_c00099{bottom:745.679702px;}
.y10_c00099{bottom:776.639689px;}
.y11_c00099{bottom:784.919686px;}
.yf_c00099{bottom:807.779677px;}
.ye_c00099{bottom:838.739665px;}
.yd_c00099{bottom:869.879652px;}
.yc_c00099{bottom:900.839640px;}
.yb_c00099{bottom:931.979627px;}
.ya_c00099{bottom:962.939615px;}
.y9_c00099{bottom:994.079602px;}
.y8_c00099{bottom:1025.039590px;}
.y7_c00099{bottom:1056.179578px;}
.y6_c00099{bottom:1087.139565px;}
.y5_c00099{bottom:1118.279553px;}
.y2_c00099{bottom:1157.159537px;}
.y1_c00099{bottom:1196.039522px;}
.h6_c00099{height:27.833192px;}
.h5_c00099{height:38.158578px;}
.h2_c00099{height:44.149201px;}
.h4_c00099{height:47.344903px;}
.h1_c00099{height:58.651148px;}
.h3_c00099{height:70.664034px;}
.h0_c00099{height:1263.000000px;}
.w0_c00099{width:892.500000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:127.619949px;}
.x10_c00099{left:137.339945px;}
.x11_c00099{left:142.919943px;}
.x5_c00099{left:180.720066px;}
.x2_c00099{left:438.120035px;}
.x6_c00099{left:531.719787px;}
.x8_c00099{left:542.879783px;}
.x7_c00099{left:543.959782px;}
.x9_c00099{left:555.119778px;}
.xe_c00099{left:567.179773px;}
.xf_c00099{left:579.419768px;}
.xa_c00099{left:626.039750px;}
.xb_c00099{left:638.279745px;}
.x3_c00099{left:709.919716px;}
.x4_c00099{left:722.159711px;}
.xc_c00099{left:753.119699px;}
.xd_c00099{left:765.359694px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls1_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:0.168267pt;}
.ws0_c00099{word-spacing:-10.719996pt;}
.ws1_c00099{word-spacing:-8.639997pt;}
.ws2_c00099{word-spacing:-8.389117pt;}
.ws3_c00099{word-spacing:0.000000pt;}
._d_c00099{margin-left:-8.401031pt;}
._4_c00099{margin-left:-1.902214pt;}
._1_c00099{margin-left:-0.982555pt;}
._0_c00099{width:1.062723pt;}
._2_c00099{width:2.165756pt;}
._3_c00099{width:3.518439pt;}
._6_c00099{width:4.808028pt;}
._7_c00099{width:5.708812pt;}
._b_c00099{width:6.600004pt;}
._c_c00099{width:7.631230pt;}
._a_c00099{width:9.788270pt;}
._8_c00099{width:12.095774pt;}
._9_c00099{width:13.236955pt;}
._5_c00099{width:14.731916pt;}
.fs4_c00099{font-size:34.559986pt;}
.fs5_c00099{font-size:37.119985pt;}
.fs3_c00099{font-size:42.879983pt;}
.fs0_c00099{font-size:53.119979pt;}
.fs1_c00099{font-size:58.879976pt;}
.fs2_c00099{font-size:63.999974pt;}
.y0_c00099{bottom:0.000000pt;}
.y4_c00099{bottom:67.466640pt;}
.y3_c00099{bottom:101.386626pt;}
.y37_c00099{bottom:118.506619pt;}
.y36_c00099{bottom:133.866613pt;}
.y35_c00099{bottom:149.226607pt;}
.y34_c00099{bottom:155.306605pt;}
.y33_c00099{bottom:164.586601pt;}
.y32_c00099{bottom:179.946595pt;}
.y31_c00099{bottom:196.106588pt;}
.y30_c00099{bottom:202.826586pt;}
.y2f_c00099{bottom:214.026581pt;}
.y2e_c00099{bottom:230.986574pt;}
.y2d_c00099{bottom:246.346568pt;}
.y2c_c00099{bottom:252.426566pt;}
.y2b_c00099{bottom:261.706562pt;}
.y2a_c00099{bottom:277.066556pt;}
.y29_c00099{bottom:283.146553pt;}
.y28_c00099{bottom:300.106547pt;}
.y27_c00099{bottom:322.986537pt;}
.y26_c00099{bottom:329.066535pt;}
.y25_c00099{bottom:338.346531pt;}
.y24_c00099{bottom:353.706525pt;}
.y23_c00099{bottom:369.066519pt;}
.y22_c00099{bottom:375.146517pt;}
.y21_c00099{bottom:385.226513pt;}
.y1f_c00099{bottom:414.346501pt;}
.y20_c00099{bottom:421.706498pt;}
.y1e_c00099{bottom:442.026490pt;}
.y1c_c00099{bottom:469.546479pt;}
.y1d_c00099{bottom:476.906476pt;}
.y1a_c00099{bottom:497.226468pt;}
.y1b_c00099{bottom:504.586465pt;}
.y19_c00099{bottom:524.746457pt;}
.y18_c00099{bottom:552.426446pt;}
.y16_c00099{bottom:579.946435pt;}
.y17_c00099{bottom:587.306432pt;}
.y15_c00099{bottom:607.626424pt;}
.y13_c00099{bottom:635.146413pt;}
.y14_c00099{bottom:642.506410pt;}
.y12_c00099{bottom:662.826402pt;}
.y10_c00099{bottom:690.346391pt;}
.y11_c00099{bottom:697.706388pt;}
.yf_c00099{bottom:718.026379pt;}
.ye_c00099{bottom:745.546368pt;}
.yd_c00099{bottom:773.226357pt;}
.yc_c00099{bottom:800.746346pt;}
.yb_c00099{bottom:828.426335pt;}
.ya_c00099{bottom:855.946324pt;}
.y9_c00099{bottom:883.626313pt;}
.y8_c00099{bottom:911.146302pt;}
.y7_c00099{bottom:938.826291pt;}
.y6_c00099{bottom:966.346280pt;}
.y5_c00099{bottom:994.026269pt;}
.y2_c00099{bottom:1028.586255pt;}
.y1_c00099{bottom:1063.146241pt;}
.h6_c00099{height:24.740615pt;}
.h5_c00099{height:33.918736pt;}
.h2_c00099{height:39.243734pt;}
.h4_c00099{height:42.084358pt;}
.h1_c00099{height:52.134354pt;}
.h3_c00099{height:62.812475pt;}
.h0_c00099{height:1122.666667pt;}
.w0_c00099{width:793.333333pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:113.439955pt;}
.x10_c00099{left:122.079951pt;}
.x11_c00099{left:127.039949pt;}
.x5_c00099{left:160.640059pt;}
.x2_c00099{left:389.440031pt;}
.x6_c00099{left:472.639811pt;}
.x8_c00099{left:482.559807pt;}
.x7_c00099{left:483.519807pt;}
.x9_c00099{left:493.439803pt;}
.xe_c00099{left:504.159798pt;}
.xf_c00099{left:515.039794pt;}
.xa_c00099{left:556.479777pt;}
.xb_c00099{left:567.359773pt;}
.x3_c00099{left:631.039748pt;}
.x4_c00099{left:641.919743pt;}
.xc_c00099{left:669.439732pt;}
.xd_c00099{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc490902517d69545b087769.woff2')format("woff");}.ff1_c00100{font-family:ff1_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:ff2_c00100;src:url('chunks/assets/font_f6017dcf5c01498ea1ad6384.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:0.675781;font-style:normal;font-weight:normal;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_b5d1a8a6abb4e860a34d330c.woff2')format("woff");}.ff3_c00100{font-family:ff3_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;}
.m0_c00100{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.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:-12.059995px;}
.ws1_c00100{word-spacing:-9.719996px;}
.ws2_c00100{word-spacing:-9.437756px;}
.ws3_c00100{word-spacing:0.000000px;}
._f_c00100{margin-left:-9.819622px;}
._8_c00100{margin-left:-2.139990px;}
._1_c00100{margin-left:-1.105374px;}
._0_c00100{width:1.478351px;}
._d_c00100{width:3.058044px;}
._6_c00100{width:4.308389px;}
._7_c00100{width:5.777494px;}
._b_c00100{width:7.164620px;}
._9_c00100{width:8.407723px;}
._a_c00100{width:9.587690px;}
._e_c00100{width:10.625730px;}
._c_c00100{width:11.648382px;}
._4_c00100{width:12.754668px;}
._2_c00100{width:13.855786px;}
._3_c00100{width:14.884123px;}
._5_c00100{width:16.090845px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs4_c00100{font-size:38.879984px;}
.fs5_c00100{font-size:41.759983px;}
.fs3_c00100{font-size:48.239981px;}
.fs0_c00100{font-size:59.759976px;}
.fs1_c00100{font-size:66.239974px;}
.fs2_c00100{font-size:71.999971px;}
.y0_c00100{bottom:0.000000px;}
.y4_c00100{bottom:75.900270px;}
.y3_c00100{bottom:114.060254px;}
.y2b_c00100{bottom:159.239936px;}
.y2a_c00100{bottom:202.979919px;}
.y29_c00100{bottom:210.539916px;}
.y28_c00100{bottom:231.959907px;}
.y27_c00100{bottom:239.519904px;}
.y26_c00100{bottom:251.219900px;}
.y25_c00100{bottom:268.319893px;}
.y24_c00100{bottom:285.599886px;}
.y23_c00100{bottom:292.439883px;}
.y22_c00100{bottom:303.779878px;}
.y21_c00100{bottom:342.839863px;}
.y20_c00100{bottom:373.979850px;}
.y1f_c00100{bottom:404.939838px;}
.y1e_c00100{bottom:436.079826px;}
.y1d_c00100{bottom:467.039813px;}
.y1c_c00100{bottom:498.179801px;}
.y1b_c00100{bottom:529.139788px;}
.y1a_c00100{bottom:560.279776px;}
.y19_c00100{bottom:591.239764px;}
.y18_c00100{bottom:622.199751px;}
.y17_c00100{bottom:653.339739px;}
.y16_c00100{bottom:684.299726px;}
.y15_c00100{bottom:715.439714px;}
.y14_c00100{bottom:746.399701px;}
.y13_c00100{bottom:777.539689px;}
.y11_c00100{bottom:808.499677px;}
.y12_c00100{bottom:816.779673px;}
.y10_c00100{bottom:839.639664px;}
.yf_c00100{bottom:870.599652px;}
.yd_c00100{bottom:901.739639px;}
.ye_c00100{bottom:910.019636px;}
.yc_c00100{bottom:932.699627px;}
.yb_c00100{bottom:963.839614px;}
.ya_c00100{bottom:994.799602px;}
.y8_c00100{bottom:1025.939590px;}
.y9_c00100{bottom:1034.219586px;}
.y7_c00100{bottom:1056.899577px;}
.y6_c00100{bottom:1088.039565px;}
.y5_c00100{bottom:1118.999552px;}
.y2_c00100{bottom:1176.059530px;}
.y1_c00100{bottom:1196.219522px;}
.h6_c00100{height:27.833192px;}
.h5_c00100{height:38.158578px;}
.h2_c00100{height:44.149201px;}
.h4_c00100{height:47.344903px;}
.h1_c00100{height:58.651148px;}
.h3_c00100{height:70.664034px;}
.h0_c00100{height:1263.000000px;}
.w0_c00100{width:892.500000px;}
.x0_c00100{left:0.000000px;}
.x5_c00100{left:127.619739px;}
.xd_c00100{left:137.339945px;}
.xe_c00100{left:141.839943px;}
.x8_c00100{left:180.720429px;}
.x1_c00100{left:181.799927px;}
.x2_c00100{left:329.039408px;}
.x4_c00100{left:438.119825px;}
.x6_c00100{left:547.919781px;}
.x7_c00100{left:560.159776px;}
.xb_c00100{left:584.999766px;}
.xc_c00100{left:597.239761px;}
.x9_c00100{left:690.299724px;}
.xa_c00100{left:702.539719px;}
.x3_c00100{left:765.359694px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:-10.719996pt;}
.ws1_c00100{word-spacing:-8.639997pt;}
.ws2_c00100{word-spacing:-8.389117pt;}
.ws3_c00100{word-spacing:0.000000pt;}
._f_c00100{margin-left:-8.728553pt;}
._8_c00100{margin-left:-1.902214pt;}
._1_c00100{margin-left:-0.982555pt;}
._0_c00100{width:1.314090pt;}
._d_c00100{width:2.718261pt;}
._6_c00100{width:3.829679pt;}
._7_c00100{width:5.135550pt;}
._b_c00100{width:6.368551pt;}
._9_c00100{width:7.473531pt;}
._a_c00100{width:8.522391pt;}
._e_c00100{width:9.445093pt;}
._c_c00100{width:10.354118pt;}
._4_c00100{width:11.337482pt;}
._2_c00100{width:12.316255pt;}
._3_c00100{width:13.230332pt;}
._5_c00100{width:14.302973pt;}
.fs4_c00100{font-size:34.559986pt;}
.fs5_c00100{font-size:37.119985pt;}
.fs3_c00100{font-size:42.879983pt;}
.fs0_c00100{font-size:53.119979pt;}
.fs1_c00100{font-size:58.879976pt;}
.fs2_c00100{font-size:63.999974pt;}
.y0_c00100{bottom:0.000000pt;}
.y4_c00100{bottom:67.466906pt;}
.y3_c00100{bottom:101.386893pt;}
.y2b_c00100{bottom:141.546610pt;}
.y2a_c00100{bottom:180.426594pt;}
.y29_c00100{bottom:187.146592pt;}
.y28_c00100{bottom:206.186584pt;}
.y27_c00100{bottom:212.906582pt;}
.y26_c00100{bottom:223.306577pt;}
.y25_c00100{bottom:238.506571pt;}
.y24_c00100{bottom:253.866565pt;}
.y23_c00100{bottom:259.946563pt;}
.y22_c00100{bottom:270.026559pt;}
.y21_c00100{bottom:304.746545pt;}
.y20_c00100{bottom:332.426534pt;}
.y1f_c00100{bottom:359.946523pt;}
.y1e_c00100{bottom:387.626512pt;}
.y1d_c00100{bottom:415.146501pt;}
.y1c_c00100{bottom:442.826490pt;}
.y1b_c00100{bottom:470.346479pt;}
.y1a_c00100{bottom:498.026467pt;}
.y19_c00100{bottom:525.546456pt;}
.y18_c00100{bottom:553.066445pt;}
.y17_c00100{bottom:580.746434pt;}
.y16_c00100{bottom:608.266423pt;}
.y15_c00100{bottom:635.946412pt;}
.y14_c00100{bottom:663.466401pt;}
.y13_c00100{bottom:691.146390pt;}
.y11_c00100{bottom:718.666379pt;}
.y12_c00100{bottom:726.026376pt;}
.y10_c00100{bottom:746.346368pt;}
.yf_c00100{bottom:773.866357pt;}
.yd_c00100{bottom:801.546346pt;}
.ye_c00100{bottom:808.906343pt;}
.yc_c00100{bottom:829.066335pt;}
.yb_c00100{bottom:856.746324pt;}
.ya_c00100{bottom:884.266313pt;}
.y8_c00100{bottom:911.946302pt;}
.y9_c00100{bottom:919.306299pt;}
.y7_c00100{bottom:939.466291pt;}
.y6_c00100{bottom:967.146280pt;}
.y5_c00100{bottom:994.666269pt;}
.y2_c00100{bottom:1045.386249pt;}
.y1_c00100{bottom:1063.306241pt;}
.h6_c00100{height:24.740615pt;}
.h5_c00100{height:33.918736pt;}
.h2_c00100{height:39.243734pt;}
.h4_c00100{height:42.084358pt;}
.h1_c00100{height:52.134354pt;}
.h3_c00100{height:62.812475pt;}
.h0_c00100{height:1122.666667pt;}
.w0_c00100{width:793.333333pt;}
.x0_c00100{left:0.000000pt;}
.x5_c00100{left:113.439768pt;}
.xd_c00100{left:122.079951pt;}
.xe_c00100{left:126.079950pt;}
.x8_c00100{left:160.640381pt;}
.x1_c00100{left:161.599935pt;}
.x2_c00100{left:292.479474pt;}
.x4_c00100{left:389.439844pt;}
.x6_c00100{left:487.039805pt;}
.x7_c00100{left:497.919801pt;}
.xb_c00100{left:519.999792pt;}
.xc_c00100{left:530.879788pt;}
.x9_c00100{left:613.599755pt;}
.xa_c00100{left:624.479750pt;}
.x3_c00100{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5a1f26e143d4e49def5b1cc.woff2')format("woff");}.ff1_c00101{font-family:ff1_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:ff2_c00101;src:url('chunks/assets/font_d57c5528aec3bdd50ede8deb.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:0.675781;font-style:normal;font-weight:normal;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_62d47b482c486ca0c991e093.woff2')format("woff");}.ff3_c00101{font-family:ff3_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;}
.m0_c00101{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls3_c00101{letter-spacing:0.000000px;}
.ls1_c00101{letter-spacing:0.021282px;}
.ls2_c00101{letter-spacing:0.189300px;}
.ls0_c00101{letter-spacing:6.494457px;}
.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;}
}
.ws2_c00101{word-spacing:-18.021275px;}
.ws0_c00101{word-spacing:-17.999993px;}
.ws1_c00101{word-spacing:-12.059995px;}
.ws3_c00101{word-spacing:-9.719996px;}
.ws4_c00101{word-spacing:-9.437756px;}
.ws5_c00101{word-spacing:0.000000px;}
._d_c00101{margin-left:-9.805612px;}
._3_c00101{margin-left:-2.277342px;}
._1_c00101{margin-left:-1.105374px;}
._0_c00101{width:1.195563px;}
._c_c00101{width:2.868682px;}
._a_c00101{width:3.899721px;}
._7_c00101{width:5.763483px;}
._9_c00101{width:7.325803px;}
._8_c00101{width:8.385378px;}
._5_c00101{width:9.474941px;}
._4_c00101{width:10.816988px;}
._2_c00101{width:12.059496px;}
._b_c00101{width:13.601758px;}
._6_c00101{width:16.327775px;}
.fc1_c00101{color:rgb(255,0,0);}
.fc0_c00101{color:rgb(0,0,0);}
.fs4_c00101{font-size:38.879984px;}
.fs5_c00101{font-size:41.759983px;}
.fs3_c00101{font-size:48.239981px;}
.fs0_c00101{font-size:59.759976px;}
.fs1_c00101{font-size:66.239974px;}
.fs2_c00101{font-size:71.999971px;}
.y0_c00101{bottom:0.000000px;}
.y4_c00101{bottom:75.899970px;}
.y3_c00101{bottom:114.059954px;}
.y30_c00101{bottom:134.400246px;}
.y2f_c00101{bottom:141.960243px;}
.y2e_c00101{bottom:153.479939px;}
.y2d_c00101{bottom:170.759932px;}
.y2c_c00101{bottom:188.939924px;}
.y2b_c00101{bottom:196.499921px;}
.y2a_c00101{bottom:208.199917px;}
.y29_c00101{bottom:225.479910px;}
.y28_c00101{bottom:243.659903px;}
.y27_c00101{bottom:251.219900px;}
.y26_c00101{bottom:262.739895px;}
.y25_c00101{bottom:280.019888px;}
.y24_c00101{bottom:286.859885px;}
.y23_c00101{bottom:298.199881px;}
.y22_c00101{bottom:341.939863px;}
.y21_c00101{bottom:373.079851px;}
.y20_c00101{bottom:404.039838px;}
.y1f_c00101{bottom:435.179826px;}
.y1e_c00101{bottom:466.139814px;}
.y1d_c00101{bottom:497.279801px;}
.y1c_c00101{bottom:528.239789px;}
.y1a_c00101{bottom:559.379776px;}
.y1b_c00101{bottom:567.659773px;}
.y19_c00101{bottom:590.339764px;}
.y18_c00101{bottom:621.479751px;}
.y16_c00101{bottom:652.439739px;}
.y17_c00101{bottom:660.719736px;}
.y15_c00101{bottom:683.579727px;}
.y14_c00101{bottom:714.539714px;}
.y13_c00101{bottom:745.679702px;}
.y12_c00101{bottom:776.639689px;}
.y11_c00101{bottom:807.779677px;}
.y10_c00101{bottom:838.739665px;}
.yf_c00101{bottom:869.879652px;}
.yd_c00101{bottom:900.839640px;}
.ye_c00101{bottom:909.119636px;}
.yc_c00101{bottom:931.979627px;}
.ya_c00101{bottom:962.939615px;}
.yb_c00101{bottom:971.219612px;}
.y9_c00101{bottom:994.079602px;}
.y8_c00101{bottom:1025.039590px;}
.y7_c00101{bottom:1056.179578px;}
.y6_c00101{bottom:1087.139565px;}
.y5_c00101{bottom:1118.279553px;}
.y2_c00101{bottom:1157.159537px;}
.y1_c00101{bottom:1196.039522px;}
.h6_c00101{height:27.833192px;}
.h5_c00101{height:38.158578px;}
.h2_c00101{height:44.149201px;}
.h4_c00101{height:47.344903px;}
.h1_c00101{height:58.651148px;}
.h3_c00101{height:70.664034px;}
.h0_c00101{height:1263.000000px;}
.w0_c00101{width:892.500000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:127.619949px;}
.xc_c00101{left:137.339945px;}
.xe_c00101{left:141.839943px;}
.xd_c00101{left:142.919943px;}
.x3_c00101{left:180.720680px;}
.x8_c00101{left:334.979866px;}
.x9_c00101{left:347.219861px;}
.x4_c00101{left:397.079841px;}
.x5_c00101{left:409.319836px;}
.x2_c00101{left:433.979514px;}
.x6_c00101{left:596.159762px;}
.x7_c00101{left:608.399757px;}
.xa_c00101{left:649.439740px;}
.xb_c00101{left:661.679735px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls3_c00101{letter-spacing:0.000000pt;}
.ls1_c00101{letter-spacing:0.018917pt;}
.ls2_c00101{letter-spacing:0.168267pt;}
.ls0_c00101{letter-spacing:5.772851pt;}
.ws2_c00101{word-spacing:-16.018911pt;}
.ws0_c00101{word-spacing:-15.999994pt;}
.ws1_c00101{word-spacing:-10.719996pt;}
.ws3_c00101{word-spacing:-8.639997pt;}
.ws4_c00101{word-spacing:-8.389117pt;}
.ws5_c00101{word-spacing:0.000000pt;}
._d_c00101{margin-left:-8.716099pt;}
._3_c00101{margin-left:-2.024304pt;}
._1_c00101{margin-left:-0.982555pt;}
._0_c00101{width:1.062723pt;}
._c_c00101{width:2.549940pt;}
._a_c00101{width:3.466418pt;}
._7_c00101{width:5.123096pt;}
._9_c00101{width:6.511825pt;}
._8_c00101{width:7.453669pt;}
._5_c00101{width:8.422170pt;}
._4_c00101{width:9.615100pt;}
._2_c00101{width:10.719552pt;}
._b_c00101{width:12.090452pt;}
._6_c00101{width:14.513578pt;}
.fs4_c00101{font-size:34.559986pt;}
.fs5_c00101{font-size:37.119985pt;}
.fs3_c00101{font-size:42.879983pt;}
.fs0_c00101{font-size:53.119979pt;}
.fs1_c00101{font-size:58.879976pt;}
.fs2_c00101{font-size:63.999974pt;}
.y0_c00101{bottom:0.000000pt;}
.y4_c00101{bottom:67.466640pt;}
.y3_c00101{bottom:101.386626pt;}
.y30_c00101{bottom:119.466886pt;}
.y2f_c00101{bottom:126.186883pt;}
.y2e_c00101{bottom:136.426612pt;}
.y2d_c00101{bottom:151.786606pt;}
.y2c_c00101{bottom:167.946599pt;}
.y2b_c00101{bottom:174.666597pt;}
.y2a_c00101{bottom:185.066593pt;}
.y29_c00101{bottom:200.426586pt;}
.y28_c00101{bottom:216.586580pt;}
.y27_c00101{bottom:223.306577pt;}
.y26_c00101{bottom:233.546573pt;}
.y25_c00101{bottom:248.906567pt;}
.y24_c00101{bottom:254.986565pt;}
.y23_c00101{bottom:265.066561pt;}
.y22_c00101{bottom:303.946545pt;}
.y21_c00101{bottom:331.626534pt;}
.y20_c00101{bottom:359.146523pt;}
.y1f_c00101{bottom:386.826512pt;}
.y1e_c00101{bottom:414.346501pt;}
.y1d_c00101{bottom:442.026490pt;}
.y1c_c00101{bottom:469.546479pt;}
.y1a_c00101{bottom:497.226468pt;}
.y1b_c00101{bottom:504.586465pt;}
.y19_c00101{bottom:524.746457pt;}
.y18_c00101{bottom:552.426446pt;}
.y16_c00101{bottom:579.946435pt;}
.y17_c00101{bottom:587.306432pt;}
.y15_c00101{bottom:607.626424pt;}
.y14_c00101{bottom:635.146413pt;}
.y13_c00101{bottom:662.826402pt;}
.y12_c00101{bottom:690.346391pt;}
.y11_c00101{bottom:718.026379pt;}
.y10_c00101{bottom:745.546368pt;}
.yf_c00101{bottom:773.226357pt;}
.yd_c00101{bottom:800.746346pt;}
.ye_c00101{bottom:808.106343pt;}
.yc_c00101{bottom:828.426335pt;}
.ya_c00101{bottom:855.946324pt;}
.yb_c00101{bottom:863.306321pt;}
.y9_c00101{bottom:883.626313pt;}
.y8_c00101{bottom:911.146302pt;}
.y7_c00101{bottom:938.826291pt;}
.y6_c00101{bottom:966.346280pt;}
.y5_c00101{bottom:994.026269pt;}
.y2_c00101{bottom:1028.586255pt;}
.y1_c00101{bottom:1063.146241pt;}
.h6_c00101{height:24.740615pt;}
.h5_c00101{height:33.918736pt;}
.h2_c00101{height:39.243734pt;}
.h4_c00101{height:42.084358pt;}
.h1_c00101{height:52.134354pt;}
.h3_c00101{height:62.812475pt;}
.h0_c00101{height:1122.666667pt;}
.w0_c00101{width:793.333333pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:113.439955pt;}
.xc_c00101{left:122.079951pt;}
.xe_c00101{left:126.079950pt;}
.xd_c00101{left:127.039949pt;}
.x3_c00101{left:160.640604pt;}
.x8_c00101{left:297.759881pt;}
.x9_c00101{left:308.639877pt;}
.x4_c00101{left:352.959859pt;}
.x5_c00101{left:363.839854pt;}
.x2_c00101{left:385.759568pt;}
.x6_c00101{left:529.919788pt;}
.x7_c00101{left:540.799784pt;}
.xa_c00101{left:577.279769pt;}
.xb_c00101{left:588.159765pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d6cd8cf65d7786b6d7b6735.woff2')format("woff");}.ff1_c00102{font-family:ff1_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:ff2_c00102;src:url('chunks/assets/font_b4aa9ff6d39c12d4e251aa06.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:0.675781;font-style:normal;font-weight:normal;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_a68514b06746b0ad60ec13e5.woff2')format("woff");}.ff3_c00102{font-family:ff3_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;}
.m0_c00102{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws0_c00102{word-spacing:-12.059995px;}
.ws2_c00102{word-spacing:-9.437756px;}
.ws3_c00102{word-spacing:0.000000px;}
._11_c00102{margin-left:-10.757375px;}
._c_c00102{margin-left:-2.412838px;}
._1_c00102{margin-left:-1.105374px;}
._0_c00102{width:1.478351px;}
._7_c00102{width:2.478828px;}
._3_c00102{width:3.976523px;}
._2_c00102{width:5.003969px;}
._a_c00102{width:6.715247px;}
._8_c00102{width:8.326172px;}
._9_c00102{width:9.450296px;}
._d_c00102{width:10.590337px;}
._4_c00102{width:11.648453px;}
._5_c00102{width:13.155487px;}
._6_c00102{width:14.178294px;}
._e_c00102{width:15.237367px;}
._b_c00102{width:16.332400px;}
._10_c00102{width:25.418161px;}
._f_c00102{width:26.939138px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs4_c00102{font-size:41.759983px;}
.fs3_c00102{font-size:48.239981px;}
.fs0_c00102{font-size:59.759976px;}
.fs1_c00102{font-size:66.239974px;}
.fs2_c00102{font-size:71.999971px;}
.y0_c00102{bottom:0.000000px;}
.y4_c00102{bottom:75.900270px;}
.y3_c00102{bottom:114.060254px;}
.y2e_c00102{bottom:133.319947px;}
.y2d_c00102{bottom:150.599940px;}
.y2c_c00102{bottom:168.779932px;}
.y2b_c00102{bottom:176.339929px;}
.y2a_c00102{bottom:188.939924px;}
.y29_c00102{bottom:209.099916px;}
.y28_c00102{bottom:216.659913px;}
.y27_c00102{bottom:228.359909px;}
.y26_c00102{bottom:245.639902px;}
.y25_c00102{bottom:263.819894px;}
.y24_c00102{bottom:271.379891px;}
.y23_c00102{bottom:292.439883px;}
.y22_c00102{bottom:299.999880px;}
.y21_c00102{bottom:312.599875px;}
.y1f_c00102{bottom:404.939838px;}
.y20_c00102{bottom:413.219835px;}
.y1e_c00102{bottom:436.079826px;}
.y1d_c00102{bottom:467.039813px;}
.y1b_c00102{bottom:498.179801px;}
.y1c_c00102{bottom:506.459797px;}
.y1a_c00102{bottom:529.139788px;}
.y19_c00102{bottom:560.279776px;}
.y17_c00102{bottom:591.239764px;}
.y18_c00102{bottom:599.519760px;}
.y16_c00102{bottom:622.199751px;}
.y15_c00102{bottom:653.339739px;}
.y14_c00102{bottom:684.299726px;}
.y13_c00102{bottom:715.439714px;}
.y12_c00102{bottom:746.399701px;}
.y11_c00102{bottom:777.539689px;}
.y10_c00102{bottom:808.499677px;}
.yf_c00102{bottom:839.639664px;}
.ye_c00102{bottom:870.599652px;}
.yd_c00102{bottom:901.739639px;}
.yc_c00102{bottom:932.699627px;}
.yb_c00102{bottom:963.839614px;}
.ya_c00102{bottom:994.799602px;}
.y9_c00102{bottom:1025.939590px;}
.y7_c00102{bottom:1056.899577px;}
.y8_c00102{bottom:1065.179574px;}
.y6_c00102{bottom:1088.039565px;}
.y5_c00102{bottom:1118.999552px;}
.y2_c00102{bottom:1176.059530px;}
.y1_c00102{bottom:1196.219522px;}
.h5_c00102{height:27.833192px;}
.h2_c00102{height:44.149201px;}
.h4_c00102{height:47.344903px;}
.h1_c00102{height:58.651148px;}
.h3_c00102{height:70.664034px;}
.h0_c00102{height:1263.000000px;}
.w0_c00102{width:892.500000px;}
.x0_c00102{left:0.000000px;}
.x5_c00102{left:127.620262px;}
.xf_c00102{left:138.059945px;}
.x10_c00102{left:141.839943px;}
.x8_c00102{left:180.719284px;}
.x1_c00102{left:181.799927px;}
.xb_c00102{left:239.039904px;}
.xc_c00102{left:251.279899px;}
.x2_c00102{left:329.039408px;}
.x4_c00102{left:433.979826px;}
.x9_c00102{left:541.619783px;}
.xa_c00102{left:553.859778px;}
.x6_c00102{left:606.959757px;}
.x7_c00102{left:619.199752px;}
.xd_c00102{left:644.939742px;}
.xe_c00102{left:657.179737px;}
.x3_c00102{left:765.359694px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws1_c00102{word-spacing:-15.999994pt;}
.ws0_c00102{word-spacing:-10.719996pt;}
.ws2_c00102{word-spacing:-8.389117pt;}
.ws3_c00102{word-spacing:0.000000pt;}
._11_c00102{margin-left:-9.562111pt;}
._c_c00102{margin-left:-2.144745pt;}
._1_c00102{margin-left:-0.982555pt;}
._0_c00102{width:1.314090pt;}
._7_c00102{width:2.203403pt;}
._3_c00102{width:3.534687pt;}
._2_c00102{width:4.447973pt;}
._a_c00102{width:5.969108pt;}
._8_c00102{width:7.401042pt;}
._9_c00102{width:8.400263pt;}
._d_c00102{width:9.413633pt;}
._4_c00102{width:10.354180pt;}
._5_c00102{width:11.693766pt;}
._6_c00102{width:12.602928pt;}
._e_c00102{width:13.544326pt;}
._b_c00102{width:14.517689pt;}
._10_c00102{width:22.593921pt;}
._f_c00102{width:23.945901pt;}
.fs4_c00102{font-size:37.119985pt;}
.fs3_c00102{font-size:42.879983pt;}
.fs0_c00102{font-size:53.119979pt;}
.fs1_c00102{font-size:58.879976pt;}
.fs2_c00102{font-size:63.999974pt;}
.y0_c00102{bottom:0.000000pt;}
.y4_c00102{bottom:67.466906pt;}
.y3_c00102{bottom:101.386893pt;}
.y2e_c00102{bottom:118.506619pt;}
.y2d_c00102{bottom:133.866613pt;}
.y2c_c00102{bottom:150.026607pt;}
.y2b_c00102{bottom:156.746604pt;}
.y2a_c00102{bottom:167.946599pt;}
.y29_c00102{bottom:185.866592pt;}
.y28_c00102{bottom:192.586590pt;}
.y27_c00102{bottom:202.986585pt;}
.y26_c00102{bottom:218.346579pt;}
.y25_c00102{bottom:234.506573pt;}
.y24_c00102{bottom:241.226570pt;}
.y23_c00102{bottom:259.946563pt;}
.y22_c00102{bottom:266.666560pt;}
.y21_c00102{bottom:277.866556pt;}
.y1f_c00102{bottom:359.946523pt;}
.y20_c00102{bottom:367.306520pt;}
.y1e_c00102{bottom:387.626512pt;}
.y1d_c00102{bottom:415.146501pt;}
.y1b_c00102{bottom:442.826490pt;}
.y1c_c00102{bottom:450.186487pt;}
.y1a_c00102{bottom:470.346479pt;}
.y19_c00102{bottom:498.026467pt;}
.y17_c00102{bottom:525.546456pt;}
.y18_c00102{bottom:532.906454pt;}
.y16_c00102{bottom:553.066445pt;}
.y15_c00102{bottom:580.746434pt;}
.y14_c00102{bottom:608.266423pt;}
.y13_c00102{bottom:635.946412pt;}
.y12_c00102{bottom:663.466401pt;}
.y11_c00102{bottom:691.146390pt;}
.y10_c00102{bottom:718.666379pt;}
.yf_c00102{bottom:746.346368pt;}
.ye_c00102{bottom:773.866357pt;}
.yd_c00102{bottom:801.546346pt;}
.yc_c00102{bottom:829.066335pt;}
.yb_c00102{bottom:856.746324pt;}
.ya_c00102{bottom:884.266313pt;}
.y9_c00102{bottom:911.946302pt;}
.y7_c00102{bottom:939.466291pt;}
.y8_c00102{bottom:946.826288pt;}
.y6_c00102{bottom:967.146280pt;}
.y5_c00102{bottom:994.666269pt;}
.y2_c00102{bottom:1045.386249pt;}
.y1_c00102{bottom:1063.306241pt;}
.h5_c00102{height:24.740615pt;}
.h2_c00102{height:39.243734pt;}
.h4_c00102{height:42.084358pt;}
.h1_c00102{height:52.134354pt;}
.h3_c00102{height:62.812475pt;}
.h0_c00102{height:1122.666667pt;}
.w0_c00102{width:793.333333pt;}
.x0_c00102{left:0.000000pt;}
.x5_c00102{left:113.440233pt;}
.xf_c00102{left:122.719951pt;}
.x10_c00102{left:126.079950pt;}
.x8_c00102{left:160.639364pt;}
.x1_c00102{left:161.599935pt;}
.xb_c00102{left:212.479915pt;}
.xc_c00102{left:223.359911pt;}
.x2_c00102{left:292.479474pt;}
.x4_c00102{left:385.759846pt;}
.x9_c00102{left:481.439807pt;}
.xa_c00102{left:492.319803pt;}
.x6_c00102{left:539.519784pt;}
.x7_c00102{left:550.399780pt;}
.xd_c00102{left:573.279771pt;}
.xe_c00102{left:584.159766pt;}
.x3_c00102{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_255b67b0bb6bb593d5364e2f.woff2')format("woff");}.ff1_c00103{font-family:ff1_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:ff2_c00103;src:url('chunks/assets/font_fed4d4fd9e33c5e7e676217d.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:0.675781;font-style:normal;font-weight:normal;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_71edad811e738f64efb6126e.woff2')format("woff");}.ff3_c00103{font-family:ff3_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:ff4_c00103;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls9_c00103{letter-spacing:0.000000px;}
.ls4_c00103{letter-spacing:0.010620px;}
.ls7_c00103{letter-spacing:0.011169px;}
.ls6_c00103{letter-spacing:0.012620px;}
.ls3_c00103{letter-spacing:0.021238px;}
.ls0_c00103{letter-spacing:0.021282px;}
.ls2_c00103{letter-spacing:0.374281px;}
.ls8_c00103{letter-spacing:5.952838px;}
.ls5_c00103{letter-spacing:8.655717px;}
.ls1_c00103{letter-spacing:18.741653px;}
.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;}
}
.ws3_c00103{word-spacing:-18.021231px;}
.ws0_c00103{word-spacing:-17.999993px;}
.ws2_c00103{word-spacing:-12.434276px;}
.ws1_c00103{word-spacing:-12.059995px;}
.ws5_c00103{word-spacing:-10.452616px;}
.ws6_c00103{word-spacing:-9.731165px;}
.ws4_c00103{word-spacing:-9.437756px;}
.ws7_c00103{word-spacing:0.000000px;}
._d_c00103{margin-left:-10.331113px;}
._1_c00103{margin-left:-1.105374px;}
._0_c00103{width:1.195563px;}
._9_c00103{width:2.591871px;}
._c_c00103{width:3.960132px;}
._e_c00103{width:5.245265px;}
._5_c00103{width:6.288984px;}
._7_c00103{width:7.400659px;}
._6_c00103{width:8.449768px;}
._3_c00103{width:9.782364px;}
._2_c00103{width:10.816988px;}
._4_c00103{width:12.301558px;}
._b_c00103{width:13.384523px;}
._a_c00103{width:14.572612px;}
._8_c00103{width:19.007382px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs5_c00103{font-size:38.879984px;}
.fs4_c00103{font-size:41.759983px;}
.fs3_c00103{font-size:48.239981px;}
.fs0_c00103{font-size:59.759976px;}
.fs1_c00103{font-size:66.239974px;}
.fs2_c00103{font-size:71.999971px;}
.y0_c00103{bottom:0.000000px;}
.y4_c00103{bottom:75.899970px;}
.y3_c00103{bottom:114.059954px;}
.y34_c00103{bottom:133.319947px;}
.y33_c00103{bottom:150.599940px;}
.y32_c00103{bottom:168.239933px;}
.y31_c00103{bottom:175.799930px;}
.y30_c00103{bottom:187.859925px;}
.y2f_c00103{bottom:207.299917px;}
.y2e_c00103{bottom:214.859914px;}
.y2d_c00103{bottom:226.019910px;}
.y2c_c00103{bottom:243.299903px;}
.y2b_c00103{bottom:260.399896px;}
.y2a_c00103{bottom:267.239893px;}
.y29_c00103{bottom:277.679889px;}
.y28_c00103{bottom:295.319882px;}
.y27_c00103{bottom:302.879879px;}
.y26_c00103{bottom:314.039874px;}
.y25_c00103{bottom:332.039867px;}
.y24_c00103{bottom:339.599864px;}
.y23_c00103{bottom:375.779850px;}
.y22_c00103{bottom:383.339847px;}
.y21_c00103{bottom:404.579838px;}
.y20_c00103{bottom:412.139835px;}
.y1f_c00103{bottom:424.739830px;}
.y1e_c00103{bottom:497.279801px;}
.y1d_c00103{bottom:528.239789px;}
.y1b_c00103{bottom:559.379776px;}
.y1c_c00103{bottom:567.659773px;}
.y19_c00103{bottom:590.339764px;}
.y1a_c00103{bottom:598.619761px;}
.y18_c00103{bottom:621.479751px;}
.y17_c00103{bottom:652.439739px;}
.y16_c00103{bottom:683.579727px;}
.y15_c00103{bottom:714.539714px;}
.y14_c00103{bottom:745.679702px;}
.y13_c00103{bottom:776.639689px;}
.y12_c00103{bottom:807.779677px;}
.y10_c00103{bottom:838.739665px;}
.y11_c00103{bottom:847.019661px;}
.yf_c00103{bottom:869.879652px;}
.ye_c00103{bottom:900.839640px;}
.yc_c00103{bottom:931.979627px;}
.yd_c00103{bottom:940.259624px;}
.yb_c00103{bottom:962.939615px;}
.ya_c00103{bottom:994.079602px;}
.y9_c00103{bottom:1025.039590px;}
.y8_c00103{bottom:1056.179578px;}
.y7_c00103{bottom:1087.139565px;}
.y5_c00103{bottom:1118.279553px;}
.y6_c00103{bottom:1126.559549px;}
.y2_c00103{bottom:1157.159537px;}
.y1_c00103{bottom:1196.039522px;}
.h6_c00103{height:27.833192px;}
.h9_c00103{height:38.158578px;}
.h7_c00103{height:40.985140px;}
.h2_c00103{height:44.149201px;}
.h4_c00103{height:47.344903px;}
.h1_c00103{height:58.651148px;}
.h8_c00103{height:65.010911px;}
.h3_c00103{height:70.664034px;}
.h5_c00103{height:72.562471px;}
.h0_c00103{height:1263.000000px;}
.w0_c00103{width:892.500000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:127.619949px;}
.x12_c00103{left:138.059945px;}
.x13_c00103{left:141.839943px;}
.x15_c00103{left:143.279943px;}
.x16_c00103{left:147.419941px;}
.x3_c00103{left:165.599934px;}
.x4_c00103{left:177.839929px;}
.x7_c00103{left:180.720090px;}
.x5_c00103{left:257.939897px;}
.x6_c00103{left:270.179892px;}
.x8_c00103{left:392.579843px;}
.x9_c00103{left:404.819838px;}
.x2_c00103{left:433.979514px;}
.xe_c00103{left:446.759821px;}
.xf_c00103{left:465.119814px;}
.x10_c00103{left:537.659785px;}
.x11_c00103{left:556.019778px;}
.xc_c00103{left:648.359741px;}
.x14_c00103{left:659.339736px;}
.xd_c00103{left:666.719733px;}
.xa_c00103{left:718.559713px;}
.xb_c00103{left:736.919705px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls9_c00103{letter-spacing:0.000000pt;}
.ls4_c00103{letter-spacing:0.009440pt;}
.ls7_c00103{letter-spacing:0.009928pt;}
.ls6_c00103{letter-spacing:0.011218pt;}
.ls3_c00103{letter-spacing:0.018878pt;}
.ls0_c00103{letter-spacing:0.018917pt;}
.ls2_c00103{letter-spacing:0.332694pt;}
.ls8_c00103{letter-spacing:5.291411pt;}
.ls5_c00103{letter-spacing:7.693970pt;}
.ls1_c00103{letter-spacing:16.659247pt;}
.ws3_c00103{word-spacing:-16.018872pt;}
.ws0_c00103{word-spacing:-15.999994pt;}
.ws2_c00103{word-spacing:-11.052689pt;}
.ws1_c00103{word-spacing:-10.719996pt;}
.ws5_c00103{word-spacing:-9.291214pt;}
.ws6_c00103{word-spacing:-8.649924pt;}
.ws4_c00103{word-spacing:-8.389117pt;}
.ws7_c00103{word-spacing:0.000000pt;}
._d_c00103{margin-left:-9.183211pt;}
._1_c00103{margin-left:-0.982555pt;}
._0_c00103{width:1.062723pt;}
._9_c00103{width:2.303885pt;}
._c_c00103{width:3.520117pt;}
._e_c00103{width:4.662458pt;}
._5_c00103{width:5.590208pt;}
._7_c00103{width:6.578364pt;}
._6_c00103{width:7.510905pt;}
._3_c00103{width:8.695435pt;}
._2_c00103{width:9.615100pt;}
._4_c00103{width:10.934719pt;}
._b_c00103{width:11.897354pt;}
._a_c00103{width:12.953433pt;}
._8_c00103{width:16.895451pt;}
.fs5_c00103{font-size:34.559986pt;}
.fs4_c00103{font-size:37.119985pt;}
.fs3_c00103{font-size:42.879983pt;}
.fs0_c00103{font-size:53.119979pt;}
.fs1_c00103{font-size:58.879976pt;}
.fs2_c00103{font-size:63.999974pt;}
.y0_c00103{bottom:0.000000pt;}
.y4_c00103{bottom:67.466640pt;}
.y3_c00103{bottom:101.386626pt;}
.y34_c00103{bottom:118.506619pt;}
.y33_c00103{bottom:133.866613pt;}
.y32_c00103{bottom:149.546607pt;}
.y31_c00103{bottom:156.266604pt;}
.y30_c00103{bottom:166.986600pt;}
.y2f_c00103{bottom:184.266593pt;}
.y2e_c00103{bottom:190.986590pt;}
.y2d_c00103{bottom:200.906586pt;}
.y2c_c00103{bottom:216.266580pt;}
.y2b_c00103{bottom:231.466574pt;}
.y2a_c00103{bottom:237.546572pt;}
.y29_c00103{bottom:246.826568pt;}
.y28_c00103{bottom:262.506562pt;}
.y27_c00103{bottom:269.226559pt;}
.y26_c00103{bottom:279.146555pt;}
.y25_c00103{bottom:295.146549pt;}
.y24_c00103{bottom:301.866546pt;}
.y23_c00103{bottom:334.026533pt;}
.y22_c00103{bottom:340.746530pt;}
.y21_c00103{bottom:359.626523pt;}
.y20_c00103{bottom:366.346520pt;}
.y1f_c00103{bottom:377.546516pt;}
.y1e_c00103{bottom:442.026490pt;}
.y1d_c00103{bottom:469.546479pt;}
.y1b_c00103{bottom:497.226468pt;}
.y1c_c00103{bottom:504.586465pt;}
.y19_c00103{bottom:524.746457pt;}
.y1a_c00103{bottom:532.106454pt;}
.y18_c00103{bottom:552.426446pt;}
.y17_c00103{bottom:579.946435pt;}
.y16_c00103{bottom:607.626424pt;}
.y15_c00103{bottom:635.146413pt;}
.y14_c00103{bottom:662.826402pt;}
.y13_c00103{bottom:690.346391pt;}
.y12_c00103{bottom:718.026379pt;}
.y10_c00103{bottom:745.546368pt;}
.y11_c00103{bottom:752.906366pt;}
.yf_c00103{bottom:773.226357pt;}
.ye_c00103{bottom:800.746346pt;}
.yc_c00103{bottom:828.426335pt;}
.yd_c00103{bottom:835.786332pt;}
.yb_c00103{bottom:855.946324pt;}
.ya_c00103{bottom:883.626313pt;}
.y9_c00103{bottom:911.146302pt;}
.y8_c00103{bottom:938.826291pt;}
.y7_c00103{bottom:966.346280pt;}
.y5_c00103{bottom:994.026269pt;}
.y6_c00103{bottom:1001.386266pt;}
.y2_c00103{bottom:1028.586255pt;}
.y1_c00103{bottom:1063.146241pt;}
.h6_c00103{height:24.740615pt;}
.h9_c00103{height:33.918736pt;}
.h7_c00103{height:36.431235pt;}
.h2_c00103{height:39.243734pt;}
.h4_c00103{height:42.084358pt;}
.h1_c00103{height:52.134354pt;}
.h8_c00103{height:57.787477pt;}
.h3_c00103{height:62.812475pt;}
.h5_c00103{height:64.499974pt;}
.h0_c00103{height:1122.666667pt;}
.w0_c00103{width:793.333333pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:113.439955pt;}
.x12_c00103{left:122.719951pt;}
.x13_c00103{left:126.079950pt;}
.x15_c00103{left:127.359949pt;}
.x16_c00103{left:131.039948pt;}
.x3_c00103{left:147.199941pt;}
.x4_c00103{left:158.079937pt;}
.x7_c00103{left:160.640080pt;}
.x5_c00103{left:229.279908pt;}
.x6_c00103{left:240.159904pt;}
.x8_c00103{left:348.959860pt;}
.x9_c00103{left:359.839856pt;}
.x2_c00103{left:385.759568pt;}
.xe_c00103{left:397.119841pt;}
.xf_c00103{left:413.439835pt;}
.x10_c00103{left:477.919809pt;}
.x11_c00103{left:494.239802pt;}
.xc_c00103{left:576.319769pt;}
.x14_c00103{left:586.079766pt;}
.xd_c00103{left:592.639763pt;}
.xa_c00103{left:638.719745pt;}
.xb_c00103{left:655.039738pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc524d935818d758aa02b58e.woff2')format("woff");}.ff1_c00104{font-family:ff1_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:ff2_c00104;src:url('chunks/assets/font_17c3f429f8c63532d4a80f8c.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:0.675781;font-style:normal;font-weight:normal;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_6005326513d50919f7060499.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;}
.m0_c00104{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls3_c00104{letter-spacing:0.000000px;}
.ls1_c00104{letter-spacing:0.010620px;}
.ls2_c00104{letter-spacing:0.012620px;}
.ls0_c00104{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00104{word-spacing:-17.999993px;}
.ws0_c00104{word-spacing:-12.434276px;}
.ws2_c00104{word-spacing:-10.452616px;}
.ws3_c00104{word-spacing:-9.437756px;}
.ws4_c00104{word-spacing:0.000000px;}
._10_c00104{margin-left:-9.855852px;}
._1_c00104{margin-left:-1.105374px;}
._0_c00104{width:1.478351px;}
._a_c00104{width:2.497312px;}
._9_c00104{width:3.563121px;}
._7_c00104{width:4.663895px;}
._8_c00104{width:5.813723px;}
._b_c00104{width:7.114651px;}
._2_c00104{width:8.340405px;}
._3_c00104{width:10.164411px;}
._c_c00104{width:14.319903px;}
._6_c00104{width:15.633206px;}
._d_c00104{width:16.831742px;}
._e_c00104{width:19.504572px;}
._f_c00104{width:20.560592px;}
._4_c00104{width:37.121986px;}
._5_c00104{width:38.354207px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs4_c00104{font-size:41.759983px;}
.fs3_c00104{font-size:48.239981px;}
.fs0_c00104{font-size:59.759976px;}
.fs1_c00104{font-size:66.239974px;}
.fs2_c00104{font-size:71.999971px;}
.y0_c00104{bottom:0.000000px;}
.y4_c00104{bottom:75.900270px;}
.y3_c00104{bottom:114.060254px;}
.y2f_c00104{bottom:134.400246px;}
.y2e_c00104{bottom:153.839938px;}
.y2d_c00104{bottom:161.399935px;}
.y2c_c00104{bottom:181.379927px;}
.y2b_c00104{bottom:188.939924px;}
.y2a_c00104{bottom:200.099920px;}
.y29_c00104{bottom:217.559913px;}
.y28_c00104{bottom:225.119910px;}
.y27_c00104{bottom:245.819902px;}
.y26_c00104{bottom:253.379899px;}
.y25_c00104{bottom:274.079890px;}
.y24_c00104{bottom:281.639887px;}
.y23_c00104{bottom:293.699883px;}
.y21_c00104{bottom:373.979850px;}
.y22_c00104{bottom:382.259847px;}
.y20_c00104{bottom:404.939838px;}
.y1f_c00104{bottom:436.079826px;}
.y1e_c00104{bottom:467.039813px;}
.y1d_c00104{bottom:498.179801px;}
.y1b_c00104{bottom:529.139788px;}
.y1c_c00104{bottom:537.419785px;}
.y1a_c00104{bottom:560.279776px;}
.y19_c00104{bottom:591.239764px;}
.y18_c00104{bottom:622.199751px;}
.y17_c00104{bottom:653.339739px;}
.y15_c00104{bottom:684.299726px;}
.y16_c00104{bottom:692.579723px;}
.y14_c00104{bottom:715.439714px;}
.y13_c00104{bottom:746.399701px;}
.y12_c00104{bottom:777.539689px;}
.y11_c00104{bottom:808.499677px;}
.y10_c00104{bottom:839.639664px;}
.yf_c00104{bottom:870.599652px;}
.ye_c00104{bottom:901.739639px;}
.yd_c00104{bottom:932.699627px;}
.yc_c00104{bottom:963.839614px;}
.yb_c00104{bottom:994.799602px;}
.ya_c00104{bottom:1025.939590px;}
.y8_c00104{bottom:1056.899577px;}
.y9_c00104{bottom:1065.179574px;}
.y6_c00104{bottom:1088.039565px;}
.y7_c00104{bottom:1096.319561px;}
.y5_c00104{bottom:1118.999552px;}
.y2_c00104{bottom:1176.059530px;}
.y1_c00104{bottom:1196.219522px;}
.h7_c00104{height:27.833192px;}
.h5_c00104{height:40.985140px;}
.h2_c00104{height:44.149201px;}
.h4_c00104{height:47.344903px;}
.h1_c00104{height:58.651148px;}
.h6_c00104{height:65.010911px;}
.h3_c00104{height:70.664034px;}
.h0_c00104{height:1263.000000px;}
.w0_c00104{width:892.500000px;}
.x0_c00104{left:0.000000px;}
.x5_c00104{left:127.620262px;}
.x11_c00104{left:143.279943px;}
.x12_c00104{left:147.419941px;}
.x6_c00104{left:180.719928px;}
.x1_c00104{left:181.799927px;}
.xb_c00104{left:275.039890px;}
.xc_c00104{left:293.399883px;}
.x2_c00104{left:329.039408px;}
.xf_c00104{left:408.599837px;}
.x10_c00104{left:426.959829px;}
.x4_c00104{left:433.979826px;}
.xd_c00104{left:523.079791px;}
.xe_c00104{left:541.439783px;}
.x7_c00104{left:641.699743px;}
.x13_c00104{left:650.699740px;}
.x8_c00104{left:660.059736px;}
.x9_c00104{left:686.339725px;}
.xa_c00104{left:704.699718px;}
.x3_c00104{left:765.359694px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls3_c00104{letter-spacing:0.000000pt;}
.ls1_c00104{letter-spacing:0.009440pt;}
.ls2_c00104{letter-spacing:0.011218pt;}
.ls0_c00104{letter-spacing:0.332694pt;}
.ws1_c00104{word-spacing:-15.999994pt;}
.ws0_c00104{word-spacing:-11.052689pt;}
.ws2_c00104{word-spacing:-9.291214pt;}
.ws3_c00104{word-spacing:-8.389117pt;}
.ws4_c00104{word-spacing:0.000000pt;}
._10_c00104{margin-left:-8.760757pt;}
._1_c00104{margin-left:-0.982555pt;}
._0_c00104{width:1.314090pt;}
._a_c00104{width:2.219833pt;}
._9_c00104{width:3.167218pt;}
._7_c00104{width:4.145685pt;}
._8_c00104{width:5.167754pt;}
._b_c00104{width:6.324134pt;}
._2_c00104{width:7.413693pt;}
._3_c00104{width:9.035032pt;}
._c_c00104{width:12.728802pt;}
._6_c00104{width:13.896183pt;}
._d_c00104{width:14.961549pt;}
._e_c00104{width:17.337398pt;}
._f_c00104{width:18.276082pt;}
._4_c00104{width:32.997321pt;}
._5_c00104{width:34.092628pt;}
.fs4_c00104{font-size:37.119985pt;}
.fs3_c00104{font-size:42.879983pt;}
.fs0_c00104{font-size:53.119979pt;}
.fs1_c00104{font-size:58.879976pt;}
.fs2_c00104{font-size:63.999974pt;}
.y0_c00104{bottom:0.000000pt;}
.y4_c00104{bottom:67.466906pt;}
.y3_c00104{bottom:101.386893pt;}
.y2f_c00104{bottom:119.466886pt;}
.y2e_c00104{bottom:136.746612pt;}
.y2d_c00104{bottom:143.466609pt;}
.y2c_c00104{bottom:161.226602pt;}
.y2b_c00104{bottom:167.946599pt;}
.y2a_c00104{bottom:177.866596pt;}
.y29_c00104{bottom:193.386589pt;}
.y28_c00104{bottom:200.106587pt;}
.y27_c00104{bottom:218.506579pt;}
.y26_c00104{bottom:225.226577pt;}
.y25_c00104{bottom:243.626569pt;}
.y24_c00104{bottom:250.346567pt;}
.y23_c00104{bottom:261.066562pt;}
.y21_c00104{bottom:332.426534pt;}
.y22_c00104{bottom:339.786531pt;}
.y20_c00104{bottom:359.946523pt;}
.y1f_c00104{bottom:387.626512pt;}
.y1e_c00104{bottom:415.146501pt;}
.y1d_c00104{bottom:442.826490pt;}
.y1b_c00104{bottom:470.346479pt;}
.y1c_c00104{bottom:477.706476pt;}
.y1a_c00104{bottom:498.026467pt;}
.y19_c00104{bottom:525.546456pt;}
.y18_c00104{bottom:553.066445pt;}
.y17_c00104{bottom:580.746434pt;}
.y15_c00104{bottom:608.266423pt;}
.y16_c00104{bottom:615.626420pt;}
.y14_c00104{bottom:635.946412pt;}
.y13_c00104{bottom:663.466401pt;}
.y12_c00104{bottom:691.146390pt;}
.y11_c00104{bottom:718.666379pt;}
.y10_c00104{bottom:746.346368pt;}
.yf_c00104{bottom:773.866357pt;}
.ye_c00104{bottom:801.546346pt;}
.yd_c00104{bottom:829.066335pt;}
.yc_c00104{bottom:856.746324pt;}
.yb_c00104{bottom:884.266313pt;}
.ya_c00104{bottom:911.946302pt;}
.y8_c00104{bottom:939.466291pt;}
.y9_c00104{bottom:946.826288pt;}
.y6_c00104{bottom:967.146280pt;}
.y7_c00104{bottom:974.506277pt;}
.y5_c00104{bottom:994.666269pt;}
.y2_c00104{bottom:1045.386249pt;}
.y1_c00104{bottom:1063.306241pt;}
.h7_c00104{height:24.740615pt;}
.h5_c00104{height:36.431235pt;}
.h2_c00104{height:39.243734pt;}
.h4_c00104{height:42.084358pt;}
.h1_c00104{height:52.134354pt;}
.h6_c00104{height:57.787477pt;}
.h3_c00104{height:62.812475pt;}
.h0_c00104{height:1122.666667pt;}
.w0_c00104{width:793.333333pt;}
.x0_c00104{left:0.000000pt;}
.x5_c00104{left:113.440233pt;}
.x11_c00104{left:127.359949pt;}
.x12_c00104{left:131.039948pt;}
.x6_c00104{left:160.639936pt;}
.x1_c00104{left:161.599935pt;}
.xb_c00104{left:244.479902pt;}
.xc_c00104{left:260.799896pt;}
.x2_c00104{left:292.479474pt;}
.xf_c00104{left:363.199855pt;}
.x10_c00104{left:379.519848pt;}
.x4_c00104{left:385.759846pt;}
.xd_c00104{left:464.959814pt;}
.xe_c00104{left:481.279807pt;}
.x7_c00104{left:570.399772pt;}
.x13_c00104{left:578.399769pt;}
.x8_c00104{left:586.719765pt;}
.x9_c00104{left:610.079756pt;}
.xa_c00104{left:626.399749pt;}
.x3_c00104{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3ed735f3d6b7fac68be8d84.woff2')format("woff");}.ff1_c00105{font-family:ff1_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:ff2_c00105;src:url('chunks/assets/font_fcbbe6556efb50bc872264ef.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:0.675781;font-style:normal;font-weight:normal;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_c2d49bdecc0949d1dbfecd2a.woff2')format("woff");}.ff3_c00105{font-family:ff3_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:ff4_c00105;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls5_c00105{letter-spacing:0.000000px;}
.ls2_c00105{letter-spacing:0.011169px;}
.ls1_c00105{letter-spacing:0.021282px;}
.ls4_c00105{letter-spacing:0.182640px;}
.ls0_c00105{letter-spacing:0.374281px;}
.ls3_c00105{letter-spacing:5.952838px;}
.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;}
}
.ws0_c00105{word-spacing:-17.999993px;}
.ws1_c00105{word-spacing:-12.434276px;}
.ws2_c00105{word-spacing:-9.731165px;}
.ws3_c00105{word-spacing:-8.786876px;}
.ws4_c00105{word-spacing:0.000000px;}
._10_c00105{margin-left:-10.435174px;}
._4_c00105{margin-left:-2.139990px;}
._1_c00105{margin-left:-1.105374px;}
._0_c00105{width:1.195563px;}
._8_c00105{width:2.708100px;}
._7_c00105{width:3.878482px;}
._9_c00105{width:4.993170px;}
._a_c00105{width:6.393045px;}
._6_c00105{width:7.677843px;}
._5_c00105{width:8.786887px;}
._e_c00105{width:11.938971px;}
._f_c00105{width:13.196403px;}
._2_c00105{width:15.966427px;}
._3_c00105{width:16.981952px;}
._c_c00105{width:19.254135px;}
._b_c00105{width:20.395173px;}
._d_c00105{width:21.684485px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs4_c00105{font-size:38.879984px;}
.fs3_c00105{font-size:48.239981px;}
.fs0_c00105{font-size:59.759976px;}
.fs1_c00105{font-size:66.239974px;}
.fs2_c00105{font-size:71.999971px;}
.y0_c00105{bottom:0.000000px;}
.y4_c00105{bottom:75.899970px;}
.y3_c00105{bottom:114.059954px;}
.y33_c00105{bottom:156.899937px;}
.y32_c00105{bottom:163.739935px;}
.y31_c00105{bottom:183.179927px;}
.y30_c00105{bottom:190.739924px;}
.y2f_c00105{bottom:201.179920px;}
.y2e_c00105{bottom:218.459913px;}
.y2d_c00105{bottom:235.739906px;}
.y2c_c00105{bottom:242.579903px;}
.y2b_c00105{bottom:253.019899px;}
.y2a_c00105{bottom:270.119892px;}
.y29_c00105{bottom:287.399885px;}
.y28_c00105{bottom:304.679878px;}
.y27_c00105{bottom:311.519875px;}
.y26_c00105{bottom:330.599868px;}
.y25_c00105{bottom:337.439865px;}
.y24_c00105{bottom:356.519857px;}
.y23_c00105{bottom:363.359855px;}
.y22_c00105{bottom:374.519850px;}
.y21_c00105{bottom:403.679839px;}
.y20_c00105{bottom:434.819826px;}
.y1f_c00105{bottom:465.779814px;}
.y1d_c00105{bottom:497.279801px;}
.y1e_c00105{bottom:505.559798px;}
.y1c_c00105{bottom:528.239789px;}
.y1b_c00105{bottom:559.379776px;}
.y1a_c00105{bottom:590.339764px;}
.y19_c00105{bottom:621.479751px;}
.y18_c00105{bottom:652.439739px;}
.y17_c00105{bottom:683.579727px;}
.y16_c00105{bottom:714.539714px;}
.y15_c00105{bottom:745.679702px;}
.y14_c00105{bottom:776.639689px;}
.y13_c00105{bottom:807.779677px;}
.y12_c00105{bottom:838.739665px;}
.y10_c00105{bottom:869.879652px;}
.y11_c00105{bottom:878.159649px;}
.yf_c00105{bottom:900.839640px;}
.yd_c00105{bottom:931.979627px;}
.ye_c00105{bottom:940.259624px;}
.yc_c00105{bottom:962.939615px;}
.yb_c00105{bottom:994.079602px;}
.y9_c00105{bottom:1025.039590px;}
.ya_c00105{bottom:1033.319587px;}
.y8_c00105{bottom:1056.179578px;}
.y6_c00105{bottom:1087.139565px;}
.y7_c00105{bottom:1095.419562px;}
.y5_c00105{bottom:1118.279553px;}
.y2_c00105{bottom:1157.159537px;}
.y1_c00105{bottom:1196.039522px;}
.h7_c00105{height:25.913662px;}
.h6_c00105{height:38.158578px;}
.h2_c00105{height:44.149201px;}
.h4_c00105{height:47.344903px;}
.h1_c00105{height:58.651148px;}
.h3_c00105{height:70.664034px;}
.h5_c00105{height:72.562471px;}
.h0_c00105{height:1263.000000px;}
.w0_c00105{width:892.500000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:127.619949px;}
.x13_c00105{left:142.199943px;}
.x3_c00105{left:180.719928px;}
.x4_c00105{left:199.439920px;}
.xd_c00105{left:238.139905px;}
.xe_c00105{left:250.919900px;}
.xf_c00105{left:315.899874px;}
.x10_c00105{left:324.899870px;}
.x2_c00105{left:433.979514px;}
.xb_c00105{left:437.939825px;}
.xc_c00105{left:456.299817px;}
.x11_c00105{left:561.059776px;}
.x12_c00105{left:579.419768px;}
.x15_c00105{left:593.639763px;}
.x14_c00105{left:636.479745px;}
.x7_c00105{left:681.119728px;}
.x9_c00105{left:696.059722px;}
.x8_c00105{left:699.479720px;}
.xa_c00105{left:714.419714px;}
.x5_c00105{left:733.319707px;}
.x6_c00105{left:751.679699px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls5_c00105{letter-spacing:0.000000pt;}
.ls2_c00105{letter-spacing:0.009928pt;}
.ls1_c00105{letter-spacing:0.018917pt;}
.ls4_c00105{letter-spacing:0.162347pt;}
.ls0_c00105{letter-spacing:0.332694pt;}
.ls3_c00105{letter-spacing:5.291411pt;}
.ws0_c00105{word-spacing:-15.999994pt;}
.ws1_c00105{word-spacing:-11.052689pt;}
.ws2_c00105{word-spacing:-8.649924pt;}
.ws3_c00105{word-spacing:-7.810557pt;}
.ws4_c00105{word-spacing:0.000000pt;}
._10_c00105{margin-left:-9.275710pt;}
._4_c00105{margin-left:-1.902214pt;}
._1_c00105{margin-left:-0.982555pt;}
._0_c00105{width:1.062723pt;}
._8_c00105{width:2.407200pt;}
._7_c00105{width:3.447539pt;}
._9_c00105{width:4.438374pt;}
._a_c00105{width:5.682707pt;}
._6_c00105{width:6.824750pt;}
._5_c00105{width:7.810566pt;}
._e_c00105{width:10.612419pt;}
._f_c00105{width:11.730136pt;}
._2_c00105{width:14.192380pt;}
._3_c00105{width:15.095069pt;}
._c_c00105{width:17.114787pt;}
._b_c00105{width:18.129042pt;}
._d_c00105{width:19.275098pt;}
.fs4_c00105{font-size:34.559986pt;}
.fs3_c00105{font-size:42.879983pt;}
.fs0_c00105{font-size:53.119979pt;}
.fs1_c00105{font-size:58.879976pt;}
.fs2_c00105{font-size:63.999974pt;}
.y0_c00105{bottom:0.000000pt;}
.y4_c00105{bottom:67.466640pt;}
.y3_c00105{bottom:101.386626pt;}
.y33_c00105{bottom:139.466611pt;}
.y32_c00105{bottom:145.546608pt;}
.y31_c00105{bottom:162.826602pt;}
.y30_c00105{bottom:169.546599pt;}
.y2f_c00105{bottom:178.826595pt;}
.y2e_c00105{bottom:194.186589pt;}
.y2d_c00105{bottom:209.546583pt;}
.y2c_c00105{bottom:215.626580pt;}
.y2b_c00105{bottom:224.906577pt;}
.y2a_c00105{bottom:240.106571pt;}
.y29_c00105{bottom:255.466564pt;}
.y28_c00105{bottom:270.826558pt;}
.y27_c00105{bottom:276.906556pt;}
.y26_c00105{bottom:293.866549pt;}
.y25_c00105{bottom:299.946547pt;}
.y24_c00105{bottom:316.906540pt;}
.y23_c00105{bottom:322.986537pt;}
.y22_c00105{bottom:332.906534pt;}
.y21_c00105{bottom:358.826523pt;}
.y20_c00105{bottom:386.506512pt;}
.y1f_c00105{bottom:414.026501pt;}
.y1d_c00105{bottom:442.026490pt;}
.y1e_c00105{bottom:449.386487pt;}
.y1c_c00105{bottom:469.546479pt;}
.y1b_c00105{bottom:497.226468pt;}
.y1a_c00105{bottom:524.746457pt;}
.y19_c00105{bottom:552.426446pt;}
.y18_c00105{bottom:579.946435pt;}
.y17_c00105{bottom:607.626424pt;}
.y16_c00105{bottom:635.146413pt;}
.y15_c00105{bottom:662.826402pt;}
.y14_c00105{bottom:690.346391pt;}
.y13_c00105{bottom:718.026379pt;}
.y12_c00105{bottom:745.546368pt;}
.y10_c00105{bottom:773.226357pt;}
.y11_c00105{bottom:780.586354pt;}
.yf_c00105{bottom:800.746346pt;}
.yd_c00105{bottom:828.426335pt;}
.ye_c00105{bottom:835.786332pt;}
.yc_c00105{bottom:855.946324pt;}
.yb_c00105{bottom:883.626313pt;}
.y9_c00105{bottom:911.146302pt;}
.ya_c00105{bottom:918.506299pt;}
.y8_c00105{bottom:938.826291pt;}
.y6_c00105{bottom:966.346280pt;}
.y7_c00105{bottom:973.706277pt;}
.y5_c00105{bottom:994.026269pt;}
.y2_c00105{bottom:1028.586255pt;}
.y1_c00105{bottom:1063.146241pt;}
.h7_c00105{height:23.034366pt;}
.h6_c00105{height:33.918736pt;}
.h2_c00105{height:39.243734pt;}
.h4_c00105{height:42.084358pt;}
.h1_c00105{height:52.134354pt;}
.h3_c00105{height:62.812475pt;}
.h5_c00105{height:64.499974pt;}
.h0_c00105{height:1122.666667pt;}
.w0_c00105{width:793.333333pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:113.439955pt;}
.x13_c00105{left:126.399949pt;}
.x3_c00105{left:160.639936pt;}
.x4_c00105{left:177.279929pt;}
.xd_c00105{left:211.679915pt;}
.xe_c00105{left:223.039911pt;}
.xf_c00105{left:280.799888pt;}
.x10_c00105{left:288.799884pt;}
.x2_c00105{left:385.759568pt;}
.xb_c00105{left:389.279844pt;}
.xc_c00105{left:405.599838pt;}
.x11_c00105{left:498.719801pt;}
.x12_c00105{left:515.039794pt;}
.x15_c00105{left:527.679789pt;}
.x14_c00105{left:565.759774pt;}
.x7_c00105{left:605.439758pt;}
.x9_c00105{left:618.719753pt;}
.x8_c00105{left:621.759751pt;}
.xa_c00105{left:635.039746pt;}
.x5_c00105{left:651.839739pt;}
.x6_c00105{left:668.159733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33a30375e3cf8047071ffcd7.woff2')format("woff");}.ff1_c00106{font-family:ff1_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:ff2_c00106;src:url('chunks/assets/font_302e3dfde5f1b0330aee6f00.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:0.675781;font-style:normal;font-weight:normal;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_be700e558695ac7f027944f4.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.311035;font-style:normal;font-weight:normal;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_59b1c485ece7013db69b87c3.woff2')format("woff");}.ff4_c00106{font-family:ff4_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;}
.m0_c00106{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls3_c00106{letter-spacing:0.000000px;}
.ls2_c00106{letter-spacing:0.011169px;}
.ls1_c00106{letter-spacing:0.021238px;}
.ls0_c00106{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00106{word-spacing:-12.434276px;}
.ws1_c00106{word-spacing:-9.731165px;}
.ws2_c00106{word-spacing:0.000000px;}
._8_c00106{margin-left:-11.011807px;}
._1_c00106{margin-left:-1.105374px;}
._0_c00106{width:1.478351px;}
._2_c00106{width:3.010391px;}
._9_c00106{width:4.013701px;}
._3_c00106{width:5.096089px;}
._4_c00106{width:6.969678px;}
._5_c00106{width:8.922633px;}
._6_c00106{width:10.317548px;}
._7_c00106{width:11.700387px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs4_c00106{font-size:38.879984px;}
.fs3_c00106{font-size:48.239981px;}
.fs0_c00106{font-size:59.759976px;}
.fs1_c00106{font-size:66.239974px;}
.fs2_c00106{font-size:71.999971px;}
.y0_c00106{bottom:0.000000px;}
.y4_c00106{bottom:75.900270px;}
.y3_c00106{bottom:114.060254px;}
.y2a_c00106{bottom:133.319947px;}
.y29_c00106{bottom:150.599940px;}
.y28_c00106{bottom:167.879933px;}
.y27_c00106{bottom:174.719930px;}
.y26_c00106{bottom:185.159926px;}
.y25_c00106{bottom:202.439919px;}
.y24_c00106{bottom:209.279916px;}
.y23_c00106{bottom:220.619912px;}
.y21_c00106{bottom:276.239890px;}
.y22_c00106{bottom:284.519886px;}
.y20_c00106{bottom:307.199877px;}
.y1f_c00106{bottom:338.339865px;}
.y1e_c00106{bottom:369.299852px;}
.y1d_c00106{bottom:400.439840px;}
.y1c_c00106{bottom:431.399827px;}
.y1b_c00106{bottom:462.539815px;}
.y1a_c00106{bottom:493.499803px;}
.y19_c00106{bottom:524.639790px;}
.y18_c00106{bottom:555.599778px;}
.y17_c00106{bottom:586.739765px;}
.y16_c00106{bottom:617.699753px;}
.y15_c00106{bottom:648.839740px;}
.y14_c00106{bottom:679.799728px;}
.y13_c00106{bottom:718.679713px;}
.y12_c00106{bottom:747.479701px;}
.y11_c00106{bottom:777.179689px;}
.yf_c00106{bottom:808.499677px;}
.y10_c00106{bottom:816.779673px;}
.ye_c00106{bottom:839.639664px;}
.yd_c00106{bottom:870.599652px;}
.yc_c00106{bottom:901.739639px;}
.yb_c00106{bottom:932.699627px;}
.ya_c00106{bottom:963.839614px;}
.y9_c00106{bottom:994.799602px;}
.y8_c00106{bottom:1025.579590px;}
.y7_c00106{bottom:1056.539577px;}
.y6_c00106{bottom:1087.679565px;}
.y5_c00106{bottom:1118.639553px;}
.y2_c00106{bottom:1176.059530px;}
.y1_c00106{bottom:1196.219522px;}
.h8_c00106{height:38.158578px;}
.h2_c00106{height:44.149201px;}
.h6_c00106{height:47.344903px;}
.h1_c00106{height:58.651148px;}
.h7_c00106{height:66.757473px;}
.h4_c00106{height:70.628878px;}
.h5_c00106{height:70.664034px;}
.h3_c00106{height:72.562471px;}
.h0_c00106{height:1263.000000px;}
.w0_c00106{width:892.500000px;}
.x0_c00106{left:0.000000px;}
.x5_c00106{left:127.620262px;}
.x11_c00106{left:142.199943px;}
.xe_c00106{left:180.539928px;}
.x1_c00106{left:181.799927px;}
.x8_c00106{left:322.738683px;}
.x2_c00106{left:329.039408px;}
.x9_c00106{left:351.899456px;}
.xb_c00106{left:377.999787px;}
.x4_c00106{left:433.979826px;}
.x6_c00106{left:446.399131px;}
.xa_c00106{left:508.859732px;}
.xc_c00106{left:555.658801px;}
.x7_c00106{left:601.738864px;}
.xf_c00106{left:637.919745px;}
.x10_c00106{left:656.279737px;}
.xd_c00106{left:746.999701px;}
.x3_c00106{left:765.359694px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls3_c00106{letter-spacing:0.000000pt;}
.ls2_c00106{letter-spacing:0.009928pt;}
.ls1_c00106{letter-spacing:0.018878pt;}
.ls0_c00106{letter-spacing:0.332694pt;}
.ws0_c00106{word-spacing:-11.052689pt;}
.ws1_c00106{word-spacing:-8.649924pt;}
.ws2_c00106{word-spacing:0.000000pt;}
._8_c00106{margin-left:-9.788273pt;}
._1_c00106{margin-left:-0.982555pt;}
._0_c00106{width:1.314090pt;}
._2_c00106{width:2.675903pt;}
._9_c00106{width:3.567734pt;}
._3_c00106{width:4.529857pt;}
._4_c00106{width:6.195269pt;}
._5_c00106{width:7.931229pt;}
._6_c00106{width:9.171154pt;}
._7_c00106{width:10.400344pt;}
.fs4_c00106{font-size:34.559986pt;}
.fs3_c00106{font-size:42.879983pt;}
.fs0_c00106{font-size:53.119979pt;}
.fs1_c00106{font-size:58.879976pt;}
.fs2_c00106{font-size:63.999974pt;}
.y0_c00106{bottom:0.000000pt;}
.y4_c00106{bottom:67.466906pt;}
.y3_c00106{bottom:101.386893pt;}
.y2a_c00106{bottom:118.506619pt;}
.y29_c00106{bottom:133.866613pt;}
.y28_c00106{bottom:149.226607pt;}
.y27_c00106{bottom:155.306605pt;}
.y26_c00106{bottom:164.586601pt;}
.y25_c00106{bottom:179.946595pt;}
.y24_c00106{bottom:186.026592pt;}
.y23_c00106{bottom:196.106588pt;}
.y21_c00106{bottom:245.546568pt;}
.y22_c00106{bottom:252.906566pt;}
.y20_c00106{bottom:273.066557pt;}
.y1f_c00106{bottom:300.746546pt;}
.y1e_c00106{bottom:328.266535pt;}
.y1d_c00106{bottom:355.946524pt;}
.y1c_c00106{bottom:383.466513pt;}
.y1b_c00106{bottom:411.146502pt;}
.y1a_c00106{bottom:438.666491pt;}
.y19_c00106{bottom:466.346480pt;}
.y18_c00106{bottom:493.866469pt;}
.y17_c00106{bottom:521.546458pt;}
.y16_c00106{bottom:549.066447pt;}
.y15_c00106{bottom:576.746436pt;}
.y14_c00106{bottom:604.266425pt;}
.y13_c00106{bottom:638.826411pt;}
.y12_c00106{bottom:664.426401pt;}
.y11_c00106{bottom:690.826390pt;}
.yf_c00106{bottom:718.666379pt;}
.y10_c00106{bottom:726.026376pt;}
.ye_c00106{bottom:746.346368pt;}
.yd_c00106{bottom:773.866357pt;}
.yc_c00106{bottom:801.546346pt;}
.yb_c00106{bottom:829.066335pt;}
.ya_c00106{bottom:856.746324pt;}
.y9_c00106{bottom:884.266313pt;}
.y8_c00106{bottom:911.626302pt;}
.y7_c00106{bottom:939.146291pt;}
.y6_c00106{bottom:966.826280pt;}
.y5_c00106{bottom:994.346269pt;}
.y2_c00106{bottom:1045.386249pt;}
.y1_c00106{bottom:1063.306241pt;}
.h8_c00106{height:33.918736pt;}
.h2_c00106{height:39.243734pt;}
.h6_c00106{height:42.084358pt;}
.h1_c00106{height:52.134354pt;}
.h7_c00106{height:59.339976pt;}
.h4_c00106{height:62.781225pt;}
.h5_c00106{height:62.812475pt;}
.h3_c00106{height:64.499974pt;}
.h0_c00106{height:1122.666667pt;}
.w0_c00106{width:793.333333pt;}
.x0_c00106{left:0.000000pt;}
.x5_c00106{left:113.440233pt;}
.x11_c00106{left:126.399949pt;}
.xe_c00106{left:160.479936pt;}
.x1_c00106{left:161.599935pt;}
.x8_c00106{left:286.878829pt;}
.x2_c00106{left:292.479474pt;}
.x9_c00106{left:312.799517pt;}
.xb_c00106{left:335.999811pt;}
.x4_c00106{left:385.759846pt;}
.x6_c00106{left:396.799227pt;}
.xa_c00106{left:452.319762pt;}
.xc_c00106{left:493.918934pt;}
.x7_c00106{left:534.878990pt;}
.xf_c00106{left:567.039773pt;}
.x10_c00106{left:583.359767pt;}
.xd_c00106{left:663.999734pt;}
.x3_c00106{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8cb4c5b73a16377c5b83bd32.woff2')format("woff");}.ff1_c00107{font-family:ff1_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:ff2_c00107;src:url('chunks/assets/font_f60819d3839c1959f0926031.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:0.675781;font-style:normal;font-weight:normal;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_991c16884cf45476255c928f.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;}
.m0_c00107{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls4_c00107{letter-spacing:0.000000px;}
.ls3_c00107{letter-spacing:0.011169px;}
.ls1_c00107{letter-spacing:0.012620px;}
.ls2_c00107{letter-spacing:0.189300px;}
.ls0_c00107{letter-spacing:0.374281px;}
.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;}
}
.ws3_c00107{word-spacing:-14.939994px;}
.ws0_c00107{word-spacing:-12.434276px;}
.ws1_c00107{word-spacing:-10.452616px;}
.ws2_c00107{word-spacing:-9.731165px;}
.ws4_c00107{word-spacing:0.000000px;}
._10_c00107{margin-left:-9.545754px;}
._1_c00107{margin-left:-1.105374px;}
._0_c00107{width:1.195563px;}
._5_c00107{width:3.119142px;}
._4_c00107{width:4.287107px;}
._6_c00107{width:5.503626px;}
._2_c00107{width:6.600887px;}
._3_c00107{width:8.101780px;}
._e_c00107{width:9.459187px;}
._f_c00107{width:11.524623px;}
._7_c00107{width:12.730285px;}
._8_c00107{width:13.762569px;}
._c_c00107{width:15.177063px;}
._d_c00107{width:16.544973px;}
._9_c00107{width:19.214098px;}
._a_c00107{width:20.285942px;}
._b_c00107{width:21.300993px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs5_c00107{font-size:38.879984px;}
.fs4_c00107{font-size:41.759983px;}
.fs3_c00107{font-size:48.239981px;}
.fs0_c00107{font-size:59.759976px;}
.fs1_c00107{font-size:66.239974px;}
.fs2_c00107{font-size:71.999971px;}
.y0_c00107{bottom:0.000000px;}
.y4_c00107{bottom:75.899970px;}
.y3_c00107{bottom:114.059954px;}
.y2e_c00107{bottom:133.319947px;}
.y2f_c00107{bottom:133.320247px;}
.y2d_c00107{bottom:150.599940px;}
.y2c_c00107{bottom:157.439937px;}
.y2b_c00107{bottom:167.879933px;}
.y2a_c00107{bottom:185.159926px;}
.y29_c00107{bottom:202.439919px;}
.y28_c00107{bottom:209.279916px;}
.y27_c00107{bottom:219.719912px;}
.y26_c00107{bottom:236.819905px;}
.y25_c00107{bottom:254.459898px;}
.y24_c00107{bottom:262.019895px;}
.y23_c00107{bottom:274.079890px;}
.y22_c00107{bottom:310.979876px;}
.y21_c00107{bottom:341.939863px;}
.y20_c00107{bottom:373.079851px;}
.y1f_c00107{bottom:404.039838px;}
.y1d_c00107{bottom:435.179826px;}
.y1e_c00107{bottom:443.459823px;}
.y1c_c00107{bottom:466.139814px;}
.y1b_c00107{bottom:497.279801px;}
.y1a_c00107{bottom:528.239789px;}
.y19_c00107{bottom:559.379776px;}
.y18_c00107{bottom:590.339764px;}
.y16_c00107{bottom:621.479751px;}
.y17_c00107{bottom:629.759748px;}
.y15_c00107{bottom:652.439739px;}
.y14_c00107{bottom:683.579727px;}
.y13_c00107{bottom:714.539714px;}
.y12_c00107{bottom:745.679702px;}
.y11_c00107{bottom:776.639689px;}
.yf_c00107{bottom:807.779677px;}
.y10_c00107{bottom:816.059674px;}
.ye_c00107{bottom:838.739665px;}
.yd_c00107{bottom:869.879652px;}
.yc_c00107{bottom:900.839640px;}
.yb_c00107{bottom:931.979627px;}
.ya_c00107{bottom:962.939615px;}
.y9_c00107{bottom:994.079602px;}
.y8_c00107{bottom:1025.039590px;}
.y7_c00107{bottom:1056.179578px;}
.y6_c00107{bottom:1087.139565px;}
.y5_c00107{bottom:1118.279553px;}
.y2_c00107{bottom:1157.159537px;}
.y1_c00107{bottom:1196.039522px;}
.h9_c00107{height:38.158578px;}
.h7_c00107{height:40.985140px;}
.h2_c00107{height:44.149201px;}
.h5_c00107{height:47.321348px;}
.h6_c00107{height:47.344903px;}
.ha_c00107{height:58.621969px;}
.h1_c00107{height:58.651148px;}
.h8_c00107{height:65.010911px;}
.h4_c00107{height:70.628878px;}
.h3_c00107{height:70.664034px;}
.h0_c00107{height:1263.000000px;}
.w0_c00107{width:892.500000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:127.619949px;}
.xc_c00107{left:142.199943px;}
.xa_c00107{left:143.279943px;}
.xb_c00107{left:148.499941px;}
.xd_c00107{left:171.359931px;}
.x3_c00107{left:180.539928px;}
.x2_c00107{left:433.979514px;}
.x4_c00107{left:594.179762px;}
.x5_c00107{left:612.539755px;}
.x6_c00107{left:624.239750px;}
.x7_c00107{left:642.599743px;}
.x8_c00107{left:735.119706px;}
.x9_c00107{left:753.479699px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls4_c00107{letter-spacing:0.000000pt;}
.ls3_c00107{letter-spacing:0.009928pt;}
.ls1_c00107{letter-spacing:0.011218pt;}
.ls2_c00107{letter-spacing:0.168267pt;}
.ls0_c00107{letter-spacing:0.332694pt;}
.ws3_c00107{word-spacing:-13.279995pt;}
.ws0_c00107{word-spacing:-11.052689pt;}
.ws1_c00107{word-spacing:-9.291214pt;}
.ws2_c00107{word-spacing:-8.649924pt;}
.ws4_c00107{word-spacing:0.000000pt;}
._10_c00107{margin-left:-8.485115pt;}
._1_c00107{margin-left:-0.982555pt;}
._0_c00107{width:1.062723pt;}
._5_c00107{width:2.772571pt;}
._4_c00107{width:3.810762pt;}
._6_c00107{width:4.892112pt;}
._2_c00107{width:5.867455pt;}
._3_c00107{width:7.201582pt;}
._e_c00107{width:8.408166pt;}
._f_c00107{width:10.244110pt;}
._7_c00107{width:11.315809pt;}
._8_c00107{width:12.233394pt;}
._c_c00107{width:13.490722pt;}
._d_c00107{width:14.706643pt;}
._9_c00107{width:17.079199pt;}
._a_c00107{width:18.031949pt;}
._b_c00107{width:18.934216pt;}
.fs5_c00107{font-size:34.559986pt;}
.fs4_c00107{font-size:37.119985pt;}
.fs3_c00107{font-size:42.879983pt;}
.fs0_c00107{font-size:53.119979pt;}
.fs1_c00107{font-size:58.879976pt;}
.fs2_c00107{font-size:63.999974pt;}
.y0_c00107{bottom:0.000000pt;}
.y4_c00107{bottom:67.466640pt;}
.y3_c00107{bottom:101.386626pt;}
.y2e_c00107{bottom:118.506619pt;}
.y2f_c00107{bottom:118.506886pt;}
.y2d_c00107{bottom:133.866613pt;}
.y2c_c00107{bottom:139.946611pt;}
.y2b_c00107{bottom:149.226607pt;}
.y2a_c00107{bottom:164.586601pt;}
.y29_c00107{bottom:179.946595pt;}
.y28_c00107{bottom:186.026592pt;}
.y27_c00107{bottom:195.306589pt;}
.y26_c00107{bottom:210.506582pt;}
.y25_c00107{bottom:226.186576pt;}
.y24_c00107{bottom:232.906574pt;}
.y23_c00107{bottom:243.626569pt;}
.y22_c00107{bottom:276.426556pt;}
.y21_c00107{bottom:303.946545pt;}
.y20_c00107{bottom:331.626534pt;}
.y1f_c00107{bottom:359.146523pt;}
.y1d_c00107{bottom:386.826512pt;}
.y1e_c00107{bottom:394.186509pt;}
.y1c_c00107{bottom:414.346501pt;}
.y1b_c00107{bottom:442.026490pt;}
.y1a_c00107{bottom:469.546479pt;}
.y19_c00107{bottom:497.226468pt;}
.y18_c00107{bottom:524.746457pt;}
.y16_c00107{bottom:552.426446pt;}
.y17_c00107{bottom:559.786443pt;}
.y15_c00107{bottom:579.946435pt;}
.y14_c00107{bottom:607.626424pt;}
.y13_c00107{bottom:635.146413pt;}
.y12_c00107{bottom:662.826402pt;}
.y11_c00107{bottom:690.346391pt;}
.yf_c00107{bottom:718.026379pt;}
.y10_c00107{bottom:725.386377pt;}
.ye_c00107{bottom:745.546368pt;}
.yd_c00107{bottom:773.226357pt;}
.yc_c00107{bottom:800.746346pt;}
.yb_c00107{bottom:828.426335pt;}
.ya_c00107{bottom:855.946324pt;}
.y9_c00107{bottom:883.626313pt;}
.y8_c00107{bottom:911.146302pt;}
.y7_c00107{bottom:938.826291pt;}
.y6_c00107{bottom:966.346280pt;}
.y5_c00107{bottom:994.026269pt;}
.y2_c00107{bottom:1028.586255pt;}
.y1_c00107{bottom:1063.146241pt;}
.h9_c00107{height:33.918736pt;}
.h7_c00107{height:36.431235pt;}
.h2_c00107{height:39.243734pt;}
.h5_c00107{height:42.063421pt;}
.h6_c00107{height:42.084358pt;}
.ha_c00107{height:52.108417pt;}
.h1_c00107{height:52.134354pt;}
.h8_c00107{height:57.787477pt;}
.h4_c00107{height:62.781225pt;}
.h3_c00107{height:62.812475pt;}
.h0_c00107{height:1122.666667pt;}
.w0_c00107{width:793.333333pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:113.439955pt;}
.xc_c00107{left:126.399949pt;}
.xa_c00107{left:127.359949pt;}
.xb_c00107{left:131.999947pt;}
.xd_c00107{left:152.319939pt;}
.x3_c00107{left:160.479936pt;}
.x2_c00107{left:385.759568pt;}
.x4_c00107{left:528.159789pt;}
.x5_c00107{left:544.479782pt;}
.x6_c00107{left:554.879778pt;}
.x7_c00107{left:571.199772pt;}
.x8_c00107{left:653.439739pt;}
.x9_c00107{left:669.759732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0296b93ef95b44a10011ad6c.woff2')format("woff");}.ff1_c00108{font-family:ff1_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:ff2_c00108;src:url('chunks/assets/font_989988a87ec462285243a657.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:0.675781;font-style:normal;font-weight:normal;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_90ea0a7a45c487948cbd8379.woff2')format("woff");}.ff3_c00108{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls3_c00108{letter-spacing:0.000000px;}
.ls2_c00108{letter-spacing:0.011169px;}
.ls0_c00108{letter-spacing:0.021282px;}
.ls1_c00108{letter-spacing:0.374281px;}
.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.021275px;}
.ws1_c00108{word-spacing:-12.434276px;}
.ws2_c00108{word-spacing:-9.731165px;}
.ws3_c00108{word-spacing:-9.437756px;}
.ws4_c00108{word-spacing:0.000000px;}
._f_c00108{margin-left:-9.478402px;}
._1_c00108{margin-left:-1.105374px;}
._0_c00108{width:1.478351px;}
._8_c00108{width:2.625829px;}
._a_c00108{width:3.709002px;}
._b_c00108{width:5.436274px;}
._2_c00108{width:6.604302px;}
._d_c00108{width:8.602641px;}
._e_c00108{width:9.832286px;}
._c_c00108{width:11.048228px;}
._6_c00108{width:12.250192px;}
._5_c00108{width:13.283179px;}
._9_c00108{width:15.026220px;}
._7_c00108{width:16.768347px;}
._4_c00108{width:37.945179px;}
._3_c00108{width:39.054395px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs4_c00108{font-size:38.879984px;}
.fs5_c00108{font-size:41.759983px;}
.fs3_c00108{font-size:48.239981px;}
.fs0_c00108{font-size:59.759976px;}
.fs1_c00108{font-size:66.239974px;}
.fs2_c00108{font-size:71.999971px;}
.y0_c00108{bottom:0.000000px;}
.y4_c00108{bottom:75.900270px;}
.y3_c00108{bottom:114.060254px;}
.y26_c00108{bottom:134.400246px;}
.y25_c00108{bottom:153.479939px;}
.y24_c00108{bottom:171.659931px;}
.y23_c00108{bottom:179.219928px;}
.y22_c00108{bottom:199.559920px;}
.y21_c00108{bottom:206.399917px;}
.y20_c00108{bottom:253.739899px;}
.y1f_c00108{bottom:373.979850px;}
.y1e_c00108{bottom:404.939838px;}
.y1d_c00108{bottom:436.079826px;}
.y1c_c00108{bottom:467.039813px;}
.y1b_c00108{bottom:498.179801px;}
.y19_c00108{bottom:529.139788px;}
.y1a_c00108{bottom:537.419785px;}
.y18_c00108{bottom:560.279776px;}
.y17_c00108{bottom:591.239764px;}
.y16_c00108{bottom:622.199751px;}
.y15_c00108{bottom:653.339739px;}
.y14_c00108{bottom:684.299726px;}
.y13_c00108{bottom:715.439714px;}
.y12_c00108{bottom:746.399701px;}
.y11_c00108{bottom:777.539689px;}
.y10_c00108{bottom:808.499677px;}
.yf_c00108{bottom:839.639664px;}
.ye_c00108{bottom:870.599652px;}
.yd_c00108{bottom:901.739639px;}
.yc_c00108{bottom:932.699627px;}
.ya_c00108{bottom:963.839614px;}
.yb_c00108{bottom:972.119611px;}
.y9_c00108{bottom:994.799602px;}
.y8_c00108{bottom:1025.939590px;}
.y7_c00108{bottom:1056.899577px;}
.y6_c00108{bottom:1088.039565px;}
.y5_c00108{bottom:1118.999552px;}
.y2_c00108{bottom:1176.059530px;}
.y1_c00108{bottom:1196.219522px;}
.h8_c00108{height:27.833192px;}
.h7_c00108{height:38.158578px;}
.h2_c00108{height:44.149201px;}
.h4_c00108{height:47.321348px;}
.h6_c00108{height:47.344903px;}
.h1_c00108{height:58.651148px;}
.h3_c00108{height:70.628878px;}
.h5_c00108{height:70.664034px;}
.h0_c00108{height:1263.000000px;}
.w0_c00108{width:892.500000px;}
.x0_c00108{left:0.000000px;}
.x5_c00108{left:127.620262px;}
.xb_c00108{left:142.199943px;}
.xc_c00108{left:143.279943px;}
.xd_c00108{left:149.399940px;}
.x6_c00108{left:180.719928px;}
.x1_c00108{left:181.799927px;}
.x7_c00108{left:290.159884px;}
.x8_c00108{left:308.519877px;}
.x2_c00108{left:329.039408px;}
.x4_c00108{left:433.979826px;}
.x9_c00108{left:575.279770px;}
.xa_c00108{left:593.639763px;}
.x3_c00108{left:765.359694px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls3_c00108{letter-spacing:0.000000pt;}
.ls2_c00108{letter-spacing:0.009928pt;}
.ls0_c00108{letter-spacing:0.018917pt;}
.ls1_c00108{letter-spacing:0.332694pt;}
.ws0_c00108{word-spacing:-16.018911pt;}
.ws1_c00108{word-spacing:-11.052689pt;}
.ws2_c00108{word-spacing:-8.649924pt;}
.ws3_c00108{word-spacing:-8.389117pt;}
.ws4_c00108{word-spacing:0.000000pt;}
._f_c00108{margin-left:-8.425246pt;}
._1_c00108{margin-left:-0.982555pt;}
._0_c00108{width:1.314090pt;}
._8_c00108{width:2.334070pt;}
._a_c00108{width:3.296890pt;}
._b_c00108{width:4.832243pt;}
._2_c00108{width:5.870491pt;}
._d_c00108{width:7.646792pt;}
._e_c00108{width:8.739809pt;}
._c_c00108{width:9.820647pt;}
._6_c00108{width:10.889059pt;}
._5_c00108{width:11.807270pt;}
._9_c00108{width:13.356640pt;}
._7_c00108{width:14.905197pt;}
._4_c00108{width:33.729048pt;}
._3_c00108{width:34.715017pt;}
.fs4_c00108{font-size:34.559986pt;}
.fs5_c00108{font-size:37.119985pt;}
.fs3_c00108{font-size:42.879983pt;}
.fs0_c00108{font-size:53.119979pt;}
.fs1_c00108{font-size:58.879976pt;}
.fs2_c00108{font-size:63.999974pt;}
.y0_c00108{bottom:0.000000pt;}
.y4_c00108{bottom:67.466906pt;}
.y3_c00108{bottom:101.386893pt;}
.y26_c00108{bottom:119.466886pt;}
.y25_c00108{bottom:136.426612pt;}
.y24_c00108{bottom:152.586606pt;}
.y23_c00108{bottom:159.306603pt;}
.y22_c00108{bottom:177.386596pt;}
.y21_c00108{bottom:183.466593pt;}
.y20_c00108{bottom:225.546576pt;}
.y1f_c00108{bottom:332.426534pt;}
.y1e_c00108{bottom:359.946523pt;}
.y1d_c00108{bottom:387.626512pt;}
.y1c_c00108{bottom:415.146501pt;}
.y1b_c00108{bottom:442.826490pt;}
.y19_c00108{bottom:470.346479pt;}
.y1a_c00108{bottom:477.706476pt;}
.y18_c00108{bottom:498.026467pt;}
.y17_c00108{bottom:525.546456pt;}
.y16_c00108{bottom:553.066445pt;}
.y15_c00108{bottom:580.746434pt;}
.y14_c00108{bottom:608.266423pt;}
.y13_c00108{bottom:635.946412pt;}
.y12_c00108{bottom:663.466401pt;}
.y11_c00108{bottom:691.146390pt;}
.y10_c00108{bottom:718.666379pt;}
.yf_c00108{bottom:746.346368pt;}
.ye_c00108{bottom:773.866357pt;}
.yd_c00108{bottom:801.546346pt;}
.yc_c00108{bottom:829.066335pt;}
.ya_c00108{bottom:856.746324pt;}
.yb_c00108{bottom:864.106321pt;}
.y9_c00108{bottom:884.266313pt;}
.y8_c00108{bottom:911.946302pt;}
.y7_c00108{bottom:939.466291pt;}
.y6_c00108{bottom:967.146280pt;}
.y5_c00108{bottom:994.666269pt;}
.y2_c00108{bottom:1045.386249pt;}
.y1_c00108{bottom:1063.306241pt;}
.h8_c00108{height:24.740615pt;}
.h7_c00108{height:33.918736pt;}
.h2_c00108{height:39.243734pt;}
.h4_c00108{height:42.063421pt;}
.h6_c00108{height:42.084358pt;}
.h1_c00108{height:52.134354pt;}
.h3_c00108{height:62.781225pt;}
.h5_c00108{height:62.812475pt;}
.h0_c00108{height:1122.666667pt;}
.w0_c00108{width:793.333333pt;}
.x0_c00108{left:0.000000pt;}
.x5_c00108{left:113.440233pt;}
.xb_c00108{left:126.399949pt;}
.xc_c00108{left:127.359949pt;}
.xd_c00108{left:132.799947pt;}
.x6_c00108{left:160.639936pt;}
.x1_c00108{left:161.599935pt;}
.x7_c00108{left:257.919897pt;}
.x8_c00108{left:274.239890pt;}
.x2_c00108{left:292.479474pt;}
.x4_c00108{left:385.759846pt;}
.x9_c00108{left:511.359795pt;}
.xa_c00108{left:527.679789pt;}
.x3_c00108{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db0409e93ab9a5fd40f6d1bb.woff2')format("woff");}.ff1_c00109{font-family:ff1_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:ff2_c00109;src:url('chunks/assets/font_3a3b6ba13cc301fbe5ac5242.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:0.675781;font-style:normal;font-weight:normal;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_56377d323359faa7999626a9.woff2')format("woff");}.ff3_c00109{font-family:ff3_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;}
.m0_c00109{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls1_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.374281px;}
.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:-12.434276px;}
.ws1_c00109{word-spacing:-9.437756px;}
.ws2_c00109{word-spacing:0.000000px;}
._d_c00109{margin-left:-10.244887px;}
._c_c00109{margin-left:-2.897523px;}
._1_c00109{margin-left:-1.105374px;}
._0_c00109{width:1.195563px;}
._6_c00109{width:2.889980px;}
._7_c00109{width:4.130115px;}
._2_c00109{width:5.139884px;}
._3_c00109{width:6.202758px;}
._4_c00109{width:7.470196px;}
._b_c00109{width:14.530048px;}
._5_c00109{width:16.555642px;}
._e_c00109{width:18.638899px;}
._a_c00109{width:20.588725px;}
._8_c00109{width:22.053348px;}
._9_c00109{width:23.634045px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs4_c00109{font-size:41.759983px;}
.fs3_c00109{font-size:48.239981px;}
.fs0_c00109{font-size:59.759976px;}
.fs1_c00109{font-size:66.239974px;}
.fs2_c00109{font-size:71.999971px;}
.y0_c00109{bottom:0.000000px;}
.y4_c00109{bottom:75.899970px;}
.y3_c00109{bottom:114.059954px;}
.y27_c00109{bottom:154.379938px;}
.y26_c00109{bottom:172.559931px;}
.y25_c00109{bottom:180.119928px;}
.y24_c00109{bottom:212.699915px;}
.y23_c00109{bottom:230.879908px;}
.y22_c00109{bottom:238.439905px;}
.y21_c00109{bottom:251.039900px;}
.y20_c00109{bottom:341.939863px;}
.y1f_c00109{bottom:373.079851px;}
.y1e_c00109{bottom:404.039838px;}
.y1d_c00109{bottom:435.179826px;}
.y1b_c00109{bottom:466.139814px;}
.y1c_c00109{bottom:474.419810px;}
.y1a_c00109{bottom:497.279801px;}
.y19_c00109{bottom:528.239789px;}
.y18_c00109{bottom:559.379776px;}
.y17_c00109{bottom:590.339764px;}
.y16_c00109{bottom:621.479751px;}
.y15_c00109{bottom:652.439739px;}
.y14_c00109{bottom:683.579727px;}
.y13_c00109{bottom:714.539714px;}
.y12_c00109{bottom:745.679702px;}
.y11_c00109{bottom:776.639689px;}
.y10_c00109{bottom:807.779677px;}
.yf_c00109{bottom:838.739665px;}
.ye_c00109{bottom:869.879652px;}
.yd_c00109{bottom:900.839640px;}
.yc_c00109{bottom:931.979627px;}
.yb_c00109{bottom:962.939615px;}
.ya_c00109{bottom:994.079602px;}
.y9_c00109{bottom:1025.039590px;}
.y8_c00109{bottom:1056.179578px;}
.y6_c00109{bottom:1087.139565px;}
.y7_c00109{bottom:1095.419562px;}
.y5_c00109{bottom:1118.279553px;}
.y2_c00109{bottom:1157.159537px;}
.y1_c00109{bottom:1196.039522px;}
.h6_c00109{height:27.833192px;}
.h2_c00109{height:44.149201px;}
.h4_c00109{height:47.344903px;}
.h1_c00109{height:58.651148px;}
.h5_c00109{height:70.628878px;}
.h3_c00109{height:70.664034px;}
.h0_c00109{height:1263.000000px;}
.w0_c00109{width:892.500000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:127.619949px;}
.x8_c00109{left:143.279943px;}
.xa_c00109{left:148.679941px;}
.x9_c00109{left:151.559939px;}
.x5_c00109{left:180.720482px;}
.x3_c00109{left:399.599840px;}
.x4_c00109{left:417.959833px;}
.x2_c00109{left:433.979514px;}
.x6_c00109{left:716.759713px;}
.x7_c00109{left:735.119706px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls1_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.332694pt;}
.ws0_c00109{word-spacing:-11.052689pt;}
.ws1_c00109{word-spacing:-8.389117pt;}
.ws2_c00109{word-spacing:0.000000pt;}
._d_c00109{margin-left:-9.106566pt;}
._c_c00109{margin-left:-2.575576pt;}
._1_c00109{margin-left:-0.982555pt;}
._0_c00109{width:1.062723pt;}
._6_c00109{width:2.568871pt;}
._7_c00109{width:3.671214pt;}
._2_c00109{width:4.568786pt;}
._3_c00109{width:5.513563pt;}
._4_c00109{width:6.640174pt;}
._b_c00109{width:12.915599pt;}
._5_c00109{width:14.716126pt;}
._e_c00109{width:16.567911pt;}
._a_c00109{width:18.301089pt;}
._8_c00109{width:19.602976pt;}
._9_c00109{width:21.008040pt;}
.fs4_c00109{font-size:37.119985pt;}
.fs3_c00109{font-size:42.879983pt;}
.fs0_c00109{font-size:53.119979pt;}
.fs1_c00109{font-size:58.879976pt;}
.fs2_c00109{font-size:63.999974pt;}
.y0_c00109{bottom:0.000000pt;}
.y4_c00109{bottom:67.466640pt;}
.y3_c00109{bottom:101.386626pt;}
.y27_c00109{bottom:137.226612pt;}
.y26_c00109{bottom:153.386605pt;}
.y25_c00109{bottom:160.106603pt;}
.y24_c00109{bottom:189.066591pt;}
.y23_c00109{bottom:205.226585pt;}
.y22_c00109{bottom:211.946582pt;}
.y21_c00109{bottom:223.146577pt;}
.y20_c00109{bottom:303.946545pt;}
.y1f_c00109{bottom:331.626534pt;}
.y1e_c00109{bottom:359.146523pt;}
.y1d_c00109{bottom:386.826512pt;}
.y1b_c00109{bottom:414.346501pt;}
.y1c_c00109{bottom:421.706498pt;}
.y1a_c00109{bottom:442.026490pt;}
.y19_c00109{bottom:469.546479pt;}
.y18_c00109{bottom:497.226468pt;}
.y17_c00109{bottom:524.746457pt;}
.y16_c00109{bottom:552.426446pt;}
.y15_c00109{bottom:579.946435pt;}
.y14_c00109{bottom:607.626424pt;}
.y13_c00109{bottom:635.146413pt;}
.y12_c00109{bottom:662.826402pt;}
.y11_c00109{bottom:690.346391pt;}
.y10_c00109{bottom:718.026379pt;}
.yf_c00109{bottom:745.546368pt;}
.ye_c00109{bottom:773.226357pt;}
.yd_c00109{bottom:800.746346pt;}
.yc_c00109{bottom:828.426335pt;}
.yb_c00109{bottom:855.946324pt;}
.ya_c00109{bottom:883.626313pt;}
.y9_c00109{bottom:911.146302pt;}
.y8_c00109{bottom:938.826291pt;}
.y6_c00109{bottom:966.346280pt;}
.y7_c00109{bottom:973.706277pt;}
.y5_c00109{bottom:994.026269pt;}
.y2_c00109{bottom:1028.586255pt;}
.y1_c00109{bottom:1063.146241pt;}
.h6_c00109{height:24.740615pt;}
.h2_c00109{height:39.243734pt;}
.h4_c00109{height:42.084358pt;}
.h1_c00109{height:52.134354pt;}
.h5_c00109{height:62.781225pt;}
.h3_c00109{height:62.812475pt;}
.h0_c00109{height:1122.666667pt;}
.w0_c00109{width:793.333333pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:113.439955pt;}
.x8_c00109{left:127.359949pt;}
.xa_c00109{left:132.159947pt;}
.x9_c00109{left:134.719946pt;}
.x5_c00109{left:160.640428pt;}
.x3_c00109{left:355.199858pt;}
.x4_c00109{left:371.519851pt;}
.x2_c00109{left:385.759568pt;}
.x6_c00109{left:637.119745pt;}
.x7_c00109{left:653.439739pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0618d8bfe570343d6af7305.woff2')format("woff");}.ff1_c00110{font-family:ff1_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:ff2_c00110;src:url('chunks/assets/font_3c8d30b0a68effe5f22ab99d.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:0.675781;font-style:normal;font-weight:normal;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_24671ea453598ed602ccaf17.woff2')format("woff");}.ff3_c00110{font-family:ff3_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;}
.m0_c00110{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls3_c00110{letter-spacing:0.000000px;}
.ls1_c00110{letter-spacing:0.011169px;}
.ls2_c00110{letter-spacing:0.189300px;}
.ls0_c00110{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00110{word-spacing:-12.434276px;}
.ws1_c00110{word-spacing:-9.731165px;}
.ws2_c00110{word-spacing:0.000000px;}
._d_c00110{margin-left:-9.802292px;}
._1_c00110{margin-left:-1.105374px;}
._0_c00110{width:1.478351px;}
._4_c00110{width:3.517156px;}
._8_c00110{width:4.705228px;}
._9_c00110{width:5.760163px;}
._6_c00110{width:7.844636px;}
._5_c00110{width:8.921482px;}
._7_c00110{width:10.184895px;}
._2_c00110{width:12.410255px;}
._b_c00110{width:20.387474px;}
._3_c00110{width:21.481715px;}
._a_c00110{width:22.561112px;}
._c_c00110{width:42.103501px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs4_c00110{font-size:38.879984px;}
.fs3_c00110{font-size:48.239981px;}
.fs0_c00110{font-size:59.759976px;}
.fs1_c00110{font-size:66.239974px;}
.fs2_c00110{font-size:71.999971px;}
.y0_c00110{bottom:0.000000px;}
.y4_c00110{bottom:75.900270px;}
.y3_c00110{bottom:114.060254px;}
.y2c_c00110{bottom:148.259941px;}
.y2d_c00110{bottom:148.260241px;}
.y2b_c00110{bottom:165.719934px;}
.y2a_c00110{bottom:172.559931px;}
.y29_c00110{bottom:182.819927px;}
.y28_c00110{bottom:200.099920px;}
.y27_c00110{bottom:217.379913px;}
.y26_c00110{bottom:224.219910px;}
.y25_c00110{bottom:253.379899px;}
.y24_c00110{bottom:272.819891px;}
.y23_c00110{bottom:289.919884px;}
.y22_c00110{bottom:296.759881px;}
.y21_c00110{bottom:323.219871px;}
.y20_c00110{bottom:373.979850px;}
.y1f_c00110{bottom:404.939838px;}
.y1e_c00110{bottom:436.079826px;}
.y1d_c00110{bottom:467.039813px;}
.y1c_c00110{bottom:498.179801px;}
.y1b_c00110{bottom:529.139788px;}
.y1a_c00110{bottom:560.279776px;}
.y19_c00110{bottom:591.239764px;}
.y18_c00110{bottom:622.199751px;}
.y16_c00110{bottom:653.339739px;}
.y17_c00110{bottom:661.619735px;}
.y15_c00110{bottom:684.299726px;}
.y14_c00110{bottom:715.439714px;}
.y13_c00110{bottom:746.399701px;}
.y12_c00110{bottom:777.539689px;}
.y11_c00110{bottom:808.499677px;}
.y10_c00110{bottom:839.639664px;}
.yf_c00110{bottom:870.599652px;}
.yd_c00110{bottom:901.739639px;}
.ye_c00110{bottom:910.019636px;}
.yc_c00110{bottom:932.699627px;}
.yb_c00110{bottom:963.839614px;}
.ya_c00110{bottom:994.799602px;}
.y9_c00110{bottom:1025.939590px;}
.y8_c00110{bottom:1056.899577px;}
.y6_c00110{bottom:1088.039565px;}
.y7_c00110{bottom:1096.319561px;}
.y5_c00110{bottom:1118.999552px;}
.y2_c00110{bottom:1176.059530px;}
.y1_c00110{bottom:1196.219522px;}
.h7_c00110{height:38.158578px;}
.h2_c00110{height:44.149201px;}
.h4_c00110{height:47.321348px;}
.h6_c00110{height:47.344903px;}
.h1_c00110{height:58.651148px;}
.h3_c00110{height:70.628878px;}
.h5_c00110{height:70.664034px;}
.h0_c00110{height:1263.000000px;}
.w0_c00110{width:892.500000px;}
.x0_c00110{left:0.000000px;}
.x5_c00110{left:127.620262px;}
.xd_c00110{left:142.199943px;}
.x6_c00110{left:180.719928px;}
.x1_c00110{left:181.799927px;}
.x9_c00110{left:272.699891px;}
.xa_c00110{left:291.059884px;}
.x2_c00110{left:329.039408px;}
.xb_c00110{left:371.519851px;}
.xc_c00110{left:389.879844px;}
.x4_c00110{left:433.979826px;}
.xe_c00110{left:457.919817px;}
.x7_c00110{left:602.279759px;}
.x8_c00110{left:620.639752px;}
.x3_c00110{left:765.359694px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls3_c00110{letter-spacing:0.000000pt;}
.ls1_c00110{letter-spacing:0.009928pt;}
.ls2_c00110{letter-spacing:0.168267pt;}
.ls0_c00110{letter-spacing:0.332694pt;}
.ws0_c00110{word-spacing:-11.052689pt;}
.ws1_c00110{word-spacing:-8.649924pt;}
.ws2_c00110{word-spacing:0.000000pt;}
._d_c00110{margin-left:-8.713149pt;}
._1_c00110{margin-left:-0.982555pt;}
._0_c00110{width:1.314090pt;}
._4_c00110{width:3.126361pt;}
._8_c00110{width:4.182425pt;}
._9_c00110{width:5.120145pt;}
._6_c00110{width:6.973010pt;}
._5_c00110{width:7.930206pt;}
._7_c00110{width:9.053240pt;}
._2_c00110{width:11.031338pt;}
._b_c00110{width:18.122200pt;}
._3_c00110{width:19.094858pt;}
._a_c00110{width:20.054322pt;}
._c_c00110{width:37.425334pt;}
.fs4_c00110{font-size:34.559986pt;}
.fs3_c00110{font-size:42.879983pt;}
.fs0_c00110{font-size:53.119979pt;}
.fs1_c00110{font-size:58.879976pt;}
.fs2_c00110{font-size:63.999974pt;}
.y0_c00110{bottom:0.000000pt;}
.y4_c00110{bottom:67.466906pt;}
.y3_c00110{bottom:101.386893pt;}
.y2c_c00110{bottom:131.786614pt;}
.y2d_c00110{bottom:131.786881pt;}
.y2b_c00110{bottom:147.306608pt;}
.y2a_c00110{bottom:153.386605pt;}
.y29_c00110{bottom:162.506602pt;}
.y28_c00110{bottom:177.866596pt;}
.y27_c00110{bottom:193.226589pt;}
.y26_c00110{bottom:199.306587pt;}
.y25_c00110{bottom:225.226577pt;}
.y24_c00110{bottom:242.506570pt;}
.y23_c00110{bottom:257.706564pt;}
.y22_c00110{bottom:263.786561pt;}
.y21_c00110{bottom:287.306552pt;}
.y20_c00110{bottom:332.426534pt;}
.y1f_c00110{bottom:359.946523pt;}
.y1e_c00110{bottom:387.626512pt;}
.y1d_c00110{bottom:415.146501pt;}
.y1c_c00110{bottom:442.826490pt;}
.y1b_c00110{bottom:470.346479pt;}
.y1a_c00110{bottom:498.026467pt;}
.y19_c00110{bottom:525.546456pt;}
.y18_c00110{bottom:553.066445pt;}
.y16_c00110{bottom:580.746434pt;}
.y17_c00110{bottom:588.106431pt;}
.y15_c00110{bottom:608.266423pt;}
.y14_c00110{bottom:635.946412pt;}
.y13_c00110{bottom:663.466401pt;}
.y12_c00110{bottom:691.146390pt;}
.y11_c00110{bottom:718.666379pt;}
.y10_c00110{bottom:746.346368pt;}
.yf_c00110{bottom:773.866357pt;}
.yd_c00110{bottom:801.546346pt;}
.ye_c00110{bottom:808.906343pt;}
.yc_c00110{bottom:829.066335pt;}
.yb_c00110{bottom:856.746324pt;}
.ya_c00110{bottom:884.266313pt;}
.y9_c00110{bottom:911.946302pt;}
.y8_c00110{bottom:939.466291pt;}
.y6_c00110{bottom:967.146280pt;}
.y7_c00110{bottom:974.506277pt;}
.y5_c00110{bottom:994.666269pt;}
.y2_c00110{bottom:1045.386249pt;}
.y1_c00110{bottom:1063.306241pt;}
.h7_c00110{height:33.918736pt;}
.h2_c00110{height:39.243734pt;}
.h4_c00110{height:42.063421pt;}
.h6_c00110{height:42.084358pt;}
.h1_c00110{height:52.134354pt;}
.h3_c00110{height:62.781225pt;}
.h5_c00110{height:62.812475pt;}
.h0_c00110{height:1122.666667pt;}
.w0_c00110{width:793.333333pt;}
.x0_c00110{left:0.000000pt;}
.x5_c00110{left:113.440233pt;}
.xd_c00110{left:126.399949pt;}
.x6_c00110{left:160.639936pt;}
.x1_c00110{left:161.599935pt;}
.x9_c00110{left:242.399903pt;}
.xa_c00110{left:258.719897pt;}
.x2_c00110{left:292.479474pt;}
.xb_c00110{left:330.239868pt;}
.xc_c00110{left:346.559861pt;}
.x4_c00110{left:385.759846pt;}
.xe_c00110{left:407.039837pt;}
.x7_c00110{left:535.359786pt;}
.x8_c00110{left:551.679779pt;}
.x3_c00110{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f75f23dea168253a85f2954.woff2')format("woff");}.ff1_c00111{font-family:ff1_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:ff2_c00111;src:url('chunks/assets/font_f8edf5b478dda97246eddc26.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:0.675781;font-style:normal;font-weight:normal;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_cb8aefffe7d8b7a45fa1eb63.woff2')format("woff");}.ff3_c00111{font-family:ff3_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;}
.m0_c00111{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls4_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:0.011169px;}
.ls3_c00111{letter-spacing:0.012620px;}
.ls2_c00111{letter-spacing:0.189300px;}
.ls0_c00111{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00111{word-spacing:-14.939994px;}
.ws0_c00111{word-spacing:-12.434276px;}
.ws3_c00111{word-spacing:-10.452616px;}
.ws1_c00111{word-spacing:-9.731165px;}
.ws4_c00111{word-spacing:0.000000px;}
._e_c00111{margin-left:-9.206448px;}
._1_c00111{margin-left:-1.105374px;}
._0_c00111{width:1.195563px;}
._5_c00111{width:2.345601px;}
._4_c00111{width:3.697893px;}
._6_c00111{width:5.164319px;}
._c_c00111{width:6.202684px;}
._a_c00111{width:7.461673px;}
._b_c00111{width:8.656901px;}
._2_c00111{width:11.618941px;}
._3_c00111{width:12.876706px;}
._d_c00111{width:14.930539px;}
._7_c00111{width:22.052073px;}
._9_c00111{width:23.254596px;}
._8_c00111{width:24.334449px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs4_c00111{font-size:38.879984px;}
.fs5_c00111{font-size:41.759983px;}
.fs3_c00111{font-size:48.239981px;}
.fs0_c00111{font-size:59.759976px;}
.fs1_c00111{font-size:66.239974px;}
.fs2_c00111{font-size:71.999971px;}
.y0_c00111{bottom:0.000000px;}
.y4_c00111{bottom:75.899970px;}
.y3_c00111{bottom:114.059954px;}
.y2e_c00111{bottom:133.680247px;}
.y2d_c00111{bottom:152.399939px;}
.y2c_c00111{bottom:169.859932px;}
.y2b_c00111{bottom:177.419929px;}
.y2a_c00111{bottom:188.579925px;}
.y29_c00111{bottom:205.859918px;}
.y28_c00111{bottom:212.699915px;}
.y27_c00111{bottom:223.139911px;}
.y26_c00111{bottom:240.419904px;}
.y25_c00111{bottom:257.519897px;}
.y24_c00111{bottom:264.359894px;}
.y23_c00111{bottom:275.699890px;}
.y22_c00111{bottom:310.979876px;}
.y21_c00111{bottom:341.939863px;}
.y20_c00111{bottom:373.079851px;}
.y1f_c00111{bottom:404.039838px;}
.y1e_c00111{bottom:435.179826px;}
.y1d_c00111{bottom:466.139814px;}
.y1b_c00111{bottom:497.279801px;}
.y1c_c00111{bottom:505.559798px;}
.y1a_c00111{bottom:528.239789px;}
.y19_c00111{bottom:559.379776px;}
.y18_c00111{bottom:590.339764px;}
.y17_c00111{bottom:621.479751px;}
.y16_c00111{bottom:652.439739px;}
.y14_c00111{bottom:683.579727px;}
.y15_c00111{bottom:691.859723px;}
.y13_c00111{bottom:714.539714px;}
.y12_c00111{bottom:745.679702px;}
.y11_c00111{bottom:776.639689px;}
.y10_c00111{bottom:807.779677px;}
.yf_c00111{bottom:838.739665px;}
.ye_c00111{bottom:869.879652px;}
.yd_c00111{bottom:900.839640px;}
.yc_c00111{bottom:931.979627px;}
.ya_c00111{bottom:962.939615px;}
.yb_c00111{bottom:971.219612px;}
.y9_c00111{bottom:994.079602px;}
.y8_c00111{bottom:1025.039590px;}
.y7_c00111{bottom:1056.179578px;}
.y6_c00111{bottom:1087.139565px;}
.y5_c00111{bottom:1118.279553px;}
.y2_c00111{bottom:1157.159537px;}
.y1_c00111{bottom:1196.039522px;}
.h6_c00111{height:38.158578px;}
.h7_c00111{height:40.985140px;}
.h2_c00111{height:44.149201px;}
.h4_c00111{height:47.344903px;}
.h1_c00111{height:58.651148px;}
.h8_c00111{height:65.010911px;}
.h3_c00111{height:70.628878px;}
.h5_c00111{height:70.664034px;}
.h0_c00111{height:1263.000000px;}
.w0_c00111{width:892.500000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:127.619949px;}
.xa_c00111{left:142.199943px;}
.xb_c00111{left:143.279943px;}
.xc_c00111{left:151.019940px;}
.x3_c00111{left:180.719928px;}
.x6_c00111{left:352.979859px;}
.x8_c00111{left:369.719852px;}
.x7_c00111{left:371.339851px;}
.x9_c00111{left:388.079845px;}
.x2_c00111{left:433.979514px;}
.x4_c00111{left:460.259816px;}
.x5_c00111{left:478.619809px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls4_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:0.009928pt;}
.ls3_c00111{letter-spacing:0.011218pt;}
.ls2_c00111{letter-spacing:0.168267pt;}
.ls0_c00111{letter-spacing:0.332694pt;}
.ws2_c00111{word-spacing:-13.279995pt;}
.ws0_c00111{word-spacing:-11.052689pt;}
.ws3_c00111{word-spacing:-9.291214pt;}
.ws1_c00111{word-spacing:-8.649924pt;}
.ws4_c00111{word-spacing:0.000000pt;}
._e_c00111{margin-left:-8.183509pt;}
._1_c00111{margin-left:-0.982555pt;}
._0_c00111{width:1.062723pt;}
._5_c00111{width:2.084978pt;}
._4_c00111{width:3.287016pt;}
._6_c00111{width:4.590506pt;}
._c_c00111{width:5.513497pt;}
._a_c00111{width:6.632599pt;}
._b_c00111{width:7.695023pt;}
._2_c00111{width:10.327947pt;}
._3_c00111{width:11.445961pt;}
._d_c00111{width:13.271590pt;}
._7_c00111{width:19.601843pt;}
._9_c00111{width:20.670752pt;}
._8_c00111{width:21.630622pt;}
.fs4_c00111{font-size:34.559986pt;}
.fs5_c00111{font-size:37.119985pt;}
.fs3_c00111{font-size:42.879983pt;}
.fs0_c00111{font-size:53.119979pt;}
.fs1_c00111{font-size:58.879976pt;}
.fs2_c00111{font-size:63.999974pt;}
.y0_c00111{bottom:0.000000pt;}
.y4_c00111{bottom:67.466640pt;}
.y3_c00111{bottom:101.386626pt;}
.y2e_c00111{bottom:118.826886pt;}
.y2d_c00111{bottom:135.466612pt;}
.y2c_c00111{bottom:150.986606pt;}
.y2b_c00111{bottom:157.706604pt;}
.y2a_c00111{bottom:167.626600pt;}
.y29_c00111{bottom:182.986593pt;}
.y28_c00111{bottom:189.066591pt;}
.y27_c00111{bottom:198.346587pt;}
.y26_c00111{bottom:213.706581pt;}
.y25_c00111{bottom:228.906575pt;}
.y24_c00111{bottom:234.986573pt;}
.y23_c00111{bottom:245.066569pt;}
.y22_c00111{bottom:276.426556pt;}
.y21_c00111{bottom:303.946545pt;}
.y20_c00111{bottom:331.626534pt;}
.y1f_c00111{bottom:359.146523pt;}
.y1e_c00111{bottom:386.826512pt;}
.y1d_c00111{bottom:414.346501pt;}
.y1b_c00111{bottom:442.026490pt;}
.y1c_c00111{bottom:449.386487pt;}
.y1a_c00111{bottom:469.546479pt;}
.y19_c00111{bottom:497.226468pt;}
.y18_c00111{bottom:524.746457pt;}
.y17_c00111{bottom:552.426446pt;}
.y16_c00111{bottom:579.946435pt;}
.y14_c00111{bottom:607.626424pt;}
.y15_c00111{bottom:614.986421pt;}
.y13_c00111{bottom:635.146413pt;}
.y12_c00111{bottom:662.826402pt;}
.y11_c00111{bottom:690.346391pt;}
.y10_c00111{bottom:718.026379pt;}
.yf_c00111{bottom:745.546368pt;}
.ye_c00111{bottom:773.226357pt;}
.yd_c00111{bottom:800.746346pt;}
.yc_c00111{bottom:828.426335pt;}
.ya_c00111{bottom:855.946324pt;}
.yb_c00111{bottom:863.306321pt;}
.y9_c00111{bottom:883.626313pt;}
.y8_c00111{bottom:911.146302pt;}
.y7_c00111{bottom:938.826291pt;}
.y6_c00111{bottom:966.346280pt;}
.y5_c00111{bottom:994.026269pt;}
.y2_c00111{bottom:1028.586255pt;}
.y1_c00111{bottom:1063.146241pt;}
.h6_c00111{height:33.918736pt;}
.h7_c00111{height:36.431235pt;}
.h2_c00111{height:39.243734pt;}
.h4_c00111{height:42.084358pt;}
.h1_c00111{height:52.134354pt;}
.h8_c00111{height:57.787477pt;}
.h3_c00111{height:62.781225pt;}
.h5_c00111{height:62.812475pt;}
.h0_c00111{height:1122.666667pt;}
.w0_c00111{width:793.333333pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:113.439955pt;}
.xa_c00111{left:126.399949pt;}
.xb_c00111{left:127.359949pt;}
.xc_c00111{left:134.239946pt;}
.x3_c00111{left:160.639936pt;}
.x6_c00111{left:313.759874pt;}
.x8_c00111{left:328.639869pt;}
.x7_c00111{left:330.079868pt;}
.x9_c00111{left:344.959862pt;}
.x2_c00111{left:385.759568pt;}
.x4_c00111{left:409.119836pt;}
.x5_c00111{left:425.439830pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ad5e8f0d27f669eee683086.woff2')format("woff");}.ff1_c00112{font-family:ff1_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:ff2_c00112;src:url('chunks/assets/font_08117ae9694c98a3d0d42a16.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:0.675781;font-style:normal;font-weight:normal;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_a72df47e14d89f2599999d3e.woff2')format("woff");}.ff3_c00112{font-family:ff3_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;}
.m0_c00112{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls4_c00112{letter-spacing:0.000000px;}
.ls2_c00112{letter-spacing:0.011169px;}
.ls1_c00112{letter-spacing:0.021282px;}
.ls3_c00112{letter-spacing:0.189300px;}
.ls0_c00112{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00112{word-spacing:-17.999993px;}
.ws3_c00112{word-spacing:-14.939994px;}
.ws0_c00112{word-spacing:-12.434276px;}
.ws2_c00112{word-spacing:-9.731165px;}
.ws4_c00112{word-spacing:0.000000px;}
._f_c00112{margin-left:-9.564650px;}
._1_c00112{margin-left:-1.105374px;}
._0_c00112{width:1.478351px;}
._9_c00112{width:2.878268px;}
._2_c00112{width:3.917483px;}
._a_c00112{width:5.522522px;}
._8_c00112{width:6.533508px;}
._d_c00112{width:8.206920px;}
._6_c00112{width:9.866322px;}
._7_c00112{width:10.904396px;}
._3_c00112{width:12.974721px;}
._4_c00112{width:14.075512px;}
._5_c00112{width:16.143623px;}
._e_c00112{width:24.455606px;}
._c_c00112{width:30.999659px;}
._b_c00112{width:43.271742px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs4_c00112{font-size:38.879984px;}
.fs3_c00112{font-size:48.239981px;}
.fs0_c00112{font-size:59.759976px;}
.fs1_c00112{font-size:66.239974px;}
.fs2_c00112{font-size:71.999971px;}
.y0_c00112{bottom:0.000000px;}
.y4_c00112{bottom:75.900270px;}
.y3_c00112{bottom:114.060254px;}
.y2e_c00112{bottom:134.400246px;}
.y2d_c00112{bottom:153.479939px;}
.y2c_c00112{bottom:170.759932px;}
.y2b_c00112{bottom:177.599929px;}
.y2a_c00112{bottom:188.039925px;}
.y29_c00112{bottom:205.319918px;}
.y28_c00112{bottom:222.599911px;}
.y27_c00112{bottom:229.439908px;}
.y26_c00112{bottom:239.699904px;}
.y25_c00112{bottom:256.979897px;}
.y24_c00112{bottom:263.819894px;}
.y23_c00112{bottom:275.159890px;}
.y22_c00112{bottom:296.759881px;}
.y21_c00112{bottom:327.899869px;}
.y20_c00112{bottom:358.859856px;}
.y1f_c00112{bottom:389.999844px;}
.y1e_c00112{bottom:436.079826px;}
.y1d_c00112{bottom:467.039813px;}
.y1b_c00112{bottom:498.179801px;}
.y1c_c00112{bottom:506.459797px;}
.y1a_c00112{bottom:529.139788px;}
.y19_c00112{bottom:560.279776px;}
.y18_c00112{bottom:591.239764px;}
.y17_c00112{bottom:622.199751px;}
.y16_c00112{bottom:653.339739px;}
.y15_c00112{bottom:684.299726px;}
.y13_c00112{bottom:715.439714px;}
.y14_c00112{bottom:723.719711px;}
.y12_c00112{bottom:746.399701px;}
.y11_c00112{bottom:777.539689px;}
.y10_c00112{bottom:808.499677px;}
.yf_c00112{bottom:839.639664px;}
.ye_c00112{bottom:870.599652px;}
.yd_c00112{bottom:901.739639px;}
.yc_c00112{bottom:932.699627px;}
.yb_c00112{bottom:963.839614px;}
.ya_c00112{bottom:994.799602px;}
.y9_c00112{bottom:1025.939590px;}
.y7_c00112{bottom:1056.899577px;}
.y8_c00112{bottom:1065.179574px;}
.y6_c00112{bottom:1088.039565px;}
.y5_c00112{bottom:1118.999552px;}
.y2_c00112{bottom:1176.059530px;}
.y1_c00112{bottom:1196.219522px;}
.h6_c00112{height:38.158578px;}
.h2_c00112{height:44.149201px;}
.h4_c00112{height:47.344903px;}
.h1_c00112{height:58.651148px;}
.h5_c00112{height:70.628878px;}
.h3_c00112{height:70.664034px;}
.h0_c00112{height:1263.000000px;}
.w0_c00112{width:892.500000px;}
.x0_c00112{left:0.000000px;}
.x5_c00112{left:127.620262px;}
.xd_c00112{left:142.199943px;}
.x8_c00112{left:180.720623px;}
.x1_c00112{left:181.799927px;}
.xb_c00112{left:257.219897px;}
.xc_c00112{left:275.579890px;}
.x9_c00112{left:299.699880px;}
.xa_c00112{left:318.059873px;}
.x2_c00112{left:329.039408px;}
.x4_c00112{left:433.979826px;}
.x6_c00112{left:633.599747px;}
.x7_c00112{left:651.959739px;}
.x3_c00112{left:765.359694px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls4_c00112{letter-spacing:0.000000pt;}
.ls2_c00112{letter-spacing:0.009928pt;}
.ls1_c00112{letter-spacing:0.018917pt;}
.ls3_c00112{letter-spacing:0.168267pt;}
.ls0_c00112{letter-spacing:0.332694pt;}
.ws1_c00112{word-spacing:-15.999994pt;}
.ws3_c00112{word-spacing:-13.279995pt;}
.ws0_c00112{word-spacing:-11.052689pt;}
.ws2_c00112{word-spacing:-8.649924pt;}
.ws4_c00112{word-spacing:0.000000pt;}
._f_c00112{margin-left:-8.501911pt;}
._1_c00112{margin-left:-0.982555pt;}
._0_c00112{width:1.314090pt;}
._9_c00112{width:2.558461pt;}
._2_c00112{width:3.482207pt;}
._a_c00112{width:4.908908pt;}
._8_c00112{width:5.807563pt;}
._d_c00112{width:7.295040pt;}
._6_c00112{width:8.770064pt;}
._7_c00112{width:9.692796pt;}
._3_c00112{width:11.533085pt;}
._4_c00112{width:12.511566pt;}
._5_c00112{width:14.349887pt;}
._e_c00112{width:21.738317pt;}
._c_c00112{width:27.555252pt;}
._b_c00112{width:38.463771pt;}
.fs4_c00112{font-size:34.559986pt;}
.fs3_c00112{font-size:42.879983pt;}
.fs0_c00112{font-size:53.119979pt;}
.fs1_c00112{font-size:58.879976pt;}
.fs2_c00112{font-size:63.999974pt;}
.y0_c00112{bottom:0.000000pt;}
.y4_c00112{bottom:67.466906pt;}
.y3_c00112{bottom:101.386893pt;}
.y2e_c00112{bottom:119.466886pt;}
.y2d_c00112{bottom:136.426612pt;}
.y2c_c00112{bottom:151.786606pt;}
.y2b_c00112{bottom:157.866604pt;}
.y2a_c00112{bottom:167.146600pt;}
.y29_c00112{bottom:182.506594pt;}
.y28_c00112{bottom:197.866588pt;}
.y27_c00112{bottom:203.946585pt;}
.y26_c00112{bottom:213.066581pt;}
.y25_c00112{bottom:228.426575pt;}
.y24_c00112{bottom:234.506573pt;}
.y23_c00112{bottom:244.586569pt;}
.y22_c00112{bottom:263.786561pt;}
.y21_c00112{bottom:291.466550pt;}
.y20_c00112{bottom:318.986539pt;}
.y1f_c00112{bottom:346.666528pt;}
.y1e_c00112{bottom:387.626512pt;}
.y1d_c00112{bottom:415.146501pt;}
.y1b_c00112{bottom:442.826490pt;}
.y1c_c00112{bottom:450.186487pt;}
.y1a_c00112{bottom:470.346479pt;}
.y19_c00112{bottom:498.026467pt;}
.y18_c00112{bottom:525.546456pt;}
.y17_c00112{bottom:553.066445pt;}
.y16_c00112{bottom:580.746434pt;}
.y15_c00112{bottom:608.266423pt;}
.y13_c00112{bottom:635.946412pt;}
.y14_c00112{bottom:643.306409pt;}
.y12_c00112{bottom:663.466401pt;}
.y11_c00112{bottom:691.146390pt;}
.y10_c00112{bottom:718.666379pt;}
.yf_c00112{bottom:746.346368pt;}
.ye_c00112{bottom:773.866357pt;}
.yd_c00112{bottom:801.546346pt;}
.yc_c00112{bottom:829.066335pt;}
.yb_c00112{bottom:856.746324pt;}
.ya_c00112{bottom:884.266313pt;}
.y9_c00112{bottom:911.946302pt;}
.y7_c00112{bottom:939.466291pt;}
.y8_c00112{bottom:946.826288pt;}
.y6_c00112{bottom:967.146280pt;}
.y5_c00112{bottom:994.666269pt;}
.y2_c00112{bottom:1045.386249pt;}
.y1_c00112{bottom:1063.306241pt;}
.h6_c00112{height:33.918736pt;}
.h2_c00112{height:39.243734pt;}
.h4_c00112{height:42.084358pt;}
.h1_c00112{height:52.134354pt;}
.h5_c00112{height:62.781225pt;}
.h3_c00112{height:62.812475pt;}
.h0_c00112{height:1122.666667pt;}
.w0_c00112{width:793.333333pt;}
.x0_c00112{left:0.000000pt;}
.x5_c00112{left:113.440233pt;}
.xd_c00112{left:126.399949pt;}
.x8_c00112{left:160.640554pt;}
.x1_c00112{left:161.599935pt;}
.xb_c00112{left:228.639909pt;}
.xc_c00112{left:244.959902pt;}
.x9_c00112{left:266.399893pt;}
.xa_c00112{left:282.719887pt;}
.x2_c00112{left:292.479474pt;}
.x4_c00112{left:385.759846pt;}
.x6_c00112{left:563.199775pt;}
.x7_c00112{left:579.519768pt;}
.x3_c00112{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cef3f7f2ec86b27a10bd4b8.woff2')format("woff");}.ff1_c00113{font-family:ff1_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:ff2_c00113;src:url('chunks/assets/font_cf64d496056d0107b8df729c.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:0.675781;font-style:normal;font-weight:normal;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_3752fb18dcc6372d8ce42e8a.woff2')format("woff");}.ff3_c00113{font-family:ff3_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:ff4_c00113;src:url('chunks/assets/font_3da82121e240922175159659.woff2')format("woff");}.ff4_c00113{font-family:ff4_c00113;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1_c00113{vertical-align:-33.119987px;}
.v0_c00113{vertical-align:0.000000px;}
.ls4_c00113{letter-spacing:0.000000px;}
.ls1_c00113{letter-spacing:0.011169px;}
.ls2_c00113{letter-spacing:0.189300px;}
.ls0_c00113{letter-spacing:0.374281px;}
.ls3_c00113{letter-spacing:13.877694px;}
.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;}
}
.ws0_c00113{word-spacing:-12.434276px;}
.ws1_c00113{word-spacing:-9.731165px;}
.ws2_c00113{word-spacing:-9.437756px;}
.ws3_c00113{word-spacing:0.000000px;}
._12_c00113{margin-left:-9.976749px;}
._1_c00113{margin-left:-1.105374px;}
._0_c00113{width:1.195563px;}
._6_c00113{width:3.187738px;}
._7_c00113{width:4.352555px;}
._3_c00113{width:5.934620px;}
._2_c00113{width:6.937428px;}
._c_c00113{width:8.372152px;}
._d_c00113{width:9.479923px;}
._9_c00113{width:10.635339px;}
._8_c00113{width:12.136220px;}
._13_c00113{width:13.549350px;}
._10_c00113{width:14.795987px;}
._11_c00113{width:16.399297px;}
._a_c00113{width:22.095781px;}
._b_c00113{width:23.165884px;}
._4_c00113{width:24.814610px;}
._5_c00113{width:25.852596px;}
._e_c00113{width:28.597271px;}
._f_c00113{width:29.969792px;}
.fc0_c00113{color:rgb(0,0,0);}
.fs5_c00113{font-size:38.879984px;}
.fs6_c00113{font-size:41.759983px;}
.fs3_c00113{font-size:48.239981px;}
.fs0_c00113{font-size:59.759976px;}
.fs1_c00113{font-size:66.239974px;}
.fs2_c00113{font-size:71.999971px;}
.fs4_c00113{font-size:84.239966px;}
.y0_c00113{bottom:0.000000px;}
.y4_c00113{bottom:75.899970px;}
.y3_c00113{bottom:114.059954px;}
.y2b_c00113{bottom:134.400246px;}
.y2a_c00113{bottom:153.479939px;}
.y29_c00113{bottom:170.759932px;}
.y28_c00113{bottom:188.939924px;}
.y27_c00113{bottom:196.499921px;}
.y26_c00113{bottom:208.199917px;}
.y25_c00113{bottom:225.479910px;}
.y24_c00113{bottom:242.759903px;}
.y23_c00113{bottom:249.599900px;}
.y22_c00113{bottom:260.759896px;}
.y21_c00113{bottom:290.819884px;}
.y20_c00113{bottom:321.779871px;}
.y1f_c00113{bottom:352.919859px;}
.y1e_c00113{bottom:383.879846px;}
.y1d_c00113{bottom:415.019834px;}
.y1b_c00113{bottom:445.979822px;}
.y1c_c00113{bottom:454.259818px;}
.y1a_c00113{bottom:477.119809px;}
.y19_c00113{bottom:508.079797px;}
.y18_c00113{bottom:539.219784px;}
.y17_c00113{bottom:570.179772px;}
.y16_c00113{bottom:601.319759px;}
.y15_c00113{bottom:632.279747px;}
.y14_c00113{bottom:663.419735px;}
.y13_c00113{bottom:694.019722px;}
.y12_c00113{bottom:725.159710px;}
.y11_c00113{bottom:758.999696px;}
.y10_c00113{bottom:792.659683px;}
.yf_c00113{bottom:823.799670px;}
.ye_c00113{bottom:854.759658px;}
.yd_c00113{bottom:885.899646px;}
.yc_c00113{bottom:916.859633px;}
.ya_c00113{bottom:962.939615px;}
.yb_c00113{bottom:971.219612px;}
.y9_c00113{bottom:994.079602px;}
.y8_c00113{bottom:1025.039590px;}
.y7_c00113{bottom:1056.179578px;}
.y6_c00113{bottom:1087.139565px;}
.y5_c00113{bottom:1118.279553px;}
.y2_c00113{bottom:1157.159537px;}
.y1_c00113{bottom:1196.039522px;}
.h9_c00113{height:27.833192px;}
.h8_c00113{height:38.158578px;}
.h2_c00113{height:44.149201px;}
.h4_c00113{height:47.344903px;}
.h1_c00113{height:58.651148px;}
.h3_c00113{height:70.628878px;}
.h5_c00113{height:70.664034px;}
.h7_c00113{height:72.562471px;}
.h6_c00113{height:82.676920px;}
.h0_c00113{height:1263.000000px;}
.w0_c00113{width:892.500000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:127.619949px;}
.x9_c00113{left:142.199943px;}
.xa_c00113{left:143.279943px;}
.xb_c00113{left:147.959941px;}
.x3_c00113{left:180.719928px;}
.x2_c00113{left:433.979514px;}
.x4_c00113{left:618.659753px;}
.x5_c00113{left:637.019745px;}
.x6_c00113{left:656.999737px;}
.x7_c00113{left:678.779728px;}
.x8_c00113{left:728.999708px;}
@media print{
.v1_c00113{vertical-align:-29.439988pt;}
.v0_c00113{vertical-align:0.000000pt;}
.ls4_c00113{letter-spacing:0.000000pt;}
.ls1_c00113{letter-spacing:0.009928pt;}
.ls2_c00113{letter-spacing:0.168267pt;}
.ls0_c00113{letter-spacing:0.332694pt;}
.ls3_c00113{letter-spacing:12.335728pt;}
.ws0_c00113{word-spacing:-11.052689pt;}
.ws1_c00113{word-spacing:-8.649924pt;}
.ws2_c00113{word-spacing:-8.389117pt;}
.ws3_c00113{word-spacing:0.000000pt;}
._12_c00113{margin-left:-8.868221pt;}
._1_c00113{margin-left:-0.982555pt;}
._0_c00113{width:1.062723pt;}
._6_c00113{width:2.833545pt;}
._7_c00113{width:3.868938pt;}
._3_c00113{width:5.275218pt;}
._2_c00113{width:6.166602pt;}
._c_c00113{width:7.441913pt;}
._d_c00113{width:8.426598pt;}
._9_c00113{width:9.453635pt;}
._8_c00113{width:10.787751pt;}
._13_c00113{width:12.043866pt;}
._10_c00113{width:13.151989pt;}
._11_c00113{width:14.577153pt;}
._a_c00113{width:19.640694pt;}
._b_c00113{width:20.591897pt;}
._4_c00113{width:22.057431pt;}
._5_c00113{width:22.980086pt;}
._e_c00113{width:25.419796pt;}
._f_c00113{width:26.639815pt;}
.fs5_c00113{font-size:34.559986pt;}
.fs6_c00113{font-size:37.119985pt;}
.fs3_c00113{font-size:42.879983pt;}
.fs0_c00113{font-size:53.119979pt;}
.fs1_c00113{font-size:58.879976pt;}
.fs2_c00113{font-size:63.999974pt;}
.fs4_c00113{font-size:74.879970pt;}
.y0_c00113{bottom:0.000000pt;}
.y4_c00113{bottom:67.466640pt;}
.y3_c00113{bottom:101.386626pt;}
.y2b_c00113{bottom:119.466886pt;}
.y2a_c00113{bottom:136.426612pt;}
.y29_c00113{bottom:151.786606pt;}
.y28_c00113{bottom:167.946599pt;}
.y27_c00113{bottom:174.666597pt;}
.y26_c00113{bottom:185.066593pt;}
.y25_c00113{bottom:200.426586pt;}
.y24_c00113{bottom:215.786580pt;}
.y23_c00113{bottom:221.866578pt;}
.y22_c00113{bottom:231.786574pt;}
.y21_c00113{bottom:258.506563pt;}
.y20_c00113{bottom:286.026552pt;}
.y1f_c00113{bottom:313.706541pt;}
.y1e_c00113{bottom:341.226530pt;}
.y1d_c00113{bottom:368.906519pt;}
.y1b_c00113{bottom:396.426508pt;}
.y1c_c00113{bottom:403.786505pt;}
.y1a_c00113{bottom:424.106497pt;}
.y19_c00113{bottom:451.626486pt;}
.y18_c00113{bottom:479.306475pt;}
.y17_c00113{bottom:506.826464pt;}
.y16_c00113{bottom:534.506453pt;}
.y15_c00113{bottom:562.026442pt;}
.y14_c00113{bottom:589.706431pt;}
.y13_c00113{bottom:616.906420pt;}
.y12_c00113{bottom:644.586409pt;}
.y11_c00113{bottom:674.666397pt;}
.y10_c00113{bottom:704.586385pt;}
.yf_c00113{bottom:732.266374pt;}
.ye_c00113{bottom:759.786363pt;}
.yd_c00113{bottom:787.466352pt;}
.yc_c00113{bottom:814.986341pt;}
.ya_c00113{bottom:855.946324pt;}
.yb_c00113{bottom:863.306321pt;}
.y9_c00113{bottom:883.626313pt;}
.y8_c00113{bottom:911.146302pt;}
.y7_c00113{bottom:938.826291pt;}
.y6_c00113{bottom:966.346280pt;}
.y5_c00113{bottom:994.026269pt;}
.y2_c00113{bottom:1028.586255pt;}
.y1_c00113{bottom:1063.146241pt;}
.h9_c00113{height:24.740615pt;}
.h8_c00113{height:33.918736pt;}
.h2_c00113{height:39.243734pt;}
.h4_c00113{height:42.084358pt;}
.h1_c00113{height:52.134354pt;}
.h3_c00113{height:62.781225pt;}
.h5_c00113{height:62.812475pt;}
.h7_c00113{height:64.499974pt;}
.h6_c00113{height:73.490596pt;}
.h0_c00113{height:1122.666667pt;}
.w0_c00113{width:793.333333pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:113.439955pt;}
.x9_c00113{left:126.399949pt;}
.xa_c00113{left:127.359949pt;}
.xb_c00113{left:131.519947pt;}
.x3_c00113{left:160.639936pt;}
.x2_c00113{left:385.759568pt;}
.x4_c00113{left:549.919780pt;}
.x5_c00113{left:566.239774pt;}
.x6_c00113{left:583.999766pt;}
.x7_c00113{left:603.359759pt;}
.x8_c00113{left:647.999741pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45ca0f84f88c4ae8db479624.woff2')format("woff");}.ff1_c00114{font-family:ff1_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:ff2_c00114;src:url('chunks/assets/font_9e902349baad84b0b914539a.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:0.675781;font-style:normal;font-weight:normal;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_da4c49267d210efb5c6137c9.woff2')format("woff");}.ff3_c00114{font-family:ff3_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;}
.m0_c00114{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls4_c00114{letter-spacing:0.000000px;}
.ls2_c00114{letter-spacing:0.011169px;}
.ls3_c00114{letter-spacing:0.012620px;}
.ls0_c00114{letter-spacing:0.021282px;}
.ls1_c00114{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00114{word-spacing:-18.021275px;}
.ws1_c00114{word-spacing:-12.434276px;}
.ws4_c00114{word-spacing:-10.452616px;}
.ws3_c00114{word-spacing:-9.731165px;}
.ws2_c00114{word-spacing:-9.437756px;}
.ws5_c00114{word-spacing:0.000000px;}
._f_c00114{margin-left:-9.931118px;}
._e_c00114{margin-left:-2.139990px;}
._1_c00114{margin-left:-1.105374px;}
._0_c00114{width:1.478351px;}
._9_c00114{width:2.505179px;}
._5_c00114{width:3.605816px;}
._6_c00114{width:4.876322px;}
._a_c00114{width:5.888990px;}
._4_c00114{width:7.255097px;}
._7_c00114{width:8.771490px;}
._d_c00114{width:10.100822px;}
._2_c00114{width:11.193827px;}
._3_c00114{width:12.516327px;}
._8_c00114{width:13.806651px;}
._b_c00114{width:27.213130px;}
._c_c00114{width:28.833962px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs5_c00114{font-size:38.879984px;}
.fs4_c00114{font-size:41.759983px;}
.fs3_c00114{font-size:48.239981px;}
.fs0_c00114{font-size:59.759976px;}
.fs1_c00114{font-size:66.239974px;}
.fs2_c00114{font-size:71.999971px;}
.y0_c00114{bottom:0.000000px;}
.y4_c00114{bottom:75.900270px;}
.y3_c00114{bottom:114.060254px;}
.y2d_c00114{bottom:134.400246px;}
.y2c_c00114{bottom:153.839938px;}
.y2b_c00114{bottom:161.399935px;}
.y2a_c00114{bottom:193.439923px;}
.y29_c00114{bottom:210.719916px;}
.y28_c00114{bottom:217.559913px;}
.y27_c00114{bottom:249.059900px;}
.y26_c00114{bottom:255.899898px;}
.y25_c00114{bottom:275.879890px;}
.y24_c00114{bottom:283.439887px;}
.y23_c00114{bottom:295.859882px;}
.y21_c00114{bottom:342.839863px;}
.y22_c00114{bottom:351.119860px;}
.y20_c00114{bottom:373.979850px;}
.y1f_c00114{bottom:404.939838px;}
.y1e_c00114{bottom:436.079826px;}
.y1d_c00114{bottom:467.039813px;}
.y1c_c00114{bottom:498.179801px;}
.y1a_c00114{bottom:529.139788px;}
.y1b_c00114{bottom:537.419785px;}
.y19_c00114{bottom:560.279776px;}
.y18_c00114{bottom:591.239764px;}
.y17_c00114{bottom:622.199751px;}
.y16_c00114{bottom:653.339739px;}
.y15_c00114{bottom:684.299726px;}
.y13_c00114{bottom:715.439714px;}
.y14_c00114{bottom:723.719711px;}
.y12_c00114{bottom:746.399701px;}
.y11_c00114{bottom:777.539689px;}
.y10_c00114{bottom:808.499677px;}
.yf_c00114{bottom:839.639664px;}
.ye_c00114{bottom:870.599652px;}
.yd_c00114{bottom:901.739639px;}
.yc_c00114{bottom:932.699627px;}
.ya_c00114{bottom:963.839614px;}
.yb_c00114{bottom:972.119611px;}
.y9_c00114{bottom:994.799602px;}
.y8_c00114{bottom:1025.939590px;}
.y7_c00114{bottom:1056.899577px;}
.y6_c00114{bottom:1088.039565px;}
.y5_c00114{bottom:1118.999552px;}
.y2_c00114{bottom:1176.059530px;}
.y1_c00114{bottom:1196.219522px;}
.h6_c00114{height:27.833192px;}
.h7_c00114{height:38.158578px;}
.h8_c00114{height:40.985140px;}
.h2_c00114{height:44.149201px;}
.h4_c00114{height:47.344903px;}
.h1_c00114{height:58.651148px;}
.h9_c00114{height:65.010911px;}
.h3_c00114{height:70.628878px;}
.h5_c00114{height:70.664034px;}
.h0_c00114{height:1263.000000px;}
.w0_c00114{width:892.500000px;}
.x0_c00114{left:0.000000px;}
.x5_c00114{left:127.620262px;}
.x12_c00114{left:142.199943px;}
.xf_c00114{left:143.279943px;}
.x10_c00114{left:147.059941px;}
.x6_c00114{left:180.719928px;}
.x1_c00114{left:181.799927px;}
.x14_c00114{left:223.919910px;}
.x7_c00114{left:267.299893px;}
.x8_c00114{left:285.659886px;}
.x2_c00114{left:329.039408px;}
.xd_c00114{left:367.559853px;}
.xe_c00114{left:385.919846px;}
.x9_c00114{left:399.599840px;}
.xa_c00114{left:417.959833px;}
.x4_c00114{left:433.979826px;}
.xb_c00114{left:463.859814px;}
.xc_c00114{left:482.219807px;}
.x11_c00114{left:668.879732px;}
.x13_c00114{left:747.179701px;}
.x3_c00114{left:765.359694px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls4_c00114{letter-spacing:0.000000pt;}
.ls2_c00114{letter-spacing:0.009928pt;}
.ls3_c00114{letter-spacing:0.011218pt;}
.ls0_c00114{letter-spacing:0.018917pt;}
.ls1_c00114{letter-spacing:0.332694pt;}
.ws0_c00114{word-spacing:-16.018911pt;}
.ws1_c00114{word-spacing:-11.052689pt;}
.ws4_c00114{word-spacing:-9.291214pt;}
.ws3_c00114{word-spacing:-8.649924pt;}
.ws2_c00114{word-spacing:-8.389117pt;}
.ws5_c00114{word-spacing:0.000000pt;}
._f_c00114{margin-left:-8.827661pt;}
._e_c00114{margin-left:-1.902214pt;}
._1_c00114{margin-left:-0.982555pt;}
._0_c00114{width:1.314090pt;}
._9_c00114{width:2.226825pt;}
._5_c00114{width:3.205170pt;}
._6_c00114{width:4.334508pt;}
._a_c00114{width:5.234657pt;}
._4_c00114{width:6.448975pt;}
._7_c00114{width:7.796880pt;}
._d_c00114{width:8.978508pt;}
._2_c00114{width:9.950069pt;}
._3_c00114{width:11.125624pt;}
._8_c00114{width:12.272579pt;}
._b_c00114{width:24.189449pt;}
._c_c00114{width:25.630189pt;}
.fs5_c00114{font-size:34.559986pt;}
.fs4_c00114{font-size:37.119985pt;}
.fs3_c00114{font-size:42.879983pt;}
.fs0_c00114{font-size:53.119979pt;}
.fs1_c00114{font-size:58.879976pt;}
.fs2_c00114{font-size:63.999974pt;}
.y0_c00114{bottom:0.000000pt;}
.y4_c00114{bottom:67.466906pt;}
.y3_c00114{bottom:101.386893pt;}
.y2d_c00114{bottom:119.466886pt;}
.y2c_c00114{bottom:136.746612pt;}
.y2b_c00114{bottom:143.466609pt;}
.y2a_c00114{bottom:171.946598pt;}
.y29_c00114{bottom:187.306592pt;}
.y28_c00114{bottom:193.386589pt;}
.y27_c00114{bottom:221.386578pt;}
.y26_c00114{bottom:227.466576pt;}
.y25_c00114{bottom:245.226569pt;}
.y24_c00114{bottom:251.946566pt;}
.y23_c00114{bottom:262.986561pt;}
.y21_c00114{bottom:304.746545pt;}
.y22_c00114{bottom:312.106542pt;}
.y20_c00114{bottom:332.426534pt;}
.y1f_c00114{bottom:359.946523pt;}
.y1e_c00114{bottom:387.626512pt;}
.y1d_c00114{bottom:415.146501pt;}
.y1c_c00114{bottom:442.826490pt;}
.y1a_c00114{bottom:470.346479pt;}
.y1b_c00114{bottom:477.706476pt;}
.y19_c00114{bottom:498.026467pt;}
.y18_c00114{bottom:525.546456pt;}
.y17_c00114{bottom:553.066445pt;}
.y16_c00114{bottom:580.746434pt;}
.y15_c00114{bottom:608.266423pt;}
.y13_c00114{bottom:635.946412pt;}
.y14_c00114{bottom:643.306409pt;}
.y12_c00114{bottom:663.466401pt;}
.y11_c00114{bottom:691.146390pt;}
.y10_c00114{bottom:718.666379pt;}
.yf_c00114{bottom:746.346368pt;}
.ye_c00114{bottom:773.866357pt;}
.yd_c00114{bottom:801.546346pt;}
.yc_c00114{bottom:829.066335pt;}
.ya_c00114{bottom:856.746324pt;}
.yb_c00114{bottom:864.106321pt;}
.y9_c00114{bottom:884.266313pt;}
.y8_c00114{bottom:911.946302pt;}
.y7_c00114{bottom:939.466291pt;}
.y6_c00114{bottom:967.146280pt;}
.y5_c00114{bottom:994.666269pt;}
.y2_c00114{bottom:1045.386249pt;}
.y1_c00114{bottom:1063.306241pt;}
.h6_c00114{height:24.740615pt;}
.h7_c00114{height:33.918736pt;}
.h8_c00114{height:36.431235pt;}
.h2_c00114{height:39.243734pt;}
.h4_c00114{height:42.084358pt;}
.h1_c00114{height:52.134354pt;}
.h9_c00114{height:57.787477pt;}
.h3_c00114{height:62.781225pt;}
.h5_c00114{height:62.812475pt;}
.h0_c00114{height:1122.666667pt;}
.w0_c00114{width:793.333333pt;}
.x0_c00114{left:0.000000pt;}
.x5_c00114{left:113.440233pt;}
.x12_c00114{left:126.399949pt;}
.xf_c00114{left:127.359949pt;}
.x10_c00114{left:130.719948pt;}
.x6_c00114{left:160.639936pt;}
.x1_c00114{left:161.599935pt;}
.x14_c00114{left:199.039920pt;}
.x7_c00114{left:237.599905pt;}
.x8_c00114{left:253.919898pt;}
.x2_c00114{left:292.479474pt;}
.xd_c00114{left:326.719869pt;}
.xe_c00114{left:343.039863pt;}
.x9_c00114{left:355.199858pt;}
.xa_c00114{left:371.519851pt;}
.x4_c00114{left:385.759846pt;}
.xb_c00114{left:412.319835pt;}
.xc_c00114{left:428.639829pt;}
.x11_c00114{left:594.559762pt;}
.x13_c00114{left:664.159734pt;}
.x3_c00114{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29f11cca0e3dcdfda55e78f2.woff2')format("woff");}.ff1_c00115{font-family:ff1_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:ff2_c00115;src:url('chunks/assets/font_1850029d0f0d8f13403b05f7.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:0.675781;font-style:normal;font-weight:normal;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_d117ea5d9fd8968c04881d99.woff2')format("woff");}.ff3_c00115{font-family:ff3_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;}
.m0_c00115{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls2_c00115{letter-spacing:0.000000px;}
.ls1_c00115{letter-spacing:0.011169px;}
.ls0_c00115{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00115{word-spacing:-17.999993px;}
.ws3_c00115{word-spacing:-14.939994px;}
.ws0_c00115{word-spacing:-12.434276px;}
.ws4_c00115{word-spacing:-9.731165px;}
.ws2_c00115{word-spacing:-8.786876px;}
.ws5_c00115{word-spacing:0.000000px;}
._14_c00115{margin-left:-9.774588px;}
._2_c00115{margin-left:-2.310407px;}
._1_c00115{margin-left:-1.105374px;}
._0_c00115{width:1.195563px;}
._c_c00115{width:2.336365px;}
._11_c00115{width:4.402779px;}
._f_c00115{width:5.732459px;}
._9_c00115{width:7.121675px;}
._7_c00115{width:8.223527px;}
._8_c00115{width:10.028457px;}
._d_c00115{width:11.084385px;}
._10_c00115{width:12.208207px;}
._5_c00115{width:15.192825px;}
._6_c00115{width:16.414973px;}
._12_c00115{width:19.345176px;}
._13_c00115{width:20.499007px;}
._a_c00115{width:25.020000px;}
._b_c00115{width:26.232997px;}
._e_c00115{width:30.173318px;}
._4_c00115{width:31.820194px;}
._3_c00115{width:33.150155px;}
.fc0_c00115{color:rgb(0,0,0);}
.fs4_c00115{font-size:38.879984px;}
.fs3_c00115{font-size:48.239981px;}
.fs0_c00115{font-size:59.759976px;}
.fs1_c00115{font-size:66.239974px;}
.fs2_c00115{font-size:71.999971px;}
.y0_c00115{bottom:0.000000px;}
.y4_c00115{bottom:75.899970px;}
.y3_c00115{bottom:114.059954px;}
.y2c_c00115{bottom:154.379938px;}
.y2b_c00115{bottom:171.659931px;}
.y2a_c00115{bottom:178.499929px;}
.y29_c00115{bottom:209.819916px;}
.y28_c00115{bottom:227.099909px;}
.y27_c00115{bottom:233.939906px;}
.y26_c00115{bottom:244.379902px;}
.y25_c00115{bottom:261.659895px;}
.y24_c00115{bottom:268.499893px;}
.y23_c00115{bottom:296.219882px;}
.y22_c00115{bottom:316.559873px;}
.y21_c00115{bottom:324.119870px;}
.y20_c00115{bottom:335.459866px;}
.y1f_c00115{bottom:374.519850px;}
.y1e_c00115{bottom:405.659838px;}
.y1d_c00115{bottom:436.619825px;}
.y1c_c00115{bottom:467.759813px;}
.y1a_c00115{bottom:519.779792px;}
.y1b_c00115{bottom:528.059789px;}
.y19_c00115{bottom:550.739780px;}
.y18_c00115{bottom:581.879767px;}
.y17_c00115{bottom:613.019755px;}
.y15_c00115{bottom:664.859734px;}
.y16_c00115{bottom:673.139731px;}
.y14_c00115{bottom:695.999722px;}
.y13_c00115{bottom:726.959709px;}
.y12_c00115{bottom:758.099697px;}
.y11_c00115{bottom:789.059684px;}
.yf_c00115{bottom:835.139666px;}
.y10_c00115{bottom:843.419663px;}
.ye_c00115{bottom:866.279653px;}
.yd_c00115{bottom:897.239641px;}
.yb_c00115{bottom:931.979627px;}
.yc_c00115{bottom:940.259624px;}
.ya_c00115{bottom:962.939615px;}
.y9_c00115{bottom:994.079602px;}
.y8_c00115{bottom:1025.039590px;}
.y7_c00115{bottom:1056.179578px;}
.y6_c00115{bottom:1087.139565px;}
.y5_c00115{bottom:1118.279553px;}
.y2_c00115{bottom:1157.159537px;}
.y1_c00115{bottom:1196.039522px;}
.h5_c00115{height:25.913662px;}
.h6_c00115{height:38.158578px;}
.h2_c00115{height:44.149201px;}
.h4_c00115{height:47.344903px;}
.h1_c00115{height:58.651148px;}
.h3_c00115{height:70.664034px;}
.h0_c00115{height:1263.000000px;}
.w0_c00115{width:892.500000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:127.619949px;}
.xc_c00115{left:142.199943px;}
.x3_c00115{left:180.719928px;}
.xd_c00115{left:338.039865px;}
.x2_c00115{left:433.979514px;}
.x4_c00115{left:533.339787px;}
.x5_c00115{left:551.699779px;}
.x6_c00115{left:663.659735px;}
.x8_c00115{left:672.479731px;}
.x7_c00115{left:682.019727px;}
.x9_c00115{left:690.839724px;}
.xa_c00115{left:715.679714px;}
.xb_c00115{left:734.039706px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls2_c00115{letter-spacing:0.000000pt;}
.ls1_c00115{letter-spacing:0.009928pt;}
.ls0_c00115{letter-spacing:0.332694pt;}
.ws1_c00115{word-spacing:-15.999994pt;}
.ws3_c00115{word-spacing:-13.279995pt;}
.ws0_c00115{word-spacing:-11.052689pt;}
.ws4_c00115{word-spacing:-8.649924pt;}
.ws2_c00115{word-spacing:-7.810557pt;}
.ws5_c00115{word-spacing:0.000000pt;}
._14_c00115{margin-left:-8.688522pt;}
._2_c00115{margin-left:-2.053695pt;}
._1_c00115{margin-left:-0.982555pt;}
._0_c00115{width:1.062723pt;}
._c_c00115{width:2.076769pt;}
._11_c00115{width:3.913581pt;}
._f_c00115{width:5.095519pt;}
._9_c00115{width:6.330377pt;}
._7_c00115{width:7.309801pt;}
._8_c00115{width:8.914184pt;}
._d_c00115{width:9.852787pt;}
._10_c00115{width:10.851740pt;}
._5_c00115{width:13.504734pt;}
._6_c00115{width:14.591087pt;}
._12_c00115{width:17.195712pt;}
._13_c00115{width:18.221339pt;}
._a_c00115{width:22.240000pt;}
._b_c00115{width:23.318220pt;}
._e_c00115{width:26.820727pt;}
._4_c00115{width:28.284617pt;}
._3_c00115{width:29.466804pt;}
.fs4_c00115{font-size:34.559986pt;}
.fs3_c00115{font-size:42.879983pt;}
.fs0_c00115{font-size:53.119979pt;}
.fs1_c00115{font-size:58.879976pt;}
.fs2_c00115{font-size:63.999974pt;}
.y0_c00115{bottom:0.000000pt;}
.y4_c00115{bottom:67.466640pt;}
.y3_c00115{bottom:101.386626pt;}
.y2c_c00115{bottom:137.226612pt;}
.y2b_c00115{bottom:152.586606pt;}
.y2a_c00115{bottom:158.666603pt;}
.y29_c00115{bottom:186.506592pt;}
.y28_c00115{bottom:201.866586pt;}
.y27_c00115{bottom:207.946583pt;}
.y26_c00115{bottom:217.226580pt;}
.y25_c00115{bottom:232.586574pt;}
.y24_c00115{bottom:238.666571pt;}
.y23_c00115{bottom:263.306561pt;}
.y22_c00115{bottom:281.386554pt;}
.y21_c00115{bottom:288.106551pt;}
.y20_c00115{bottom:298.186547pt;}
.y1f_c00115{bottom:332.906534pt;}
.y1e_c00115{bottom:360.586522pt;}
.y1d_c00115{bottom:388.106511pt;}
.y1c_c00115{bottom:415.786500pt;}
.y1a_c00115{bottom:462.026482pt;}
.y1b_c00115{bottom:469.386479pt;}
.y19_c00115{bottom:489.546471pt;}
.y18_c00115{bottom:517.226460pt;}
.y17_c00115{bottom:544.906449pt;}
.y15_c00115{bottom:590.986430pt;}
.y16_c00115{bottom:598.346427pt;}
.y14_c00115{bottom:618.666419pt;}
.y13_c00115{bottom:646.186408pt;}
.y12_c00115{bottom:673.866397pt;}
.y11_c00115{bottom:701.386386pt;}
.yf_c00115{bottom:742.346370pt;}
.y10_c00115{bottom:749.706367pt;}
.ye_c00115{bottom:770.026359pt;}
.yd_c00115{bottom:797.546348pt;}
.yb_c00115{bottom:828.426335pt;}
.yc_c00115{bottom:835.786332pt;}
.ya_c00115{bottom:855.946324pt;}
.y9_c00115{bottom:883.626313pt;}
.y8_c00115{bottom:911.146302pt;}
.y7_c00115{bottom:938.826291pt;}
.y6_c00115{bottom:966.346280pt;}
.y5_c00115{bottom:994.026269pt;}
.y2_c00115{bottom:1028.586255pt;}
.y1_c00115{bottom:1063.146241pt;}
.h5_c00115{height:23.034366pt;}
.h6_c00115{height:33.918736pt;}
.h2_c00115{height:39.243734pt;}
.h4_c00115{height:42.084358pt;}
.h1_c00115{height:52.134354pt;}
.h3_c00115{height:62.812475pt;}
.h0_c00115{height:1122.666667pt;}
.w0_c00115{width:793.333333pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:113.439955pt;}
.xc_c00115{left:126.399949pt;}
.x3_c00115{left:160.639936pt;}
.xd_c00115{left:300.479880pt;}
.x2_c00115{left:385.759568pt;}
.x4_c00115{left:474.079810pt;}
.x5_c00115{left:490.399804pt;}
.x6_c00115{left:589.919764pt;}
.x8_c00115{left:597.759761pt;}
.x7_c00115{left:606.239758pt;}
.x9_c00115{left:614.079754pt;}
.xa_c00115{left:636.159746pt;}
.xb_c00115{left:652.479739pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54f943469236979f3d8d76a6.woff2')format("woff");}.ff1_c00116{font-family:ff1_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:ff2_c00116;src:url('chunks/assets/font_aeb88b9eae022ec170f0fdc1.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.311035;font-style:normal;font-weight:normal;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_ead6906f3ecdbc7609a95176.woff2')format("woff");}.ff4_c00116{font-family:ff4_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;}
.m0_c00116{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls5_c00116{letter-spacing:0.000000px;}
.ls1_c00116{letter-spacing:0.010620px;}
.ls2_c00116{letter-spacing:0.011169px;}
.ls3_c00116{letter-spacing:0.189300px;}
.ls0_c00116{letter-spacing:0.374281px;}
.ls4_c00116{letter-spacing:1.630199px;}
.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;}
}
.ws0_c00116{word-spacing:-12.434276px;}
.ws1_c00116{word-spacing:-9.731165px;}
.ws2_c00116{word-spacing:0.000000px;}
._f_c00116{margin-left:-9.858731px;}
._d_c00116{margin-left:-2.251602px;}
._1_c00116{margin-left:-1.105374px;}
._0_c00116{width:1.478351px;}
._b_c00116{width:2.741436px;}
._6_c00116{width:4.643802px;}
._7_c00116{width:5.816602px;}
._c_c00116{width:9.347791px;}
._e_c00116{width:12.237753px;}
._8_c00116{width:13.808511px;}
._2_c00116{width:14.841936px;}
._3_c00116{width:15.990114px;}
._9_c00116{width:19.253056px;}
._a_c00116{width:20.270770px;}
._4_c00116{width:22.543371px;}
._5_c00116{width:23.718830px;}
.fc0_c00116{color:rgb(0,0,0);}
.fs4_c00116{font-size:38.879984px;}
.fs3_c00116{font-size:48.239981px;}
.fs0_c00116{font-size:59.759976px;}
.fs1_c00116{font-size:66.239974px;}
.fs2_c00116{font-size:71.999971px;}
.y0_c00116{bottom:0.000000px;}
.y4_c00116{bottom:75.900270px;}
.y3_c00116{bottom:114.060254px;}
.y2d_c00116{bottom:134.400246px;}
.y2c_c00116{bottom:153.479939px;}
.y2b_c00116{bottom:170.759932px;}
.y2a_c00116{bottom:177.599929px;}
.y29_c00116{bottom:188.039925px;}
.y28_c00116{bottom:205.319918px;}
.y27_c00116{bottom:212.159915px;}
.y26_c00116{bottom:222.599911px;}
.y25_c00116{bottom:239.699904px;}
.y24_c00116{bottom:246.539901px;}
.y23_c00116{bottom:280.559888px;}
.y22_c00116{bottom:287.399885px;}
.y21_c00116{bottom:298.739881px;}
.y20_c00116{bottom:326.999869px;}
.y1f_c00116{bottom:357.959857px;}
.y1e_c00116{bottom:389.099844px;}
.y1c_c00116{bottom:435.179826px;}
.y1d_c00116{bottom:443.459823px;}
.y1b_c00116{bottom:466.139814px;}
.y1a_c00116{bottom:497.279801px;}
.y19_c00116{bottom:528.239789px;}
.y18_c00116{bottom:559.199776px;}
.y17_c00116{bottom:590.339764px;}
.y16_c00116{bottom:621.299751px;}
.y14_c00116{bottom:673.499731px;}
.y15_c00116{bottom:681.779727px;}
.y13_c00116{bottom:704.459718px;}
.y12_c00116{bottom:735.599706px;}
.y11_c00116{bottom:766.559693px;}
.yf_c00116{bottom:818.579673px;}
.y10_c00116{bottom:826.859669px;}
.ye_c00116{bottom:849.719660px;}
.yd_c00116{bottom:880.679648px;}
.yc_c00116{bottom:911.819635px;}
.yb_c00116{bottom:942.779623px;}
.ya_c00116{bottom:973.919610px;}
.y8_c00116{bottom:1025.939590px;}
.y9_c00116{bottom:1034.219586px;}
.y7_c00116{bottom:1056.899577px;}
.y6_c00116{bottom:1088.039565px;}
.y5_c00116{bottom:1118.999552px;}
.y2_c00116{bottom:1176.059530px;}
.y1_c00116{bottom:1196.219522px;}
.h6_c00116{height:38.158578px;}
.h2_c00116{height:44.149201px;}
.h4_c00116{height:47.344903px;}
.h8_c00116{height:58.621969px;}
.h1_c00116{height:58.651148px;}
.h9_c00116{height:60.226851px;}
.h7_c00116{height:65.010911px;}
.h3_c00116{height:70.664034px;}
.h5_c00116{height:72.562471px;}
.h0_c00116{height:1263.000000px;}
.w0_c00116{width:892.500000px;}
.x0_c00116{left:0.000000px;}
.x5_c00116{left:127.620262px;}
.xf_c00116{left:142.199943px;}
.x8_c00116{left:180.720451px;}
.x1_c00116{left:181.799927px;}
.x9_c00116{left:243.539903px;}
.xa_c00116{left:261.899895px;}
.xb_c00116{left:313.559875px;}
.x2_c00116{left:329.039408px;}
.xc_c00116{left:331.919867px;}
.x4_c00116{left:433.979826px;}
.x6_c00116{left:493.559803px;}
.x7_c00116{left:511.919795px;}
.x10_c00116{left:595.619762px;}
.xd_c00116{left:710.999716px;}
.xe_c00116{left:729.359708px;}
.x3_c00116{left:765.359694px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls5_c00116{letter-spacing:0.000000pt;}
.ls1_c00116{letter-spacing:0.009440pt;}
.ls2_c00116{letter-spacing:0.009928pt;}
.ls3_c00116{letter-spacing:0.168267pt;}
.ls0_c00116{letter-spacing:0.332694pt;}
.ls4_c00116{letter-spacing:1.449066pt;}
.ws0_c00116{word-spacing:-11.052689pt;}
.ws1_c00116{word-spacing:-8.649924pt;}
.ws2_c00116{word-spacing:0.000000pt;}
._f_c00116{margin-left:-8.763316pt;}
._d_c00116{margin-left:-2.001424pt;}
._1_c00116{margin-left:-0.982555pt;}
._0_c00116{width:1.314090pt;}
._b_c00116{width:2.436832pt;}
._6_c00116{width:4.127824pt;}
._7_c00116{width:5.170313pt;}
._c_c00116{width:8.309148pt;}
._e_c00116{width:10.878003pt;}
._8_c00116{width:12.274232pt;}
._2_c00116{width:13.192832pt;}
._3_c00116{width:14.213434pt;}
._9_c00116{width:17.113828pt;}
._a_c00116{width:18.018462pt;}
._4_c00116{width:20.038552pt;}
._5_c00116{width:21.083404pt;}
.fs4_c00116{font-size:34.559986pt;}
.fs3_c00116{font-size:42.879983pt;}
.fs0_c00116{font-size:53.119979pt;}
.fs1_c00116{font-size:58.879976pt;}
.fs2_c00116{font-size:63.999974pt;}
.y0_c00116{bottom:0.000000pt;}
.y4_c00116{bottom:67.466906pt;}
.y3_c00116{bottom:101.386893pt;}
.y2d_c00116{bottom:119.466886pt;}
.y2c_c00116{bottom:136.426612pt;}
.y2b_c00116{bottom:151.786606pt;}
.y2a_c00116{bottom:157.866604pt;}
.y29_c00116{bottom:167.146600pt;}
.y28_c00116{bottom:182.506594pt;}
.y27_c00116{bottom:188.586591pt;}
.y26_c00116{bottom:197.866588pt;}
.y25_c00116{bottom:213.066581pt;}
.y24_c00116{bottom:219.146579pt;}
.y23_c00116{bottom:249.386567pt;}
.y22_c00116{bottom:255.466564pt;}
.y21_c00116{bottom:265.546560pt;}
.y20_c00116{bottom:290.666550pt;}
.y1f_c00116{bottom:318.186539pt;}
.y1e_c00116{bottom:345.866528pt;}
.y1c_c00116{bottom:386.826512pt;}
.y1d_c00116{bottom:394.186509pt;}
.y1b_c00116{bottom:414.346501pt;}
.y1a_c00116{bottom:442.026490pt;}
.y19_c00116{bottom:469.546479pt;}
.y18_c00116{bottom:497.066468pt;}
.y17_c00116{bottom:524.746457pt;}
.y16_c00116{bottom:552.266446pt;}
.y14_c00116{bottom:598.666427pt;}
.y15_c00116{bottom:606.026424pt;}
.y13_c00116{bottom:626.186416pt;}
.y12_c00116{bottom:653.866405pt;}
.y11_c00116{bottom:681.386394pt;}
.yf_c00116{bottom:727.626376pt;}
.y10_c00116{bottom:734.986373pt;}
.ye_c00116{bottom:755.306365pt;}
.yd_c00116{bottom:782.826354pt;}
.yc_c00116{bottom:810.506342pt;}
.yb_c00116{bottom:838.026331pt;}
.ya_c00116{bottom:865.706320pt;}
.y8_c00116{bottom:911.946302pt;}
.y9_c00116{bottom:919.306299pt;}
.y7_c00116{bottom:939.466291pt;}
.y6_c00116{bottom:967.146280pt;}
.y5_c00116{bottom:994.666269pt;}
.y2_c00116{bottom:1045.386249pt;}
.y1_c00116{bottom:1063.306241pt;}
.h6_c00116{height:33.918736pt;}
.h2_c00116{height:39.243734pt;}
.h4_c00116{height:42.084358pt;}
.h8_c00116{height:52.108417pt;}
.h1_c00116{height:52.134354pt;}
.h9_c00116{height:53.534979pt;}
.h7_c00116{height:57.787477pt;}
.h3_c00116{height:62.812475pt;}
.h5_c00116{height:64.499974pt;}
.h0_c00116{height:1122.666667pt;}
.w0_c00116{width:793.333333pt;}
.x0_c00116{left:0.000000pt;}
.x5_c00116{left:113.440233pt;}
.xf_c00116{left:126.399949pt;}
.x8_c00116{left:160.640401pt;}
.x1_c00116{left:161.599935pt;}
.x9_c00116{left:216.479913pt;}
.xa_c00116{left:232.799907pt;}
.xb_c00116{left:278.719889pt;}
.x2_c00116{left:292.479474pt;}
.xc_c00116{left:295.039882pt;}
.x4_c00116{left:385.759846pt;}
.x6_c00116{left:438.719825pt;}
.x7_c00116{left:455.039818pt;}
.x10_c00116{left:529.439788pt;}
.xd_c00116{left:631.999747pt;}
.xe_c00116{left:648.319741pt;}
.x3_c00116{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3200f70407554d6c35faa85d.woff2')format("woff");}.ff1_c00117{font-family:ff1_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:ff2_c00117;src:url('chunks/assets/font_e92ca170af088390652323f0.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:0.675781;font-style:normal;font-weight:normal;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_7cb6e048c58846a73a92d658.woff2')format("woff");}.ff3_c00117{font-family:ff3_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;}
.m0_c00117{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls3_c00117{letter-spacing:0.000000px;}
.ls2_c00117{letter-spacing:0.011169px;}
.ls1_c00117{letter-spacing:0.182640px;}
.ls0_c00117{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00117{word-spacing:-17.999993px;}
.ws0_c00117{word-spacing:-12.434276px;}
.ws3_c00117{word-spacing:-9.731165px;}
.ws2_c00117{word-spacing:-8.786876px;}
.ws4_c00117{word-spacing:0.000000px;}
._10_c00117{margin-left:-9.885756px;}
._f_c00117{margin-left:-2.157475px;}
._1_c00117{margin-left:-1.105374px;}
._0_c00117{width:1.195563px;}
._4_c00117{width:2.510551px;}
._5_c00117{width:4.264220px;}
._7_c00117{width:5.843628px;}
._b_c00117{width:7.406323px;}
._e_c00117{width:11.643837px;}
._8_c00117{width:12.747918px;}
._9_c00117{width:13.877093px;}
._6_c00117{width:15.600403px;}
._2_c00117{width:19.076954px;}
._3_c00117{width:20.110559px;}
._a_c00117{width:22.698231px;}
._c_c00117{width:24.977436px;}
._d_c00117{width:25.982174px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs4_c00117{font-size:38.879984px;}
.fs3_c00117{font-size:48.239981px;}
.fs0_c00117{font-size:59.759976px;}
.fs1_c00117{font-size:66.239974px;}
.fs2_c00117{font-size:71.999971px;}
.y0_c00117{bottom:0.000000px;}
.y4_c00117{bottom:75.899970px;}
.y3_c00117{bottom:114.059954px;}
.y30_c00117{bottom:146.640241px;}
.y2f_c00117{bottom:153.479939px;}
.y2e_c00117{bottom:163.919934px;}
.y2d_c00117{bottom:181.559927px;}
.y2c_c00117{bottom:189.119924px;}
.y2b_c00117{bottom:223.499911px;}
.y2a_c00117{bottom:231.059908px;}
.y29_c00117{bottom:241.499903px;}
.y28_c00117{bottom:259.139896px;}
.y27_c00117{bottom:266.699893px;}
.y26_c00117{bottom:291.899883px;}
.y25_c00117{bottom:309.719876px;}
.y24_c00117{bottom:317.279873px;}
.y23_c00117{bottom:328.439869px;}
.y21_c00117{bottom:358.679857px;}
.y22_c00117{bottom:366.959853px;}
.y20_c00117{bottom:389.639844px;}
.y1f_c00117{bottom:420.779832px;}
.y1e_c00117{bottom:451.739819px;}
.y1d_c00117{bottom:482.879807px;}
.y1b_c00117{bottom:517.439793px;}
.y1c_c00117{bottom:525.719790px;}
.y1a_c00117{bottom:548.579781px;}
.y19_c00117{bottom:579.539768px;}
.y18_c00117{bottom:610.679756px;}
.y17_c00117{bottom:641.639743px;}
.y15_c00117{bottom:676.379729px;}
.y16_c00117{bottom:684.659726px;}
.y14_c00117{bottom:707.339717px;}
.y13_c00117{bottom:738.479705px;}
.y12_c00117{bottom:769.439692px;}
.y11_c00117{bottom:800.579680px;}
.y10_c00117{bottom:831.539667px;}
.yf_c00117{bottom:862.679655px;}
.yd_c00117{bottom:897.239641px;}
.ye_c00117{bottom:905.519638px;}
.yc_c00117{bottom:928.379629px;}
.yb_c00117{bottom:959.339616px;}
.ya_c00117{bottom:990.479604px;}
.y8_c00117{bottom:1025.039590px;}
.y9_c00117{bottom:1033.319587px;}
.y7_c00117{bottom:1056.179578px;}
.y6_c00117{bottom:1087.139565px;}
.y5_c00117{bottom:1118.279553px;}
.y2_c00117{bottom:1157.159537px;}
.y1_c00117{bottom:1196.039522px;}
.h6_c00117{height:25.913662px;}
.h7_c00117{height:38.158578px;}
.h2_c00117{height:44.149201px;}
.h4_c00117{height:47.344903px;}
.h1_c00117{height:58.651148px;}
.h5_c00117{height:70.628878px;}
.h3_c00117{height:70.664034px;}
.h0_c00117{height:1263.000000px;}
.w0_c00117{width:892.500000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:127.619949px;}
.xc_c00117{left:142.199943px;}
.x6_c00117{left:171.179932px;}
.x5_c00117{left:180.719960px;}
.x7_c00117{left:189.539924px;}
.x8_c00117{left:208.439917px;}
.x3_c00117{left:269.639892px;}
.x9_c00117{left:278.639889px;}
.x4_c00117{left:287.999885px;}
.xa_c00117{left:296.999881px;}
.x2_c00117{left:433.979514px;}
.xb_c00117{left:451.439819px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls3_c00117{letter-spacing:0.000000pt;}
.ls2_c00117{letter-spacing:0.009928pt;}
.ls1_c00117{letter-spacing:0.162347pt;}
.ls0_c00117{letter-spacing:0.332694pt;}
.ws1_c00117{word-spacing:-15.999994pt;}
.ws0_c00117{word-spacing:-11.052689pt;}
.ws3_c00117{word-spacing:-8.649924pt;}
.ws2_c00117{word-spacing:-7.810557pt;}
.ws4_c00117{word-spacing:0.000000pt;}
._10_c00117{margin-left:-8.787339pt;}
._f_c00117{margin-left:-1.917755pt;}
._1_c00117{margin-left:-0.982555pt;}
._0_c00117{width:1.062723pt;}
._4_c00117{width:2.231601pt;}
._5_c00117{width:3.790418pt;}
._7_c00117{width:5.194336pt;}
._b_c00117{width:6.583398pt;}
._e_c00117{width:10.350077pt;}
._8_c00117{width:11.331482pt;}
._9_c00117{width:12.335194pt;}
._6_c00117{width:13.867025pt;}
._2_c00117{width:16.957292pt;}
._3_c00117{width:17.876052pt;}
._a_c00117{width:20.176206pt;}
._c_c00117{width:22.202165pt;}
._d_c00117{width:23.095266pt;}
.fs4_c00117{font-size:34.559986pt;}
.fs3_c00117{font-size:42.879983pt;}
.fs0_c00117{font-size:53.119979pt;}
.fs1_c00117{font-size:58.879976pt;}
.fs2_c00117{font-size:63.999974pt;}
.y0_c00117{bottom:0.000000pt;}
.y4_c00117{bottom:67.466640pt;}
.y3_c00117{bottom:101.386626pt;}
.y30_c00117{bottom:130.346881pt;}
.y2f_c00117{bottom:136.426612pt;}
.y2e_c00117{bottom:145.706608pt;}
.y2d_c00117{bottom:161.386602pt;}
.y2c_c00117{bottom:168.106599pt;}
.y2b_c00117{bottom:198.666587pt;}
.y2a_c00117{bottom:205.386585pt;}
.y29_c00117{bottom:214.666581pt;}
.y28_c00117{bottom:230.346575pt;}
.y27_c00117{bottom:237.066572pt;}
.y26_c00117{bottom:259.466563pt;}
.y25_c00117{bottom:275.306557pt;}
.y24_c00117{bottom:282.026554pt;}
.y23_c00117{bottom:291.946550pt;}
.y21_c00117{bottom:318.826539pt;}
.y22_c00117{bottom:326.186536pt;}
.y20_c00117{bottom:346.346528pt;}
.y1f_c00117{bottom:374.026517pt;}
.y1e_c00117{bottom:401.546506pt;}
.y1d_c00117{bottom:429.226495pt;}
.y1b_c00117{bottom:459.946483pt;}
.y1c_c00117{bottom:467.306480pt;}
.y1a_c00117{bottom:487.626472pt;}
.y19_c00117{bottom:515.146461pt;}
.y18_c00117{bottom:542.826450pt;}
.y17_c00117{bottom:570.346439pt;}
.y15_c00117{bottom:601.226426pt;}
.y16_c00117{bottom:608.586423pt;}
.y14_c00117{bottom:628.746415pt;}
.y13_c00117{bottom:656.426404pt;}
.y12_c00117{bottom:683.946393pt;}
.y11_c00117{bottom:711.626382pt;}
.y10_c00117{bottom:739.146371pt;}
.yf_c00117{bottom:766.826360pt;}
.yd_c00117{bottom:797.546348pt;}
.ye_c00117{bottom:804.906345pt;}
.yc_c00117{bottom:825.226337pt;}
.yb_c00117{bottom:852.746326pt;}
.ya_c00117{bottom:880.426314pt;}
.y8_c00117{bottom:911.146302pt;}
.y9_c00117{bottom:918.506299pt;}
.y7_c00117{bottom:938.826291pt;}
.y6_c00117{bottom:966.346280pt;}
.y5_c00117{bottom:994.026269pt;}
.y2_c00117{bottom:1028.586255pt;}
.y1_c00117{bottom:1063.146241pt;}
.h6_c00117{height:23.034366pt;}
.h7_c00117{height:33.918736pt;}
.h2_c00117{height:39.243734pt;}
.h4_c00117{height:42.084358pt;}
.h1_c00117{height:52.134354pt;}
.h5_c00117{height:62.781225pt;}
.h3_c00117{height:62.812475pt;}
.h0_c00117{height:1122.666667pt;}
.w0_c00117{width:793.333333pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:113.439955pt;}
.xc_c00117{left:126.399949pt;}
.x6_c00117{left:152.159939pt;}
.x5_c00117{left:160.639965pt;}
.x7_c00117{left:168.479933pt;}
.x8_c00117{left:185.279926pt;}
.x3_c00117{left:239.679904pt;}
.x9_c00117{left:247.679901pt;}
.x4_c00117{left:255.999898pt;}
.xa_c00117{left:263.999894pt;}
.x2_c00117{left:385.759568pt;}
.xb_c00117{left:401.279839pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0478cd51f7d04a15826f089b.woff2')format("woff");}.ff1_c00118{font-family:ff1_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:ff2_c00118;src:url('chunks/assets/font_25762209eaa53888a327bf2b.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:0.675781;font-style:normal;font-weight:normal;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_733b3c588f473ed3621beea4.woff2')format("woff");}.ff3_c00118{font-family:ff3_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;}
.m0_c00118{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls3_c00118{letter-spacing:0.000000px;}
.ls1_c00118{letter-spacing:0.011169px;}
.ls2_c00118{letter-spacing:0.189300px;}
.ls0_c00118{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00118{word-spacing:-17.999993px;}
.ws0_c00118{word-spacing:-12.434276px;}
.ws2_c00118{word-spacing:-9.731165px;}
.ws3_c00118{word-spacing:0.000000px;}
._13_c00118{margin-left:-9.654562px;}
._1_c00118{margin-left:-1.105374px;}
._0_c00118{width:1.478351px;}
._7_c00118{width:2.956054px;}
._2_c00118{width:4.241069px;}
._3_c00118{width:5.612433px;}
._a_c00118{width:7.368411px;}
._4_c00118{width:8.606164px;}
._5_c00118{width:9.671378px;}
._e_c00118{width:10.852985px;}
._6_c00118{width:12.794131px;}
._d_c00118{width:16.939445px;}
._10_c00118{width:19.051140px;}
._11_c00118{width:20.076279px;}
._f_c00118{width:23.497966px;}
._9_c00118{width:24.512086px;}
._8_c00118{width:25.643468px;}
._c_c00118{width:26.961723px;}
._b_c00118{width:28.104705px;}
._12_c00118{width:194.803722px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs4_c00118{font-size:38.879984px;}
.fs3_c00118{font-size:48.239981px;}
.fs0_c00118{font-size:59.759976px;}
.fs1_c00118{font-size:66.239974px;}
.fs2_c00118{font-size:71.999971px;}
.y0_c00118{bottom:0.000000px;}
.y4_c00118{bottom:75.900270px;}
.y3_c00118{bottom:114.060254px;}
.y2c_c00118{bottom:141.960243px;}
.y2b_c00118{bottom:148.800240px;}
.y2a_c00118{bottom:159.239936px;}
.y29_c00118{bottom:176.519929px;}
.y28_c00118{bottom:183.359927px;}
.y27_c00118{bottom:193.799922px;}
.y26_c00118{bottom:211.079916px;}
.y25_c00118{bottom:217.919913px;}
.y24_c00118{bottom:229.259908px;}
.y23_c00118{bottom:280.739888px;}
.y22_c00118{bottom:311.879875px;}
.y21_c00118{bottom:342.839863px;}
.y1f_c00118{bottom:373.979850px;}
.y20_c00118{bottom:382.259847px;}
.y1e_c00118{bottom:404.939838px;}
.y1d_c00118{bottom:436.079826px;}
.y1c_c00118{bottom:467.039813px;}
.y1b_c00118{bottom:498.179801px;}
.y1a_c00118{bottom:529.139788px;}
.y19_c00118{bottom:560.279776px;}
.y18_c00118{bottom:591.239764px;}
.y17_c00118{bottom:622.199751px;}
.y16_c00118{bottom:653.339739px;}
.y15_c00118{bottom:684.299726px;}
.y13_c00118{bottom:715.439714px;}
.y14_c00118{bottom:723.719711px;}
.y12_c00118{bottom:746.399701px;}
.y11_c00118{bottom:777.539689px;}
.y10_c00118{bottom:808.499677px;}
.yf_c00118{bottom:839.639664px;}
.ye_c00118{bottom:870.599652px;}
.yd_c00118{bottom:901.739639px;}
.yc_c00118{bottom:932.699627px;}
.ya_c00118{bottom:963.839614px;}
.yb_c00118{bottom:972.119611px;}
.y9_c00118{bottom:994.799602px;}
.y8_c00118{bottom:1025.939590px;}
.y7_c00118{bottom:1056.899577px;}
.y6_c00118{bottom:1088.039565px;}
.y5_c00118{bottom:1118.999552px;}
.y2_c00118{bottom:1176.059530px;}
.y1_c00118{bottom:1196.219522px;}
.h7_c00118{height:38.158578px;}
.h2_c00118{height:44.149201px;}
.h6_c00118{height:47.321348px;}
.h5_c00118{height:47.344903px;}
.h8_c00118{height:58.621969px;}
.h1_c00118{height:58.651148px;}
.h3_c00118{height:70.628878px;}
.h4_c00118{height:70.664034px;}
.h0_c00118{height:1263.000000px;}
.w0_c00118{width:892.500000px;}
.x0_c00118{left:0.000000px;}
.x5_c00118{left:127.620262px;}
.xd_c00118{left:142.199943px;}
.x6_c00118{left:180.719928px;}
.x1_c00118{left:181.799927px;}
.x9_c00118{left:203.039919px;}
.xa_c00118{left:221.399911px;}
.xb_c00118{left:244.259902px;}
.xc_c00118{left:262.619895px;}
.x2_c00118{left:329.039408px;}
.x4_c00118{left:433.979826px;}
.x7_c00118{left:576.539769px;}
.x8_c00118{left:594.899762px;}
.xe_c00118{left:744.839702px;}
.x3_c00118{left:765.359694px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls3_c00118{letter-spacing:0.000000pt;}
.ls1_c00118{letter-spacing:0.009928pt;}
.ls2_c00118{letter-spacing:0.168267pt;}
.ls0_c00118{letter-spacing:0.332694pt;}
.ws1_c00118{word-spacing:-15.999994pt;}
.ws0_c00118{word-spacing:-11.052689pt;}
.ws2_c00118{word-spacing:-8.649924pt;}
.ws3_c00118{word-spacing:0.000000pt;}
._13_c00118{margin-left:-8.581833pt;}
._1_c00118{margin-left:-0.982555pt;}
._0_c00118{width:1.314090pt;}
._7_c00118{width:2.627604pt;}
._2_c00118{width:3.769839pt;}
._3_c00118{width:4.988829pt;}
._a_c00118{width:6.549698pt;}
._4_c00118{width:7.649924pt;}
._5_c00118{width:8.596781pt;}
._e_c00118{width:9.647098pt;}
._6_c00118{width:11.372561pt;}
._d_c00118{width:15.057285pt;}
._10_c00118{width:16.934347pt;}
._11_c00118{width:17.845581pt;}
._f_c00118{width:20.887081pt;}
._9_c00118{width:21.788521pt;}
._8_c00118{width:22.794194pt;}
._c_c00118{width:23.965976pt;}
._b_c00118{width:24.981960pt;}
._12_c00118{width:173.158864pt;}
.fs4_c00118{font-size:34.559986pt;}
.fs3_c00118{font-size:42.879983pt;}
.fs0_c00118{font-size:53.119979pt;}
.fs1_c00118{font-size:58.879976pt;}
.fs2_c00118{font-size:63.999974pt;}
.y0_c00118{bottom:0.000000pt;}
.y4_c00118{bottom:67.466906pt;}
.y3_c00118{bottom:101.386893pt;}
.y2c_c00118{bottom:126.186883pt;}
.y2b_c00118{bottom:132.266880pt;}
.y2a_c00118{bottom:141.546610pt;}
.y29_c00118{bottom:156.906604pt;}
.y28_c00118{bottom:162.986601pt;}
.y27_c00118{bottom:172.266598pt;}
.y26_c00118{bottom:187.626592pt;}
.y25_c00118{bottom:193.706589pt;}
.y24_c00118{bottom:203.786585pt;}
.y23_c00118{bottom:249.546567pt;}
.y22_c00118{bottom:277.226556pt;}
.y21_c00118{bottom:304.746545pt;}
.y1f_c00118{bottom:332.426534pt;}
.y20_c00118{bottom:339.786531pt;}
.y1e_c00118{bottom:359.946523pt;}
.y1d_c00118{bottom:387.626512pt;}
.y1c_c00118{bottom:415.146501pt;}
.y1b_c00118{bottom:442.826490pt;}
.y1a_c00118{bottom:470.346479pt;}
.y19_c00118{bottom:498.026467pt;}
.y18_c00118{bottom:525.546456pt;}
.y17_c00118{bottom:553.066445pt;}
.y16_c00118{bottom:580.746434pt;}
.y15_c00118{bottom:608.266423pt;}
.y13_c00118{bottom:635.946412pt;}
.y14_c00118{bottom:643.306409pt;}
.y12_c00118{bottom:663.466401pt;}
.y11_c00118{bottom:691.146390pt;}
.y10_c00118{bottom:718.666379pt;}
.yf_c00118{bottom:746.346368pt;}
.ye_c00118{bottom:773.866357pt;}
.yd_c00118{bottom:801.546346pt;}
.yc_c00118{bottom:829.066335pt;}
.ya_c00118{bottom:856.746324pt;}
.yb_c00118{bottom:864.106321pt;}
.y9_c00118{bottom:884.266313pt;}
.y8_c00118{bottom:911.946302pt;}
.y7_c00118{bottom:939.466291pt;}
.y6_c00118{bottom:967.146280pt;}
.y5_c00118{bottom:994.666269pt;}
.y2_c00118{bottom:1045.386249pt;}
.y1_c00118{bottom:1063.306241pt;}
.h7_c00118{height:33.918736pt;}
.h2_c00118{height:39.243734pt;}
.h6_c00118{height:42.063421pt;}
.h5_c00118{height:42.084358pt;}
.h8_c00118{height:52.108417pt;}
.h1_c00118{height:52.134354pt;}
.h3_c00118{height:62.781225pt;}
.h4_c00118{height:62.812475pt;}
.h0_c00118{height:1122.666667pt;}
.w0_c00118{width:793.333333pt;}
.x0_c00118{left:0.000000pt;}
.x5_c00118{left:113.440233pt;}
.xd_c00118{left:126.399949pt;}
.x6_c00118{left:160.639936pt;}
.x1_c00118{left:161.599935pt;}
.x9_c00118{left:180.479928pt;}
.xa_c00118{left:196.799921pt;}
.xb_c00118{left:217.119913pt;}
.xc_c00118{left:233.439907pt;}
.x2_c00118{left:292.479474pt;}
.x4_c00118{left:385.759846pt;}
.x7_c00118{left:512.479795pt;}
.x8_c00118{left:528.799788pt;}
.xe_c00118{left:662.079735pt;}
.x3_c00118{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c20b66b234086693afa3064.woff2')format("woff");}.ff1_c00119{font-family:ff1_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:ff2_c00119;src:url('chunks/assets/font_53d4ed5631ce0c0652244198.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:0.675781;font-style:normal;font-weight:normal;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_37f4694a73c2106bf98c1460.woff2')format("woff");}.ff3_c00119{font-family:ff3_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:ff4_c00119;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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;}
.m0_c00119{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls3_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:0.011169px;}
.ls1_c00119{letter-spacing:0.374281px;}
.ls0_c00119{letter-spacing:8.655717px;}
.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:-17.999993px;}
.ws0_c00119{word-spacing:-12.434276px;}
.ws2_c00119{word-spacing:-9.731165px;}
.ws3_c00119{word-spacing:0.000000px;}
._13_c00119{margin-left:-9.414951px;}
._d_c00119{margin-left:-2.398528px;}
._1_c00119{margin-left:-1.105374px;}
._0_c00119{width:1.195563px;}
._2_c00119{width:2.303979px;}
._3_c00119{width:3.415261px;}
._8_c00119{width:5.372822px;}
._7_c00119{width:6.402386px;}
._6_c00119{width:7.901712px;}
._5_c00119{width:9.385774px;}
._12_c00119{width:10.404283px;}
._c_c00119{width:11.618941px;}
._9_c00119{width:13.741279px;}
._f_c00119{width:15.221637px;}
._e_c00119{width:16.232182px;}
._b_c00119{width:19.246116px;}
._a_c00119{width:20.686790px;}
._4_c00119{width:24.614958px;}
._11_c00119{width:29.778987px;}
._10_c00119{width:31.065784px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs4_c00119{font-size:38.879984px;}
.fs3_c00119{font-size:48.239981px;}
.fs0_c00119{font-size:59.759976px;}
.fs1_c00119{font-size:66.239974px;}
.fs2_c00119{font-size:71.999971px;}
.y0_c00119{bottom:0.000000px;}
.y4_c00119{bottom:75.899970px;}
.y3_c00119{bottom:114.059954px;}
.y27_c00119{bottom:154.379938px;}
.y26_c00119{bottom:171.479931px;}
.y25_c00119{bottom:178.319929px;}
.y24_c00119{bottom:218.279913px;}
.y23_c00119{bottom:225.119910px;}
.y22_c00119{bottom:236.639905px;}
.y21_c00119{bottom:296.039882px;}
.y20_c00119{bottom:326.999869px;}
.y1f_c00119{bottom:358.139857px;}
.y1e_c00119{bottom:389.099844px;}
.y1d_c00119{bottom:420.239832px;}
.y1c_c00119{bottom:451.199820px;}
.y1b_c00119{bottom:482.159807px;}
.y1a_c00119{bottom:513.299795px;}
.y19_c00119{bottom:544.259782px;}
.y17_c00119{bottom:575.399770px;}
.y18_c00119{bottom:583.679767px;}
.y16_c00119{bottom:606.359757px;}
.y15_c00119{bottom:637.499745px;}
.y14_c00119{bottom:668.459733px;}
.y13_c00119{bottom:699.599720px;}
.y12_c00119{bottom:730.559708px;}
.y10_c00119{bottom:761.699695px;}
.y11_c00119{bottom:769.979692px;}
.yf_c00119{bottom:792.659683px;}
.ye_c00119{bottom:823.799670px;}
.yd_c00119{bottom:854.759658px;}
.yc_c00119{bottom:885.899646px;}
.yb_c00119{bottom:916.859633px;}
.ya_c00119{bottom:947.999621px;}
.y9_c00119{bottom:978.959608px;}
.y8_c00119{bottom:1025.039590px;}
.y7_c00119{bottom:1056.179578px;}
.y6_c00119{bottom:1087.139565px;}
.y5_c00119{bottom:1118.279553px;}
.y2_c00119{bottom:1157.159537px;}
.y1_c00119{bottom:1196.039522px;}
.h7_c00119{height:38.158578px;}
.h2_c00119{height:44.149201px;}
.h5_c00119{height:47.321348px;}
.h6_c00119{height:47.344903px;}
.h1_c00119{height:58.651148px;}
.h3_c00119{height:70.628878px;}
.h4_c00119{height:70.664034px;}
.h0_c00119{height:1263.000000px;}
.w0_c00119{width:892.500000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:127.619949px;}
.x8_c00119{left:142.199943px;}
.x3_c00119{left:180.719928px;}
.x9_c00119{left:220.139912px;}
.x2_c00119{left:433.979514px;}
.x4_c00119{left:512.279795px;}
.x5_c00119{left:530.639788px;}
.x6_c00119{left:655.019738px;}
.x7_c00119{left:673.379731px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls3_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:0.009928pt;}
.ls1_c00119{letter-spacing:0.332694pt;}
.ls0_c00119{letter-spacing:7.693970pt;}
.ws1_c00119{word-spacing:-15.999994pt;}
.ws0_c00119{word-spacing:-11.052689pt;}
.ws2_c00119{word-spacing:-8.649924pt;}
.ws3_c00119{word-spacing:0.000000pt;}
._13_c00119{margin-left:-8.368845pt;}
._d_c00119{margin-left:-2.132024pt;}
._1_c00119{margin-left:-0.982555pt;}
._0_c00119{width:1.062723pt;}
._2_c00119{width:2.047981pt;}
._3_c00119{width:3.035787pt;}
._8_c00119{width:4.775842pt;}
._7_c00119{width:5.691010pt;}
._6_c00119{width:7.023744pt;}
._5_c00119{width:8.342910pt;}
._12_c00119{width:9.248252pt;}
._c_c00119{width:10.327948pt;}
._9_c00119{width:12.214470pt;}
._f_c00119{width:13.530344pt;}
._e_c00119{width:14.428606pt;}
._b_c00119{width:17.107659pt;}
._a_c00119{width:18.388258pt;}
._4_c00119{width:21.879963pt;}
._11_c00119{width:26.470210pt;}
._10_c00119{width:27.614030pt;}
.fs4_c00119{font-size:34.559986pt;}
.fs3_c00119{font-size:42.879983pt;}
.fs0_c00119{font-size:53.119979pt;}
.fs1_c00119{font-size:58.879976pt;}
.fs2_c00119{font-size:63.999974pt;}
.y0_c00119{bottom:0.000000pt;}
.y4_c00119{bottom:67.466640pt;}
.y3_c00119{bottom:101.386626pt;}
.y27_c00119{bottom:137.226612pt;}
.y26_c00119{bottom:152.426606pt;}
.y25_c00119{bottom:158.506603pt;}
.y24_c00119{bottom:194.026589pt;}
.y23_c00119{bottom:200.106587pt;}
.y22_c00119{bottom:210.346583pt;}
.y21_c00119{bottom:263.146561pt;}
.y20_c00119{bottom:290.666550pt;}
.y1f_c00119{bottom:318.346539pt;}
.y1e_c00119{bottom:345.866528pt;}
.y1d_c00119{bottom:373.546517pt;}
.y1c_c00119{bottom:401.066506pt;}
.y1b_c00119{bottom:428.586495pt;}
.y1a_c00119{bottom:456.266484pt;}
.y19_c00119{bottom:483.786473pt;}
.y17_c00119{bottom:511.466462pt;}
.y18_c00119{bottom:518.826459pt;}
.y16_c00119{bottom:538.986451pt;}
.y15_c00119{bottom:566.666440pt;}
.y14_c00119{bottom:594.186429pt;}
.y13_c00119{bottom:621.866418pt;}
.y12_c00119{bottom:649.386407pt;}
.y10_c00119{bottom:677.066396pt;}
.y11_c00119{bottom:684.426393pt;}
.yf_c00119{bottom:704.586385pt;}
.ye_c00119{bottom:732.266374pt;}
.yd_c00119{bottom:759.786363pt;}
.yc_c00119{bottom:787.466352pt;}
.yb_c00119{bottom:814.986341pt;}
.ya_c00119{bottom:842.666330pt;}
.y9_c00119{bottom:870.186319pt;}
.y8_c00119{bottom:911.146302pt;}
.y7_c00119{bottom:938.826291pt;}
.y6_c00119{bottom:966.346280pt;}
.y5_c00119{bottom:994.026269pt;}
.y2_c00119{bottom:1028.586255pt;}
.y1_c00119{bottom:1063.146241pt;}
.h7_c00119{height:33.918736pt;}
.h2_c00119{height:39.243734pt;}
.h5_c00119{height:42.063421pt;}
.h6_c00119{height:42.084358pt;}
.h1_c00119{height:52.134354pt;}
.h3_c00119{height:62.781225pt;}
.h4_c00119{height:62.812475pt;}
.h0_c00119{height:1122.666667pt;}
.w0_c00119{width:793.333333pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:113.439955pt;}
.x8_c00119{left:126.399949pt;}
.x3_c00119{left:160.639936pt;}
.x9_c00119{left:195.679922pt;}
.x2_c00119{left:385.759568pt;}
.x4_c00119{left:455.359818pt;}
.x5_c00119{left:471.679811pt;}
.x6_c00119{left:582.239767pt;}
.x7_c00119{left:598.559761pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_132660a6e5c19eaec67d072c.woff2')format("woff");}.ff1_c00120{font-family:ff1_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:ff2_c00120;src:url('chunks/assets/font_2b3c152adcdab3c7895274ea.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:0.675781;font-style:normal;font-weight:normal;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_e105fbdb6fc8729a26e45221.woff2')format("woff");}.ff3_c00120{font-family:ff3_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;}
.m0_c00120{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls4_c00120{letter-spacing:0.000000px;}
.ls2_c00120{letter-spacing:0.011169px;}
.ls1_c00120{letter-spacing:0.021282px;}
.ls3_c00120{letter-spacing:0.189300px;}
.ls0_c00120{letter-spacing:0.374281px;}
.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:-17.999993px;}
.ws0_c00120{word-spacing:-12.434276px;}
.ws2_c00120{word-spacing:-9.731165px;}
.ws3_c00120{word-spacing:0.000000px;}
._10_c00120{margin-left:-10.979570px;}
._f_c00120{margin-left:-2.109592px;}
._1_c00120{margin-left:-1.105374px;}
._0_c00120{width:1.478351px;}
._b_c00120{width:2.859360px;}
._6_c00120{width:4.093456px;}
._3_c00120{width:5.096089px;}
._7_c00120{width:6.937441px;}
._8_c00120{width:8.020373px;}
._2_c00120{width:10.022156px;}
._9_c00120{width:11.377979px;}
._a_c00120{width:12.527157px;}
._d_c00120{width:14.362466px;}
._e_c00120{width:15.414610px;}
._4_c00120{width:16.619373px;}
._c_c00120{width:19.617127px;}
._5_c00120{width:26.772759px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs4_c00120{font-size:38.879984px;}
.fs3_c00120{font-size:48.239981px;}
.fs0_c00120{font-size:59.759976px;}
.fs1_c00120{font-size:66.239974px;}
.fs2_c00120{font-size:71.999971px;}
.y0_c00120{bottom:0.000000px;}
.y4_c00120{bottom:75.900270px;}
.y3_c00120{bottom:114.060254px;}
.y30_c00120{bottom:133.319947px;}
.y2f_c00120{bottom:150.599940px;}
.y2e_c00120{bottom:157.439937px;}
.y2d_c00120{bottom:167.879933px;}
.y2c_c00120{bottom:185.159926px;}
.y2b_c00120{bottom:202.439919px;}
.y2a_c00120{bottom:209.279916px;}
.y29_c00120{bottom:219.719912px;}
.y28_c00120{bottom:236.819905px;}
.y27_c00120{bottom:254.099898px;}
.y26_c00120{bottom:260.939896px;}
.y25_c00120{bottom:271.379891px;}
.y24_c00120{bottom:288.659885px;}
.y23_c00120{bottom:295.499882px;}
.y22_c00120{bottom:306.839877px;}
.y20_c00120{bottom:373.979850px;}
.y21_c00120{bottom:382.259847px;}
.y1f_c00120{bottom:404.939838px;}
.y1e_c00120{bottom:436.079826px;}
.y1d_c00120{bottom:467.039813px;}
.y1c_c00120{bottom:498.179801px;}
.y1b_c00120{bottom:529.139788px;}
.y19_c00120{bottom:560.279776px;}
.y1a_c00120{bottom:568.559773px;}
.y18_c00120{bottom:591.239764px;}
.y17_c00120{bottom:622.199751px;}
.y16_c00120{bottom:653.339739px;}
.y15_c00120{bottom:684.299726px;}
.y14_c00120{bottom:715.439714px;}
.y13_c00120{bottom:746.399701px;}
.y12_c00120{bottom:777.539689px;}
.y11_c00120{bottom:808.499677px;}
.y10_c00120{bottom:839.639664px;}
.yf_c00120{bottom:870.599652px;}
.yd_c00120{bottom:901.739639px;}
.ye_c00120{bottom:910.019636px;}
.yc_c00120{bottom:932.699627px;}
.yb_c00120{bottom:963.839614px;}
.ya_c00120{bottom:994.799602px;}
.y9_c00120{bottom:1025.939590px;}
.y8_c00120{bottom:1056.899577px;}
.y6_c00120{bottom:1088.039565px;}
.y7_c00120{bottom:1096.319561px;}
.y5_c00120{bottom:1118.999552px;}
.y2_c00120{bottom:1176.059530px;}
.y1_c00120{bottom:1196.219522px;}
.h7_c00120{height:38.158578px;}
.h2_c00120{height:44.149201px;}
.h4_c00120{height:47.321348px;}
.h6_c00120{height:47.344903px;}
.h8_c00120{height:58.621969px;}
.h1_c00120{height:58.651148px;}
.h3_c00120{height:70.628878px;}
.h5_c00120{height:70.664034px;}
.h0_c00120{height:1263.000000px;}
.w0_c00120{width:892.500000px;}
.x0_c00120{left:0.000000px;}
.x5_c00120{left:127.620262px;}
.xf_c00120{left:142.199943px;}
.x6_c00120{left:180.719928px;}
.x1_c00120{left:181.799927px;}
.x9_c00120{left:235.259906px;}
.xa_c00120{left:253.619899px;}
.x2_c00120{left:329.039408px;}
.x4_c00120{left:433.979826px;}
.xb_c00120{left:502.739799px;}
.xc_c00120{left:521.099792px;}
.x7_c00120{left:525.059790px;}
.x8_c00120{left:543.419783px;}
.xd_c00120{left:561.419775px;}
.xe_c00120{left:579.779768px;}
.x3_c00120{left:765.359694px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls4_c00120{letter-spacing:0.000000pt;}
.ls2_c00120{letter-spacing:0.009928pt;}
.ls1_c00120{letter-spacing:0.018917pt;}
.ls3_c00120{letter-spacing:0.168267pt;}
.ls0_c00120{letter-spacing:0.332694pt;}
.ws1_c00120{word-spacing:-15.999994pt;}
.ws0_c00120{word-spacing:-11.052689pt;}
.ws2_c00120{word-spacing:-8.649924pt;}
.ws3_c00120{word-spacing:0.000000pt;}
._10_c00120{margin-left:-9.759618pt;}
._f_c00120{margin-left:-1.875193pt;}
._1_c00120{margin-left:-0.982555pt;}
._0_c00120{width:1.314090pt;}
._b_c00120{width:2.541653pt;}
._6_c00120{width:3.638627pt;}
._3_c00120{width:4.529857pt;}
._7_c00120{width:6.166614pt;}
._8_c00120{width:7.129220pt;}
._2_c00120{width:8.908583pt;}
._9_c00120{width:10.113759pt;}
._a_c00120{width:11.135251pt;}
._d_c00120{width:12.766636pt;}
._e_c00120{width:13.701876pt;}
._4_c00120{width:14.772776pt;}
._c_c00120{width:17.437446pt;}
._5_c00120{width:23.798008pt;}
.fs4_c00120{font-size:34.559986pt;}
.fs3_c00120{font-size:42.879983pt;}
.fs0_c00120{font-size:53.119979pt;}
.fs1_c00120{font-size:58.879976pt;}
.fs2_c00120{font-size:63.999974pt;}
.y0_c00120{bottom:0.000000pt;}
.y4_c00120{bottom:67.466906pt;}
.y3_c00120{bottom:101.386893pt;}
.y30_c00120{bottom:118.506619pt;}
.y2f_c00120{bottom:133.866613pt;}
.y2e_c00120{bottom:139.946611pt;}
.y2d_c00120{bottom:149.226607pt;}
.y2c_c00120{bottom:164.586601pt;}
.y2b_c00120{bottom:179.946595pt;}
.y2a_c00120{bottom:186.026592pt;}
.y29_c00120{bottom:195.306589pt;}
.y28_c00120{bottom:210.506582pt;}
.y27_c00120{bottom:225.866576pt;}
.y26_c00120{bottom:231.946574pt;}
.y25_c00120{bottom:241.226570pt;}
.y24_c00120{bottom:256.586564pt;}
.y23_c00120{bottom:262.666562pt;}
.y22_c00120{bottom:272.746558pt;}
.y20_c00120{bottom:332.426534pt;}
.y21_c00120{bottom:339.786531pt;}
.y1f_c00120{bottom:359.946523pt;}
.y1e_c00120{bottom:387.626512pt;}
.y1d_c00120{bottom:415.146501pt;}
.y1c_c00120{bottom:442.826490pt;}
.y1b_c00120{bottom:470.346479pt;}
.y19_c00120{bottom:498.026467pt;}
.y1a_c00120{bottom:505.386465pt;}
.y18_c00120{bottom:525.546456pt;}
.y17_c00120{bottom:553.066445pt;}
.y16_c00120{bottom:580.746434pt;}
.y15_c00120{bottom:608.266423pt;}
.y14_c00120{bottom:635.946412pt;}
.y13_c00120{bottom:663.466401pt;}
.y12_c00120{bottom:691.146390pt;}
.y11_c00120{bottom:718.666379pt;}
.y10_c00120{bottom:746.346368pt;}
.yf_c00120{bottom:773.866357pt;}
.yd_c00120{bottom:801.546346pt;}
.ye_c00120{bottom:808.906343pt;}
.yc_c00120{bottom:829.066335pt;}
.yb_c00120{bottom:856.746324pt;}
.ya_c00120{bottom:884.266313pt;}
.y9_c00120{bottom:911.946302pt;}
.y8_c00120{bottom:939.466291pt;}
.y6_c00120{bottom:967.146280pt;}
.y7_c00120{bottom:974.506277pt;}
.y5_c00120{bottom:994.666269pt;}
.y2_c00120{bottom:1045.386249pt;}
.y1_c00120{bottom:1063.306241pt;}
.h7_c00120{height:33.918736pt;}
.h2_c00120{height:39.243734pt;}
.h4_c00120{height:42.063421pt;}
.h6_c00120{height:42.084358pt;}
.h8_c00120{height:52.108417pt;}
.h1_c00120{height:52.134354pt;}
.h3_c00120{height:62.781225pt;}
.h5_c00120{height:62.812475pt;}
.h0_c00120{height:1122.666667pt;}
.w0_c00120{width:793.333333pt;}
.x0_c00120{left:0.000000pt;}
.x5_c00120{left:113.440233pt;}
.xf_c00120{left:126.399949pt;}
.x6_c00120{left:160.639936pt;}
.x1_c00120{left:161.599935pt;}
.x9_c00120{left:209.119916pt;}
.xa_c00120{left:225.439910pt;}
.x2_c00120{left:292.479474pt;}
.x4_c00120{left:385.759846pt;}
.xb_c00120{left:446.879821pt;}
.xc_c00120{left:463.199815pt;}
.x7_c00120{left:466.719813pt;}
.x8_c00120{left:483.039807pt;}
.xd_c00120{left:499.039800pt;}
.xe_c00120{left:515.359794pt;}
.x3_c00120{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_068c629f69d56fdb6c771659.woff2')format("woff");}.ff1_c00121{font-family:ff1_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:ff2_c00121;src:url('chunks/assets/font_56e2eb5be5303440185d8e30.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:0.675781;font-style:normal;font-weight:normal;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_494adc19f58aadeb0d454313.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;}
.m0_c00121{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls3_c00121{letter-spacing:0.000000px;}
.ls1_c00121{letter-spacing:0.011169px;}
.ls2_c00121{letter-spacing:0.189300px;}
.ls0_c00121{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00121{word-spacing:-12.434276px;}
.ws1_c00121{word-spacing:-9.731165px;}
.ws2_c00121{word-spacing:0.000000px;}
._10_c00121{margin-left:-10.053566px;}
._1_c00121{margin-left:-1.105374px;}
._0_c00121{width:1.195563px;}
._6_c00121{width:2.257919px;}
._8_c00121{width:3.269041px;}
._9_c00121{width:4.428855px;}
._a_c00121{width:6.011437px;}
._7_c00121{width:7.570284px;}
._2_c00121{width:8.765604px;}
._4_c00121{width:11.523074px;}
._3_c00121{width:12.630023px;}
._b_c00121{width:13.939777px;}
._f_c00121{width:14.972120px;}
._5_c00121{width:19.632353px;}
._e_c00121{width:21.285153px;}
._c_c00121{width:22.433619px;}
._d_c00121{width:23.510739px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs4_c00121{font-size:38.879984px;}
.fs3_c00121{font-size:48.239981px;}
.fs0_c00121{font-size:59.759976px;}
.fs1_c00121{font-size:66.239974px;}
.fs2_c00121{font-size:71.999971px;}
.y0_c00121{bottom:0.000000px;}
.y4_c00121{bottom:75.899970px;}
.y3_c00121{bottom:114.059954px;}
.y26_c00121{bottom:133.319947px;}
.y25_c00121{bottom:150.599940px;}
.y24_c00121{bottom:157.439937px;}
.y23_c00121{bottom:168.779932px;}
.y22_c00121{bottom:248.879900px;}
.y21_c00121{bottom:279.839888px;}
.y20_c00121{bottom:310.979876px;}
.y1f_c00121{bottom:341.939863px;}
.y1e_c00121{bottom:373.079851px;}
.y1d_c00121{bottom:404.039838px;}
.y1c_c00121{bottom:435.179826px;}
.y1b_c00121{bottom:466.139814px;}
.y1a_c00121{bottom:497.279801px;}
.y19_c00121{bottom:528.239789px;}
.y18_c00121{bottom:559.379776px;}
.y17_c00121{bottom:590.339764px;}
.y16_c00121{bottom:621.479751px;}
.y15_c00121{bottom:652.439739px;}
.y14_c00121{bottom:683.579727px;}
.y13_c00121{bottom:714.539714px;}
.y12_c00121{bottom:745.679702px;}
.y11_c00121{bottom:776.639689px;}
.y10_c00121{bottom:807.779677px;}
.yf_c00121{bottom:838.739665px;}
.ye_c00121{bottom:869.879652px;}
.yd_c00121{bottom:900.839640px;}
.yc_c00121{bottom:931.979627px;}
.yb_c00121{bottom:962.939615px;}
.y9_c00121{bottom:994.079602px;}
.ya_c00121{bottom:1002.359599px;}
.y8_c00121{bottom:1025.039590px;}
.y7_c00121{bottom:1056.179578px;}
.y6_c00121{bottom:1087.139565px;}
.y5_c00121{bottom:1118.279553px;}
.y2_c00121{bottom:1157.159537px;}
.y1_c00121{bottom:1196.039522px;}
.h6_c00121{height:38.158578px;}
.h2_c00121{height:44.149201px;}
.h4_c00121{height:47.321348px;}
.h1_c00121{height:58.651148px;}
.h3_c00121{height:70.628878px;}
.h5_c00121{height:70.664034px;}
.h0_c00121{height:1263.000000px;}
.w0_c00121{width:892.500000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:127.619949px;}
.x6_c00121{left:142.199943px;}
.x3_c00121{left:180.719928px;}
.x2_c00121{left:433.979514px;}
.x4_c00121{left:668.159733px;}
.x5_c00121{left:686.519725px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls3_c00121{letter-spacing:0.000000pt;}
.ls1_c00121{letter-spacing:0.009928pt;}
.ls2_c00121{letter-spacing:0.168267pt;}
.ls0_c00121{letter-spacing:0.332694pt;}
.ws0_c00121{word-spacing:-11.052689pt;}
.ws1_c00121{word-spacing:-8.649924pt;}
.ws2_c00121{word-spacing:0.000000pt;}
._10_c00121{margin-left:-8.936503pt;}
._1_c00121{margin-left:-0.982555pt;}
._0_c00121{width:1.062723pt;}
._6_c00121{width:2.007039pt;}
._8_c00121{width:2.905814pt;}
._9_c00121{width:3.936760pt;}
._a_c00121{width:5.343499pt;}
._7_c00121{width:6.729141pt;}
._2_c00121{width:7.791648pt;}
._4_c00121{width:10.242732pt;}
._3_c00121{width:11.226687pt;}
._b_c00121{width:12.390913pt;}
._f_c00121{width:13.308551pt;}
._5_c00121{width:17.450981pt;}
._e_c00121{width:18.920136pt;}
._c_c00121{width:19.940995pt;}
._d_c00121{width:20.898435pt;}
.fs4_c00121{font-size:34.559986pt;}
.fs3_c00121{font-size:42.879983pt;}
.fs0_c00121{font-size:53.119979pt;}
.fs1_c00121{font-size:58.879976pt;}
.fs2_c00121{font-size:63.999974pt;}
.y0_c00121{bottom:0.000000pt;}
.y4_c00121{bottom:67.466640pt;}
.y3_c00121{bottom:101.386626pt;}
.y26_c00121{bottom:118.506619pt;}
.y25_c00121{bottom:133.866613pt;}
.y24_c00121{bottom:139.946611pt;}
.y23_c00121{bottom:150.026607pt;}
.y22_c00121{bottom:221.226578pt;}
.y21_c00121{bottom:248.746567pt;}
.y20_c00121{bottom:276.426556pt;}
.y1f_c00121{bottom:303.946545pt;}
.y1e_c00121{bottom:331.626534pt;}
.y1d_c00121{bottom:359.146523pt;}
.y1c_c00121{bottom:386.826512pt;}
.y1b_c00121{bottom:414.346501pt;}
.y1a_c00121{bottom:442.026490pt;}
.y19_c00121{bottom:469.546479pt;}
.y18_c00121{bottom:497.226468pt;}
.y17_c00121{bottom:524.746457pt;}
.y16_c00121{bottom:552.426446pt;}
.y15_c00121{bottom:579.946435pt;}
.y14_c00121{bottom:607.626424pt;}
.y13_c00121{bottom:635.146413pt;}
.y12_c00121{bottom:662.826402pt;}
.y11_c00121{bottom:690.346391pt;}
.y10_c00121{bottom:718.026379pt;}
.yf_c00121{bottom:745.546368pt;}
.ye_c00121{bottom:773.226357pt;}
.yd_c00121{bottom:800.746346pt;}
.yc_c00121{bottom:828.426335pt;}
.yb_c00121{bottom:855.946324pt;}
.y9_c00121{bottom:883.626313pt;}
.ya_c00121{bottom:890.986310pt;}
.y8_c00121{bottom:911.146302pt;}
.y7_c00121{bottom:938.826291pt;}
.y6_c00121{bottom:966.346280pt;}
.y5_c00121{bottom:994.026269pt;}
.y2_c00121{bottom:1028.586255pt;}
.y1_c00121{bottom:1063.146241pt;}
.h6_c00121{height:33.918736pt;}
.h2_c00121{height:39.243734pt;}
.h4_c00121{height:42.063421pt;}
.h1_c00121{height:52.134354pt;}
.h3_c00121{height:62.781225pt;}
.h5_c00121{height:62.812475pt;}
.h0_c00121{height:1122.666667pt;}
.w0_c00121{width:793.333333pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:113.439955pt;}
.x6_c00121{left:126.399949pt;}
.x3_c00121{left:160.639936pt;}
.x2_c00121{left:385.759568pt;}
.x4_c00121{left:593.919762pt;}
.x5_c00121{left:610.239756pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f95c8ec6689a56437b7f24ae.woff2')format("woff");}.ff1_c00122{font-family:ff1_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:ff2_c00122;src:url('chunks/assets/font_e380ef4edf9733a1d622764f.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:0.675781;font-style:normal;font-weight:normal;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_c9ec0b2bfee0678c2cc8b6af.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;}
.m0_c00122{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00122{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls4_c00122{letter-spacing:0.000000px;}
.ls2_c00122{letter-spacing:0.011169px;}
.ls1_c00122{letter-spacing:0.153901px;}
.ls3_c00122{letter-spacing:0.189300px;}
.ls0_c00122{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00122{word-spacing:-17.999993px;}
.ws3_c00122{word-spacing:-14.939994px;}
.ws0_c00122{word-spacing:-12.434276px;}
.ws2_c00122{word-spacing:-9.731165px;}
.ws4_c00122{word-spacing:0.000000px;}
._e_c00122{margin-left:-12.716934px;}
._1_c00122{margin-left:-1.105374px;}
._0_c00122{width:1.478351px;}
._8_c00122{width:2.634304px;}
._2_c00122{width:3.651005px;}
._7_c00122{width:5.834366px;}
._9_c00122{width:7.834983px;}
._c_c00122{width:9.454135px;}
._d_c00122{width:10.657542px;}
._a_c00122{width:11.711851px;}
._b_c00122{width:12.751964px;}
._5_c00122{width:14.703910px;}
._6_c00122{width:15.810151px;}
._3_c00122{width:26.922701px;}
._4_c00122{width:28.024678px;}
.fc0_c00122{color:rgb(0,0,0);}
.fs4_c00122{font-size:38.879984px;}
.fs3_c00122{font-size:48.239981px;}
.fs0_c00122{font-size:59.759976px;}
.fs1_c00122{font-size:66.239974px;}
.fs2_c00122{font-size:71.999971px;}
.y0_c00122{bottom:0.000000px;}
.y4_c00122{bottom:75.720270px;}
.y3_c00122{bottom:113.880254px;}
.y21_c00122{bottom:134.220246px;}
.y20_c00122{bottom:153.299939px;}
.y1f_c00122{bottom:170.579932px;}
.y1e_c00122{bottom:177.419929px;}
.y1d_c00122{bottom:187.859925px;}
.y1c_c00122{bottom:205.139918px;}
.y1b_c00122{bottom:222.419911px;}
.y1a_c00122{bottom:239.519904px;}
.y19_c00122{bottom:246.359901px;}
.y18_c00122{bottom:257.699897px;}
.y17_c00122{bottom:293.519883px;}
.y16_c00122{bottom:321.959871px;}
.y15_c00122{bottom:347.339861px;}
.y13_c00122{bottom:715.259714px;}
.y14_c00122{bottom:723.539711px;}
.y12_c00122{bottom:746.219702px;}
.y11_c00122{bottom:777.359689px;}
.y10_c00122{bottom:808.319677px;}
.yf_c00122{bottom:839.459664px;}
.ye_c00122{bottom:870.419652px;}
.yd_c00122{bottom:901.559639px;}
.yb_c00122{bottom:932.519627px;}
.yc_c00122{bottom:940.799624px;}
.ya_c00122{bottom:963.659615px;}
.y9_c00122{bottom:994.619602px;}
.y8_c00122{bottom:1025.759590px;}
.y7_c00122{bottom:1056.719577px;}
.y6_c00122{bottom:1087.859565px;}
.y5_c00122{bottom:1118.819552px;}
.y2_c00122{bottom:1175.879530px;}
.y1_c00122{bottom:1196.039522px;}
.h8_c00122{height:38.158578px;}
.h2_c00122{height:44.149201px;}
.h4_c00122{height:47.321348px;}
.h6_c00122{height:47.344903px;}
.h9_c00122{height:58.621969px;}
.h1_c00122{height:58.651148px;}
.h7_c00122{height:65.010911px;}
.h3_c00122{height:70.628878px;}
.h5_c00122{height:70.664034px;}
.h0_c00122{height:1263.000000px;}
.w0_c00122{width:892.500000px;}
.x0_c00122{left:0.000000px;}
.x5_c00122{left:127.800262px;}
.xc_c00122{left:129.059948px;}
.xe_c00122{left:142.379943px;}
.x6_c00122{left:180.899928px;}
.x1_c00122{left:181.979927px;}
.x9_c00122{left:220.319912px;}
.xa_c00122{left:238.679905px;}
.x2_c00122{left:329.219408px;}
.x7_c00122{left:389.339844px;}
.x8_c00122{left:407.699837px;}
.xd_c00122{left:410.400394px;}
.x4_c00122{left:434.159826px;}
.xb_c00122{left:572.579771px;}
.x3_c00122{left:765.539694px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls4_c00122{letter-spacing:0.000000pt;}
.ls2_c00122{letter-spacing:0.009928pt;}
.ls1_c00122{letter-spacing:0.136801pt;}
.ls3_c00122{letter-spacing:0.168267pt;}
.ls0_c00122{letter-spacing:0.332694pt;}
.ws1_c00122{word-spacing:-15.999994pt;}
.ws3_c00122{word-spacing:-13.279995pt;}
.ws0_c00122{word-spacing:-11.052689pt;}
.ws2_c00122{word-spacing:-8.649924pt;}
.ws4_c00122{word-spacing:0.000000pt;}
._e_c00122{margin-left:-11.303941pt;}
._1_c00122{margin-left:-0.982555pt;}
._0_c00122{width:1.314090pt;}
._8_c00122{width:2.341604pt;}
._2_c00122{width:3.245338pt;}
._7_c00122{width:5.186103pt;}
._9_c00122{width:6.964429pt;}
._c_c00122{width:8.403675pt;}
._d_c00122{width:9.473371pt;}
._a_c00122{width:10.410535pt;}
._b_c00122{width:11.335079pt;}
._5_c00122{width:13.070143pt;}
._6_c00122{width:14.053468pt;}
._3_c00122{width:23.931289pt;}
._4_c00122{width:24.910825pt;}
.fs4_c00122{font-size:34.559986pt;}
.fs3_c00122{font-size:42.879983pt;}
.fs0_c00122{font-size:53.119979pt;}
.fs1_c00122{font-size:58.879976pt;}
.fs2_c00122{font-size:63.999974pt;}
.y0_c00122{bottom:0.000000pt;}
.y4_c00122{bottom:67.306906pt;}
.y3_c00122{bottom:101.226893pt;}
.y21_c00122{bottom:119.306886pt;}
.y20_c00122{bottom:136.266612pt;}
.y1f_c00122{bottom:151.626606pt;}
.y1e_c00122{bottom:157.706604pt;}
.y1d_c00122{bottom:166.986600pt;}
.y1c_c00122{bottom:182.346594pt;}
.y1b_c00122{bottom:197.706588pt;}
.y1a_c00122{bottom:212.906582pt;}
.y19_c00122{bottom:218.986579pt;}
.y18_c00122{bottom:229.066575pt;}
.y17_c00122{bottom:260.906562pt;}
.y16_c00122{bottom:286.186552pt;}
.y15_c00122{bottom:308.746543pt;}
.y13_c00122{bottom:635.786412pt;}
.y14_c00122{bottom:643.146409pt;}
.y12_c00122{bottom:663.306401pt;}
.y11_c00122{bottom:690.986390pt;}
.y10_c00122{bottom:718.506379pt;}
.yf_c00122{bottom:746.186368pt;}
.ye_c00122{bottom:773.706357pt;}
.yd_c00122{bottom:801.386346pt;}
.yb_c00122{bottom:828.906335pt;}
.yc_c00122{bottom:836.266332pt;}
.ya_c00122{bottom:856.586324pt;}
.y9_c00122{bottom:884.106313pt;}
.y8_c00122{bottom:911.786302pt;}
.y7_c00122{bottom:939.306291pt;}
.y6_c00122{bottom:966.986280pt;}
.y5_c00122{bottom:994.506269pt;}
.y2_c00122{bottom:1045.226249pt;}
.y1_c00122{bottom:1063.146241pt;}
.h8_c00122{height:33.918736pt;}
.h2_c00122{height:39.243734pt;}
.h4_c00122{height:42.063421pt;}
.h6_c00122{height:42.084358pt;}
.h9_c00122{height:52.108417pt;}
.h1_c00122{height:52.134354pt;}
.h7_c00122{height:57.787477pt;}
.h3_c00122{height:62.781225pt;}
.h5_c00122{height:62.812475pt;}
.h0_c00122{height:1122.666667pt;}
.w0_c00122{width:793.333333pt;}
.x0_c00122{left:0.000000pt;}
.x5_c00122{left:113.600233pt;}
.xc_c00122{left:114.719954pt;}
.xe_c00122{left:126.559949pt;}
.x6_c00122{left:160.799936pt;}
.x1_c00122{left:161.759935pt;}
.x9_c00122{left:195.839922pt;}
.xa_c00122{left:212.159915pt;}
.x2_c00122{left:292.639474pt;}
.x7_c00122{left:346.079862pt;}
.x8_c00122{left:362.399855pt;}
.xd_c00122{left:364.800350pt;}
.x4_c00122{left:385.919846pt;}
.xb_c00122{left:508.959796pt;}
.x3_c00122{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1289ace8de1aa4b7f2fd9ef9.woff2')format("woff");}.ff1_c00123{font-family:ff1_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:ff2_c00123;src:url('chunks/assets/font_e380ef4edf9733a1d622764f.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:0.675781;font-style:normal;font-weight:normal;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_f5822eac1e9b4ad4151e8ef2.woff2')format("woff");}.ff3_c00123{font-family:ff3_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;}
.m0_c00123{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls3_c00123{letter-spacing:0.000000px;}
.ls1_c00123{letter-spacing:0.011169px;}
.ls2_c00123{letter-spacing:0.189300px;}
.ls0_c00123{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00123{word-spacing:-12.434276px;}
.ws1_c00123{word-spacing:-9.731165px;}
.ws2_c00123{word-spacing:0.000000px;}
._e_c00123{margin-left:-10.423233px;}
._1_c00123{margin-left:-1.105374px;}
._0_c00123{width:1.195563px;}
._6_c00123{width:2.443614px;}
._2_c00123{width:3.587964px;}
._b_c00123{width:5.138620px;}
._3_c00123{width:6.381104px;}
._7_c00123{width:9.369160px;}
._d_c00123{width:12.025354px;}
._c_c00123{width:13.088123px;}
._a_c00123{width:14.305680px;}
._5_c00123{width:15.607979px;}
._4_c00123{width:16.612319px;}
._8_c00123{width:22.724093px;}
._9_c00123{width:23.765293px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs4_c00123{font-size:38.879984px;}
.fs3_c00123{font-size:48.239981px;}
.fs0_c00123{font-size:59.759976px;}
.fs1_c00123{font-size:66.239974px;}
.fs2_c00123{font-size:71.999971px;}
.y0_c00123{bottom:0.000000px;}
.y4_c00123{bottom:75.899970px;}
.y3_c00123{bottom:114.059954px;}
.y2d_c00123{bottom:133.319947px;}
.y2c_c00123{bottom:150.599940px;}
.y2b_c00123{bottom:157.439937px;}
.y2a_c00123{bottom:167.879933px;}
.y29_c00123{bottom:185.159926px;}
.y28_c00123{bottom:191.999923px;}
.y27_c00123{bottom:202.439919px;}
.y26_c00123{bottom:219.719912px;}
.y25_c00123{bottom:226.559909px;}
.y24_c00123{bottom:237.719905px;}
.y23_c00123{bottom:279.839888px;}
.y21_c00123{bottom:310.979876px;}
.y22_c00123{bottom:319.259872px;}
.y20_c00123{bottom:341.939863px;}
.y1f_c00123{bottom:373.079851px;}
.y1e_c00123{bottom:404.039838px;}
.y1d_c00123{bottom:435.179826px;}
.y1c_c00123{bottom:466.139814px;}
.y1b_c00123{bottom:497.279801px;}
.y1a_c00123{bottom:528.239789px;}
.y19_c00123{bottom:559.379776px;}
.y18_c00123{bottom:590.339764px;}
.y17_c00123{bottom:621.479751px;}
.y16_c00123{bottom:652.439739px;}
.y15_c00123{bottom:683.579727px;}
.y14_c00123{bottom:714.539714px;}
.y13_c00123{bottom:745.679702px;}
.y12_c00123{bottom:776.639689px;}
.y11_c00123{bottom:807.779677px;}
.y10_c00123{bottom:838.739665px;}
.yf_c00123{bottom:869.879652px;}
.yd_c00123{bottom:900.839640px;}
.ye_c00123{bottom:909.119636px;}
.yc_c00123{bottom:931.979627px;}
.yb_c00123{bottom:962.939615px;}
.ya_c00123{bottom:994.079602px;}
.y8_c00123{bottom:1025.039590px;}
.y9_c00123{bottom:1033.319587px;}
.y7_c00123{bottom:1056.179578px;}
.y6_c00123{bottom:1087.139565px;}
.y5_c00123{bottom:1118.279553px;}
.y2_c00123{bottom:1157.159537px;}
.y1_c00123{bottom:1196.039522px;}
.h7_c00123{height:38.158578px;}
.h2_c00123{height:44.149201px;}
.h6_c00123{height:47.321348px;}
.h4_c00123{height:47.344903px;}
.h8_c00123{height:58.621969px;}
.h1_c00123{height:58.651148px;}
.h5_c00123{height:70.628878px;}
.h3_c00123{height:70.664034px;}
.h0_c00123{height:1263.000000px;}
.w0_c00123{width:892.500000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:127.619949px;}
.xa_c00123{left:142.199943px;}
.x3_c00123{left:180.719928px;}
.x6_c00123{left:329.579868px;}
.x7_c00123{left:347.939861px;}
.x2_c00123{left:433.979514px;}
.x8_c00123{left:493.199803px;}
.x9_c00123{left:511.559795px;}
.x4_c00123{left:518.399793px;}
.x5_c00123{left:536.759785px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls3_c00123{letter-spacing:0.000000pt;}
.ls1_c00123{letter-spacing:0.009928pt;}
.ls2_c00123{letter-spacing:0.168267pt;}
.ls0_c00123{letter-spacing:0.332694pt;}
.ws0_c00123{word-spacing:-11.052689pt;}
.ws1_c00123{word-spacing:-8.649924pt;}
.ws2_c00123{word-spacing:0.000000pt;}
._e_c00123{margin-left:-9.265096pt;}
._1_c00123{margin-left:-0.982555pt;}
._0_c00123{width:1.062723pt;}
._6_c00123{width:2.172102pt;}
._2_c00123{width:3.189302pt;}
._b_c00123{width:4.567662pt;}
._3_c00123{width:5.672092pt;}
._7_c00123{width:8.328143pt;}
._d_c00123{width:10.689204pt;}
._c_c00123{width:11.633887pt;}
._a_c00123{width:12.716160pt;}
._5_c00123{width:13.873759pt;}
._4_c00123{width:14.766506pt;}
._8_c00123{width:20.199194pt;}
._9_c00123{width:21.124705pt;}
.fs4_c00123{font-size:34.559986pt;}
.fs3_c00123{font-size:42.879983pt;}
.fs0_c00123{font-size:53.119979pt;}
.fs1_c00123{font-size:58.879976pt;}
.fs2_c00123{font-size:63.999974pt;}
.y0_c00123{bottom:0.000000pt;}
.y4_c00123{bottom:67.466640pt;}
.y3_c00123{bottom:101.386626pt;}
.y2d_c00123{bottom:118.506619pt;}
.y2c_c00123{bottom:133.866613pt;}
.y2b_c00123{bottom:139.946611pt;}
.y2a_c00123{bottom:149.226607pt;}
.y29_c00123{bottom:164.586601pt;}
.y28_c00123{bottom:170.666598pt;}
.y27_c00123{bottom:179.946595pt;}
.y26_c00123{bottom:195.306589pt;}
.y25_c00123{bottom:201.386586pt;}
.y24_c00123{bottom:211.306582pt;}
.y23_c00123{bottom:248.746567pt;}
.y21_c00123{bottom:276.426556pt;}
.y22_c00123{bottom:283.786553pt;}
.y20_c00123{bottom:303.946545pt;}
.y1f_c00123{bottom:331.626534pt;}
.y1e_c00123{bottom:359.146523pt;}
.y1d_c00123{bottom:386.826512pt;}
.y1c_c00123{bottom:414.346501pt;}
.y1b_c00123{bottom:442.026490pt;}
.y1a_c00123{bottom:469.546479pt;}
.y19_c00123{bottom:497.226468pt;}
.y18_c00123{bottom:524.746457pt;}
.y17_c00123{bottom:552.426446pt;}
.y16_c00123{bottom:579.946435pt;}
.y15_c00123{bottom:607.626424pt;}
.y14_c00123{bottom:635.146413pt;}
.y13_c00123{bottom:662.826402pt;}
.y12_c00123{bottom:690.346391pt;}
.y11_c00123{bottom:718.026379pt;}
.y10_c00123{bottom:745.546368pt;}
.yf_c00123{bottom:773.226357pt;}
.yd_c00123{bottom:800.746346pt;}
.ye_c00123{bottom:808.106343pt;}
.yc_c00123{bottom:828.426335pt;}
.yb_c00123{bottom:855.946324pt;}
.ya_c00123{bottom:883.626313pt;}
.y8_c00123{bottom:911.146302pt;}
.y9_c00123{bottom:918.506299pt;}
.y7_c00123{bottom:938.826291pt;}
.y6_c00123{bottom:966.346280pt;}
.y5_c00123{bottom:994.026269pt;}
.y2_c00123{bottom:1028.586255pt;}
.y1_c00123{bottom:1063.146241pt;}
.h7_c00123{height:33.918736pt;}
.h2_c00123{height:39.243734pt;}
.h6_c00123{height:42.063421pt;}
.h4_c00123{height:42.084358pt;}
.h8_c00123{height:52.108417pt;}
.h1_c00123{height:52.134354pt;}
.h5_c00123{height:62.781225pt;}
.h3_c00123{height:62.812475pt;}
.h0_c00123{height:1122.666667pt;}
.w0_c00123{width:793.333333pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:113.439955pt;}
.xa_c00123{left:126.399949pt;}
.x3_c00123{left:160.639936pt;}
.x6_c00123{left:292.959883pt;}
.x7_c00123{left:309.279876pt;}
.x2_c00123{left:385.759568pt;}
.x8_c00123{left:438.399825pt;}
.x9_c00123{left:454.719818pt;}
.x4_c00123{left:460.799816pt;}
.x5_c00123{left:477.119809pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_17269ff3efe64a693957a469.woff2')format("woff");}.ff1_c00124{font-family:ff1_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:ff2_c00124;src:url('chunks/assets/font_1ccdf4f6f84b11f367c4a38d.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:0.675781;font-style:normal;font-weight:normal;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_ee5291a691824616a81806d5.woff2')format("woff");}.ff3_c00124{font-family:ff3_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:ff4_c00124;src:url('chunks/assets/font_4f1dc55ce7d615dc569be325.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.311035;font-style:normal;font-weight:normal;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_823586d70ccc1573be95e151.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls3_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:0.011169px;}
.ls2_c00124{letter-spacing:0.189300px;}
.ls0_c00124{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00124{word-spacing:-12.434276px;}
.ws1_c00124{word-spacing:-9.731165px;}
.ws2_c00124{word-spacing:0.000000px;}
._f_c00124{margin-left:-9.467781px;}
._1_c00124{margin-left:-1.105374px;}
._0_c00124{width:1.478351px;}
._d_c00124{width:2.523450px;}
._4_c00124{width:3.621091px;}
._8_c00124{width:5.425653px;}
._6_c00124{width:6.564052px;}
._a_c00124{width:7.894864px;}
._c_c00124{width:9.049596px;}
._b_c00124{width:10.072165px;}
._e_c00124{width:12.027530px;}
._2_c00124{width:14.147448px;}
._3_c00124{width:15.250529px;}
._9_c00124{width:16.417395px;}
._7_c00124{width:19.105096px;}
._5_c00124{width:20.157728px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs4_c00124{font-size:38.879984px;}
.fs3_c00124{font-size:48.239981px;}
.fs0_c00124{font-size:59.759976px;}
.fs1_c00124{font-size:66.239974px;}
.fs2_c00124{font-size:71.999971px;}
.y0_c00124{bottom:0.000000px;}
.y4_c00124{bottom:75.900270px;}
.y3_c00124{bottom:114.060254px;}
.y28_c00124{bottom:134.400246px;}
.y27_c00124{bottom:153.479939px;}
.y26_c00124{bottom:170.759932px;}
.y25_c00124{bottom:177.599929px;}
.y24_c00124{bottom:188.939924px;}
.y23_c00124{bottom:219.359912px;}
.y22_c00124{bottom:250.319900px;}
.y21_c00124{bottom:281.459887px;}
.y20_c00124{bottom:312.419875px;}
.y1f_c00124{bottom:343.559863px;}
.y1e_c00124{bottom:374.519850px;}
.y1d_c00124{bottom:405.659838px;}
.y1c_c00124{bottom:436.619825px;}
.y1b_c00124{bottom:467.759813px;}
.y1a_c00124{bottom:498.719801px;}
.y19_c00124{bottom:529.859788px;}
.y18_c00124{bottom:560.819776px;}
.y17_c00124{bottom:591.959763px;}
.y16_c00124{bottom:622.919751px;}
.y15_c00124{bottom:654.059738px;}
.y14_c00124{bottom:685.019726px;}
.y13_c00124{bottom:716.159714px;}
.y12_c00124{bottom:747.119701px;}
.y11_c00124{bottom:778.259689px;}
.y10_c00124{bottom:809.219676px;}
.yf_c00124{bottom:848.099661px;}
.ye_c00124{bottom:876.899649px;}
.yd_c00124{bottom:905.339638px;}
.yc_c00124{bottom:933.779626px;}
.yb_c00124{bottom:963.839614px;}
.y9_c00124{bottom:994.799602px;}
.ya_c00124{bottom:1003.079599px;}
.y8_c00124{bottom:1025.939590px;}
.y7_c00124{bottom:1056.899577px;}
.y6_c00124{bottom:1088.039565px;}
.y5_c00124{bottom:1118.999552px;}
.y2_c00124{bottom:1176.059530px;}
.y1_c00124{bottom:1196.219522px;}
.h7_c00124{height:38.158578px;}
.h2_c00124{height:44.149201px;}
.h4_c00124{height:47.344903px;}
.h8_c00124{height:58.621969px;}
.h1_c00124{height:58.651148px;}
.h6_c00124{height:66.757473px;}
.h5_c00124{height:70.628878px;}
.h3_c00124{height:70.664034px;}
.h0_c00124{height:1263.000000px;}
.w0_c00124{width:892.500000px;}
.x0_c00124{left:0.000000px;}
.x5_c00124{left:127.620262px;}
.x9_c00124{left:142.199943px;}
.x6_c00124{left:180.719928px;}
.x1_c00124{left:181.799927px;}
.x2_c00124{left:329.039408px;}
.x4_c00124{left:433.979826px;}
.x7_c00124{left:741.959703px;}
.x8_c00124{left:760.319696px;}
.x3_c00124{left:765.359694px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls3_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:0.009928pt;}
.ls2_c00124{letter-spacing:0.168267pt;}
.ls0_c00124{letter-spacing:0.332694pt;}
.ws0_c00124{word-spacing:-11.052689pt;}
.ws1_c00124{word-spacing:-8.649924pt;}
.ws2_c00124{word-spacing:0.000000pt;}
._f_c00124{margin-left:-8.415806pt;}
._1_c00124{margin-left:-0.982555pt;}
._0_c00124{width:1.314090pt;}
._d_c00124{width:2.243067pt;}
._4_c00124{width:3.218747pt;}
._8_c00124{width:4.822802pt;}
._6_c00124{width:5.834713pt;}
._a_c00124{width:7.017657pt;}
._c_c00124{width:8.044086pt;}
._b_c00124{width:8.953036pt;}
._e_c00124{width:10.691137pt;}
._2_c00124{width:12.575509pt;}
._3_c00124{width:13.556025pt;}
._9_c00124{width:14.593240pt;}
._7_c00124{width:16.982307pt;}
._5_c00124{width:17.917980pt;}
.fs4_c00124{font-size:34.559986pt;}
.fs3_c00124{font-size:42.879983pt;}
.fs0_c00124{font-size:53.119979pt;}
.fs1_c00124{font-size:58.879976pt;}
.fs2_c00124{font-size:63.999974pt;}
.y0_c00124{bottom:0.000000pt;}
.y4_c00124{bottom:67.466906pt;}
.y3_c00124{bottom:101.386893pt;}
.y28_c00124{bottom:119.466886pt;}
.y27_c00124{bottom:136.426612pt;}
.y26_c00124{bottom:151.786606pt;}
.y25_c00124{bottom:157.866604pt;}
.y24_c00124{bottom:167.946599pt;}
.y23_c00124{bottom:194.986589pt;}
.y22_c00124{bottom:222.506578pt;}
.y21_c00124{bottom:250.186567pt;}
.y20_c00124{bottom:277.706556pt;}
.y1f_c00124{bottom:305.386545pt;}
.y1e_c00124{bottom:332.906534pt;}
.y1d_c00124{bottom:360.586522pt;}
.y1c_c00124{bottom:388.106511pt;}
.y1b_c00124{bottom:415.786500pt;}
.y1a_c00124{bottom:443.306489pt;}
.y19_c00124{bottom:470.986478pt;}
.y18_c00124{bottom:498.506467pt;}
.y17_c00124{bottom:526.186456pt;}
.y16_c00124{bottom:553.706445pt;}
.y15_c00124{bottom:581.386434pt;}
.y14_c00124{bottom:608.906423pt;}
.y13_c00124{bottom:636.586412pt;}
.y12_c00124{bottom:664.106401pt;}
.y11_c00124{bottom:691.786390pt;}
.y10_c00124{bottom:719.306379pt;}
.yf_c00124{bottom:753.866365pt;}
.ye_c00124{bottom:779.466355pt;}
.yd_c00124{bottom:804.746345pt;}
.yc_c00124{bottom:830.026335pt;}
.yb_c00124{bottom:856.746324pt;}
.y9_c00124{bottom:884.266313pt;}
.ya_c00124{bottom:891.626310pt;}
.y8_c00124{bottom:911.946302pt;}
.y7_c00124{bottom:939.466291pt;}
.y6_c00124{bottom:967.146280pt;}
.y5_c00124{bottom:994.666269pt;}
.y2_c00124{bottom:1045.386249pt;}
.y1_c00124{bottom:1063.306241pt;}
.h7_c00124{height:33.918736pt;}
.h2_c00124{height:39.243734pt;}
.h4_c00124{height:42.084358pt;}
.h8_c00124{height:52.108417pt;}
.h1_c00124{height:52.134354pt;}
.h6_c00124{height:59.339976pt;}
.h5_c00124{height:62.781225pt;}
.h3_c00124{height:62.812475pt;}
.h0_c00124{height:1122.666667pt;}
.w0_c00124{width:793.333333pt;}
.x0_c00124{left:0.000000pt;}
.x5_c00124{left:113.440233pt;}
.x9_c00124{left:126.399949pt;}
.x6_c00124{left:160.639936pt;}
.x1_c00124{left:161.599935pt;}
.x2_c00124{left:292.479474pt;}
.x4_c00124{left:385.759846pt;}
.x7_c00124{left:659.519736pt;}
.x8_c00124{left:675.839730pt;}
.x3_c00124{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1eafdbdc1b0ebf770348f1c3.woff2')format("woff");}.ff1_c00125{font-family:ff1_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:ff2_c00125;src:url('chunks/assets/font_ee283cdc41f4c6ad69699f58.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:0.675781;font-style:normal;font-weight:normal;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_f6a6e8e08c5c1be854822aaa.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_ede12a9d803d8adf0e2e534e.woff2')format("woff");}.ff4_c00125{font-family:ff4_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;}
@font-face{font-family:ff5_c00125;src:url('chunks/assets/font_26cbb662b352c8780cde40d2.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:0.698242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls3_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:0.021253px;}
.ls2_c00125{letter-spacing:0.021282px;}
.ls0_c00125{letter-spacing:10.816976px;}
.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.021275px;}
.ws0_c00125{word-spacing:-17.999993px;}
.ws2_c00125{word-spacing:0.000000px;}
._e_c00125{margin-left:-2.423581px;}
._1_c00125{margin-left:-1.105374px;}
._0_c00125{width:1.195563px;}
._2_c00125{width:2.837067px;}
._6_c00125{width:3.963566px;}
._7_c00125{width:5.119703px;}
._8_c00125{width:6.154256px;}
._9_c00125{width:7.203849px;}
._3_c00125{width:8.313227px;}
._4_c00125{width:9.602994px;}
._5_c00125{width:11.506624px;}
._f_c00125{width:12.530758px;}
._b_c00125{width:19.007689px;}
._a_c00125{width:20.130607px;}
._c_c00125{width:26.591898px;}
._d_c00125{width:27.837963px;}
.fc1_c00125{color:rgb(0,128,0);}
.fc0_c00125{color:rgb(0,0,0);}
.fs0_c00125{font-size:59.759976px;}
.fs1_c00125{font-size:66.239974px;}
.fs2_c00125{font-size:71.999971px;}
.y0_c00125{bottom:0.000000px;}
.y4_c00125{bottom:75.899970px;}
.y3_c00125{bottom:114.059954px;}
.y22_c00125{bottom:214.139914px;}
.y21_c00125{bottom:245.279902px;}
.y20_c00125{bottom:279.839888px;}
.y1f_c00125{bottom:310.979876px;}
.y1e_c00125{bottom:341.939863px;}
.y1d_c00125{bottom:373.079851px;}
.y1c_c00125{bottom:404.039838px;}
.y1b_c00125{bottom:435.179826px;}
.y1a_c00125{bottom:466.139814px;}
.y19_c00125{bottom:497.279801px;}
.y18_c00125{bottom:528.239789px;}
.y17_c00125{bottom:559.379776px;}
.y16_c00125{bottom:590.339764px;}
.y15_c00125{bottom:621.479751px;}
.y14_c00125{bottom:652.439739px;}
.y13_c00125{bottom:683.579727px;}
.y12_c00125{bottom:714.539714px;}
.y11_c00125{bottom:745.679702px;}
.y10_c00125{bottom:776.639689px;}
.yf_c00125{bottom:807.779677px;}
.ye_c00125{bottom:838.739665px;}
.yd_c00125{bottom:869.879652px;}
.yc_c00125{bottom:900.839640px;}
.yb_c00125{bottom:931.979627px;}
.ya_c00125{bottom:962.939615px;}
.y9_c00125{bottom:994.079602px;}
.y8_c00125{bottom:1025.039590px;}
.y7_c00125{bottom:1056.179578px;}
.y6_c00125{bottom:1087.139565px;}
.y5_c00125{bottom:1118.279553px;}
.y2_c00125{bottom:1157.159537px;}
.y1_c00125{bottom:1196.039522px;}
.h2_c00125{height:44.149201px;}
.h1_c00125{height:58.651148px;}
.h3_c00125{height:70.664034px;}
.h4_c00125{height:72.562471px;}
.h0_c00125{height:1263.000000px;}
.w0_c00125{width:892.500000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:127.619949px;}
.x3_c00125{left:180.720080px;}
.x2_c00125{left:433.979514px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls3_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:0.018891pt;}
.ls2_c00125{letter-spacing:0.018917pt;}
.ls0_c00125{letter-spacing:9.615089pt;}
.ws1_c00125{word-spacing:-16.018911pt;}
.ws0_c00125{word-spacing:-15.999994pt;}
.ws2_c00125{word-spacing:0.000000pt;}
._e_c00125{margin-left:-2.154294pt;}
._1_c00125{margin-left:-0.982555pt;}
._0_c00125{width:1.062723pt;}
._2_c00125{width:2.521838pt;}
._6_c00125{width:3.523170pt;}
._7_c00125{width:4.550847pt;}
._8_c00125{width:5.470450pt;}
._9_c00125{width:6.403421pt;}
._3_c00125{width:7.389535pt;}
._4_c00125{width:8.535995pt;}
._5_c00125{width:10.228110pt;}
._f_c00125{width:11.138452pt;}
._b_c00125{width:16.895723pt;}
._a_c00125{width:17.893872pt;}
._c_c00125{width:23.637242pt;}
._d_c00125{width:24.744856pt;}
.fs0_c00125{font-size:53.119979pt;}
.fs1_c00125{font-size:58.879976pt;}
.fs2_c00125{font-size:63.999974pt;}
.y0_c00125{bottom:0.000000pt;}
.y4_c00125{bottom:67.466640pt;}
.y3_c00125{bottom:101.386626pt;}
.y22_c00125{bottom:190.346591pt;}
.y21_c00125{bottom:218.026579pt;}
.y20_c00125{bottom:248.746567pt;}
.y1f_c00125{bottom:276.426556pt;}
.y1e_c00125{bottom:303.946545pt;}
.y1d_c00125{bottom:331.626534pt;}
.y1c_c00125{bottom:359.146523pt;}
.y1b_c00125{bottom:386.826512pt;}
.y1a_c00125{bottom:414.346501pt;}
.y19_c00125{bottom:442.026490pt;}
.y18_c00125{bottom:469.546479pt;}
.y17_c00125{bottom:497.226468pt;}
.y16_c00125{bottom:524.746457pt;}
.y15_c00125{bottom:552.426446pt;}
.y14_c00125{bottom:579.946435pt;}
.y13_c00125{bottom:607.626424pt;}
.y12_c00125{bottom:635.146413pt;}
.y11_c00125{bottom:662.826402pt;}
.y10_c00125{bottom:690.346391pt;}
.yf_c00125{bottom:718.026379pt;}
.ye_c00125{bottom:745.546368pt;}
.yd_c00125{bottom:773.226357pt;}
.yc_c00125{bottom:800.746346pt;}
.yb_c00125{bottom:828.426335pt;}
.ya_c00125{bottom:855.946324pt;}
.y9_c00125{bottom:883.626313pt;}
.y8_c00125{bottom:911.146302pt;}
.y7_c00125{bottom:938.826291pt;}
.y6_c00125{bottom:966.346280pt;}
.y5_c00125{bottom:994.026269pt;}
.y2_c00125{bottom:1028.586255pt;}
.y1_c00125{bottom:1063.146241pt;}
.h2_c00125{height:39.243734pt;}
.h1_c00125{height:52.134354pt;}
.h3_c00125{height:62.812475pt;}
.h4_c00125{height:64.499974pt;}
.h0_c00125{height:1122.666667pt;}
.w0_c00125{width:793.333333pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:113.439955pt;}
.x3_c00125{left:160.640071pt;}
.x2_c00125{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b18969fc8ed146a000fa2209.woff2')format("woff");}.ff1_c00126{font-family:ff1_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:ff2_c00126;src:url('chunks/assets/font_4795c79bdb8a54531e145b64.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:0.675781;font-style:normal;font-weight:normal;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_1f95c2f39868de54a0aaff8f.woff2')format("woff");}.ff3_c00126{font-family:ff3_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:ff4_c00126;src:url('chunks/assets/font_65c8184425c15f7a672a87e5.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:0.669434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls4_c00126{letter-spacing:0.000000px;}
.ls2_c00126{letter-spacing:0.011169px;}
.ls3_c00126{letter-spacing:0.189300px;}
.ls0_c00126{letter-spacing:0.374281px;}
.ls1_c00126{letter-spacing:24.505070px;}
.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;}
}
.ws1_c00126{word-spacing:-17.999993px;}
.ws0_c00126{word-spacing:-12.434276px;}
.ws3_c00126{word-spacing:-9.731165px;}
.ws2_c00126{word-spacing:-8.786876px;}
.ws4_c00126{word-spacing:0.000000px;}
._d_c00126{margin-left:-9.453667px;}
._1_c00126{margin-left:-1.105374px;}
._0_c00126{width:1.478351px;}
._3_c00126{width:2.505965px;}
._2_c00126{width:3.516165px;}
._b_c00126{width:5.411538px;}
._5_c00126{width:8.425531px;}
._e_c00126{width:9.449546px;}
._7_c00126{width:10.565472px;}
._6_c00126{width:12.031135px;}
._c_c00126{width:16.031240px;}
._a_c00126{width:23.727109px;}
._9_c00126{width:24.796741px;}
._4_c00126{width:29.434710px;}
._8_c00126{width:158.648711px;}
.fc1_c00126{color:rgb(255,0,0);}
.fc0_c00126{color:rgb(0,0,0);}
.fs4_c00126{font-size:38.879984px;}
.fs3_c00126{font-size:48.239981px;}
.fs0_c00126{font-size:59.759976px;}
.fs1_c00126{font-size:66.239974px;}
.fs2_c00126{font-size:71.999971px;}
.y0_c00126{bottom:0.000000px;}
.y4_c00126{bottom:75.900270px;}
.y3_c00126{bottom:114.060254px;}
.y31_c00126{bottom:133.320247px;}
.y30_c00126{bottom:140.160244px;}
.y2f_c00126{bottom:150.599940px;}
.y2e_c00126{bottom:167.879933px;}
.y2d_c00126{bottom:174.719930px;}
.y2c_c00126{bottom:206.219918px;}
.y2b_c00126{bottom:223.319911px;}
.y2a_c00126{bottom:230.159908px;}
.y29_c00126{bottom:270.659892px;}
.y28_c00126{bottom:278.219889px;}
.y27_c00126{bottom:297.479881px;}
.y26_c00126{bottom:305.039878px;}
.y25_c00126{bottom:339.419864px;}
.y24_c00126{bottom:346.979861px;}
.y23_c00126{bottom:358.319857px;}
.y21_c00126{bottom:398.639841px;}
.y22_c00126{bottom:406.919837px;}
.y20_c00126{bottom:429.599828px;}
.y1f_c00126{bottom:460.739816px;}
.y1e_c00126{bottom:491.699803px;}
.y1d_c00126{bottom:522.839791px;}
.y1c_c00126{bottom:553.799778px;}
.y1b_c00126{bottom:584.939766px;}
.y19_c00126{bottom:614.999754px;}
.y1a_c00126{bottom:623.279751px;}
.y18_c00126{bottom:646.139742px;}
.y17_c00126{bottom:677.099729px;}
.y16_c00126{bottom:708.239717px;}
.y15_c00126{bottom:739.199704px;}
.y14_c00126{bottom:770.339692px;}
.y13_c00126{bottom:801.299679px;}
.y11_c00126{bottom:832.439667px;}
.y12_c00126{bottom:840.719664px;}
.y10_c00126{bottom:863.399655px;}
.yf_c00126{bottom:894.539642px;}
.ye_c00126{bottom:925.499630px;}
.yc_c00126{bottom:960.239616px;}
.yd_c00126{bottom:968.519613px;}
.yb_c00126{bottom:991.199604px;}
.y9_c00126{bottom:1022.339591px;}
.ya_c00126{bottom:1030.619588px;}
.y8_c00126{bottom:1053.299579px;}
.y6_c00126{bottom:1088.039565px;}
.y7_c00126{bottom:1096.319561px;}
.y5_c00126{bottom:1118.999552px;}
.y2_c00126{bottom:1176.059530px;}
.y1_c00126{bottom:1196.219522px;}
.h8_c00126{height:25.913662px;}
.h9_c00126{height:38.158578px;}
.h2_c00126{height:44.149201px;}
.h6_c00126{height:47.321348px;}
.h4_c00126{height:47.344903px;}
.ha_c00126{height:58.621969px;}
.h1_c00126{height:58.651148px;}
.h5_c00126{height:70.628878px;}
.h3_c00126{height:70.664034px;}
.h7_c00126{height:72.562471px;}
.h0_c00126{height:1263.000000px;}
.w0_c00126{width:892.500000px;}
.x0_c00126{left:0.000000px;}
.x5_c00126{left:127.620262px;}
.x13_c00126{left:142.199943px;}
.x8_c00126{left:180.719928px;}
.x1_c00126{left:181.799927px;}
.x16_c00126{left:223.919910px;}
.xf_c00126{left:225.179910px;}
.x10_c00126{left:243.539903px;}
.x2_c00126{left:329.039408px;}
.x6_c00126{left:428.039829px;}
.x9_c00126{left:430.379828px;}
.x4_c00126{left:433.979826px;}
.x7_c00126{left:446.399821px;}
.xa_c00126{left:448.739821px;}
.x14_c00126{left:557.459777px;}
.xd_c00126{left:633.779746px;}
.x15_c00126{left:646.739741px;}
.xe_c00126{left:652.139739px;}
.x11_c00126{left:671.399731px;}
.xb_c00126{left:673.379731px;}
.x12_c00126{left:689.759724px;}
.xc_c00126{left:691.739723px;}
.x3_c00126{left:765.359694px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls4_c00126{letter-spacing:0.000000pt;}
.ls2_c00126{letter-spacing:0.009928pt;}
.ls3_c00126{letter-spacing:0.168267pt;}
.ls0_c00126{letter-spacing:0.332694pt;}
.ls1_c00126{letter-spacing:21.782285pt;}
.ws1_c00126{word-spacing:-15.999994pt;}
.ws0_c00126{word-spacing:-11.052689pt;}
.ws3_c00126{word-spacing:-8.649924pt;}
.ws2_c00126{word-spacing:-7.810557pt;}
.ws4_c00126{word-spacing:0.000000pt;}
._d_c00126{margin-left:-8.403259pt;}
._1_c00126{margin-left:-0.982555pt;}
._0_c00126{width:1.314090pt;}
._3_c00126{width:2.227524pt;}
._2_c00126{width:3.125480pt;}
._b_c00126{width:4.810256pt;}
._5_c00126{width:7.489361pt;}
._e_c00126{width:8.399596pt;}
._7_c00126{width:9.391530pt;}
._6_c00126{width:10.694343pt;}
._c_c00126{width:14.249991pt;}
._a_c00126{width:21.090763pt;}
._9_c00126{width:22.041548pt;}
._4_c00126{width:26.164187pt;}
._8_c00126{width:141.021076pt;}
.fs4_c00126{font-size:34.559986pt;}
.fs3_c00126{font-size:42.879983pt;}
.fs0_c00126{font-size:53.119979pt;}
.fs1_c00126{font-size:58.879976pt;}
.fs2_c00126{font-size:63.999974pt;}
.y0_c00126{bottom:0.000000pt;}
.y4_c00126{bottom:67.466906pt;}
.y3_c00126{bottom:101.386893pt;}
.y31_c00126{bottom:118.506886pt;}
.y30_c00126{bottom:124.586883pt;}
.y2f_c00126{bottom:133.866613pt;}
.y2e_c00126{bottom:149.226607pt;}
.y2d_c00126{bottom:155.306605pt;}
.y2c_c00126{bottom:183.306593pt;}
.y2b_c00126{bottom:198.506587pt;}
.y2a_c00126{bottom:204.586585pt;}
.y29_c00126{bottom:240.586570pt;}
.y28_c00126{bottom:247.306568pt;}
.y27_c00126{bottom:264.426561pt;}
.y26_c00126{bottom:271.146558pt;}
.y25_c00126{bottom:301.706546pt;}
.y24_c00126{bottom:308.426543pt;}
.y23_c00126{bottom:318.506539pt;}
.y21_c00126{bottom:354.346525pt;}
.y22_c00126{bottom:361.706522pt;}
.y20_c00126{bottom:381.866514pt;}
.y1f_c00126{bottom:409.546503pt;}
.y1e_c00126{bottom:437.066492pt;}
.y1d_c00126{bottom:464.746481pt;}
.y1c_c00126{bottom:492.266470pt;}
.y1b_c00126{bottom:519.946459pt;}
.y19_c00126{bottom:546.666448pt;}
.y1a_c00126{bottom:554.026445pt;}
.y18_c00126{bottom:574.346437pt;}
.y17_c00126{bottom:601.866426pt;}
.y16_c00126{bottom:629.546415pt;}
.y15_c00126{bottom:657.066404pt;}
.y14_c00126{bottom:684.746393pt;}
.y13_c00126{bottom:712.266382pt;}
.y11_c00126{bottom:739.946371pt;}
.y12_c00126{bottom:747.306368pt;}
.y10_c00126{bottom:767.466360pt;}
.yf_c00126{bottom:795.146349pt;}
.ye_c00126{bottom:822.666338pt;}
.yc_c00126{bottom:853.546325pt;}
.yd_c00126{bottom:860.906322pt;}
.yb_c00126{bottom:881.066314pt;}
.y9_c00126{bottom:908.746303pt;}
.ya_c00126{bottom:916.106300pt;}
.y8_c00126{bottom:936.266292pt;}
.y6_c00126{bottom:967.146280pt;}
.y7_c00126{bottom:974.506277pt;}
.y5_c00126{bottom:994.666269pt;}
.y2_c00126{bottom:1045.386249pt;}
.y1_c00126{bottom:1063.306241pt;}
.h8_c00126{height:23.034366pt;}
.h9_c00126{height:33.918736pt;}
.h2_c00126{height:39.243734pt;}
.h6_c00126{height:42.063421pt;}
.h4_c00126{height:42.084358pt;}
.ha_c00126{height:52.108417pt;}
.h1_c00126{height:52.134354pt;}
.h5_c00126{height:62.781225pt;}
.h3_c00126{height:62.812475pt;}
.h7_c00126{height:64.499974pt;}
.h0_c00126{height:1122.666667pt;}
.w0_c00126{width:793.333333pt;}
.x0_c00126{left:0.000000pt;}
.x5_c00126{left:113.440233pt;}
.x13_c00126{left:126.399949pt;}
.x8_c00126{left:160.639936pt;}
.x1_c00126{left:161.599935pt;}
.x16_c00126{left:199.039920pt;}
.xf_c00126{left:200.159920pt;}
.x10_c00126{left:216.479913pt;}
.x2_c00126{left:292.479474pt;}
.x6_c00126{left:380.479848pt;}
.x9_c00126{left:382.559847pt;}
.x4_c00126{left:385.759846pt;}
.x7_c00126{left:396.799841pt;}
.xa_c00126{left:398.879840pt;}
.x14_c00126{left:495.519802pt;}
.xd_c00126{left:563.359775pt;}
.x15_c00126{left:574.879770pt;}
.xe_c00126{left:579.679768pt;}
.x11_c00126{left:596.799761pt;}
.xb_c00126{left:598.559761pt;}
.x12_c00126{left:613.119755pt;}
.xc_c00126{left:614.879754pt;}
.x3_c00126{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9bb18fbef323df8311dea4a9.woff2')format("woff");}.ff1_c00127{font-family:ff1_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:ff2_c00127;src:url('chunks/assets/font_d03e6a1dafbf7b53b1cdfff6.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:0.675781;font-style:normal;font-weight:normal;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_607228926b24e16a63f9540e.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_e7888b2c582af8aba9ce99db.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls3_c00127{letter-spacing:0.000000px;}
.ls2_c00127{letter-spacing:0.011169px;}
.ls1_c00127{letter-spacing:0.012620px;}
.ls0_c00127{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00127{word-spacing:-17.999993px;}
.ws2_c00127{word-spacing:-16.559993px;}
.ws0_c00127{word-spacing:-12.434276px;}
.ws3_c00127{word-spacing:-10.452616px;}
.ws4_c00127{word-spacing:-9.731165px;}
.ws5_c00127{word-spacing:-9.437756px;}
.ws6_c00127{word-spacing:0.000000px;}
._d_c00127{margin-left:-3.258715px;}
._1_c00127{margin-left:-1.105374px;}
._0_c00127{width:1.195563px;}
._2_c00127{width:2.355572px;}
._4_c00127{width:4.242212px;}
._5_c00127{width:5.526040px;}
._8_c00127{width:6.945781px;}
._a_c00127{width:7.970782px;}
._7_c00127{width:9.485992px;}
._c_c00127{width:10.834013px;}
._b_c00127{width:12.106095px;}
._6_c00127{width:16.332400px;}
._e_c00127{width:18.200379px;}
._3_c00127{width:20.516672px;}
._9_c00127{width:21.522178px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs5_c00127{font-size:38.879984px;}
.fs4_c00127{font-size:41.759983px;}
.fs3_c00127{font-size:48.239981px;}
.fs0_c00127{font-size:59.759976px;}
.fs1_c00127{font-size:66.239974px;}
.fs2_c00127{font-size:71.999971px;}
.y0_c00127{bottom:0.000000px;}
.y4_c00127{bottom:75.899970px;}
.y3_c00127{bottom:114.059954px;}
.y32_c00127{bottom:134.400246px;}
.y31_c00127{bottom:153.479939px;}
.y30_c00127{bottom:170.759932px;}
.y2f_c00127{bottom:177.599929px;}
.y2e_c00127{bottom:188.039925px;}
.y2d_c00127{bottom:206.219918px;}
.y2c_c00127{bottom:213.779914px;}
.y2b_c00127{bottom:235.019906px;}
.y2a_c00127{bottom:242.579903px;}
.y29_c00127{bottom:263.819894px;}
.y28_c00127{bottom:271.379891px;}
.y27_c00127{bottom:282.899887px;}
.y26_c00127{bottom:300.179880px;}
.y25_c00127{bottom:307.019877px;}
.y24_c00127{bottom:317.459873px;}
.y23_c00127{bottom:335.639866px;}
.y21_c00127{bottom:393.779842px;}
.y22_c00127{bottom:402.059839px;}
.y20_c00127{bottom:424.739830px;}
.y1e_c00127{bottom:455.879818px;}
.y1f_c00127{bottom:464.159814px;}
.y1d_c00127{bottom:486.839805px;}
.y1b_c00127{bottom:516.719793px;}
.y1c_c00127{bottom:524.279790px;}
.y1a_c00127{bottom:545.339782px;}
.y19_c00127{bottom:573.779770px;}
.y18_c00127{bottom:602.219759px;}
.y17_c00127{bottom:630.659748px;}
.y16_c00127{bottom:659.099736px;}
.y15_c00127{bottom:687.539725px;}
.y14_c00127{bottom:715.979714px;}
.y12_c00127{bottom:745.679702px;}
.y13_c00127{bottom:753.959698px;}
.y11_c00127{bottom:776.639689px;}
.y10_c00127{bottom:807.779677px;}
.ye_c00127{bottom:838.739665px;}
.yf_c00127{bottom:847.019661px;}
.yd_c00127{bottom:869.879652px;}
.yc_c00127{bottom:900.839640px;}
.yb_c00127{bottom:931.979627px;}
.ya_c00127{bottom:962.939615px;}
.y9_c00127{bottom:994.079602px;}
.y8_c00127{bottom:1025.039590px;}
.y7_c00127{bottom:1056.179578px;}
.y6_c00127{bottom:1087.139565px;}
.y5_c00127{bottom:1118.279553px;}
.y2_c00127{bottom:1157.159537px;}
.y1_c00127{bottom:1196.039522px;}
.h9_c00127{height:27.833192px;}
.h8_c00127{height:38.158578px;}
.h7_c00127{height:40.985140px;}
.h2_c00127{height:44.149201px;}
.h4_c00127{height:47.344903px;}
.h1_c00127{height:58.651148px;}
.h6_c00127{height:65.010911px;}
.h5_c00127{height:66.757473px;}
.h3_c00127{height:70.664034px;}
.h0_c00127{height:1263.000000px;}
.w0_c00127{width:892.500000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:127.619949px;}
.xd_c00127{left:142.199943px;}
.xe_c00127{left:143.279943px;}
.xf_c00127{left:147.059941px;}
.x8_c00127{left:163.799934px;}
.x9_c00127{left:179.459928px;}
.x3_c00127{left:180.719928px;}
.xa_c00127{left:183.599927px;}
.x6_c00127{left:238.139905px;}
.x7_c00127{left:256.499897px;}
.x11_c00127{left:431.999827px;}
.x2_c00127{left:433.979514px;}
.x10_c00127{left:594.719762px;}
.xb_c00127{left:628.199749px;}
.xc_c00127{left:646.559741px;}
.x4_c00127{left:675.539730px;}
.x5_c00127{left:693.899722px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls3_c00127{letter-spacing:0.000000pt;}
.ls2_c00127{letter-spacing:0.009928pt;}
.ls1_c00127{letter-spacing:0.011218pt;}
.ls0_c00127{letter-spacing:0.332694pt;}
.ws1_c00127{word-spacing:-15.999994pt;}
.ws2_c00127{word-spacing:-14.719994pt;}
.ws0_c00127{word-spacing:-11.052689pt;}
.ws3_c00127{word-spacing:-9.291214pt;}
.ws4_c00127{word-spacing:-8.649924pt;}
.ws5_c00127{word-spacing:-8.389117pt;}
.ws6_c00127{word-spacing:0.000000pt;}
._d_c00127{margin-left:-2.896636pt;}
._1_c00127{margin-left:-0.982555pt;}
._0_c00127{width:1.062723pt;}
._2_c00127{width:2.093841pt;}
._4_c00127{width:3.770855pt;}
._5_c00127{width:4.912035pt;}
._8_c00127{width:6.174028pt;}
._a_c00127{width:7.085140pt;}
._7_c00127{width:8.431993pt;}
._c_c00127{width:9.630234pt;}
._b_c00127{width:10.760974pt;}
._6_c00127{width:14.517689pt;}
._e_c00127{width:16.178114pt;}
._3_c00127{width:18.237042pt;}
._9_c00127{width:19.130825pt;}
.fs5_c00127{font-size:34.559986pt;}
.fs4_c00127{font-size:37.119985pt;}
.fs3_c00127{font-size:42.879983pt;}
.fs0_c00127{font-size:53.119979pt;}
.fs1_c00127{font-size:58.879976pt;}
.fs2_c00127{font-size:63.999974pt;}
.y0_c00127{bottom:0.000000pt;}
.y4_c00127{bottom:67.466640pt;}
.y3_c00127{bottom:101.386626pt;}
.y32_c00127{bottom:119.466886pt;}
.y31_c00127{bottom:136.426612pt;}
.y30_c00127{bottom:151.786606pt;}
.y2f_c00127{bottom:157.866604pt;}
.y2e_c00127{bottom:167.146600pt;}
.y2d_c00127{bottom:183.306593pt;}
.y2c_c00127{bottom:190.026591pt;}
.y2b_c00127{bottom:208.906583pt;}
.y2a_c00127{bottom:215.626580pt;}
.y29_c00127{bottom:234.506573pt;}
.y28_c00127{bottom:241.226570pt;}
.y27_c00127{bottom:251.466566pt;}
.y26_c00127{bottom:266.826560pt;}
.y25_c00127{bottom:272.906558pt;}
.y24_c00127{bottom:282.186554pt;}
.y23_c00127{bottom:298.346547pt;}
.y21_c00127{bottom:350.026527pt;}
.y22_c00127{bottom:357.386524pt;}
.y20_c00127{bottom:377.546516pt;}
.y1e_c00127{bottom:405.226505pt;}
.y1f_c00127{bottom:412.586502pt;}
.y1d_c00127{bottom:432.746494pt;}
.y1b_c00127{bottom:459.306483pt;}
.y1c_c00127{bottom:466.026480pt;}
.y1a_c00127{bottom:484.746473pt;}
.y19_c00127{bottom:510.026463pt;}
.y18_c00127{bottom:535.306453pt;}
.y17_c00127{bottom:560.586442pt;}
.y16_c00127{bottom:585.866432pt;}
.y15_c00127{bottom:611.146422pt;}
.y14_c00127{bottom:636.426412pt;}
.y12_c00127{bottom:662.826402pt;}
.y13_c00127{bottom:670.186399pt;}
.y11_c00127{bottom:690.346391pt;}
.y10_c00127{bottom:718.026379pt;}
.ye_c00127{bottom:745.546368pt;}
.yf_c00127{bottom:752.906366pt;}
.yd_c00127{bottom:773.226357pt;}
.yc_c00127{bottom:800.746346pt;}
.yb_c00127{bottom:828.426335pt;}
.ya_c00127{bottom:855.946324pt;}
.y9_c00127{bottom:883.626313pt;}
.y8_c00127{bottom:911.146302pt;}
.y7_c00127{bottom:938.826291pt;}
.y6_c00127{bottom:966.346280pt;}
.y5_c00127{bottom:994.026269pt;}
.y2_c00127{bottom:1028.586255pt;}
.y1_c00127{bottom:1063.146241pt;}
.h9_c00127{height:24.740615pt;}
.h8_c00127{height:33.918736pt;}
.h7_c00127{height:36.431235pt;}
.h2_c00127{height:39.243734pt;}
.h4_c00127{height:42.084358pt;}
.h1_c00127{height:52.134354pt;}
.h6_c00127{height:57.787477pt;}
.h5_c00127{height:59.339976pt;}
.h3_c00127{height:62.812475pt;}
.h0_c00127{height:1122.666667pt;}
.w0_c00127{width:793.333333pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:113.439955pt;}
.xd_c00127{left:126.399949pt;}
.xe_c00127{left:127.359949pt;}
.xf_c00127{left:130.719948pt;}
.x8_c00127{left:145.599942pt;}
.x9_c00127{left:159.519936pt;}
.x3_c00127{left:160.639936pt;}
.xa_c00127{left:163.199935pt;}
.x6_c00127{left:211.679915pt;}
.x7_c00127{left:227.999909pt;}
.x11_c00127{left:383.999846pt;}
.x2_c00127{left:385.759568pt;}
.x10_c00127{left:528.639789pt;}
.xb_c00127{left:558.399777pt;}
.xc_c00127{left:574.719770pt;}
.x4_c00127{left:600.479760pt;}
.x5_c00127{left:616.799753pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22fe9c37a6f4463d14c02b59.woff2')format("woff");}.ff1_c00128{font-family:ff1_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:ff2_c00128;src:url('chunks/assets/font_730062e411555a58593bd9a3.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:0.675781;font-style:normal;font-weight:normal;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_a99e4a604d08798de0f71fa1.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.311035;font-style:normal;font-weight:normal;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_d8f11e7666613a98103d7042.woff2')format("woff");}.ff4_c00128{font-family:ff4_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;}
.m0_c00128{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls3_c00128{letter-spacing:0.000000px;}
.ls2_c00128{letter-spacing:0.011169px;}
.ls0_c00128{letter-spacing:0.012576px;}
.ls1_c00128{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00128{word-spacing:-17.999993px;}
.ws2_c00128{word-spacing:-12.434276px;}
.ws0_c00128{word-spacing:-10.452572px;}
.ws4_c00128{word-spacing:-9.731165px;}
.ws3_c00128{word-spacing:-9.437756px;}
.ws5_c00128{word-spacing:0.000000px;}
._d_c00128{margin-left:-9.745565px;}
._1_c00128{margin-left:-1.105374px;}
._0_c00128{width:1.478351px;}
._2_c00128{width:2.686197px;}
._5_c00128{width:4.345060px;}
._6_c00128{width:5.703436px;}
._9_c00128{width:6.784366px;}
._4_c00128{width:7.797959px;}
._3_c00128{width:8.799231px;}
._8_c00128{width:10.117794px;}
._e_c00128{width:11.832449px;}
._c_c00128{width:12.974721px;}
._7_c00128{width:15.746394px;}
._f_c00128{width:16.893878px;}
._a_c00128{width:31.213284px;}
._b_c00128{width:32.598676px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs5_c00128{font-size:38.879984px;}
.fs2_c00128{font-size:41.759983px;}
.fs4_c00128{font-size:48.239981px;}
.fs0_c00128{font-size:59.759976px;}
.fs1_c00128{font-size:66.239974px;}
.fs3_c00128{font-size:71.999971px;}
.y0_c00128{bottom:0.000000px;}
.y4_c00128{bottom:75.900270px;}
.y3_c00128{bottom:114.060254px;}
.y36_c00128{bottom:133.319947px;}
.y35_c00128{bottom:150.599940px;}
.y34_c00128{bottom:157.439937px;}
.y33_c00128{bottom:167.879933px;}
.y32_c00128{bottom:185.159926px;}
.y31_c00128{bottom:203.339919px;}
.y30_c00128{bottom:210.899916px;}
.y2f_c00128{bottom:222.599911px;}
.y2e_c00128{bottom:239.699904px;}
.y2d_c00128{bottom:246.539901px;}
.y2c_c00128{bottom:256.979897px;}
.y2b_c00128{bottom:274.259890px;}
.y2a_c00128{bottom:292.439883px;}
.y29_c00128{bottom:299.999880px;}
.y28_c00128{bottom:312.599875px;}
.y27_c00128{bottom:331.859867px;}
.y26_c00128{bottom:350.039860px;}
.y25_c00128{bottom:357.599857px;}
.y24_c00128{bottom:393.599843px;}
.y23_c00128{bottom:401.159840px;}
.y22_c00128{bottom:413.939834px;}
.y20_c00128{bottom:474.779810px;}
.y21_c00128{bottom:483.059807px;}
.y1f_c00128{bottom:505.919798px;}
.y1e_c00128{bottom:536.879785px;}
.y1d_c00128{bottom:568.019773px;}
.y1c_c00128{bottom:598.979760px;}
.y1a_c00128{bottom:630.119748px;}
.y1b_c00128{bottom:638.399745px;}
.y19_c00128{bottom:661.079736px;}
.y17_c00128{bottom:692.219723px;}
.y18_c00128{bottom:700.499720px;}
.y16_c00128{bottom:723.179711px;}
.y14_c00128{bottom:754.319698px;}
.y15_c00128{bottom:762.599695px;}
.y13_c00128{bottom:785.279686px;}
.y11_c00128{bottom:816.419673px;}
.y12_c00128{bottom:824.699670px;}
.y10_c00128{bottom:847.379661px;}
.yf_c00128{bottom:878.339649px;}
.ye_c00128{bottom:909.479636px;}
.yd_c00128{bottom:940.439624px;}
.yc_c00128{bottom:971.579611px;}
.yb_c00128{bottom:1002.539599px;}
.ya_c00128{bottom:1033.679587px;}
.y9_c00128{bottom:1063.559575px;}
.y7_c00128{bottom:1063.559875px;}
.y8_c00128{bottom:1071.119572px;}
.y6_c00128{bottom:1091.999863px;}
.y5_c00128{bottom:1120.439852px;}
.y2_c00128{bottom:1176.059530px;}
.y1_c00128{bottom:1196.219522px;}
.h8_c00128{height:27.833192px;}
.h9_c00128{height:38.158578px;}
.h4_c00128{height:40.985140px;}
.h2_c00128{height:44.149201px;}
.h7_c00128{height:47.344903px;}
.h1_c00128{height:58.651148px;}
.h3_c00128{height:65.010911px;}
.h5_c00128{height:70.664034px;}
.h6_c00128{height:72.562471px;}
.h0_c00128{height:1263.000000px;}
.w0_c00128{width:892.500000px;}
.x0_c00128{left:0.000000px;}
.x5_c00128{left:127.620262px;}
.x16_c00128{left:142.199943px;}
.x12_c00128{left:143.279943px;}
.x13_c00128{left:147.059941px;}
.x15_c00128{left:150.119940px;}
.x6_c00128{left:180.720268px;}
.x1_c00128{left:181.799927px;}
.x7_c00128{left:266.939893px;}
.x8_c00128{left:282.599887px;}
.x2_c00128{left:329.039408px;}
.xb_c00128{left:355.499858px;}
.xc_c00128{left:373.859850px;}
.x4_c00128{left:433.979826px;}
.x9_c00128{left:479.879808px;}
.xa_c00128{left:498.239801px;}
.x10_c00128{left:520.019792px;}
.xe_c00128{left:525.959790px;}
.x11_c00128{left:538.379785px;}
.xf_c00128{left:544.319782px;}
.x14_c00128{left:558.539777px;}
.xd_c00128{left:746.999701px;}
.x3_c00128{left:765.359694px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls3_c00128{letter-spacing:0.000000pt;}
.ls2_c00128{letter-spacing:0.009928pt;}
.ls0_c00128{letter-spacing:0.011179pt;}
.ls1_c00128{letter-spacing:0.332694pt;}
.ws1_c00128{word-spacing:-15.999994pt;}
.ws2_c00128{word-spacing:-11.052689pt;}
.ws0_c00128{word-spacing:-9.291175pt;}
.ws4_c00128{word-spacing:-8.649924pt;}
.ws3_c00128{word-spacing:-8.389117pt;}
.ws5_c00128{word-spacing:0.000000pt;}
._d_c00128{margin-left:-8.662724pt;}
._1_c00128{margin-left:-0.982555pt;}
._0_c00128{width:1.314090pt;}
._2_c00128{width:2.387731pt;}
._5_c00128{width:3.862275pt;}
._6_c00128{width:5.069721pt;}
._9_c00128{width:6.030548pt;}
._4_c00128{width:6.931519pt;}
._3_c00128{width:7.821538pt;}
._8_c00128{width:8.993595pt;}
._e_c00128{width:10.517733pt;}
._c_c00128{width:11.533085pt;}
._7_c00128{width:13.996794pt;}
._f_c00128{width:15.016781pt;}
._a_c00128{width:27.745141pt;}
._b_c00128{width:28.976601pt;}
.fs5_c00128{font-size:34.559986pt;}
.fs2_c00128{font-size:37.119985pt;}
.fs4_c00128{font-size:42.879983pt;}
.fs0_c00128{font-size:53.119979pt;}
.fs1_c00128{font-size:58.879976pt;}
.fs3_c00128{font-size:63.999974pt;}
.y0_c00128{bottom:0.000000pt;}
.y4_c00128{bottom:67.466906pt;}
.y3_c00128{bottom:101.386893pt;}
.y36_c00128{bottom:118.506619pt;}
.y35_c00128{bottom:133.866613pt;}
.y34_c00128{bottom:139.946611pt;}
.y33_c00128{bottom:149.226607pt;}
.y32_c00128{bottom:164.586601pt;}
.y31_c00128{bottom:180.746594pt;}
.y30_c00128{bottom:187.466592pt;}
.y2f_c00128{bottom:197.866588pt;}
.y2e_c00128{bottom:213.066581pt;}
.y2d_c00128{bottom:219.146579pt;}
.y2c_c00128{bottom:228.426575pt;}
.y2b_c00128{bottom:243.786569pt;}
.y2a_c00128{bottom:259.946563pt;}
.y29_c00128{bottom:266.666560pt;}
.y28_c00128{bottom:277.866556pt;}
.y27_c00128{bottom:294.986549pt;}
.y26_c00128{bottom:311.146542pt;}
.y25_c00128{bottom:317.866540pt;}
.y24_c00128{bottom:349.866527pt;}
.y23_c00128{bottom:356.586524pt;}
.y22_c00128{bottom:367.946519pt;}
.y20_c00128{bottom:422.026498pt;}
.y21_c00128{bottom:429.386495pt;}
.y1f_c00128{bottom:449.706487pt;}
.y1e_c00128{bottom:477.226476pt;}
.y1d_c00128{bottom:504.906465pt;}
.y1c_c00128{bottom:532.426454pt;}
.y1a_c00128{bottom:560.106443pt;}
.y1b_c00128{bottom:567.466440pt;}
.y19_c00128{bottom:587.626432pt;}
.y17_c00128{bottom:615.306421pt;}
.y18_c00128{bottom:622.666418pt;}
.y16_c00128{bottom:642.826410pt;}
.y14_c00128{bottom:670.506398pt;}
.y15_c00128{bottom:677.866396pt;}
.y13_c00128{bottom:698.026387pt;}
.y11_c00128{bottom:725.706376pt;}
.y12_c00128{bottom:733.066373pt;}
.y10_c00128{bottom:753.226365pt;}
.yf_c00128{bottom:780.746354pt;}
.ye_c00128{bottom:808.426343pt;}
.yd_c00128{bottom:835.946332pt;}
.yc_c00128{bottom:863.626321pt;}
.yb_c00128{bottom:891.146310pt;}
.ya_c00128{bottom:918.826299pt;}
.y9_c00128{bottom:945.386289pt;}
.y7_c00128{bottom:945.386555pt;}
.y8_c00128{bottom:952.106286pt;}
.y6_c00128{bottom:970.666545pt;}
.y5_c00128{bottom:995.946535pt;}
.y2_c00128{bottom:1045.386249pt;}
.y1_c00128{bottom:1063.306241pt;}
.h8_c00128{height:24.740615pt;}
.h9_c00128{height:33.918736pt;}
.h4_c00128{height:36.431235pt;}
.h2_c00128{height:39.243734pt;}
.h7_c00128{height:42.084358pt;}
.h1_c00128{height:52.134354pt;}
.h3_c00128{height:57.787477pt;}
.h5_c00128{height:62.812475pt;}
.h6_c00128{height:64.499974pt;}
.h0_c00128{height:1122.666667pt;}
.w0_c00128{width:793.333333pt;}
.x0_c00128{left:0.000000pt;}
.x5_c00128{left:113.440233pt;}
.x16_c00128{left:126.399949pt;}
.x12_c00128{left:127.359949pt;}
.x13_c00128{left:130.719948pt;}
.x15_c00128{left:133.439947pt;}
.x6_c00128{left:160.640238pt;}
.x1_c00128{left:161.599935pt;}
.x7_c00128{left:237.279905pt;}
.x8_c00128{left:251.199900pt;}
.x2_c00128{left:292.479474pt;}
.xb_c00128{left:315.999874pt;}
.xc_c00128{left:332.319867pt;}
.x4_c00128{left:385.759846pt;}
.x9_c00128{left:426.559829pt;}
.xa_c00128{left:442.879823pt;}
.x10_c00128{left:462.239815pt;}
.xe_c00128{left:467.519813pt;}
.x11_c00128{left:478.559809pt;}
.xf_c00128{left:483.839806pt;}
.x14_c00128{left:496.479801pt;}
.xd_c00128{left:663.999734pt;}
.x3_c00128{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67203b8f4e35e906d5d38120.woff2')format("woff");}.ff1_c00129{font-family:ff1_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;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_27fc944c1c1b9559d8b431c3.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_3ee9829d00a897b17ad434c2.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00129;src:url('chunks/assets/font_6745ab5b6095d0e88775ad7e.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00129;src:url('chunks/assets/font_65f9e56320cc91f26498ff13.woff2')format("woff");}.ff5_c00129{font-family:ff5_c00129;line-height:0.698242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls6_c00129{letter-spacing:0.000000px;}
.ls5_c00129{letter-spacing:0.012620px;}
.ls3_c00129{letter-spacing:0.012664px;}
.ls1_c00129{letter-spacing:0.021282px;}
.ls2_c00129{letter-spacing:0.155901px;}
.ls0_c00129{letter-spacing:0.374281px;}
.ls4_c00129{letter-spacing:14.419134px;}
.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;}
}
.ws2_c00129{word-spacing:-18.021275px;}
.ws0_c00129{word-spacing:-17.999993px;}
.ws3_c00129{word-spacing:-16.559993px;}
.ws1_c00129{word-spacing:-12.434276px;}
.ws4_c00129{word-spacing:-10.452660px;}
.ws6_c00129{word-spacing:-10.452616px;}
.ws5_c00129{word-spacing:-9.437756px;}
.ws7_c00129{word-spacing:0.000000px;}
._13_c00129{margin-left:-10.259991px;}
._d_c00129{margin-left:-2.403126px;}
._1_c00129{margin-left:-1.105374px;}
._0_c00129{width:1.195563px;}
._6_c00129{width:2.623045px;}
._7_c00129{width:3.891119px;}
._2_c00129{width:6.217862px;}
._3_c00129{width:7.331945px;}
._4_c00129{width:8.598548px;}
._e_c00129{width:10.816988px;}
._9_c00129{width:12.202099px;}
._8_c00129{width:13.845048px;}
._12_c00129{width:15.133797px;}
._f_c00129{width:20.450671px;}
._10_c00129{width:21.454205px;}
._5_c00129{width:24.338554px;}
._c_c00129{width:25.397129px;}
._11_c00129{width:26.545962px;}
._a_c00129{width:32.022500px;}
._b_c00129{width:33.200962px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs4_c00129{font-size:41.759983px;}
.fs3_c00129{font-size:48.239981px;}
.fs0_c00129{font-size:59.759976px;}
.fs1_c00129{font-size:66.239974px;}
.fs2_c00129{font-size:71.999971px;}
.y0_c00129{bottom:0.000000px;}
.y4_c00129{bottom:75.899970px;}
.y3_c00129{bottom:114.059954px;}
.y33_c00129{bottom:133.680247px;}
.y32_c00129{bottom:141.240244px;}
.y31_c00129{bottom:152.579939px;}
.y30_c00129{bottom:171.659931px;}
.y2f_c00129{bottom:179.219928px;}
.y2e_c00129{bottom:199.199920px;}
.y2d_c00129{bottom:206.759917px;}
.y2c_c00129{bottom:227.459909px;}
.y2b_c00129{bottom:235.019906px;}
.y2a_c00129{bottom:271.019892px;}
.y29_c00129{bottom:278.579889px;}
.y28_c00129{bottom:290.459884px;}
.y27_c00129{bottom:308.639877px;}
.y26_c00129{bottom:316.199874px;}
.y25_c00129{bottom:328.799868px;}
.y23_c00129{bottom:362.639855px;}
.y24_c00129{bottom:370.919852px;}
.y22_c00129{bottom:393.779842px;}
.y21_c00129{bottom:424.739830px;}
.y20_c00129{bottom:455.879818px;}
.y1f_c00129{bottom:486.839805px;}
.y1e_c00129{bottom:517.979793px;}
.y1d_c00129{bottom:548.939780px;}
.y1b_c00129{bottom:580.079768px;}
.y1c_c00129{bottom:588.359765px;}
.y1a_c00129{bottom:611.039756px;}
.y18_c00129{bottom:640.919744px;}
.y19_c00129{bottom:648.479741px;}
.y17_c00129{bottom:669.359732px;}
.y16_c00129{bottom:697.979721px;}
.y15_c00129{bottom:726.419709px;}
.y14_c00129{bottom:754.859698px;}
.y13_c00129{bottom:783.299687px;}
.y11_c00129{bottom:811.739675px;}
.y12_c00129{bottom:819.299672px;}
.y10_c00129{bottom:840.179664px;}
.ye_c00129{bottom:869.879652px;}
.yf_c00129{bottom:878.159649px;}
.yd_c00129{bottom:900.839640px;}
.yc_c00129{bottom:931.979627px;}
.yb_c00129{bottom:962.939615px;}
.ya_c00129{bottom:994.079602px;}
.y9_c00129{bottom:1025.039590px;}
.y7_c00129{bottom:1056.179578px;}
.y8_c00129{bottom:1064.459574px;}
.y6_c00129{bottom:1087.139565px;}
.y5_c00129{bottom:1118.279553px;}
.y2_c00129{bottom:1157.159537px;}
.y1_c00129{bottom:1196.039522px;}
.h9_c00129{height:27.833192px;}
.h8_c00129{height:40.985140px;}
.h2_c00129{height:44.149201px;}
.h5_c00129{height:47.344903px;}
.h1_c00129{height:58.651148px;}
.h7_c00129{height:65.010911px;}
.h6_c00129{height:66.757473px;}
.h4_c00129{height:70.664034px;}
.h3_c00129{height:72.562471px;}
.h0_c00129{height:1263.000000px;}
.w0_c00129{width:892.500000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:127.619949px;}
.x10_c00129{left:143.279943px;}
.x11_c00129{left:147.059941px;}
.x6_c00129{left:172.619931px;}
.x3_c00129{left:180.719928px;}
.x7_c00129{left:190.979924px;}
.xe_c00129{left:196.019922px;}
.xf_c00129{left:214.379914px;}
.x4_c00129{left:319.499872px;}
.x5_c00129{left:337.859865px;}
.x13_c00129{left:431.999827px;}
.x2_c00129{left:433.979514px;}
.xa_c00129{left:444.239822px;}
.xb_c00129{left:459.899816px;}
.x12_c00129{left:558.539777px;}
.x8_c00129{left:583.019767px;}
.x9_c00129{left:598.679761px;}
.x14_c00129{left:648.179741px;}
.xc_c00129{left:746.999701px;}
.xd_c00129{left:765.359694px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls6_c00129{letter-spacing:0.000000pt;}
.ls5_c00129{letter-spacing:0.011218pt;}
.ls3_c00129{letter-spacing:0.011257pt;}
.ls1_c00129{letter-spacing:0.018917pt;}
.ls2_c00129{letter-spacing:0.138579pt;}
.ls0_c00129{letter-spacing:0.332694pt;}
.ls4_c00129{letter-spacing:12.817008pt;}
.ws2_c00129{word-spacing:-16.018911pt;}
.ws0_c00129{word-spacing:-15.999994pt;}
.ws3_c00129{word-spacing:-14.719994pt;}
.ws1_c00129{word-spacing:-11.052689pt;}
.ws4_c00129{word-spacing:-9.291253pt;}
.ws6_c00129{word-spacing:-9.291214pt;}
.ws5_c00129{word-spacing:-8.389117pt;}
.ws7_c00129{word-spacing:0.000000pt;}
._13_c00129{margin-left:-9.119992pt;}
._d_c00129{margin-left:-2.136112pt;}
._1_c00129{margin-left:-0.982555pt;}
._0_c00129{width:1.062723pt;}
._6_c00129{width:2.331596pt;}
._7_c00129{width:3.458773pt;}
._2_c00129{width:5.526989pt;}
._3_c00129{width:6.517285pt;}
._4_c00129{width:7.643153pt;}
._e_c00129{width:9.615100pt;}
._9_c00129{width:10.846310pt;}
._8_c00129{width:12.306710pt;}
._12_c00129{width:13.452264pt;}
._f_c00129{width:18.178374pt;}
._10_c00129{width:19.070404pt;}
._5_c00129{width:21.634271pt;}
._c_c00129{width:22.575226pt;}
._11_c00129{width:23.596410pt;}
._a_c00129{width:28.464444pt;}
._b_c00129{width:29.511966pt;}
.fs4_c00129{font-size:37.119985pt;}
.fs3_c00129{font-size:42.879983pt;}
.fs0_c00129{font-size:53.119979pt;}
.fs1_c00129{font-size:58.879976pt;}
.fs2_c00129{font-size:63.999974pt;}
.y0_c00129{bottom:0.000000pt;}
.y4_c00129{bottom:67.466640pt;}
.y3_c00129{bottom:101.386626pt;}
.y33_c00129{bottom:118.826886pt;}
.y32_c00129{bottom:125.546883pt;}
.y31_c00129{bottom:135.626612pt;}
.y30_c00129{bottom:152.586606pt;}
.y2f_c00129{bottom:159.306603pt;}
.y2e_c00129{bottom:177.066596pt;}
.y2d_c00129{bottom:183.786593pt;}
.y2c_c00129{bottom:202.186586pt;}
.y2b_c00129{bottom:208.906583pt;}
.y2a_c00129{bottom:240.906570pt;}
.y29_c00129{bottom:247.626568pt;}
.y28_c00129{bottom:258.186563pt;}
.y27_c00129{bottom:274.346557pt;}
.y26_c00129{bottom:281.066554pt;}
.y25_c00129{bottom:292.266550pt;}
.y23_c00129{bottom:322.346538pt;}
.y24_c00129{bottom:329.706535pt;}
.y22_c00129{bottom:350.026527pt;}
.y21_c00129{bottom:377.546516pt;}
.y20_c00129{bottom:405.226505pt;}
.y1f_c00129{bottom:432.746494pt;}
.y1e_c00129{bottom:460.426482pt;}
.y1d_c00129{bottom:487.946471pt;}
.y1b_c00129{bottom:515.626460pt;}
.y1c_c00129{bottom:522.986457pt;}
.y1a_c00129{bottom:543.146449pt;}
.y18_c00129{bottom:569.706439pt;}
.y19_c00129{bottom:576.426436pt;}
.y17_c00129{bottom:594.986429pt;}
.y16_c00129{bottom:620.426418pt;}
.y15_c00129{bottom:645.706408pt;}
.y14_c00129{bottom:670.986398pt;}
.y13_c00129{bottom:696.266388pt;}
.y11_c00129{bottom:721.546378pt;}
.y12_c00129{bottom:728.266375pt;}
.y10_c00129{bottom:746.826368pt;}
.ye_c00129{bottom:773.226357pt;}
.yf_c00129{bottom:780.586354pt;}
.yd_c00129{bottom:800.746346pt;}
.yc_c00129{bottom:828.426335pt;}
.yb_c00129{bottom:855.946324pt;}
.ya_c00129{bottom:883.626313pt;}
.y9_c00129{bottom:911.146302pt;}
.y7_c00129{bottom:938.826291pt;}
.y8_c00129{bottom:946.186288pt;}
.y6_c00129{bottom:966.346280pt;}
.y5_c00129{bottom:994.026269pt;}
.y2_c00129{bottom:1028.586255pt;}
.y1_c00129{bottom:1063.146241pt;}
.h9_c00129{height:24.740615pt;}
.h8_c00129{height:36.431235pt;}
.h2_c00129{height:39.243734pt;}
.h5_c00129{height:42.084358pt;}
.h1_c00129{height:52.134354pt;}
.h7_c00129{height:57.787477pt;}
.h6_c00129{height:59.339976pt;}
.h4_c00129{height:62.812475pt;}
.h3_c00129{height:64.499974pt;}
.h0_c00129{height:1122.666667pt;}
.w0_c00129{width:793.333333pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:113.439955pt;}
.x10_c00129{left:127.359949pt;}
.x11_c00129{left:130.719948pt;}
.x6_c00129{left:153.439939pt;}
.x3_c00129{left:160.639936pt;}
.x7_c00129{left:169.759932pt;}
.xe_c00129{left:174.239930pt;}
.xf_c00129{left:190.559924pt;}
.x4_c00129{left:283.999886pt;}
.x5_c00129{left:300.319880pt;}
.x13_c00129{left:383.999846pt;}
.x2_c00129{left:385.759568pt;}
.xa_c00129{left:394.879842pt;}
.xb_c00129{left:408.799836pt;}
.x12_c00129{left:496.479801pt;}
.x8_c00129{left:518.239793pt;}
.x9_c00129{left:532.159787pt;}
.x14_c00129{left:576.159770pt;}
.xc_c00129{left:663.999734pt;}
.xd_c00129{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92987091b5f8b33e4f70d03f.woff2')format("woff");}.ff1_c00130{font-family:ff1_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:ff2_c00130;src:url('chunks/assets/font_ddcbe561e344a9b3dc6a77a9.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:0.675781;font-style:normal;font-weight:normal;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_a593c01851a8b367873b077b.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;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_6788aae8138a34bbc562216e.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls5_c00130{letter-spacing:0.000000px;}
.ls3_c00130{letter-spacing:0.011169px;}
.ls4_c00130{letter-spacing:0.189300px;}
.ls0_c00130{letter-spacing:0.374281px;}
.ls2_c00130{letter-spacing:0.674340px;}
.ls1_c00130{letter-spacing:2.171879px;}
.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;}
}
.ws1_c00130{word-spacing:-17.999993px;}
.ws0_c00130{word-spacing:-12.434276px;}
.ws2_c00130{word-spacing:-9.731165px;}
.ws3_c00130{word-spacing:-9.437756px;}
.ws4_c00130{word-spacing:-8.786876px;}
.ws5_c00130{word-spacing:0.000000px;}
._11_c00130{margin-left:-2.308802px;}
._1_c00130{margin-left:-1.105374px;}
._0_c00130{width:1.478351px;}
._7_c00130{width:2.948976px;}
._6_c00130{width:3.970689px;}
._9_c00130{width:5.190753px;}
._a_c00130{width:6.267659px;}
._b_c00130{width:7.408868px;}
._c_c00130{width:9.533196px;}
._d_c00130{width:10.909233px;}
._2_c00130{width:13.269995px;}
._3_c00130{width:14.334186px;}
._4_c00130{width:15.406445px;}
._5_c00130{width:16.573399px;}
._f_c00130{width:19.216577px;}
._10_c00130{width:20.311292px;}
._e_c00130{width:25.896110px;}
._8_c00130{width:29.551672px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs4_c00130{font-size:38.879984px;}
.fs5_c00130{font-size:41.759983px;}
.fs3_c00130{font-size:48.239981px;}
.fs0_c00130{font-size:59.759976px;}
.fs1_c00130{font-size:66.239974px;}
.fs2_c00130{font-size:71.999971px;}
.y0_c00130{bottom:0.000000px;}
.y4_c00130{bottom:75.900270px;}
.y3_c00130{bottom:114.060254px;}
.y34_c00130{bottom:142.320243px;}
.y33_c00130{bottom:149.880240px;}
.y32_c00130{bottom:160.319936px;}
.y31_c00130{bottom:177.599929px;}
.y30_c00130{bottom:184.439926px;}
.y2f_c00130{bottom:194.879922px;}
.y2e_c00130{bottom:212.159915px;}
.y2d_c00130{bottom:218.999912px;}
.y2c_c00130{bottom:238.259905px;}
.y2b_c00130{bottom:245.819902px;}
.y2a_c00130{bottom:265.799894px;}
.y29_c00130{bottom:273.359891px;}
.y28_c00130{bottom:285.059886px;}
.y27_c00130{bottom:302.339879px;}
.y26_c00130{bottom:309.179876px;}
.y25_c00130{bottom:319.439872px;}
.y24_c00130{bottom:336.719865px;}
.y23_c00130{bottom:354.899858px;}
.y21_c00130{bottom:401.339839px;}
.y22_c00130{bottom:409.619836px;}
.y20_c00130{bottom:432.479827px;}
.y1e_c00130{bottom:463.439815px;}
.y1f_c00130{bottom:471.719811px;}
.y1d_c00130{bottom:494.579802px;}
.y1c_c00130{bottom:525.539790px;}
.y1b_c00130{bottom:556.679777px;}
.y1a_c00130{bottom:587.639765px;}
.y19_c00130{bottom:618.599753px;}
.y18_c00130{bottom:649.739740px;}
.y16_c00130{bottom:680.699728px;}
.y17_c00130{bottom:688.979724px;}
.y15_c00130{bottom:711.839715px;}
.y14_c00130{bottom:742.799703px;}
.y12_c00130{bottom:777.539689px;}
.y13_c00130{bottom:785.819686px;}
.y11_c00130{bottom:808.499677px;}
.y10_c00130{bottom:839.639664px;}
.ye_c00130{bottom:870.599652px;}
.yf_c00130{bottom:878.879648px;}
.yd_c00130{bottom:901.739639px;}
.yc_c00130{bottom:932.699627px;}
.ya_c00130{bottom:963.839614px;}
.yb_c00130{bottom:972.119611px;}
.y9_c00130{bottom:994.799602px;}
.y8_c00130{bottom:1025.939590px;}
.y7_c00130{bottom:1056.899577px;}
.y6_c00130{bottom:1088.039565px;}
.y5_c00130{bottom:1118.999552px;}
.y2_c00130{bottom:1176.059530px;}
.y1_c00130{bottom:1196.219522px;}
.h9_c00130{height:25.913662px;}
.h8_c00130{height:27.833192px;}
.h7_c00130{height:38.158578px;}
.h2_c00130{height:44.149201px;}
.h4_c00130{height:47.344903px;}
.ha_c00130{height:58.621969px;}
.h1_c00130{height:58.651148px;}
.h6_c00130{height:65.010911px;}
.h3_c00130{height:70.664034px;}
.h5_c00130{height:72.562471px;}
.h0_c00130{height:1263.000000px;}
.w0_c00130{width:892.500000px;}
.x0_c00130{left:0.000000px;}
.x5_c00130{left:127.620262px;}
.x13_c00130{left:131.399947px;}
.x14_c00130{left:142.199943px;}
.x15_c00130{left:143.279943px;}
.x16_c00130{left:147.059941px;}
.x6_c00130{left:180.719928px;}
.x1_c00130{left:181.799927px;}
.xf_c00130{left:204.299918px;}
.x10_c00130{left:222.659911px;}
.x11_c00130{left:238.139905px;}
.x12_c00130{left:256.499897px;}
.x2_c00130{left:329.039408px;}
.x17_c00130{left:431.999827px;}
.x4_c00130{left:433.979826px;}
.x7_c00130{left:553.859778px;}
.x8_c00130{left:572.219771px;}
.xd_c00130{left:619.019752px;}
.xe_c00130{left:637.379745px;}
.x18_c00130{left:646.739741px;}
.x9_c00130{left:675.179730px;}
.xa_c00130{left:693.539723px;}
.xb_c00130{left:724.859710px;}
.xc_c00130{left:743.219703px;}
.x3_c00130{left:765.359694px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls5_c00130{letter-spacing:0.000000pt;}
.ls3_c00130{letter-spacing:0.009928pt;}
.ls4_c00130{letter-spacing:0.168267pt;}
.ls0_c00130{letter-spacing:0.332694pt;}
.ls2_c00130{letter-spacing:0.599413pt;}
.ls1_c00130{letter-spacing:1.930559pt;}
.ws1_c00130{word-spacing:-15.999994pt;}
.ws0_c00130{word-spacing:-11.052689pt;}
.ws2_c00130{word-spacing:-8.649924pt;}
.ws3_c00130{word-spacing:-8.389117pt;}
.ws4_c00130{word-spacing:-7.810557pt;}
.ws5_c00130{word-spacing:0.000000pt;}
._11_c00130{margin-left:-2.052268pt;}
._1_c00130{margin-left:-0.982555pt;}
._0_c00130{width:1.314090pt;}
._7_c00130{width:2.621312pt;}
._6_c00130{width:3.529501pt;}
._9_c00130{width:4.614003pt;}
._a_c00130{width:5.571252pt;}
._b_c00130{width:6.585660pt;}
._c_c00130{width:8.473952pt;}
._d_c00130{width:9.697096pt;}
._2_c00130{width:11.795551pt;}
._3_c00130{width:12.741499pt;}
._4_c00130{width:13.694618pt;}
._5_c00130{width:14.731910pt;}
._f_c00130{width:17.081402pt;}
._10_c00130{width:18.054482pt;}
._e_c00130{width:23.018764pt;}
._8_c00130{width:26.268153pt;}
.fs4_c00130{font-size:34.559986pt;}
.fs5_c00130{font-size:37.119985pt;}
.fs3_c00130{font-size:42.879983pt;}
.fs0_c00130{font-size:53.119979pt;}
.fs1_c00130{font-size:58.879976pt;}
.fs2_c00130{font-size:63.999974pt;}
.y0_c00130{bottom:0.000000pt;}
.y4_c00130{bottom:67.466906pt;}
.y3_c00130{bottom:101.386893pt;}
.y34_c00130{bottom:126.506883pt;}
.y33_c00130{bottom:133.226880pt;}
.y32_c00130{bottom:142.506610pt;}
.y31_c00130{bottom:157.866604pt;}
.y30_c00130{bottom:163.946601pt;}
.y2f_c00130{bottom:173.226597pt;}
.y2e_c00130{bottom:188.586591pt;}
.y2d_c00130{bottom:194.666589pt;}
.y2c_c00130{bottom:211.786582pt;}
.y2b_c00130{bottom:218.506579pt;}
.y2a_c00130{bottom:236.266572pt;}
.y29_c00130{bottom:242.986569pt;}
.y28_c00130{bottom:253.386565pt;}
.y27_c00130{bottom:268.746559pt;}
.y26_c00130{bottom:274.826557pt;}
.y25_c00130{bottom:283.946553pt;}
.y24_c00130{bottom:299.306547pt;}
.y23_c00130{bottom:315.466540pt;}
.y21_c00130{bottom:356.746524pt;}
.y22_c00130{bottom:364.106521pt;}
.y20_c00130{bottom:384.426513pt;}
.y1e_c00130{bottom:411.946502pt;}
.y1f_c00130{bottom:419.306499pt;}
.y1d_c00130{bottom:439.626491pt;}
.y1c_c00130{bottom:467.146480pt;}
.y1b_c00130{bottom:494.826469pt;}
.y1a_c00130{bottom:522.346458pt;}
.y19_c00130{bottom:549.866447pt;}
.y18_c00130{bottom:577.546436pt;}
.y16_c00130{bottom:605.066425pt;}
.y17_c00130{bottom:612.426422pt;}
.y15_c00130{bottom:632.746414pt;}
.y14_c00130{bottom:660.266403pt;}
.y12_c00130{bottom:691.146390pt;}
.y13_c00130{bottom:698.506387pt;}
.y11_c00130{bottom:718.666379pt;}
.y10_c00130{bottom:746.346368pt;}
.ye_c00130{bottom:773.866357pt;}
.yf_c00130{bottom:781.226354pt;}
.yd_c00130{bottom:801.546346pt;}
.yc_c00130{bottom:829.066335pt;}
.ya_c00130{bottom:856.746324pt;}
.yb_c00130{bottom:864.106321pt;}
.y9_c00130{bottom:884.266313pt;}
.y8_c00130{bottom:911.946302pt;}
.y7_c00130{bottom:939.466291pt;}
.y6_c00130{bottom:967.146280pt;}
.y5_c00130{bottom:994.666269pt;}
.y2_c00130{bottom:1045.386249pt;}
.y1_c00130{bottom:1063.306241pt;}
.h9_c00130{height:23.034366pt;}
.h8_c00130{height:24.740615pt;}
.h7_c00130{height:33.918736pt;}
.h2_c00130{height:39.243734pt;}
.h4_c00130{height:42.084358pt;}
.ha_c00130{height:52.108417pt;}
.h1_c00130{height:52.134354pt;}
.h6_c00130{height:57.787477pt;}
.h3_c00130{height:62.812475pt;}
.h5_c00130{height:64.499974pt;}
.h0_c00130{height:1122.666667pt;}
.w0_c00130{width:793.333333pt;}
.x0_c00130{left:0.000000pt;}
.x5_c00130{left:113.440233pt;}
.x13_c00130{left:116.799953pt;}
.x14_c00130{left:126.399949pt;}
.x15_c00130{left:127.359949pt;}
.x16_c00130{left:130.719948pt;}
.x6_c00130{left:160.639936pt;}
.x1_c00130{left:161.599935pt;}
.xf_c00130{left:181.599927pt;}
.x10_c00130{left:197.919921pt;}
.x11_c00130{left:211.679915pt;}
.x12_c00130{left:227.999909pt;}
.x2_c00130{left:292.479474pt;}
.x17_c00130{left:383.999846pt;}
.x4_c00130{left:385.759846pt;}
.x7_c00130{left:492.319803pt;}
.x8_c00130{left:508.639797pt;}
.xd_c00130{left:550.239780pt;}
.xe_c00130{left:566.559773pt;}
.x18_c00130{left:574.879770pt;}
.x9_c00130{left:600.159760pt;}
.xa_c00130{left:616.479753pt;}
.xb_c00130{left:644.319742pt;}
.xc_c00130{left:660.639736pt;}
.x3_c00130{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbe03f1092149acd9ab3145c.woff2')format("woff");}.ff1_c00131{font-family:ff1_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:ff2_c00131;src:url('chunks/assets/font_d758f1e88159c5572d23ae5c.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:0.675781;font-style:normal;font-weight:normal;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_1851844c4c1f8562aacd76f9.woff2')format("woff");}.ff3_c00131{font-family:ff3_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;}
.m0_c00131{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls3_c00131{letter-spacing:0.000000px;}
.ls2_c00131{letter-spacing:0.011169px;}
.ls0_c00131{letter-spacing:0.021238px;}
.ls1_c00131{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00131{word-spacing:-17.999993px;}
.ws1_c00131{word-spacing:-12.434276px;}
.ws2_c00131{word-spacing:-9.731165px;}
.ws3_c00131{word-spacing:0.000000px;}
._e_c00131{margin-left:-9.935505px;}
._1_c00131{margin-left:-1.105374px;}
._0_c00131{width:1.195563px;}
._5_c00131{width:2.423519px;}
._b_c00131{width:3.514384px;}
._3_c00131{width:4.859875px;}
._4_c00131{width:5.893376px;}
._a_c00131{width:6.923093px;}
._c_c00131{width:8.377216px;}
._9_c00131{width:9.618236px;}
._8_c00131{width:10.639929px;}
._6_c00131{width:11.954317px;}
._7_c00131{width:13.147274px;}
._2_c00131{width:16.555642px;}
._d_c00131{width:20.097575px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs4_c00131{font-size:38.879984px;}
.fs3_c00131{font-size:48.239981px;}
.fs0_c00131{font-size:59.759976px;}
.fs1_c00131{font-size:66.239974px;}
.fs2_c00131{font-size:71.999971px;}
.y0_c00131{bottom:0.000000px;}
.y4_c00131{bottom:75.899970px;}
.y3_c00131{bottom:114.059954px;}
.y35_c00131{bottom:133.319947px;}
.y34_c00131{bottom:150.599940px;}
.y33_c00131{bottom:157.439937px;}
.y32_c00131{bottom:167.879933px;}
.y31_c00131{bottom:185.159926px;}
.y30_c00131{bottom:191.999923px;}
.y2f_c00131{bottom:225.839910px;}
.y2e_c00131{bottom:232.679907px;}
.y2d_c00131{bottom:244.199902px;}
.y2c_c00131{bottom:263.459895px;}
.y2b_c00131{bottom:270.299892px;}
.y2a_c00131{bottom:280.739888px;}
.y29_c00131{bottom:297.839881px;}
.y28_c00131{bottom:315.119874px;}
.y27_c00131{bottom:321.959871px;}
.y26_c00131{bottom:332.399867px;}
.y25_c00131{bottom:349.679860px;}
.y24_c00131{bottom:366.959853px;}
.y23_c00131{bottom:373.799850px;}
.y22_c00131{bottom:385.139846px;}
.y20_c00131{bottom:435.179826px;}
.y21_c00131{bottom:443.459823px;}
.y1f_c00131{bottom:466.139814px;}
.y1d_c00131{bottom:497.279801px;}
.y1e_c00131{bottom:505.559798px;}
.y1c_c00131{bottom:528.239789px;}
.y1b_c00131{bottom:559.379776px;}
.y19_c00131{bottom:590.339764px;}
.y1a_c00131{bottom:598.619761px;}
.y18_c00131{bottom:621.479751px;}
.y17_c00131{bottom:652.439739px;}
.y16_c00131{bottom:683.579727px;}
.y15_c00131{bottom:714.539714px;}
.y13_c00131{bottom:745.679702px;}
.y14_c00131{bottom:753.959698px;}
.y12_c00131{bottom:776.639689px;}
.y10_c00131{bottom:807.779677px;}
.y11_c00131{bottom:816.059674px;}
.yf_c00131{bottom:838.739665px;}
.yd_c00131{bottom:869.879652px;}
.ye_c00131{bottom:878.159649px;}
.yc_c00131{bottom:900.839640px;}
.yb_c00131{bottom:931.979627px;}
.ya_c00131{bottom:962.939615px;}
.y9_c00131{bottom:994.079602px;}
.y8_c00131{bottom:1025.039590px;}
.y7_c00131{bottom:1056.179578px;}
.y6_c00131{bottom:1087.139565px;}
.y5_c00131{bottom:1118.279553px;}
.y2_c00131{bottom:1157.159537px;}
.y1_c00131{bottom:1196.039522px;}
.h5_c00131{height:38.158578px;}
.h2_c00131{height:44.149201px;}
.h4_c00131{height:47.344903px;}
.h1_c00131{height:58.651148px;}
.h3_c00131{height:70.664034px;}
.h0_c00131{height:1263.000000px;}
.w0_c00131{width:892.500000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:127.619949px;}
.x10_c00131{left:142.199943px;}
.xc_c00131{left:171.179932px;}
.x3_c00131{left:180.719928px;}
.xd_c00131{left:189.539924px;}
.xa_c00131{left:259.559896px;}
.x4_c00131{left:260.999896px;}
.xb_c00131{left:277.919889px;}
.x5_c00131{left:279.359888px;}
.xe_c00131{left:286.019886px;}
.xf_c00131{left:304.379878px;}
.x6_c00131{left:323.999870px;}
.x7_c00131{left:342.359863px;}
.x2_c00131{left:433.979514px;}
.x8_c00131{left:646.919741px;}
.x9_c00131{left:665.279734px;}
.x11_c00131{left:671.039732px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls3_c00131{letter-spacing:0.000000pt;}
.ls2_c00131{letter-spacing:0.009928pt;}
.ls0_c00131{letter-spacing:0.018878pt;}
.ls1_c00131{letter-spacing:0.332694pt;}
.ws0_c00131{word-spacing:-15.999994pt;}
.ws1_c00131{word-spacing:-11.052689pt;}
.ws2_c00131{word-spacing:-8.649924pt;}
.ws3_c00131{word-spacing:0.000000pt;}
._e_c00131{margin-left:-8.831560pt;}
._1_c00131{margin-left:-0.982555pt;}
._0_c00131{width:1.062723pt;}
._5_c00131{width:2.154239pt;}
._b_c00131{width:3.123897pt;}
._3_c00131{width:4.319889pt;}
._4_c00131{width:5.238556pt;}
._a_c00131{width:6.153860pt;}
._c_c00131{width:7.446414pt;}
._9_c00131{width:8.549543pt;}
._8_c00131{width:9.457715pt;}
._6_c00131{width:10.626059pt;}
._7_c00131{width:11.686466pt;}
._2_c00131{width:14.716126pt;}
._d_c00131{width:17.864511pt;}
.fs4_c00131{font-size:34.559986pt;}
.fs3_c00131{font-size:42.879983pt;}
.fs0_c00131{font-size:53.119979pt;}
.fs1_c00131{font-size:58.879976pt;}
.fs2_c00131{font-size:63.999974pt;}
.y0_c00131{bottom:0.000000pt;}
.y4_c00131{bottom:67.466640pt;}
.y3_c00131{bottom:101.386626pt;}
.y35_c00131{bottom:118.506619pt;}
.y34_c00131{bottom:133.866613pt;}
.y33_c00131{bottom:139.946611pt;}
.y32_c00131{bottom:149.226607pt;}
.y31_c00131{bottom:164.586601pt;}
.y30_c00131{bottom:170.666598pt;}
.y2f_c00131{bottom:200.746586pt;}
.y2e_c00131{bottom:206.826584pt;}
.y2d_c00131{bottom:217.066580pt;}
.y2c_c00131{bottom:234.186573pt;}
.y2b_c00131{bottom:240.266571pt;}
.y2a_c00131{bottom:249.546567pt;}
.y29_c00131{bottom:264.746561pt;}
.y28_c00131{bottom:280.106555pt;}
.y27_c00131{bottom:286.186552pt;}
.y26_c00131{bottom:295.466548pt;}
.y25_c00131{bottom:310.826542pt;}
.y24_c00131{bottom:326.186536pt;}
.y23_c00131{bottom:332.266534pt;}
.y22_c00131{bottom:342.346530pt;}
.y20_c00131{bottom:386.826512pt;}
.y21_c00131{bottom:394.186509pt;}
.y1f_c00131{bottom:414.346501pt;}
.y1d_c00131{bottom:442.026490pt;}
.y1e_c00131{bottom:449.386487pt;}
.y1c_c00131{bottom:469.546479pt;}
.y1b_c00131{bottom:497.226468pt;}
.y19_c00131{bottom:524.746457pt;}
.y1a_c00131{bottom:532.106454pt;}
.y18_c00131{bottom:552.426446pt;}
.y17_c00131{bottom:579.946435pt;}
.y16_c00131{bottom:607.626424pt;}
.y15_c00131{bottom:635.146413pt;}
.y13_c00131{bottom:662.826402pt;}
.y14_c00131{bottom:670.186399pt;}
.y12_c00131{bottom:690.346391pt;}
.y10_c00131{bottom:718.026379pt;}
.y11_c00131{bottom:725.386377pt;}
.yf_c00131{bottom:745.546368pt;}
.yd_c00131{bottom:773.226357pt;}
.ye_c00131{bottom:780.586354pt;}
.yc_c00131{bottom:800.746346pt;}
.yb_c00131{bottom:828.426335pt;}
.ya_c00131{bottom:855.946324pt;}
.y9_c00131{bottom:883.626313pt;}
.y8_c00131{bottom:911.146302pt;}
.y7_c00131{bottom:938.826291pt;}
.y6_c00131{bottom:966.346280pt;}
.y5_c00131{bottom:994.026269pt;}
.y2_c00131{bottom:1028.586255pt;}
.y1_c00131{bottom:1063.146241pt;}
.h5_c00131{height:33.918736pt;}
.h2_c00131{height:39.243734pt;}
.h4_c00131{height:42.084358pt;}
.h1_c00131{height:52.134354pt;}
.h3_c00131{height:62.812475pt;}
.h0_c00131{height:1122.666667pt;}
.w0_c00131{width:793.333333pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:113.439955pt;}
.x10_c00131{left:126.399949pt;}
.xc_c00131{left:152.159939pt;}
.x3_c00131{left:160.639936pt;}
.xd_c00131{left:168.479933pt;}
.xa_c00131{left:230.719908pt;}
.x4_c00131{left:231.999907pt;}
.xb_c00131{left:247.039901pt;}
.x5_c00131{left:248.319901pt;}
.xe_c00131{left:254.239898pt;}
.xf_c00131{left:270.559892pt;}
.x6_c00131{left:287.999885pt;}
.x7_c00131{left:304.319878pt;}
.x2_c00131{left:385.759568pt;}
.x8_c00131{left:575.039770pt;}
.x9_c00131{left:591.359763pt;}
.x11_c00131{left:596.479761pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16aa9c31f4b93ba3e3b4a040.woff2')format("woff");}.ff1_c00132{font-family:ff1_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:ff2_c00132;src:url('chunks/assets/font_d4416fd607bc93d070348057.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:0.675781;font-style:normal;font-weight:normal;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_db89c5250c4ba0ec391f99cc.woff2')format("woff");}.ff3_c00132{font-family:ff3_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:ff4_c00132;src:url('chunks/assets/font_b9b27fb2cfa6240e91104c8b.woff2')format("woff");}.ff4_c00132{font-family:ff4_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;}
.m0_c00132{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls3_c00132{letter-spacing:0.000000px;}
.ls1_c00132{letter-spacing:0.011169px;}
.ls2_c00132{letter-spacing:0.189300px;}
.ls0_c00132{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00132{word-spacing:-17.999993px;}
.ws3_c00132{word-spacing:-14.939994px;}
.ws1_c00132{word-spacing:-12.434276px;}
.ws2_c00132{word-spacing:-9.731165px;}
.ws4_c00132{word-spacing:0.000000px;}
._12_c00132{margin-left:-3.332523px;}
._8_c00132{margin-left:-2.139990px;}
._1_c00132{margin-left:-1.105374px;}
._0_c00132{width:1.478351px;}
._a_c00132{width:2.711529px;}
._9_c00132{width:3.760732px;}
._f_c00132{width:5.397024px;}
._4_c00132{width:7.111701px;}
._c_c00132{width:8.117230px;}
._b_c00132{width:9.485597px;}
._e_c00132{width:11.556289px;}
._5_c00132{width:12.862469px;}
._6_c00132{width:13.894826px;}
._7_c00132{width:15.506764px;}
._10_c00132{width:16.680432px;}
._d_c00132{width:19.297137px;}
._11_c00132{width:23.961890px;}
._3_c00132{width:50.104979px;}
._2_c00132{width:51.222282px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs4_c00132{font-size:38.879984px;}
.fs3_c00132{font-size:48.239981px;}
.fs0_c00132{font-size:59.759976px;}
.fs1_c00132{font-size:66.239974px;}
.fs2_c00132{font-size:71.999971px;}
.y0_c00132{bottom:0.000000px;}
.y4_c00132{bottom:75.900270px;}
.y3_c00132{bottom:114.060254px;}
.y2c_c00132{bottom:133.319947px;}
.y2b_c00132{bottom:150.599940px;}
.y2a_c00132{bottom:167.879933px;}
.y29_c00132{bottom:174.719930px;}
.y28_c00132{bottom:185.159926px;}
.y27_c00132{bottom:202.439919px;}
.y26_c00132{bottom:209.279916px;}
.y25_c00132{bottom:228.179909px;}
.y24_c00132{bottom:235.019906px;}
.y23_c00132{bottom:246.359901px;}
.y22_c00132{bottom:266.519893px;}
.y21_c00132{bottom:297.839881px;}
.y20_c00132{bottom:328.979868px;}
.y1f_c00132{bottom:359.939856px;}
.y1d_c00132{bottom:406.019838px;}
.y1e_c00132{bottom:414.299834px;}
.y1c_c00132{bottom:436.979825px;}
.y1b_c00132{bottom:468.119813px;}
.y1a_c00132{bottom:499.079800px;}
.y19_c00132{bottom:530.219788px;}
.y17_c00132{bottom:561.179776px;}
.y18_c00132{bottom:569.459772px;}
.y16_c00132{bottom:592.319763px;}
.y14_c00132{bottom:623.279751px;}
.y15_c00132{bottom:631.559747px;}
.y13_c00132{bottom:654.419738px;}
.y12_c00132{bottom:685.379726px;}
.y11_c00132{bottom:716.519713px;}
.y10_c00132{bottom:747.479701px;}
.yf_c00132{bottom:778.619689px;}
.ye_c00132{bottom:824.699670px;}
.yd_c00132{bottom:855.659658px;}
.yc_c00132{bottom:886.799645px;}
.yb_c00132{bottom:917.759633px;}
.ya_c00132{bottom:963.839614px;}
.y9_c00132{bottom:994.799602px;}
.y8_c00132{bottom:1025.939590px;}
.y7_c00132{bottom:1056.899577px;}
.y6_c00132{bottom:1088.039565px;}
.y5_c00132{bottom:1118.999552px;}
.y2_c00132{bottom:1176.059530px;}
.y1_c00132{bottom:1196.219522px;}
.h8_c00132{height:38.158578px;}
.h2_c00132{height:44.149201px;}
.h7_c00132{height:47.321348px;}
.h5_c00132{height:47.344903px;}
.h1_c00132{height:58.651148px;}
.h9_c00132{height:65.010911px;}
.h6_c00132{height:70.628878px;}
.h4_c00132{height:70.664034px;}
.h3_c00132{height:72.562471px;}
.h0_c00132{height:1263.000000px;}
.w0_c00132{width:892.500000px;}
.x0_c00132{left:0.000000px;}
.x5_c00132{left:127.620262px;}
.xd_c00132{left:142.199943px;}
.x6_c00132{left:180.719928px;}
.x1_c00132{left:181.799927px;}
.xe_c00132{left:271.439891px;}
.x2_c00132{left:329.039408px;}
.x4_c00132{left:433.979826px;}
.x7_c00132{left:439.199824px;}
.x8_c00132{left:457.559817px;}
.x9_c00132{left:462.599815px;}
.xa_c00132{left:480.959808px;}
.xb_c00132{left:626.579749px;}
.xc_c00132{left:644.939742px;}
.x3_c00132{left:765.359694px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls3_c00132{letter-spacing:0.000000pt;}
.ls1_c00132{letter-spacing:0.009928pt;}
.ls2_c00132{letter-spacing:0.168267pt;}
.ls0_c00132{letter-spacing:0.332694pt;}
.ws0_c00132{word-spacing:-15.999994pt;}
.ws3_c00132{word-spacing:-13.279995pt;}
.ws1_c00132{word-spacing:-11.052689pt;}
.ws2_c00132{word-spacing:-8.649924pt;}
.ws4_c00132{word-spacing:0.000000pt;}
._12_c00132{margin-left:-2.962243pt;}
._8_c00132{margin-left:-1.902214pt;}
._1_c00132{margin-left:-0.982555pt;}
._0_c00132{width:1.314090pt;}
._a_c00132{width:2.410248pt;}
._9_c00132{width:3.342873pt;}
._f_c00132{width:4.797355pt;}
._4_c00132{width:6.321512pt;}
._c_c00132{width:7.215316pt;}
._b_c00132{width:8.431642pt;}
._e_c00132{width:10.272257pt;}
._5_c00132{width:11.433306pt;}
._6_c00132{width:12.350956pt;}
._7_c00132{width:13.783790pt;}
._10_c00132{width:14.827050pt;}
._d_c00132{width:17.153011pt;}
._11_c00132{width:21.299458pt;}
._3_c00132{width:44.537759pt;}
._2_c00132{width:45.530917pt;}
.fs4_c00132{font-size:34.559986pt;}
.fs3_c00132{font-size:42.879983pt;}
.fs0_c00132{font-size:53.119979pt;}
.fs1_c00132{font-size:58.879976pt;}
.fs2_c00132{font-size:63.999974pt;}
.y0_c00132{bottom:0.000000pt;}
.y4_c00132{bottom:67.466906pt;}
.y3_c00132{bottom:101.386893pt;}
.y2c_c00132{bottom:118.506619pt;}
.y2b_c00132{bottom:133.866613pt;}
.y2a_c00132{bottom:149.226607pt;}
.y29_c00132{bottom:155.306605pt;}
.y28_c00132{bottom:164.586601pt;}
.y27_c00132{bottom:179.946595pt;}
.y26_c00132{bottom:186.026592pt;}
.y25_c00132{bottom:202.826586pt;}
.y24_c00132{bottom:208.906583pt;}
.y23_c00132{bottom:218.986579pt;}
.y22_c00132{bottom:236.906572pt;}
.y21_c00132{bottom:264.746561pt;}
.y20_c00132{bottom:292.426550pt;}
.y1f_c00132{bottom:319.946539pt;}
.y1d_c00132{bottom:360.906522pt;}
.y1e_c00132{bottom:368.266519pt;}
.y1c_c00132{bottom:388.426511pt;}
.y1b_c00132{bottom:416.106500pt;}
.y1a_c00132{bottom:443.626489pt;}
.y19_c00132{bottom:471.306478pt;}
.y17_c00132{bottom:498.826467pt;}
.y18_c00132{bottom:506.186464pt;}
.y16_c00132{bottom:526.506456pt;}
.y14_c00132{bottom:554.026445pt;}
.y15_c00132{bottom:561.386442pt;}
.y13_c00132{bottom:581.706434pt;}
.y12_c00132{bottom:609.226423pt;}
.y11_c00132{bottom:636.906412pt;}
.y10_c00132{bottom:664.426401pt;}
.yf_c00132{bottom:692.106390pt;}
.ye_c00132{bottom:733.066373pt;}
.yd_c00132{bottom:760.586362pt;}
.yc_c00132{bottom:788.266351pt;}
.yb_c00132{bottom:815.786340pt;}
.ya_c00132{bottom:856.746324pt;}
.y9_c00132{bottom:884.266313pt;}
.y8_c00132{bottom:911.946302pt;}
.y7_c00132{bottom:939.466291pt;}
.y6_c00132{bottom:967.146280pt;}
.y5_c00132{bottom:994.666269pt;}
.y2_c00132{bottom:1045.386249pt;}
.y1_c00132{bottom:1063.306241pt;}
.h8_c00132{height:33.918736pt;}
.h2_c00132{height:39.243734pt;}
.h7_c00132{height:42.063421pt;}
.h5_c00132{height:42.084358pt;}
.h1_c00132{height:52.134354pt;}
.h9_c00132{height:57.787477pt;}
.h6_c00132{height:62.781225pt;}
.h4_c00132{height:62.812475pt;}
.h3_c00132{height:64.499974pt;}
.h0_c00132{height:1122.666667pt;}
.w0_c00132{width:793.333333pt;}
.x0_c00132{left:0.000000pt;}
.x5_c00132{left:113.440233pt;}
.xd_c00132{left:126.399949pt;}
.x6_c00132{left:160.639936pt;}
.x1_c00132{left:161.599935pt;}
.xe_c00132{left:241.279903pt;}
.x2_c00132{left:292.479474pt;}
.x4_c00132{left:385.759846pt;}
.x7_c00132{left:390.399844pt;}
.x8_c00132{left:406.719837pt;}
.x9_c00132{left:411.199836pt;}
.xa_c00132{left:427.519829pt;}
.xb_c00132{left:556.959777pt;}
.xc_c00132{left:573.279771pt;}
.x3_c00132{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fc74d2fb0d2dc21c3d92a65.woff2')format("woff");}.ff1_c00133{font-family:ff1_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:ff2_c00133;src:url('chunks/assets/font_1ccdf4f6f84b11f367c4a38d.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:0.675781;font-style:normal;font-weight:normal;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_dd291908289e7a98cc38beb8.woff2')format("woff");}.ff3_c00133{font-family:ff3_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:ff4_c00133;src:url('chunks/assets/font_512c73bb4a18298256103324.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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls2_c00133{letter-spacing:0.000000px;}
.ls1_c00133{letter-spacing:0.011169px;}
.ls0_c00133{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00133{word-spacing:-12.434276px;}
.ws1_c00133{word-spacing:-9.731165px;}
.ws2_c00133{word-spacing:0.000000px;}
._10_c00133{margin-left:-10.465711px;}
._1_c00133{margin-left:-1.105374px;}
._0_c00133{width:1.195563px;}
._3_c00133{width:2.506916px;}
._a_c00133{width:3.846531px;}
._b_c00133{width:5.007272px;}
._c_c00133{width:6.423582px;}
._5_c00133{width:8.130214px;}
._e_c00133{width:10.586754px;}
._4_c00133{width:12.886207px;}
._d_c00133{width:15.133692px;}
._f_c00133{width:16.189529px;}
._2_c00133{width:19.074791px;}
._6_c00133{width:22.128898px;}
._7_c00133{width:23.603959px;}
._9_c00133{width:31.127097px;}
._8_c00133{width:32.155846px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs4_c00133{font-size:38.879984px;}
.fs3_c00133{font-size:48.239981px;}
.fs0_c00133{font-size:59.759976px;}
.fs1_c00133{font-size:66.239974px;}
.fs2_c00133{font-size:71.999971px;}
.y0_c00133{bottom:0.000000px;}
.y4_c00133{bottom:75.899970px;}
.y3_c00133{bottom:114.059954px;}
.y2a_c00133{bottom:152.219939px;}
.y29_c00133{bottom:171.479931px;}
.y28_c00133{bottom:178.319929px;}
.y27_c00133{bottom:224.759910px;}
.y26_c00133{bottom:242.039903px;}
.y25_c00133{bottom:248.879900px;}
.y24_c00133{bottom:280.379888px;}
.y23_c00133{bottom:297.479881px;}
.y22_c00133{bottom:304.319878px;}
.y21_c00133{bottom:315.659874px;}
.y20_c00133{bottom:343.019863px;}
.y1f_c00133{bottom:374.159850px;}
.y1e_c00133{bottom:405.119838px;}
.y1c_c00133{bottom:436.259825px;}
.y1d_c00133{bottom:444.539822px;}
.y1b_c00133{bottom:467.219813px;}
.y1a_c00133{bottom:498.359801px;}
.y19_c00133{bottom:529.319788px;}
.y18_c00133{bottom:560.459776px;}
.y17_c00133{bottom:591.419763px;}
.y16_c00133{bottom:622.559751px;}
.y15_c00133{bottom:653.519739px;}
.y14_c00133{bottom:684.659726px;}
.y13_c00133{bottom:715.619714px;}
.y12_c00133{bottom:746.759701px;}
.y11_c00133{bottom:777.719689px;}
.y10_c00133{bottom:808.859676px;}
.ye_c00133{bottom:854.759658px;}
.yf_c00133{bottom:863.039655px;}
.yd_c00133{bottom:885.899646px;}
.yc_c00133{bottom:916.859633px;}
.yb_c00133{bottom:947.999621px;}
.ya_c00133{bottom:978.959608px;}
.y8_c00133{bottom:1025.039590px;}
.y9_c00133{bottom:1033.319587px;}
.y7_c00133{bottom:1056.179578px;}
.y6_c00133{bottom:1087.139565px;}
.y5_c00133{bottom:1118.279553px;}
.y2_c00133{bottom:1157.159537px;}
.y1_c00133{bottom:1196.039522px;}
.h8_c00133{height:38.158578px;}
.h7_c00133{height:39.183734px;}
.h2_c00133{height:44.149201px;}
.h6_c00133{height:47.321348px;}
.h4_c00133{height:47.344903px;}
.h1_c00133{height:58.651148px;}
.h3_c00133{height:70.628878px;}
.h5_c00133{height:70.664034px;}
.h0_c00133{height:1263.000000px;}
.w0_c00133{width:892.500000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:127.619949px;}
.xb_c00133{left:142.199943px;}
.x3_c00133{left:180.719928px;}
.xd_c00133{left:220.139912px;}
.xc_c00133{left:297.539881px;}
.x6_c00133{left:335.699866px;}
.x7_c00133{left:354.059858px;}
.x4_c00133{left:360.719856px;}
.x5_c00133{left:379.079848px;}
.x2_c00133{left:433.979514px;}
.x9_c00133{left:468.719813px;}
.xa_c00133{left:487.079805px;}
.x8_c00133{left:760.319696px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls2_c00133{letter-spacing:0.000000pt;}
.ls1_c00133{letter-spacing:0.009928pt;}
.ls0_c00133{letter-spacing:0.332694pt;}
.ws0_c00133{word-spacing:-11.052689pt;}
.ws1_c00133{word-spacing:-8.649924pt;}
.ws2_c00133{word-spacing:0.000000pt;}
._10_c00133{margin-left:-9.302854pt;}
._1_c00133{margin-left:-0.982555pt;}
._0_c00133{width:1.062723pt;}
._3_c00133{width:2.228370pt;}
._a_c00133{width:3.419138pt;}
._b_c00133{width:4.450909pt;}
._c_c00133{width:5.709851pt;}
._5_c00133{width:7.226857pt;}
._e_c00133{width:9.410448pt;}
._4_c00133{width:11.454406pt;}
._d_c00133{width:13.452171pt;}
._f_c00133{width:14.390693pt;}
._2_c00133{width:16.955370pt;}
._6_c00133{width:19.670131pt;}
._7_c00133{width:20.981297pt;}
._9_c00133{width:27.668530pt;}
._8_c00133{width:28.582974pt;}
.fs4_c00133{font-size:34.559986pt;}
.fs3_c00133{font-size:42.879983pt;}
.fs0_c00133{font-size:53.119979pt;}
.fs1_c00133{font-size:58.879976pt;}
.fs2_c00133{font-size:63.999974pt;}
.y0_c00133{bottom:0.000000pt;}
.y4_c00133{bottom:67.466640pt;}
.y3_c00133{bottom:101.386626pt;}
.y2a_c00133{bottom:135.306613pt;}
.y29_c00133{bottom:152.426606pt;}
.y28_c00133{bottom:158.506603pt;}
.y27_c00133{bottom:199.786587pt;}
.y26_c00133{bottom:215.146581pt;}
.y25_c00133{bottom:221.226578pt;}
.y24_c00133{bottom:249.226567pt;}
.y23_c00133{bottom:264.426561pt;}
.y22_c00133{bottom:270.506558pt;}
.y21_c00133{bottom:280.586554pt;}
.y20_c00133{bottom:304.906545pt;}
.y1f_c00133{bottom:332.586534pt;}
.y1e_c00133{bottom:360.106523pt;}
.y1c_c00133{bottom:387.786512pt;}
.y1d_c00133{bottom:395.146509pt;}
.y1b_c00133{bottom:415.306501pt;}
.y1a_c00133{bottom:442.986489pt;}
.y19_c00133{bottom:470.506478pt;}
.y18_c00133{bottom:498.186467pt;}
.y17_c00133{bottom:525.706456pt;}
.y16_c00133{bottom:553.386445pt;}
.y15_c00133{bottom:580.906434pt;}
.y14_c00133{bottom:608.586423pt;}
.y13_c00133{bottom:636.106412pt;}
.y12_c00133{bottom:663.786401pt;}
.y11_c00133{bottom:691.306390pt;}
.y10_c00133{bottom:718.986379pt;}
.ye_c00133{bottom:759.786363pt;}
.yf_c00133{bottom:767.146360pt;}
.yd_c00133{bottom:787.466352pt;}
.yc_c00133{bottom:814.986341pt;}
.yb_c00133{bottom:842.666330pt;}
.ya_c00133{bottom:870.186319pt;}
.y8_c00133{bottom:911.146302pt;}
.y9_c00133{bottom:918.506299pt;}
.y7_c00133{bottom:938.826291pt;}
.y6_c00133{bottom:966.346280pt;}
.y5_c00133{bottom:994.026269pt;}
.y2_c00133{bottom:1028.586255pt;}
.y1_c00133{bottom:1063.146241pt;}
.h8_c00133{height:33.918736pt;}
.h7_c00133{height:34.829986pt;}
.h2_c00133{height:39.243734pt;}
.h6_c00133{height:42.063421pt;}
.h4_c00133{height:42.084358pt;}
.h1_c00133{height:52.134354pt;}
.h3_c00133{height:62.781225pt;}
.h5_c00133{height:62.812475pt;}
.h0_c00133{height:1122.666667pt;}
.w0_c00133{width:793.333333pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:113.439955pt;}
.xb_c00133{left:126.399949pt;}
.x3_c00133{left:160.639936pt;}
.xd_c00133{left:195.679922pt;}
.xc_c00133{left:264.479894pt;}
.x6_c00133{left:298.399881pt;}
.x7_c00133{left:314.719874pt;}
.x4_c00133{left:320.639872pt;}
.x5_c00133{left:336.959865pt;}
.x2_c00133{left:385.759568pt;}
.x9_c00133{left:416.639833pt;}
.xa_c00133{left:432.959827pt;}
.x8_c00133{left:675.839730pt;}
}





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

.ir_c00134:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00134;src:url('chunks/assets/font_2c623ca74ded62eac9e2bd6b.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_d4416fd607bc93d070348057.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_37ef077af69eb92cb8e1c703.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls5_c00134{letter-spacing:0.000000px;}
.ls2_c00134{letter-spacing:0.010620px;}
.ls4_c00134{letter-spacing:0.011169px;}
.ls3_c00134{letter-spacing:0.374281px;}
.ls1_c00134{letter-spacing:4.333198px;}
.ls0_c00134{letter-spacing:5.053618px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00134{word-spacing:-17.999993px;}
.ws0_c00134{word-spacing:-12.434276px;}
.ws2_c00134{word-spacing:-9.731165px;}
.ws3_c00134{word-spacing:0.000000px;}
._f_c00134{margin-left:-9.947201px;}
._1_c00134{margin-left:-1.105374px;}
._0_c00134{width:1.478351px;}
._c_c00134{width:2.505984px;}
._6_c00134{width:3.520447px;}
._4_c00134{width:4.776759px;}
._2_c00134{width:5.905072px;}
._3_c00134{width:6.925868px;}
._a_c00134{width:8.336884px;}
._b_c00134{width:10.004547px;}
._e_c00134{width:12.523613px;}
._5_c00134{width:19.290674px;}
._d_c00134{width:25.425025px;}
._8_c00134{width:26.726669px;}
._9_c00134{width:27.809607px;}
._7_c00134{width:36.101472px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs4_c00134{font-size:38.879984px;}
.fs3_c00134{font-size:48.239981px;}
.fs0_c00134{font-size:59.759976px;}
.fs1_c00134{font-size:66.239974px;}
.fs2_c00134{font-size:71.999971px;}
.y0_c00134{bottom:0.000000px;}
.y4_c00134{bottom:75.900270px;}
.y3_c00134{bottom:114.060254px;}
.y28_c00134{bottom:133.319947px;}
.y27_c00134{bottom:150.599940px;}
.y26_c00134{bottom:167.879933px;}
.y25_c00134{bottom:174.719930px;}
.y24_c00134{bottom:185.159926px;}
.y23_c00134{bottom:202.439919px;}
.y22_c00134{bottom:209.279916px;}
.y21_c00134{bottom:220.619912px;}
.y20_c00134{bottom:342.839863px;}
.y1f_c00134{bottom:373.979850px;}
.y1e_c00134{bottom:404.939838px;}
.y1d_c00134{bottom:436.079826px;}
.y1c_c00134{bottom:467.039813px;}
.y1b_c00134{bottom:498.179801px;}
.y19_c00134{bottom:529.139788px;}
.y1a_c00134{bottom:537.419785px;}
.y18_c00134{bottom:560.279776px;}
.y17_c00134{bottom:591.239764px;}
.y16_c00134{bottom:622.199751px;}
.y15_c00134{bottom:653.339739px;}
.y14_c00134{bottom:684.299726px;}
.y13_c00134{bottom:715.439714px;}
.y12_c00134{bottom:746.399701px;}
.y11_c00134{bottom:777.539689px;}
.y10_c00134{bottom:808.499677px;}
.yf_c00134{bottom:839.639664px;}
.ye_c00134{bottom:870.599652px;}
.yd_c00134{bottom:901.739639px;}
.yc_c00134{bottom:932.699627px;}
.ya_c00134{bottom:963.839614px;}
.yb_c00134{bottom:972.119611px;}
.y9_c00134{bottom:994.799602px;}
.y8_c00134{bottom:1025.939590px;}
.y7_c00134{bottom:1056.899577px;}
.y6_c00134{bottom:1088.039565px;}
.y5_c00134{bottom:1118.999552px;}
.y2_c00134{bottom:1176.059530px;}
.y1_c00134{bottom:1196.219522px;}
.h6_c00134{height:38.158578px;}
.h2_c00134{height:44.149201px;}
.h4_c00134{height:47.344903px;}
.h1_c00134{height:58.651148px;}
.h5_c00134{height:70.628878px;}
.h3_c00134{height:70.664034px;}
.h0_c00134{height:1263.000000px;}
.w0_c00134{width:892.500000px;}
.x0_c00134{left:0.000000px;}
.x5_c00134{left:127.620262px;}
.xb_c00134{left:142.199943px;}
.x8_c00134{left:180.720577px;}
.x1_c00134{left:181.799927px;}
.x2_c00134{left:329.039408px;}
.x9_c00134{left:391.139844px;}
.xa_c00134{left:409.499836px;}
.x4_c00134{left:433.979826px;}
.x6_c00134{left:686.879725px;}
.x7_c00134{left:705.239718px;}
.x3_c00134{left:765.359694px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls5_c00134{letter-spacing:0.000000pt;}
.ls2_c00134{letter-spacing:0.009440pt;}
.ls4_c00134{letter-spacing:0.009928pt;}
.ls3_c00134{letter-spacing:0.332694pt;}
.ls1_c00134{letter-spacing:3.851732pt;}
.ls0_c00134{letter-spacing:4.492105pt;}
.ws1_c00134{word-spacing:-15.999994pt;}
.ws0_c00134{word-spacing:-11.052689pt;}
.ws2_c00134{word-spacing:-8.649924pt;}
.ws3_c00134{word-spacing:0.000000pt;}
._f_c00134{margin-left:-8.841956pt;}
._1_c00134{margin-left:-0.982555pt;}
._0_c00134{width:1.314090pt;}
._c_c00134{width:2.227541pt;}
._6_c00134{width:3.129287pt;}
._4_c00134{width:4.246008pt;}
._2_c00134{width:5.248953pt;}
._3_c00134{width:6.156327pt;}
._a_c00134{width:7.410564pt;}
._b_c00134{width:8.892931pt;}
._e_c00134{width:11.132100pt;}
._5_c00134{width:17.147266pt;}
._d_c00134{width:22.600023pt;}
._8_c00134{width:23.757039pt;}
._9_c00134{width:24.719651pt;}
._7_c00134{width:32.090197pt;}
.fs4_c00134{font-size:34.559986pt;}
.fs3_c00134{font-size:42.879983pt;}
.fs0_c00134{font-size:53.119979pt;}
.fs1_c00134{font-size:58.879976pt;}
.fs2_c00134{font-size:63.999974pt;}
.y0_c00134{bottom:0.000000pt;}
.y4_c00134{bottom:67.466906pt;}
.y3_c00134{bottom:101.386893pt;}
.y28_c00134{bottom:118.506619pt;}
.y27_c00134{bottom:133.866613pt;}
.y26_c00134{bottom:149.226607pt;}
.y25_c00134{bottom:155.306605pt;}
.y24_c00134{bottom:164.586601pt;}
.y23_c00134{bottom:179.946595pt;}
.y22_c00134{bottom:186.026592pt;}
.y21_c00134{bottom:196.106588pt;}
.y20_c00134{bottom:304.746545pt;}
.y1f_c00134{bottom:332.426534pt;}
.y1e_c00134{bottom:359.946523pt;}
.y1d_c00134{bottom:387.626512pt;}
.y1c_c00134{bottom:415.146501pt;}
.y1b_c00134{bottom:442.826490pt;}
.y19_c00134{bottom:470.346479pt;}
.y1a_c00134{bottom:477.706476pt;}
.y18_c00134{bottom:498.026467pt;}
.y17_c00134{bottom:525.546456pt;}
.y16_c00134{bottom:553.066445pt;}
.y15_c00134{bottom:580.746434pt;}
.y14_c00134{bottom:608.266423pt;}
.y13_c00134{bottom:635.946412pt;}
.y12_c00134{bottom:663.466401pt;}
.y11_c00134{bottom:691.146390pt;}
.y10_c00134{bottom:718.666379pt;}
.yf_c00134{bottom:746.346368pt;}
.ye_c00134{bottom:773.866357pt;}
.yd_c00134{bottom:801.546346pt;}
.yc_c00134{bottom:829.066335pt;}
.ya_c00134{bottom:856.746324pt;}
.yb_c00134{bottom:864.106321pt;}
.y9_c00134{bottom:884.266313pt;}
.y8_c00134{bottom:911.946302pt;}
.y7_c00134{bottom:939.466291pt;}
.y6_c00134{bottom:967.146280pt;}
.y5_c00134{bottom:994.666269pt;}
.y2_c00134{bottom:1045.386249pt;}
.y1_c00134{bottom:1063.306241pt;}
.h6_c00134{height:33.918736pt;}
.h2_c00134{height:39.243734pt;}
.h4_c00134{height:42.084358pt;}
.h1_c00134{height:52.134354pt;}
.h5_c00134{height:62.781225pt;}
.h3_c00134{height:62.812475pt;}
.h0_c00134{height:1122.666667pt;}
.w0_c00134{width:793.333333pt;}
.x0_c00134{left:0.000000pt;}
.x5_c00134{left:113.440233pt;}
.xb_c00134{left:126.399949pt;}
.x8_c00134{left:160.640513pt;}
.x1_c00134{left:161.599935pt;}
.x2_c00134{left:292.479474pt;}
.x9_c00134{left:347.679861pt;}
.xa_c00134{left:363.999854pt;}
.x4_c00134{left:385.759846pt;}
.x6_c00134{left:610.559756pt;}
.x7_c00134{left:626.879749pt;}
.x3_c00134{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1767122395926eceffa49a50.woff2')format("woff");}.ff1_c00135{font-family:ff1_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:ff2_c00135;src:url('chunks/assets/font_4858f47c5bcc7e027b24f3ef.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:0.675781;font-style:normal;font-weight:normal;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_d9339c973fa4b9a2631f1ff7.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_ec54378a943959dacd4c0617.woff2')format("woff");}.ff4_c00135{font-family:ff4_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:ff5_c00135;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls4_c00135{letter-spacing:0.000000px;}
.ls2_c00135{letter-spacing:0.011169px;}
.ls3_c00135{letter-spacing:0.189300px;}
.ls0_c00135{letter-spacing:0.374281px;}
.ls1_c00135{letter-spacing:0.741660px;}
.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;}
}
.ws2_c00135{word-spacing:-14.939994px;}
.ws0_c00135{word-spacing:-12.434276px;}
.ws1_c00135{word-spacing:-9.731165px;}
.ws3_c00135{word-spacing:0.000000px;}
._c_c00135{margin-left:-10.409917px;}
._1_c00135{margin-left:-1.105374px;}
._0_c00135{width:1.195563px;}
._3_c00135{width:2.357902px;}
._a_c00135{width:3.710376px;}
._7_c00135{width:6.367788px;}
._6_c00135{width:7.597714px;}
._b_c00135{width:20.359732px;}
._9_c00135{width:22.518658px;}
._5_c00135{width:23.683121px;}
._4_c00135{width:24.944477px;}
._8_c00135{width:27.088025px;}
._2_c00135{width:30.062977px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs4_c00135{font-size:38.879984px;}
.fs3_c00135{font-size:48.239981px;}
.fs0_c00135{font-size:59.759976px;}
.fs1_c00135{font-size:66.239974px;}
.fs2_c00135{font-size:71.999971px;}
.y0_c00135{bottom:0.000000px;}
.y4_c00135{bottom:75.899970px;}
.y3_c00135{bottom:114.059954px;}
.y28_c00135{bottom:134.400246px;}
.y27_c00135{bottom:153.479939px;}
.y26_c00135{bottom:170.759932px;}
.y25_c00135{bottom:177.599929px;}
.y24_c00135{bottom:188.939924px;}
.y23_c00135{bottom:208.199917px;}
.y22_c00135{bottom:225.479910px;}
.y21_c00135{bottom:232.319907px;}
.y20_c00135{bottom:243.659903px;}
.y1f_c00135{bottom:327.719869px;}
.y1e_c00135{bottom:373.799850px;}
.y1d_c00135{bottom:419.879832px;}
.y1c_c00135{bottom:465.779814px;}
.y1a_c00135{bottom:497.279801px;}
.y1b_c00135{bottom:505.559798px;}
.y19_c00135{bottom:528.239789px;}
.y18_c00135{bottom:559.379776px;}
.y17_c00135{bottom:590.339764px;}
.y16_c00135{bottom:621.479751px;}
.y15_c00135{bottom:652.439739px;}
.y14_c00135{bottom:683.579727px;}
.y13_c00135{bottom:714.539714px;}
.y12_c00135{bottom:745.679702px;}
.y11_c00135{bottom:776.639689px;}
.y10_c00135{bottom:807.779677px;}
.yf_c00135{bottom:838.739665px;}
.ye_c00135{bottom:869.879652px;}
.yd_c00135{bottom:900.839640px;}
.yc_c00135{bottom:931.979627px;}
.yb_c00135{bottom:962.939615px;}
.ya_c00135{bottom:994.079602px;}
.y9_c00135{bottom:1025.039590px;}
.y8_c00135{bottom:1056.179578px;}
.y6_c00135{bottom:1087.139565px;}
.y7_c00135{bottom:1095.419562px;}
.y5_c00135{bottom:1118.279553px;}
.y2_c00135{bottom:1157.159537px;}
.y1_c00135{bottom:1196.039522px;}
.h8_c00135{height:38.158578px;}
.h2_c00135{height:44.149201px;}
.h6_c00135{height:47.321348px;}
.h4_c00135{height:47.344903px;}
.h1_c00135{height:58.651148px;}
.h3_c00135{height:70.628878px;}
.h5_c00135{height:70.664034px;}
.h7_c00135{height:72.562471px;}
.h0_c00135{height:1263.000000px;}
.w0_c00135{width:892.500000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:127.619949px;}
.x8_c00135{left:142.199943px;}
.x3_c00135{left:180.719928px;}
.x2_c00135{left:433.979514px;}
.x6_c00135{left:436.679825px;}
.x7_c00135{left:455.039818px;}
.x4_c00135{left:628.739749px;}
.x5_c00135{left:647.099741px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls4_c00135{letter-spacing:0.000000pt;}
.ls2_c00135{letter-spacing:0.009928pt;}
.ls3_c00135{letter-spacing:0.168267pt;}
.ls0_c00135{letter-spacing:0.332694pt;}
.ls1_c00135{letter-spacing:0.659253pt;}
.ws2_c00135{word-spacing:-13.279995pt;}
.ws0_c00135{word-spacing:-11.052689pt;}
.ws1_c00135{word-spacing:-8.649924pt;}
.ws3_c00135{word-spacing:0.000000pt;}
._c_c00135{margin-left:-9.253260pt;}
._1_c00135{margin-left:-0.982555pt;}
._0_c00135{width:1.062723pt;}
._3_c00135{width:2.095913pt;}
._a_c00135{width:3.298112pt;}
._7_c00135{width:5.660256pt;}
._6_c00135{width:6.753523pt;}
._b_c00135{width:18.097539pt;}
._9_c00135{width:20.016585pt;}
._5_c00135{width:21.051663pt;}
._4_c00135{width:22.172869pt;}
._8_c00135{width:24.078245pt;}
._2_c00135{width:26.722647pt;}
.fs4_c00135{font-size:34.559986pt;}
.fs3_c00135{font-size:42.879983pt;}
.fs0_c00135{font-size:53.119979pt;}
.fs1_c00135{font-size:58.879976pt;}
.fs2_c00135{font-size:63.999974pt;}
.y0_c00135{bottom:0.000000pt;}
.y4_c00135{bottom:67.466640pt;}
.y3_c00135{bottom:101.386626pt;}
.y28_c00135{bottom:119.466886pt;}
.y27_c00135{bottom:136.426612pt;}
.y26_c00135{bottom:151.786606pt;}
.y25_c00135{bottom:157.866604pt;}
.y24_c00135{bottom:167.946599pt;}
.y23_c00135{bottom:185.066593pt;}
.y22_c00135{bottom:200.426586pt;}
.y21_c00135{bottom:206.506584pt;}
.y20_c00135{bottom:216.586580pt;}
.y1f_c00135{bottom:291.306550pt;}
.y1e_c00135{bottom:332.266534pt;}
.y1d_c00135{bottom:373.226517pt;}
.y1c_c00135{bottom:414.026501pt;}
.y1a_c00135{bottom:442.026490pt;}
.y1b_c00135{bottom:449.386487pt;}
.y19_c00135{bottom:469.546479pt;}
.y18_c00135{bottom:497.226468pt;}
.y17_c00135{bottom:524.746457pt;}
.y16_c00135{bottom:552.426446pt;}
.y15_c00135{bottom:579.946435pt;}
.y14_c00135{bottom:607.626424pt;}
.y13_c00135{bottom:635.146413pt;}
.y12_c00135{bottom:662.826402pt;}
.y11_c00135{bottom:690.346391pt;}
.y10_c00135{bottom:718.026379pt;}
.yf_c00135{bottom:745.546368pt;}
.ye_c00135{bottom:773.226357pt;}
.yd_c00135{bottom:800.746346pt;}
.yc_c00135{bottom:828.426335pt;}
.yb_c00135{bottom:855.946324pt;}
.ya_c00135{bottom:883.626313pt;}
.y9_c00135{bottom:911.146302pt;}
.y8_c00135{bottom:938.826291pt;}
.y6_c00135{bottom:966.346280pt;}
.y7_c00135{bottom:973.706277pt;}
.y5_c00135{bottom:994.026269pt;}
.y2_c00135{bottom:1028.586255pt;}
.y1_c00135{bottom:1063.146241pt;}
.h8_c00135{height:33.918736pt;}
.h2_c00135{height:39.243734pt;}
.h6_c00135{height:42.063421pt;}
.h4_c00135{height:42.084358pt;}
.h1_c00135{height:52.134354pt;}
.h3_c00135{height:62.781225pt;}
.h5_c00135{height:62.812475pt;}
.h7_c00135{height:64.499974pt;}
.h0_c00135{height:1122.666667pt;}
.w0_c00135{width:793.333333pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:113.439955pt;}
.x8_c00135{left:126.399949pt;}
.x3_c00135{left:160.639936pt;}
.x2_c00135{left:385.759568pt;}
.x6_c00135{left:388.159845pt;}
.x7_c00135{left:404.479838pt;}
.x4_c00135{left:558.879776pt;}
.x5_c00135{left:575.199770pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82342862eae278ce636bffc0.woff2')format("woff");}.ff1_c00136{font-family:ff1_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:ff2_c00136;src:url('chunks/assets/font_9e902349baad84b0b914539a.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:0.675781;font-style:normal;font-weight:normal;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_502e7c95edf649332ff26477.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.311035;font-style:normal;font-weight:normal;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_0df9bfa681ef8e30dc6a2002.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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls4_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.019831px;}
.ls2_c00136{letter-spacing:0.019875px;}
.ls1_c00136{letter-spacing:165.709134px;}
.ls3_c00136{letter-spacing:284.579886px;}
.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;}
}
.ws1_c00136{word-spacing:-16.579869px;}
.ws0_c00136{word-spacing:-16.559993px;}
.ws2_c00136{word-spacing:0.000000px;}
._b_c00136{margin-left:-2.896022px;}
._1_c00136{margin-left:-1.105374px;}
._0_c00136{width:1.478351px;}
._11_c00136{width:3.058583px;}
._10_c00136{width:6.974338px;}
._8_c00136{width:8.358122px;}
._9_c00136{width:9.760108px;}
._2_c00136{width:10.912640px;}
._5_c00136{width:11.975910px;}
._6_c00136{width:13.441371px;}
._7_c00136{width:14.564153px;}
._a_c00136{width:16.502365px;}
._13_c00136{width:18.374007px;}
._15_c00136{width:19.862875px;}
._e_c00136{width:22.718472px;}
._3_c00136{width:24.391760px;}
._4_c00136{width:25.744731px;}
._16_c00136{width:28.818883px;}
._f_c00136{width:35.794166px;}
._14_c00136{width:36.810011px;}
._17_c00136{width:41.834657px;}
._12_c00136{width:59.883538px;}
._18_c00136{width:80.035637px;}
._1a_c00136{width:148.030850px;}
._19_c00136{width:229.174818px;}
._d_c00136{width:264.427700px;}
._c_c00136{width:632.599981px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:59.759976px;}
.fs1_c00136{font-size:66.239974px;}
.fs2_c00136{font-size:71.999971px;}
.y0_c00136{bottom:0.000000px;}
.y4_c00136{bottom:75.900270px;}
.y3_c00136{bottom:114.060254px;}
.y2c_c00136{bottom:139.079944px;}
.y2b_c00136{bottom:160.859936px;}
.y2a_c00136{bottom:182.639927px;}
.y29_c00136{bottom:205.679918px;}
.y28_c00136{bottom:227.459909px;}
.y27_c00136{bottom:249.239900px;}
.y26_c00136{bottom:272.279891px;}
.y25_c00136{bottom:294.059882px;}
.y24_c00136{bottom:315.839874px;}
.y23_c00136{bottom:337.619865px;}
.y22_c00136{bottom:361.019856px;}
.y21_c00136{bottom:382.799847px;}
.y20_c00136{bottom:404.579838px;}
.y1f_c00136{bottom:427.979829px;}
.y1e_c00136{bottom:449.759820px;}
.y1d_c00136{bottom:471.539811px;}
.y1c_c00136{bottom:494.939802px;}
.y1b_c00136{bottom:516.719793px;}
.y1a_c00136{bottom:538.499785px;}
.y19_c00136{bottom:560.279776px;}
.y18_c00136{bottom:582.239767px;}
.y17_c00136{bottom:604.019758px;}
.y16_c00136{bottom:627.239749px;}
.y15_c00136{bottom:649.199740px;}
.y14_c00136{bottom:672.419731px;}
.y13_c00136{bottom:694.199722px;}
.y12_c00136{bottom:716.159714px;}
.y11_c00136{bottom:739.379704px;}
.y10_c00136{bottom:761.159696px;}
.yf_c00136{bottom:783.119687px;}
.ye_c00136{bottom:805.979678px;}
.yd_c00136{bottom:827.759669px;}
.yc_c00136{bottom:872.759651px;}
.yb_c00136{bottom:917.759633px;}
.ya_c00136{bottom:948.719621px;}
.y9_c00136{bottom:979.859608px;}
.y8_c00136{bottom:1010.819596px;}
.y7_c00136{bottom:1041.959583px;}
.y6_c00136{bottom:1087.679565px;}
.y5_c00136{bottom:1118.639553px;}
.y2_c00136{bottom:1176.059530px;}
.y1_c00136{bottom:1196.219522px;}
.h2_c00136{height:44.149201px;}
.h1_c00136{height:58.651148px;}
.h7_c00136{height:64.978568px;}
.h6_c00136{height:65.010911px;}
.h5_c00136{height:66.757473px;}
.h4_c00136{height:70.664034px;}
.h3_c00136{height:72.562471px;}
.h0_c00136{height:1263.000000px;}
.w0_c00136{width:892.500000px;}
.x0_c00136{left:0.000000px;}
.x5_c00136{left:127.620262px;}
.x6_c00136{left:180.719930px;}
.x1_c00136{left:181.799927px;}
.x2_c00136{left:329.039408px;}
.x8_c00136{left:369.539098px;}
.x4_c00136{left:433.979826px;}
.x7_c00136{left:637.379745px;}
.x3_c00136{left:765.359694px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls4_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.017628pt;}
.ls2_c00136{letter-spacing:0.017667pt;}
.ls1_c00136{letter-spacing:147.297008pt;}
.ls3_c00136{letter-spacing:252.959899pt;}
.ws1_c00136{word-spacing:-14.737661pt;}
.ws0_c00136{word-spacing:-14.719994pt;}
.ws2_c00136{word-spacing:0.000000pt;}
._b_c00136{margin-left:-2.574241pt;}
._1_c00136{margin-left:-0.982555pt;}
._0_c00136{width:1.314090pt;}
._11_c00136{width:2.718741pt;}
._10_c00136{width:6.199412pt;}
._8_c00136{width:7.429442pt;}
._9_c00136{width:8.675651pt;}
._2_c00136{width:9.700125pt;}
._5_c00136{width:10.645254pt;}
._6_c00136{width:11.947885pt;}
._7_c00136{width:12.945914pt;}
._a_c00136{width:14.668769pt;}
._13_c00136{width:16.332450pt;}
._15_c00136{width:17.655889pt;}
._e_c00136{width:20.194197pt;}
._3_c00136{width:21.681564pt;}
._4_c00136{width:22.884206pt;}
._16_c00136{width:25.616785pt;}
._f_c00136{width:31.817036pt;}
._14_c00136{width:32.720010pt;}
._17_c00136{width:37.186361pt;}
._12_c00136{width:53.229812pt;}
._18_c00136{width:71.142788pt;}
._1a_c00136{width:131.582978pt;}
._19_c00136{width:203.710949pt;}
._d_c00136{width:235.046845pt;}
._c_c00136{width:562.311094pt;}
.fs0_c00136{font-size:53.119979pt;}
.fs1_c00136{font-size:58.879976pt;}
.fs2_c00136{font-size:63.999974pt;}
.y0_c00136{bottom:0.000000pt;}
.y4_c00136{bottom:67.466906pt;}
.y3_c00136{bottom:101.386893pt;}
.y2c_c00136{bottom:123.626617pt;}
.y2b_c00136{bottom:142.986609pt;}
.y2a_c00136{bottom:162.346602pt;}
.y29_c00136{bottom:182.826594pt;}
.y28_c00136{bottom:202.186586pt;}
.y27_c00136{bottom:221.546578pt;}
.y26_c00136{bottom:242.026570pt;}
.y25_c00136{bottom:261.386562pt;}
.y24_c00136{bottom:280.746554pt;}
.y23_c00136{bottom:300.106547pt;}
.y22_c00136{bottom:320.906538pt;}
.y21_c00136{bottom:340.266531pt;}
.y20_c00136{bottom:359.626523pt;}
.y1f_c00136{bottom:380.426514pt;}
.y1e_c00136{bottom:399.786507pt;}
.y1d_c00136{bottom:419.146499pt;}
.y1c_c00136{bottom:439.946491pt;}
.y1b_c00136{bottom:459.306483pt;}
.y1a_c00136{bottom:478.666475pt;}
.y19_c00136{bottom:498.026467pt;}
.y18_c00136{bottom:517.546460pt;}
.y17_c00136{bottom:536.906452pt;}
.y16_c00136{bottom:557.546444pt;}
.y15_c00136{bottom:577.066436pt;}
.y14_c00136{bottom:597.706428pt;}
.y13_c00136{bottom:617.066420pt;}
.y12_c00136{bottom:636.586412pt;}
.y11_c00136{bottom:657.226404pt;}
.y10_c00136{bottom:676.586396pt;}
.yf_c00136{bottom:696.106388pt;}
.ye_c00136{bottom:716.426380pt;}
.yd_c00136{bottom:735.786372pt;}
.yc_c00136{bottom:775.786356pt;}
.yb_c00136{bottom:815.786340pt;}
.ya_c00136{bottom:843.306329pt;}
.y9_c00136{bottom:870.986318pt;}
.y8_c00136{bottom:898.506307pt;}
.y7_c00136{bottom:926.186296pt;}
.y6_c00136{bottom:966.826280pt;}
.y5_c00136{bottom:994.346269pt;}
.y2_c00136{bottom:1045.386249pt;}
.y1_c00136{bottom:1063.306241pt;}
.h2_c00136{height:39.243734pt;}
.h1_c00136{height:52.134354pt;}
.h7_c00136{height:57.758727pt;}
.h6_c00136{height:57.787477pt;}
.h5_c00136{height:59.339976pt;}
.h4_c00136{height:62.812475pt;}
.h3_c00136{height:64.499974pt;}
.h0_c00136{height:1122.666667pt;}
.w0_c00136{width:793.333333pt;}
.x0_c00136{left:0.000000pt;}
.x5_c00136{left:113.440233pt;}
.x6_c00136{left:160.639938pt;}
.x1_c00136{left:161.599935pt;}
.x2_c00136{left:292.479474pt;}
.x8_c00136{left:328.479198pt;}
.x4_c00136{left:385.759846pt;}
.x7_c00136{left:566.559773pt;}
.x3_c00136{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67c6296b9c2503093d1b8a57.woff2')format("woff");}.ff1_c00137{font-family:ff1_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:ff2_c00137;src:url('chunks/assets/font_73142f4f3697596a7bb3cb80.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:0.675781;font-style:normal;font-weight:normal;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_c1bdab1e2ac6a7f6abdc6ad3.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;}
.m0_c00137{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls3_c00137{letter-spacing:0.000000px;}
.ls1_c00137{letter-spacing:0.019831px;}
.ls0_c00137{letter-spacing:0.019875px;}
.ls2_c00137{letter-spacing:431.548027px;}
.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:-16.579869px;}
.ws2_c00137{word-spacing:-16.579825px;}
.ws0_c00137{word-spacing:-16.559993px;}
.ws3_c00137{word-spacing:0.000000px;}
._1_c00137{margin-left:-1.105374px;}
._0_c00137{width:1.195563px;}
._e_c00137{width:7.491021px;}
._a_c00137{width:8.792653px;}
._9_c00137{width:10.135650px;}
._10_c00137{width:11.257198px;}
._b_c00137{width:12.678223px;}
._d_c00137{width:14.814310px;}
._18_c00137{width:20.367312px;}
._8_c00137{width:21.492973px;}
._7_c00137{width:22.637288px;}
._6_c00137{width:23.842277px;}
._13_c00137{width:26.475734px;}
._12_c00137{width:27.847006px;}
._5_c00137{width:34.075347px;}
._16_c00137{width:50.421895px;}
._17_c00137{width:70.216652px;}
._19_c00137{width:177.650121px;}
._4_c00137{width:183.727746px;}
._2_c00137{width:203.341228px;}
._14_c00137{width:229.174818px;}
._11_c00137{width:297.813590px;}
._15_c00137{width:306.278147px;}
._c_c00137{width:316.228303px;}
._f_c00137{width:410.707210px;}
._3_c00137{width:581.937542px;}
.fc1_c00137{color:rgb(0,0,255);}
.fc0_c00137{color:rgb(0,0,0);}
.fs0_c00137{font-size:59.759976px;}
.fs1_c00137{font-size:66.239974px;}
.y0_c00137{bottom:0.000000px;}
.y4_c00137{bottom:75.899970px;}
.y3_c00137{bottom:114.059954px;}
.y2e_c00137{bottom:150.599940px;}
.y2d_c00137{bottom:172.379931px;}
.y2c_c00137{bottom:194.339922px;}
.y2b_c00137{bottom:217.199913px;}
.y2a_c00137{bottom:238.979904px;}
.y29_c00137{bottom:260.759896px;}
.y28_c00137{bottom:282.719887px;}
.y27_c00137{bottom:305.579878px;}
.y26_c00137{bottom:327.359869px;}
.y25_c00137{bottom:350.399860px;}
.y24_c00137{bottom:372.179851px;}
.y23_c00137{bottom:393.959842px;}
.y22_c00137{bottom:437.699825px;}
.y21_c00137{bottom:460.559816px;}
.y20_c00137{bottom:482.339807px;}
.y1f_c00137{bottom:504.299798px;}
.y1e_c00137{bottom:527.159789px;}
.y1d_c00137{bottom:548.939780px;}
.y1c_c00137{bottom:570.899772px;}
.y1b_c00137{bottom:593.759762px;}
.y1a_c00137{bottom:615.539754px;}
.y19_c00137{bottom:638.579745px;}
.y18_c00137{bottom:660.359736px;}
.y17_c00137{bottom:682.139727px;}
.y16_c00137{bottom:705.179718px;}
.y15_c00137{bottom:726.959709px;}
.y14_c00137{bottom:748.739701px;}
.y13_c00137{bottom:771.779691px;}
.y12_c00137{bottom:793.559683px;}
.y11_c00137{bottom:815.339674px;}
.y10_c00137{bottom:838.379665px;}
.yf_c00137{bottom:860.159656px;}
.ye_c00137{bottom:883.019647px;}
.yd_c00137{bottom:904.799638px;}
.yc_c00137{bottom:926.759629px;}
.yb_c00137{bottom:949.619620px;}
.ya_c00137{bottom:971.399611px;}
.y9_c00137{bottom:993.359603px;}
.y8_c00137{bottom:1015.139594px;}
.y7_c00137{bottom:1053.119579px;}
.y6_c00137{bottom:1074.899570px;}
.y5_c00137{bottom:1118.459553px;}
.y2_c00137{bottom:1157.159537px;}
.y1_c00137{bottom:1196.039522px;}
.h2_c00137{height:44.149201px;}
.h1_c00137{height:58.651148px;}
.h4_c00137{height:64.978568px;}
.h3_c00137{height:65.010911px;}
.h0_c00137{height:1263.000000px;}
.w0_c00137{width:892.500000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:127.619949px;}
.x3_c00137{left:369.539098px;}
.x2_c00137{left:433.979514px;}
.x4_c00137{left:637.379226px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls3_c00137{letter-spacing:0.000000pt;}
.ls1_c00137{letter-spacing:0.017628pt;}
.ls0_c00137{letter-spacing:0.017667pt;}
.ls2_c00137{letter-spacing:383.598247pt;}
.ws1_c00137{word-spacing:-14.737661pt;}
.ws2_c00137{word-spacing:-14.737622pt;}
.ws0_c00137{word-spacing:-14.719994pt;}
.ws3_c00137{word-spacing:0.000000pt;}
._1_c00137{margin-left:-0.982555pt;}
._0_c00137{width:1.062723pt;}
._e_c00137{width:6.658685pt;}
._a_c00137{width:7.815692pt;}
._9_c00137{width:9.009466pt;}
._10_c00137{width:10.006398pt;}
._b_c00137{width:11.269531pt;}
._d_c00137{width:13.168275pt;}
._18_c00137{width:18.104278pt;}
._8_c00137{width:19.104865pt;}
._7_c00137{width:20.122034pt;}
._6_c00137{width:21.193135pt;}
._13_c00137{width:23.533986pt;}
._12_c00137{width:24.752894pt;}
._5_c00137{width:30.289197pt;}
._16_c00137{width:44.819462pt;}
._17_c00137{width:62.414802pt;}
._19_c00137{width:157.911218pt;}
._4_c00137{width:163.313552pt;}
._2_c00137{width:180.747758pt;}
._14_c00137{width:203.710949pt;}
._11_c00137{width:264.723191pt;}
._15_c00137{width:272.247242pt;}
._c_c00137{width:281.091825pt;}
._f_c00137{width:365.073076pt;}
._3_c00137{width:517.277815pt;}
.fs0_c00137{font-size:53.119979pt;}
.fs1_c00137{font-size:58.879976pt;}
.y0_c00137{bottom:0.000000pt;}
.y4_c00137{bottom:67.466640pt;}
.y3_c00137{bottom:101.386626pt;}
.y2e_c00137{bottom:133.866613pt;}
.y2d_c00137{bottom:153.226605pt;}
.y2c_c00137{bottom:172.746598pt;}
.y2b_c00137{bottom:193.066589pt;}
.y2a_c00137{bottom:212.426582pt;}
.y29_c00137{bottom:231.786574pt;}
.y28_c00137{bottom:251.306566pt;}
.y27_c00137{bottom:271.626558pt;}
.y26_c00137{bottom:290.986550pt;}
.y25_c00137{bottom:311.466542pt;}
.y24_c00137{bottom:330.826534pt;}
.y23_c00137{bottom:350.186527pt;}
.y22_c00137{bottom:389.066511pt;}
.y21_c00137{bottom:409.386503pt;}
.y20_c00137{bottom:428.746495pt;}
.y1f_c00137{bottom:448.266487pt;}
.y1e_c00137{bottom:468.586479pt;}
.y1d_c00137{bottom:487.946471pt;}
.y1c_c00137{bottom:507.466464pt;}
.y1b_c00137{bottom:527.786456pt;}
.y1a_c00137{bottom:547.146448pt;}
.y19_c00137{bottom:567.626440pt;}
.y18_c00137{bottom:586.986432pt;}
.y17_c00137{bottom:606.346424pt;}
.y16_c00137{bottom:626.826416pt;}
.y15_c00137{bottom:646.186408pt;}
.y14_c00137{bottom:665.546400pt;}
.y13_c00137{bottom:686.026392pt;}
.y12_c00137{bottom:705.386385pt;}
.y11_c00137{bottom:724.746377pt;}
.y10_c00137{bottom:745.226369pt;}
.yf_c00137{bottom:764.586361pt;}
.ye_c00137{bottom:784.906353pt;}
.yd_c00137{bottom:804.266345pt;}
.yc_c00137{bottom:823.786337pt;}
.yb_c00137{bottom:844.106329pt;}
.ya_c00137{bottom:863.466321pt;}
.y9_c00137{bottom:882.986313pt;}
.y8_c00137{bottom:902.346306pt;}
.y7_c00137{bottom:936.106292pt;}
.y6_c00137{bottom:955.466284pt;}
.y5_c00137{bottom:994.186269pt;}
.y2_c00137{bottom:1028.586255pt;}
.y1_c00137{bottom:1063.146241pt;}
.h2_c00137{height:39.243734pt;}
.h1_c00137{height:52.134354pt;}
.h4_c00137{height:57.758727pt;}
.h3_c00137{height:57.787477pt;}
.h0_c00137{height:1122.666667pt;}
.w0_c00137{width:793.333333pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:113.439955pt;}
.x3_c00137{left:328.479198pt;}
.x2_c00137{left:385.759568pt;}
.x4_c00137{left:566.559312pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d0a4d215abdd4b7f1b5727e8.woff2')format("woff");}.ff1_c00138{font-family:ff1_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:ff2_c00138;src:url('chunks/assets/font_34358eecfe8e61a4fe9d88c7.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:0.675781;font-style:normal;font-weight:normal;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_abf746f407c9024bff8db3a0.woff2')format("woff");}.ff3_c00138{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls2_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.019831px;}
.ls0_c00138{letter-spacing:0.019875px;}
.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:-16.579869px;}
.ws1_c00138{word-spacing:0.000000px;}
._1_c00138{margin-left:-1.105374px;}
._0_c00138{width:1.478351px;}
._18_c00138{width:3.087639px;}
._2_c00138{width:4.411757px;}
._d_c00138{width:5.831509px;}
._e_c00138{width:6.912168px;}
._4_c00138{width:8.139814px;}
._15_c00138{width:11.466397px;}
._1f_c00138{width:12.802774px;}
._16_c00138{width:18.376755px;}
._5_c00138{width:24.651525px;}
._9_c00138{width:28.184708px;}
._14_c00138{width:37.187326px;}
._1d_c00138{width:39.118241px;}
._7_c00138{width:45.455188px;}
._8_c00138{width:54.301288px;}
._13_c00138{width:59.883648px;}
._12_c00138{width:92.985432px;}
._b_c00138{width:108.294260px;}
._c_c00138{width:127.960138px;}
._17_c00138{width:170.221241px;}
._10_c00138{width:172.009721px;}
._a_c00138{width:192.345393px;}
._6_c00138{width:216.191783px;}
._3_c00138{width:229.042338px;}
._19_c00138{width:265.938003px;}
._f_c00138{width:303.377748px;}
._1e_c00138{width:353.057728px;}
._11_c00138{width:399.777615px;}
._1c_c00138{width:414.263464px;}
._1b_c00138{width:429.254403px;}
._1a_c00138{width:603.995453px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs0_c00138{font-size:59.759976px;}
.fs1_c00138{font-size:66.239974px;}
.y0_c00138{bottom:0.000000px;}
.y4_c00138{bottom:75.900270px;}
.y3_c00138{bottom:114.060254px;}
.y2c_c00138{bottom:153.659939px;}
.y2b_c00138{bottom:175.439930px;}
.y2a_c00138{bottom:197.399921px;}
.y29_c00138{bottom:235.199906px;}
.y28_c00138{bottom:257.159897px;}
.y27_c00138{bottom:300.719880px;}
.y26_c00138{bottom:344.459862px;}
.y25_c00138{bottom:388.019845px;}
.y24_c00138{bottom:411.059836px;}
.y23_c00138{bottom:432.839827px;}
.y22_c00138{bottom:454.619818px;}
.y21_c00138{bottom:477.659809px;}
.y20_c00138{bottom:499.439800px;}
.y1f_c00138{bottom:521.219792px;}
.y1e_c00138{bottom:542.999783px;}
.y1d_c00138{bottom:566.039774px;}
.y1c_c00138{bottom:587.819765px;}
.y1b_c00138{bottom:609.599756px;}
.y1a_c00138{bottom:653.339739px;}
.y19_c00138{bottom:676.199730px;}
.y18_c00138{bottom:697.979721px;}
.y17_c00138{bottom:721.019712px;}
.y16_c00138{bottom:742.799703px;}
.y15_c00138{bottom:764.579694px;}
.y14_c00138{bottom:787.619685px;}
.y13_c00138{bottom:809.399676px;}
.y12_c00138{bottom:831.179668px;}
.y11_c00138{bottom:854.219658px;}
.y10_c00138{bottom:875.999650px;}
.yf_c00138{bottom:897.779641px;}
.ye_c00138{bottom:920.819632px;}
.yd_c00138{bottom:942.599623px;}
.yc_c00138{bottom:964.379614px;}
.yb_c00138{bottom:987.239605px;}
.ya_c00138{bottom:1009.199596px;}
.y9_c00138{bottom:1030.979588px;}
.y8_c00138{bottom:1052.759579px;}
.y7_c00138{bottom:1075.799870px;}
.y6_c00138{bottom:1097.579861px;}
.y5_c00138{bottom:1119.359852px;}
.y2_c00138{bottom:1176.059530px;}
.y1_c00138{bottom:1196.219522px;}
.h2_c00138{height:44.149201px;}
.h1_c00138{height:58.651148px;}
.h4_c00138{height:64.978568px;}
.h3_c00138{height:65.010911px;}
.h0_c00138{height:1263.000000px;}
.w0_c00138{width:892.500000px;}
.x0_c00138{left:0.000000px;}
.x5_c00138{left:127.620262px;}
.x1_c00138{left:181.799927px;}
.x2_c00138{left:329.039408px;}
.x6_c00138{left:369.539411px;}
.x4_c00138{left:433.979826px;}
.x7_c00138{left:637.379539px;}
.x3_c00138{left:765.359694px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls2_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.017628pt;}
.ls0_c00138{letter-spacing:0.017667pt;}
.ws0_c00138{word-spacing:-14.737661pt;}
.ws1_c00138{word-spacing:0.000000pt;}
._1_c00138{margin-left:-0.982555pt;}
._0_c00138{width:1.314090pt;}
._18_c00138{width:2.744568pt;}
._2_c00138{width:3.921562pt;}
._d_c00138{width:5.183563pt;}
._e_c00138{width:6.144150pt;}
._4_c00138{width:7.235390pt;}
._15_c00138{width:10.192353pt;}
._1f_c00138{width:11.380243pt;}
._16_c00138{width:16.334893pt;}
._5_c00138{width:21.912467pt;}
._9_c00138{width:25.053073pt;}
._14_c00138{width:33.055401pt;}
._1d_c00138{width:34.771769pt;}
._7_c00138{width:40.404611pt;}
._8_c00138{width:48.267811pt;}
._13_c00138{width:53.229909pt;}
._12_c00138{width:82.653718pt;}
._b_c00138{width:96.261564pt;}
._c_c00138{width:113.742345pt;}
._17_c00138{width:151.307770pt;}
._10_c00138{width:152.897529pt;}
._a_c00138{width:170.973682pt;}
._6_c00138{width:192.170474pt;}
._3_c00138{width:203.593189pt;}
._19_c00138{width:236.389336pt;}
._f_c00138{width:269.669109pt;}
._1e_c00138{width:313.829092pt;}
._11_c00138{width:355.357880pt;}
._1c_c00138{width:368.234190pt;}
._1b_c00138{width:381.559469pt;}
._1a_c00138{width:536.884847pt;}
.fs0_c00138{font-size:53.119979pt;}
.fs1_c00138{font-size:58.879976pt;}
.y0_c00138{bottom:0.000000pt;}
.y4_c00138{bottom:67.466906pt;}
.y3_c00138{bottom:101.386893pt;}
.y2c_c00138{bottom:136.586612pt;}
.y2b_c00138{bottom:155.946604pt;}
.y2a_c00138{bottom:175.466596pt;}
.y29_c00138{bottom:209.066583pt;}
.y28_c00138{bottom:228.586575pt;}
.y27_c00138{bottom:267.306560pt;}
.y26_c00138{bottom:306.186544pt;}
.y25_c00138{bottom:344.906529pt;}
.y24_c00138{bottom:365.386521pt;}
.y23_c00138{bottom:384.746513pt;}
.y22_c00138{bottom:404.106505pt;}
.y21_c00138{bottom:424.586497pt;}
.y20_c00138{bottom:443.946489pt;}
.y1f_c00138{bottom:463.306481pt;}
.y1e_c00138{bottom:482.666474pt;}
.y1d_c00138{bottom:503.146465pt;}
.y1c_c00138{bottom:522.506458pt;}
.y1b_c00138{bottom:541.866450pt;}
.y1a_c00138{bottom:580.746434pt;}
.y19_c00138{bottom:601.066426pt;}
.y18_c00138{bottom:620.426418pt;}
.y17_c00138{bottom:640.906410pt;}
.y16_c00138{bottom:660.266403pt;}
.y15_c00138{bottom:679.626395pt;}
.y14_c00138{bottom:700.106387pt;}
.y13_c00138{bottom:719.466379pt;}
.y12_c00138{bottom:738.826371pt;}
.y11_c00138{bottom:759.306363pt;}
.y10_c00138{bottom:778.666355pt;}
.yf_c00138{bottom:798.026347pt;}
.ye_c00138{bottom:818.506339pt;}
.yd_c00138{bottom:837.866332pt;}
.yc_c00138{bottom:857.226324pt;}
.yb_c00138{bottom:877.546316pt;}
.ya_c00138{bottom:897.066308pt;}
.y9_c00138{bottom:916.426300pt;}
.y8_c00138{bottom:935.786292pt;}
.y7_c00138{bottom:956.266551pt;}
.y6_c00138{bottom:975.626543pt;}
.y5_c00138{bottom:994.986535pt;}
.y2_c00138{bottom:1045.386249pt;}
.y1_c00138{bottom:1063.306241pt;}
.h2_c00138{height:39.243734pt;}
.h1_c00138{height:52.134354pt;}
.h4_c00138{height:57.758727pt;}
.h3_c00138{height:57.787477pt;}
.h0_c00138{height:1122.666667pt;}
.w0_c00138{width:793.333333pt;}
.x0_c00138{left:0.000000pt;}
.x5_c00138{left:113.440233pt;}
.x1_c00138{left:161.599935pt;}
.x2_c00138{left:292.479474pt;}
.x6_c00138{left:328.479476pt;}
.x4_c00138{left:385.759846pt;}
.x7_c00138{left:566.559590pt;}
.x3_c00138{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81685c0643f9b0fd5ba94a31.woff2')format("woff");}.ff1_c00139{font-family:ff1_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:ff2_c00139;src:url('chunks/assets/font_d9b0e9a3b87830e58b5d20ca.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:0.675781;font-style:normal;font-weight:normal;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_9d36518ea1a131fc0fdce0d4.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_4e3b6166731a0e669449dbd8.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.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:0.000000px;}
._1b_c00139{margin-left:-2.123137px;}
._1_c00139{margin-left:-1.105374px;}
._0_c00139{width:1.195563px;}
._b_c00139{width:2.733804px;}
._e_c00139{width:8.490746px;}
._8_c00139{width:9.917024px;}
._21_c00139{width:15.000987px;}
._10_c00139{width:22.718472px;}
._1e_c00139{width:24.651522px;}
._1d_c00139{width:25.916141px;}
._20_c00139{width:47.137356px;}
._1f_c00139{width:48.208320px;}
._7_c00139{width:73.426373px;}
._11_c00139{width:87.353835px;}
._1c_c00139{width:101.222152px;}
._18_c00139{width:107.936594px;}
._19_c00139{width:109.190926px;}
._c_c00139{width:171.277779px;}
._2_c00139{width:177.573878px;}
._14_c00139{width:197.349456px;}
._13_c00139{width:219.767542px;}
._17_c00139{width:235.350495px;}
._a_c00139{width:249.311770px;}
._15_c00139{width:273.156960px;}
._9_c00139{width:295.282311px;}
._6_c00139{width:323.563537px;}
._5_c00139{width:345.572611px;}
._f_c00139{width:375.406282px;}
._16_c00139{width:397.178896px;}
._12_c00139{width:442.106158px;}
._4_c00139{width:476.336864px;}
._d_c00139{width:485.544221px;}
._1a_c00139{width:561.669310px;}
._3_c00139{width:591.012418px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs0_c00139{font-size:59.759976px;}
.fs1_c00139{font-size:66.239974px;}
.y0_c00139{bottom:0.000000px;}
.y1d_c00139{bottom:3.599208px;}
.y4_c00139{bottom:75.899970px;}
.y3_c00139{bottom:114.059954px;}
.y2a_c00139{bottom:144.119942px;}
.y29_c00139{bottom:163.019935px;}
.y28_c00139{bottom:182.099927px;}
.y27_c00139{bottom:200.999920px;}
.y26_c00139{bottom:224.399910px;}
.y25_c00139{bottom:246.179902px;}
.y24_c00139{bottom:290.099884px;}
.y23_c00139{bottom:310.619876px;}
.y22_c00139{bottom:329.519868px;}
.y21_c00139{bottom:348.599861px;}
.y20_c00139{bottom:392.519843px;}
.y1f_c00139{bottom:436.619825px;}
.y1e_c00139{bottom:461.279815px;}
.y1c_c00139{bottom:476.760600px;}
.y1b_c00139{bottom:480.359808px;}
.y1a_c00139{bottom:521.759791px;}
.y19_c00139{bottom:564.599774px;}
.y18_c00139{bottom:609.059756px;}
.y17_c00139{bottom:631.019748px;}
.y16_c00139{bottom:654.239738px;}
.y15_c00139{bottom:676.019730px;}
.y14_c00139{bottom:697.979721px;}
.y13_c00139{bottom:741.899703px;}
.y12_c00139{bottom:765.299694px;}
.y11_c00139{bottom:787.079685px;}
.y10_c00139{bottom:808.859676px;}
.yf_c00139{bottom:832.259667px;}
.ye_c00139{bottom:854.039658px;}
.yd_c00139{bottom:875.819650px;}
.yc_c00139{bottom:899.219640px;}
.yb_c00139{bottom:920.999632px;}
.ya_c00139{bottom:942.779623px;}
.y9_c00139{bottom:964.559614px;}
.y8_c00139{bottom:986.519605px;}
.y7_c00139{bottom:1030.439588px;}
.y6_c00139{bottom:1074.539570px;}
.y5_c00139{bottom:1118.459553px;}
.y2_c00139{bottom:1157.159537px;}
.y1_c00139{bottom:1196.039522px;}
.h6_c00139{height:18.720000px;}
.h2_c00139{height:44.149201px;}
.h1_c00139{height:58.651148px;}
.h3_c00139{height:64.978568px;}
.h4_c00139{height:65.010911px;}
.h5_c00139{height:66.757473px;}
.h0_c00139{height:1263.000000px;}
.w1_c00139{width:135.360000px;}
.w0_c00139{width:892.500000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:127.619949px;}
.x5_c00139{left:209.339916px;}
.x3_c00139{left:369.539098px;}
.x6_c00139{left:386.999144px;}
.x2_c00139{left:433.979514px;}
.x4_c00139{left:637.379226px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
._1b_c00139{margin-left:-1.887233pt;}
._1_c00139{margin-left:-0.982555pt;}
._0_c00139{width:1.062723pt;}
._b_c00139{width:2.430048pt;}
._e_c00139{width:7.547330pt;}
._8_c00139{width:8.815132pt;}
._21_c00139{width:13.334211pt;}
._10_c00139{width:20.194197pt;}
._1e_c00139{width:21.912464pt;}
._1d_c00139{width:23.036570pt;}
._20_c00139{width:41.899872pt;}
._1f_c00139{width:42.851840pt;}
._7_c00139{width:65.267887pt;}
._11_c00139{width:77.647853pt;}
._1c_c00139{width:89.975246pt;}
._18_c00139{width:95.943639pt;}
._19_c00139{width:97.058601pt;}
._c_c00139{width:152.246915pt;}
._2_c00139{width:157.843448pt;}
._14_c00139{width:175.421738pt;}
._13_c00139{width:195.348926pt;}
._17_c00139{width:209.200440pt;}
._a_c00139{width:221.610462pt;}
._15_c00139{width:242.806187pt;}
._9_c00139{width:262.473166pt;}
._6_c00139{width:287.612033pt;}
._5_c00139{width:307.175654pt;}
._f_c00139{width:333.694473pt;}
._16_c00139{width:353.047907pt;}
._12_c00139{width:392.983251pt;}
._4_c00139{width:423.410546pt;}
._d_c00139{width:431.594863pt;}
._1a_c00139{width:499.261609pt;}
._3_c00139{width:525.344372pt;}
.fs0_c00139{font-size:53.119979pt;}
.fs1_c00139{font-size:58.879976pt;}
.y0_c00139{bottom:0.000000pt;}
.y1d_c00139{bottom:3.199296pt;}
.y4_c00139{bottom:67.466640pt;}
.y3_c00139{bottom:101.386626pt;}
.y2a_c00139{bottom:128.106615pt;}
.y29_c00139{bottom:144.906609pt;}
.y28_c00139{bottom:161.866602pt;}
.y27_c00139{bottom:178.666595pt;}
.y26_c00139{bottom:199.466587pt;}
.y25_c00139{bottom:218.826579pt;}
.y24_c00139{bottom:257.866564pt;}
.y23_c00139{bottom:276.106556pt;}
.y22_c00139{bottom:292.906550pt;}
.y21_c00139{bottom:309.866543pt;}
.y20_c00139{bottom:348.906527pt;}
.y1f_c00139{bottom:388.106511pt;}
.y1e_c00139{bottom:410.026503pt;}
.y1c_c00139{bottom:423.787200pt;}
.y1b_c00139{bottom:426.986496pt;}
.y1a_c00139{bottom:463.786481pt;}
.y19_c00139{bottom:501.866466pt;}
.y18_c00139{bottom:541.386450pt;}
.y17_c00139{bottom:560.906442pt;}
.y16_c00139{bottom:581.546434pt;}
.y15_c00139{bottom:600.906426pt;}
.y14_c00139{bottom:620.426418pt;}
.y13_c00139{bottom:659.466403pt;}
.y12_c00139{bottom:680.266395pt;}
.y11_c00139{bottom:699.626387pt;}
.y10_c00139{bottom:718.986379pt;}
.yf_c00139{bottom:739.786371pt;}
.ye_c00139{bottom:759.146363pt;}
.yd_c00139{bottom:778.506355pt;}
.yc_c00139{bottom:799.306347pt;}
.yb_c00139{bottom:818.666339pt;}
.ya_c00139{bottom:838.026331pt;}
.y9_c00139{bottom:857.386324pt;}
.y8_c00139{bottom:876.906316pt;}
.y7_c00139{bottom:915.946300pt;}
.y6_c00139{bottom:955.146285pt;}
.y5_c00139{bottom:994.186269pt;}
.y2_c00139{bottom:1028.586255pt;}
.y1_c00139{bottom:1063.146241pt;}
.h6_c00139{height:16.640000pt;}
.h2_c00139{height:39.243734pt;}
.h1_c00139{height:52.134354pt;}
.h3_c00139{height:57.758727pt;}
.h4_c00139{height:57.787477pt;}
.h5_c00139{height:59.339976pt;}
.h0_c00139{height:1122.666667pt;}
.w1_c00139{width:120.320000pt;}
.w0_c00139{width:793.333333pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:113.439955pt;}
.x5_c00139{left:186.079926pt;}
.x3_c00139{left:328.479198pt;}
.x6_c00139{left:343.999239pt;}
.x2_c00139{left:385.759568pt;}
.x4_c00139{left:566.559312pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_37ebda2b5f47aa7f44b4363e.woff2')format("woff");}.ff1_c00140{font-family:ff1_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:ff2_c00140;src:url('chunks/assets/font_ed3c5617a694440775c91b3b.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:0.675781;font-style:normal;font-weight:normal;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_8483ae4bb9fb5e75a8806b80.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;}
.m0_c00140{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:75.599970px;}
.ls2_c00140{letter-spacing:0.000000px;}
.ls0_c00140{letter-spacing:0.019831px;}
.ls1_c00140{letter-spacing:5.052898px;}
.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;}
}
.ws0_c00140{word-spacing:0.000000px;}
._1_c00140{margin-left:-1.105374px;}
._0_c00140{width:1.478351px;}
._e_c00140{width:4.198744px;}
._d_c00140{width:5.238309px;}
._1e_c00140{width:6.759098px;}
._20_c00140{width:11.932672px;}
._4_c00140{width:14.558637px;}
._1f_c00140{width:17.597108px;}
._7_c00140{width:27.948846px;}
._c_c00140{width:30.276089px;}
._17_c00140{width:38.270628px;}
._2_c00140{width:40.550979px;}
._6_c00140{width:42.479031px;}
._5_c00140{width:43.679277px;}
._18_c00140{width:51.170822px;}
._8_c00140{width:52.766733px;}
._10_c00140{width:72.999588px;}
._3_c00140{width:132.111841px;}
._1d_c00140{width:143.343172px;}
._a_c00140{width:144.386452px;}
._b_c00140{width:165.467323px;}
._15_c00140{width:179.361158px;}
._1c_c00140{width:223.476980px;}
._14_c00140{width:247.029436px;}
._19_c00140{width:248.134810px;}
._1b_c00140{width:255.553687px;}
._1a_c00140{width:262.161125px;}
._16_c00140{width:268.470482px;}
._11_c00140{width:276.572464px;}
._12_c00140{width:344.534677px;}
._13_c00140{width:399.712575px;}
._9_c00140{width:447.537836px;}
._f_c00140{width:737.159705px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs0_c00140{font-size:59.759976px;}
.fs1_c00140{font-size:66.239974px;}
.y0_c00140{bottom:0.000000px;}
.y4_c00140{bottom:75.900270px;}
.y3_c00140{bottom:114.060254px;}
.y30_c00140{bottom:170.939932px;}
.y2f_c00140{bottom:189.839924px;}
.y2d_c00140{bottom:206.039918px;}
.y2e_c00140{bottom:208.919916px;}
.y2c_c00140{bottom:227.819909px;}
.y2b_c00140{bottom:271.559891px;}
.y2a_c00140{bottom:315.119874px;}
.y29_c00140{bottom:338.159865px;}
.y28_c00140{bottom:359.939856px;}
.y27_c00140{bottom:380.099848px;}
.y26_c00140{bottom:398.999840px;}
.y25_c00140{bottom:417.899833px;}
.y23_c00140{bottom:434.099826px;}
.y24_c00140{bottom:436.979825px;}
.y22_c00140{bottom:455.879818px;}
.y21_c00140{bottom:499.619800px;}
.y20_c00140{bottom:537.599785px;}
.y1f_c00140{bottom:559.379776px;}
.y1e_c00140{bottom:597.719761px;}
.y1d_c00140{bottom:619.499752px;}
.y1c_c00140{bottom:657.839737px;}
.y1b_c00140{bottom:679.619728px;}
.y19_c00140{bottom:717.959713px;}
.y1a_c00140{bottom:720.839712px;}
.y18_c00140{bottom:739.739704px;}
.y17_c00140{bottom:761.879695px;}
.y15_c00140{bottom:778.079689px;}
.y16_c00140{bottom:780.959688px;}
.y14_c00140{bottom:799.859680px;}
.y12_c00140{bottom:838.199665px;}
.y13_c00140{bottom:841.079664px;}
.y11_c00140{bottom:859.979656px;}
.y10_c00140{bottom:904.079638px;}
.yf_c00140{bottom:942.419623px;}
.ye_c00140{bottom:964.199614px;}
.yd_c00140{bottom:984.719606px;}
.yc_c00140{bottom:1003.619599px;}
.yb_c00140{bottom:1022.699591px;}
.y9_c00140{bottom:1038.719585px;}
.ya_c00140{bottom:1041.599583px;}
.y8_c00140{bottom:1060.499576px;}
.y7_c00140{bottom:1081.019868px;}
.y6_c00140{bottom:1100.099860px;}
.y5_c00140{bottom:1118.999852px;}
.y2_c00140{bottom:1176.059530px;}
.y1_c00140{bottom:1196.219522px;}
.h2_c00140{height:44.149201px;}
.h1_c00140{height:58.651148px;}
.h3_c00140{height:64.978568px;}
.h4_c00140{height:65.010911px;}
.h5_c00140{height:140.610881px;}
.h0_c00140{height:1263.000000px;}
.w0_c00140{width:892.500000px;}
.x0_c00140{left:0.000000px;}
.x5_c00140{left:127.620262px;}
.x1_c00140{left:181.799927px;}
.x2_c00140{left:329.039408px;}
.x6_c00140{left:386.999456px;}
.x4_c00140{left:433.979826px;}
.x7_c00140{left:637.379226px;}
.x3_c00140{left:765.359694px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:67.199973pt;}
.ls2_c00140{letter-spacing:0.000000pt;}
.ls0_c00140{letter-spacing:0.017628pt;}
.ls1_c00140{letter-spacing:4.491465pt;}
.ws0_c00140{word-spacing:0.000000pt;}
._1_c00140{margin-left:-0.982555pt;}
._0_c00140{width:1.314090pt;}
._e_c00140{width:3.732217pt;}
._d_c00140{width:4.656274pt;}
._1e_c00140{width:6.008087pt;}
._20_c00140{width:10.606819pt;}
._4_c00140{width:12.941010pt;}
._1f_c00140{width:15.641874pt;}
._7_c00140{width:24.843418pt;}
._c_c00140{width:26.912079pt;}
._17_c00140{width:34.018336pt;}
._2_c00140{width:36.045315pt;}
._6_c00140{width:37.759139pt;}
._5_c00140{width:38.826024pt;}
._18_c00140{width:45.485175pt;}
._8_c00140{width:46.903762pt;}
._10_c00140{width:64.888522pt;}
._3_c00140{width:117.432748pt;}
._1d_c00140{width:127.416153pt;}
._a_c00140{width:128.343513pt;}
._b_c00140{width:147.082065pt;}
._15_c00140{width:159.432140pt;}
._1c_c00140{width:198.646205pt;}
._14_c00140{width:219.581721pt;}
._19_c00140{width:220.564276pt;}
._1b_c00140{width:227.158833pt;}
._1a_c00140{width:233.032111pt;}
._16_c00140{width:238.640429pt;}
._11_c00140{width:245.842190pt;}
._12_c00140{width:306.253046pt;}
._13_c00140{width:355.300067pt;}
._9_c00140{width:397.811410pt;}
._f_c00140{width:655.253071pt;}
.fs0_c00140{font-size:53.119979pt;}
.fs1_c00140{font-size:58.879976pt;}
.y0_c00140{bottom:0.000000pt;}
.y4_c00140{bottom:67.466906pt;}
.y3_c00140{bottom:101.386893pt;}
.y30_c00140{bottom:151.946606pt;}
.y2f_c00140{bottom:168.746599pt;}
.y2d_c00140{bottom:183.146593pt;}
.y2e_c00140{bottom:185.706592pt;}
.y2c_c00140{bottom:202.506586pt;}
.y2b_c00140{bottom:241.386570pt;}
.y2a_c00140{bottom:280.106555pt;}
.y29_c00140{bottom:300.586546pt;}
.y28_c00140{bottom:319.946539pt;}
.y27_c00140{bottom:337.866532pt;}
.y26_c00140{bottom:354.666525pt;}
.y25_c00140{bottom:371.466518pt;}
.y23_c00140{bottom:385.866512pt;}
.y24_c00140{bottom:388.426511pt;}
.y22_c00140{bottom:405.226505pt;}
.y21_c00140{bottom:444.106489pt;}
.y20_c00140{bottom:477.866476pt;}
.y1f_c00140{bottom:497.226468pt;}
.y1e_c00140{bottom:531.306454pt;}
.y1d_c00140{bottom:550.666446pt;}
.y1c_c00140{bottom:584.746433pt;}
.y1b_c00140{bottom:604.106425pt;}
.y19_c00140{bottom:638.186411pt;}
.y1a_c00140{bottom:640.746410pt;}
.y18_c00140{bottom:657.546404pt;}
.y17_c00140{bottom:677.226396pt;}
.y15_c00140{bottom:691.626390pt;}
.y16_c00140{bottom:694.186389pt;}
.y14_c00140{bottom:710.986382pt;}
.y12_c00140{bottom:745.066369pt;}
.y13_c00140{bottom:747.626368pt;}
.y11_c00140{bottom:764.426361pt;}
.y10_c00140{bottom:803.626345pt;}
.yf_c00140{bottom:837.706332pt;}
.ye_c00140{bottom:857.066324pt;}
.yd_c00140{bottom:875.306317pt;}
.yc_c00140{bottom:892.106310pt;}
.yb_c00140{bottom:909.066303pt;}
.y9_c00140{bottom:923.306297pt;}
.ya_c00140{bottom:925.866296pt;}
.y8_c00140{bottom:942.666290pt;}
.y7_c00140{bottom:960.906549pt;}
.y6_c00140{bottom:977.866542pt;}
.y5_c00140{bottom:994.666535pt;}
.y2_c00140{bottom:1045.386249pt;}
.y1_c00140{bottom:1063.306241pt;}
.h2_c00140{height:39.243734pt;}
.h1_c00140{height:52.134354pt;}
.h3_c00140{height:57.758727pt;}
.h4_c00140{height:57.787477pt;}
.h5_c00140{height:124.987450pt;}
.h0_c00140{height:1122.666667pt;}
.w0_c00140{width:793.333333pt;}
.x0_c00140{left:0.000000pt;}
.x5_c00140{left:113.440233pt;}
.x1_c00140{left:161.599935pt;}
.x2_c00140{left:292.479474pt;}
.x6_c00140{left:343.999517pt;}
.x4_c00140{left:385.759846pt;}
.x7_c00140{left:566.559312pt;}
.x3_c00140{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_482c6e24b8cb5dc4477e18a9.woff2')format("woff");}.ff1_c00141{font-family:ff1_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:ff2_c00141;src:url('chunks/assets/font_dc79a6f50bae36c040e2f110.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:0.675781;font-style:normal;font-weight:normal;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_7ac6a4d818930cb9c43ad79a.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:75.599970px;}
.ls3_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:0.019831px;}
.ls1_c00141{letter-spacing:0.019875px;}
.ls2_c00141{letter-spacing:985.559606px;}
.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;}
._e_c00141{margin-left:-2.133058px;}
._1_c00141{margin-left:-1.105374px;}
._0_c00141{width:1.195563px;}
._3_c00141{width:5.484215px;}
._2_c00141{width:6.759098px;}
._b_c00141{width:8.566225px;}
._1a_c00141{width:10.245694px;}
._4_c00141{width:21.849142px;}
._8_c00141{width:27.019251px;}
._13_c00141{width:29.961917px;}
._14_c00141{width:31.266199px;}
._12_c00141{width:33.484550px;}
._6_c00141{width:35.538713px;}
._7_c00141{width:36.560775px;}
._c_c00141{width:37.955529px;}
._11_c00141{width:39.307583px;}
._1c_c00141{width:53.361472px;}
._1d_c00141{width:56.391272px;}
._20_c00141{width:58.907484px;}
._1f_c00141{width:64.648444px;}
._15_c00141{width:73.442126px;}
._d_c00141{width:77.103199px;}
._f_c00141{width:117.792067px;}
._a_c00141{width:136.364926px;}
._10_c00141{width:222.716185px;}
._1e_c00141{width:243.644773px;}
._19_c00141{width:249.989529px;}
._16_c00141{width:310.779951px;}
._17_c00141{width:331.383763px;}
._9_c00141{width:356.635887px;}
._18_c00141{width:372.372990px;}
._1b_c00141{width:386.116820px;}
._5_c00141{width:488.672859px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs0_c00141{font-size:59.759976px;}
.fs1_c00141{font-size:66.239974px;}
.y0_c00141{bottom:0.000000px;}
.y25_c00141{bottom:3.959181px;}
.y4_c00141{bottom:75.899970px;}
.y3_c00141{bottom:114.059954px;}
.y39_c00141{bottom:144.839942px;}
.y38_c00141{bottom:163.739935px;}
.y37_c00141{bottom:182.639927px;}
.y36_c00141{bottom:201.719919px;}
.y35_c00141{bottom:220.619912px;}
.y34_c00141{bottom:242.399903px;}
.y32_c00141{bottom:258.599897px;}
.y33_c00141{bottom:261.479895px;}
.y31_c00141{bottom:280.379888px;}
.y30_c00141{bottom:300.539880px;}
.y2f_c00141{bottom:319.439872px;}
.y2e_c00141{bottom:338.519865px;}
.y2d_c00141{bottom:358.499857px;}
.y2c_c00141{bottom:377.579849px;}
.y2b_c00141{bottom:396.479841px;}
.y2a_c00141{bottom:415.559834px;}
.y29_c00141{bottom:459.119816px;}
.y28_c00141{bottom:482.159807px;}
.y27_c00141{bottom:503.939798px;}
.y26_c00141{bottom:528.599789px;}
.y24_c00141{bottom:543.540600px;}
.y23_c00141{bottom:547.499781px;}
.y22_c00141{bottom:567.659773px;}
.y21_c00141{bottom:586.559765px;}
.y20_c00141{bottom:605.639758px;}
.y1f_c00141{bottom:625.619750px;}
.y1e_c00141{bottom:644.699742px;}
.y1d_c00141{bottom:663.599735px;}
.y1c_c00141{bottom:682.679727px;}
.y1b_c00141{bottom:701.579719px;}
.y1a_c00141{bottom:740.099704px;}
.y19_c00141{bottom:762.779695px;}
.y18_c00141{bottom:784.559686px;}
.y17_c00141{bottom:806.339677px;}
.y16_c00141{bottom:829.199668px;}
.y15_c00141{bottom:872.219651px;}
.y14_c00141{bottom:893.999642px;}
.y13_c00141{bottom:913.979634px;}
.y11_c00141{bottom:930.179628px;}
.y12_c00141{bottom:933.059627px;}
.y10_c00141{bottom:951.959619px;}
.ye_c00141{bottom:974.819610px;}
.yf_c00141{bottom:977.699609px;}
.yd_c00141{bottom:996.779601px;}
.yc_c00141{bottom:1016.759593px;}
.yb_c00141{bottom:1035.839586px;}
.y9_c00141{bottom:1051.859579px;}
.ya_c00141{bottom:1054.739578px;}
.y8_c00141{bottom:1073.819570px;}
.y6_c00141{bottom:1096.679561px;}
.y7_c00141{bottom:1099.559560px;}
.y5_c00141{bottom:1118.459553px;}
.y2_c00141{bottom:1157.159537px;}
.y1_c00141{bottom:1196.039522px;}
.h6_c00141{height:18.720000px;}
.h2_c00141{height:44.149201px;}
.h1_c00141{height:58.651148px;}
.h4_c00141{height:64.978568px;}
.h3_c00141{height:65.010911px;}
.h5_c00141{height:140.610881px;}
.h0_c00141{height:1263.000000px;}
.w1_c00141{width:7.560000px;}
.w0_c00141{width:892.500000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:127.619949px;}
.x3_c00141{left:386.999144px;}
.x2_c00141{left:433.979514px;}
.x5_c00141{left:621.180000px;}
.x4_c00141{left:637.379226px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:67.199973pt;}
.ls3_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:0.017628pt;}
.ls1_c00141{letter-spacing:0.017667pt;}
.ls2_c00141{letter-spacing:876.052983pt;}
.ws0_c00141{word-spacing:0.000000pt;}
._e_c00141{margin-left:-1.896052pt;}
._1_c00141{margin-left:-0.982555pt;}
._0_c00141{width:1.062723pt;}
._3_c00141{width:4.874858pt;}
._2_c00141{width:6.008087pt;}
._b_c00141{width:7.614422pt;}
._1a_c00141{width:9.107283pt;}
._4_c00141{width:19.421460pt;}
._8_c00141{width:24.017112pt;}
._13_c00141{width:26.632816pt;}
._14_c00141{width:27.792177pt;}
._12_c00141{width:29.764045pt;}
._6_c00141{width:31.589967pt;}
._7_c00141{width:32.498467pt;}
._c_c00141{width:33.738248pt;}
._11_c00141{width:34.940074pt;}
._1c_c00141{width:47.432419pt;}
._1d_c00141{width:50.125575pt;}
._20_c00141{width:52.362208pt;}
._1f_c00141{width:57.465283pt;}
._15_c00141{width:65.281889pt;}
._d_c00141{width:68.536177pt;}
._f_c00141{width:104.704059pt;}
._a_c00141{width:121.213267pt;}
._10_c00141{width:197.969942pt;}
._1e_c00141{width:216.573132pt;}
._19_c00141{width:222.212915pt;}
._16_c00141{width:276.248845pt;}
._17_c00141{width:294.563345pt;}
._9_c00141{width:317.009677pt;}
._18_c00141{width:330.998213pt;}
._1b_c00141{width:343.214951pt;}
._5_c00141{width:434.375875pt;}
.fs0_c00141{font-size:53.119979pt;}
.fs1_c00141{font-size:58.879976pt;}
.y0_c00141{bottom:0.000000pt;}
.y25_c00141{bottom:3.519272pt;}
.y4_c00141{bottom:67.466640pt;}
.y3_c00141{bottom:101.386626pt;}
.y39_c00141{bottom:128.746615pt;}
.y38_c00141{bottom:145.546608pt;}
.y37_c00141{bottom:162.346602pt;}
.y36_c00141{bottom:179.306595pt;}
.y35_c00141{bottom:196.106588pt;}
.y34_c00141{bottom:215.466580pt;}
.y32_c00141{bottom:229.866575pt;}
.y33_c00141{bottom:232.426574pt;}
.y31_c00141{bottom:249.226567pt;}
.y30_c00141{bottom:267.146560pt;}
.y2f_c00141{bottom:283.946553pt;}
.y2e_c00141{bottom:300.906546pt;}
.y2d_c00141{bottom:318.666539pt;}
.y2c_c00141{bottom:335.626532pt;}
.y2b_c00141{bottom:352.426526pt;}
.y2a_c00141{bottom:369.386519pt;}
.y29_c00141{bottom:408.106503pt;}
.y28_c00141{bottom:428.586495pt;}
.y27_c00141{bottom:447.946487pt;}
.y26_c00141{bottom:469.866479pt;}
.y24_c00141{bottom:483.147200pt;}
.y23_c00141{bottom:486.666472pt;}
.y22_c00141{bottom:504.586465pt;}
.y21_c00141{bottom:521.386458pt;}
.y20_c00141{bottom:538.346451pt;}
.y1f_c00141{bottom:556.106444pt;}
.y1e_c00141{bottom:573.066437pt;}
.y1d_c00141{bottom:589.866431pt;}
.y1c_c00141{bottom:606.826424pt;}
.y1b_c00141{bottom:623.626417pt;}
.y1a_c00141{bottom:657.866404pt;}
.y19_c00141{bottom:678.026395pt;}
.y18_c00141{bottom:697.386388pt;}
.y17_c00141{bottom:716.746380pt;}
.y16_c00141{bottom:737.066372pt;}
.y15_c00141{bottom:775.306357pt;}
.y14_c00141{bottom:794.666349pt;}
.y13_c00141{bottom:812.426342pt;}
.y11_c00141{bottom:826.826336pt;}
.y12_c00141{bottom:829.386335pt;}
.y10_c00141{bottom:846.186328pt;}
.ye_c00141{bottom:866.506320pt;}
.yf_c00141{bottom:869.066319pt;}
.yd_c00141{bottom:886.026312pt;}
.yc_c00141{bottom:903.786305pt;}
.yb_c00141{bottom:920.746298pt;}
.y9_c00141{bottom:934.986293pt;}
.ya_c00141{bottom:937.546292pt;}
.y8_c00141{bottom:954.506285pt;}
.y6_c00141{bottom:974.826277pt;}
.y7_c00141{bottom:977.386276pt;}
.y5_c00141{bottom:994.186269pt;}
.y2_c00141{bottom:1028.586255pt;}
.y1_c00141{bottom:1063.146241pt;}
.h6_c00141{height:16.640000pt;}
.h2_c00141{height:39.243734pt;}
.h1_c00141{height:52.134354pt;}
.h4_c00141{height:57.758727pt;}
.h3_c00141{height:57.787477pt;}
.h5_c00141{height:124.987450pt;}
.h0_c00141{height:1122.666667pt;}
.w1_c00141{width:6.720000pt;}
.w0_c00141{width:793.333333pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:113.439955pt;}
.x3_c00141{left:343.999239pt;}
.x2_c00141{left:385.759568pt;}
.x5_c00141{left:552.160000pt;}
.x4_c00141{left:566.559312pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e3ce3cec948200dad3a802f.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284668;font-style:normal;font-weight:normal;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_142c7a52ec05ec247f1e2830.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:0.675781;font-style:normal;font-weight:normal;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_471d47b854c7af3805c61ffa.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;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00142{font-family:ff4_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;}
.m0_c00142{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:76.319969px;}
.ls3_c00142{letter-spacing:0.000000px;}
.ls2_c00142{letter-spacing:0.019831px;}
.ls0_c00142{letter-spacing:0.019875px;}
.ls1_c00142{letter-spacing:641.915743px;}
.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:0.000000px;}
._1_c00142{margin-left:-1.105374px;}
._0_c00142{width:1.478351px;}
._10_c00142{width:2.948384px;}
._23_c00142{width:3.951962px;}
._22_c00142{width:5.616928px;}
._3_c00142{width:7.253880px;}
._1e_c00142{width:13.794588px;}
._5_c00142{width:15.366302px;}
._18_c00142{width:19.856016px;}
._a_c00142{width:22.401425px;}
._9_c00142{width:29.303756px;}
._1f_c00142{width:32.993299px;}
._e_c00142{width:37.548483px;}
._f_c00142{width:45.151785px;}
._14_c00142{width:46.236177px;}
._16_c00142{width:52.737429px;}
._17_c00142{width:53.936263px;}
._1c_c00142{width:55.248123px;}
._1b_c00142{width:56.429791px;}
._11_c00142{width:58.592476px;}
._4_c00142{width:64.480338px;}
._19_c00142{width:81.745259px;}
._13_c00142{width:99.094870px;}
._8_c00142{width:121.645436px;}
._12_c00142{width:175.651719px;}
._6_c00142{width:203.273788px;}
._7_c00142{width:319.872702px;}
._2_c00142{width:372.450681px;}
._d_c00142{width:467.128308px;}
._1d_c00142{width:535.156761px;}
._21_c00142{width:536.879000px;}
._1a_c00142{width:564.633549px;}
._c_c00142{width:572.731386px;}
._b_c00142{width:689.694619px;}
._20_c00142{width:705.894438px;}
._15_c00142{width:760.260896px;}
.fc1_c00142{color:rgb(0,0,255);}
.fc0_c00142{color:rgb(0,0,0);}
.fs0_c00142{font-size:59.759976px;}
.fs1_c00142{font-size:66.239974px;}
.y0_c00142{bottom:0.000000px;}
.y4_c00142{bottom:75.900270px;}
.y3_c00142{bottom:114.060254px;}
.y32_c00142{bottom:153.659939px;}
.y31_c00142{bottom:179.039928px;}
.y30_c00142{bottom:197.939921px;}
.y2f_c00142{bottom:218.459913px;}
.y2e_c00142{bottom:237.359905px;}
.y2d_c00142{bottom:256.439897px;}
.y2c_c00142{bottom:275.339890px;}
.y2a_c00142{bottom:298.379881px;}
.y29_c00142{bottom:341.399863px;}
.y2b_c00142{bottom:343.919862px;}
.y28_c00142{bottom:362.999855px;}
.y27_c00142{bottom:382.979847px;}
.y26_c00142{bottom:402.059839px;}
.y25_c00142{bottom:420.959832px;}
.y24_c00142{bottom:441.119824px;}
.y23_c00142{bottom:460.019816px;}
.y22_c00142{bottom:479.099808px;}
.y21_c00142{bottom:499.079800px;}
.y20_c00142{bottom:518.159793px;}
.y1f_c00142{bottom:537.059785px;}
.y1e_c00142{bottom:556.139778px;}
.y1d_c00142{bottom:575.039770px;}
.y1c_c00142{bottom:595.199762px;}
.y1b_c00142{bottom:614.099754px;}
.y1a_c00142{bottom:632.999747px;}
.y19_c00142{bottom:684.839726px;}
.y18_c00142{bottom:704.999718px;}
.y17_c00142{bottom:723.899710px;}
.y16_c00142{bottom:742.979703px;}
.y15_c00142{bottom:761.879695px;}
.y14_c00142{bottom:782.039687px;}
.y13_c00142{bottom:800.939680px;}
.y12_c00142{bottom:820.019672px;}
.y11_c00142{bottom:838.919664px;}
.y10_c00142{bottom:882.659647px;}
.yf_c00142{bottom:902.639639px;}
.ye_c00142{bottom:921.719631px;}
.yd_c00142{bottom:940.619624px;}
.yc_c00142{bottom:959.699616px;}
.yb_c00142{bottom:1003.259599px;}
.ya_c00142{bottom:1023.419591px;}
.y9_c00142{bottom:1042.319583px;}
.y8_c00142{bottom:1061.399575px;}
.y7_c00142{bottom:1081.379867px;}
.y6_c00142{bottom:1100.459860px;}
.y5_c00142{bottom:1119.359852px;}
.y2_c00142{bottom:1176.059530px;}
.y1_c00142{bottom:1196.219522px;}
.h2_c00142{height:44.149201px;}
.h1_c00142{height:58.651148px;}
.h4_c00142{height:64.978568px;}
.h3_c00142{height:65.010911px;}
.h6_c00142{height:66.757473px;}
.h5_c00142{height:141.330881px;}
.h0_c00142{height:1263.000000px;}
.w0_c00142{width:892.500000px;}
.x0_c00142{left:0.000000px;}
.x5_c00142{left:127.620262px;}
.x1_c00142{left:181.799927px;}
.x2_c00142{left:329.039408px;}
.x6_c00142{left:386.999456px;}
.x4_c00142{left:433.979826px;}
.x7_c00142{left:637.379539px;}
.x3_c00142{left:765.359694px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:67.839973pt;}
.ls3_c00142{letter-spacing:0.000000pt;}
.ls2_c00142{letter-spacing:0.017628pt;}
.ls0_c00142{letter-spacing:0.017667pt;}
.ls1_c00142{letter-spacing:570.591772pt;}
.ws0_c00142{word-spacing:0.000000pt;}
._1_c00142{margin-left:-0.982555pt;}
._0_c00142{width:1.314090pt;}
._10_c00142{width:2.620786pt;}
._23_c00142{width:3.512855pt;}
._22_c00142{width:4.992825pt;}
._3_c00142{width:6.447893pt;}
._1e_c00142{width:12.261856pt;}
._5_c00142{width:13.658935pt;}
._18_c00142{width:17.649792pt;}
._a_c00142{width:19.912378pt;}
._9_c00142{width:26.047783pt;}
._1f_c00142{width:29.327377pt;}
._e_c00142{width:33.376429pt;}
._f_c00142{width:40.134920pt;}
._14_c00142{width:41.098824pt;}
._16_c00142{width:46.877715pt;}
._17_c00142{width:47.943345pt;}
._1c_c00142{width:49.109442pt;}
._1b_c00142{width:50.159814pt;}
._11_c00142{width:52.082201pt;}
._4_c00142{width:57.315856pt;}
._19_c00142{width:72.662452pt;}
._13_c00142{width:88.084329pt;}
._8_c00142{width:108.129276pt;}
._12_c00142{width:156.134862pt;}
._6_c00142{width:180.687812pt;}
._7_c00142{width:284.331290pt;}
._2_c00142{width:331.067272pt;}
._d_c00142{width:415.225163pt;}
._1d_c00142{width:475.694898pt;}
._21_c00142{width:477.225778pt;}
._1a_c00142{width:501.896488pt;}
._c_c00142{width:509.094565pt;}
._b_c00142{width:613.061883pt;}
._20_c00142{width:627.461722pt;}
._15_c00142{width:675.787463pt;}
.fs0_c00142{font-size:53.119979pt;}
.fs1_c00142{font-size:58.879976pt;}
.y0_c00142{bottom:0.000000pt;}
.y4_c00142{bottom:67.466906pt;}
.y3_c00142{bottom:101.386893pt;}
.y32_c00142{bottom:136.586612pt;}
.y31_c00142{bottom:159.146603pt;}
.y30_c00142{bottom:175.946596pt;}
.y2f_c00142{bottom:194.186589pt;}
.y2e_c00142{bottom:210.986582pt;}
.y2d_c00142{bottom:227.946575pt;}
.y2c_c00142{bottom:244.746569pt;}
.y2a_c00142{bottom:265.226561pt;}
.y29_c00142{bottom:303.466545pt;}
.y2b_c00142{bottom:305.706544pt;}
.y28_c00142{bottom:322.666538pt;}
.y27_c00142{bottom:340.426530pt;}
.y26_c00142{bottom:357.386524pt;}
.y25_c00142{bottom:374.186517pt;}
.y24_c00142{bottom:392.106510pt;}
.y23_c00142{bottom:408.906503pt;}
.y22_c00142{bottom:425.866496pt;}
.y21_c00142{bottom:443.626489pt;}
.y20_c00142{bottom:460.586482pt;}
.y1f_c00142{bottom:477.386476pt;}
.y1e_c00142{bottom:494.346469pt;}
.y1d_c00142{bottom:511.146462pt;}
.y1c_c00142{bottom:529.066455pt;}
.y1b_c00142{bottom:545.866448pt;}
.y1a_c00142{bottom:562.666442pt;}
.y19_c00142{bottom:608.746423pt;}
.y18_c00142{bottom:626.666416pt;}
.y17_c00142{bottom:643.466409pt;}
.y16_c00142{bottom:660.426402pt;}
.y15_c00142{bottom:677.226396pt;}
.y14_c00142{bottom:695.146389pt;}
.y13_c00142{bottom:711.946382pt;}
.y12_c00142{bottom:728.906375pt;}
.y11_c00142{bottom:745.706368pt;}
.y10_c00142{bottom:784.586353pt;}
.yf_c00142{bottom:802.346346pt;}
.ye_c00142{bottom:819.306339pt;}
.yd_c00142{bottom:836.106332pt;}
.yc_c00142{bottom:853.066325pt;}
.yb_c00142{bottom:891.786310pt;}
.ya_c00142{bottom:909.706303pt;}
.y9_c00142{bottom:926.506296pt;}
.y8_c00142{bottom:943.466289pt;}
.y7_c00142{bottom:961.226549pt;}
.y6_c00142{bottom:978.186542pt;}
.y5_c00142{bottom:994.986535pt;}
.y2_c00142{bottom:1045.386249pt;}
.y1_c00142{bottom:1063.306241pt;}
.h2_c00142{height:39.243734pt;}
.h1_c00142{height:52.134354pt;}
.h4_c00142{height:57.758727pt;}
.h3_c00142{height:57.787477pt;}
.h6_c00142{height:59.339976pt;}
.h5_c00142{height:125.627450pt;}
.h0_c00142{height:1122.666667pt;}
.w0_c00142{width:793.333333pt;}
.x0_c00142{left:0.000000pt;}
.x5_c00142{left:113.440233pt;}
.x1_c00142{left:161.599935pt;}
.x2_c00142{left:292.479474pt;}
.x6_c00142{left:343.999517pt;}
.x4_c00142{left:385.759846pt;}
.x7_c00142{left:566.559590pt;}
.x3_c00142{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00143{font-family:ff1_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:ff2_c00143;src:url('chunks/assets/font_ee283cdc41f4c6ad69699f58.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00143{word-spacing:0.000000px;}
._1_c00143{margin-left:-1.105374px;}
._0_c00143{width:1.195563px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs0_c00143{font-size:59.759976px;}
.fs1_c00143{font-size:66.239974px;}
.fs2_c00143{font-size:71.999971px;}
.y0_c00143{bottom:0.000000px;}
.y4_c00143{bottom:75.899970px;}
.y3_c00143{bottom:114.059954px;}
.y24_c00143{bottom:155.279938px;}
.y23_c00143{bottom:186.419925px;}
.y22_c00143{bottom:217.379913px;}
.y21_c00143{bottom:248.519901px;}
.y20_c00143{bottom:279.479888px;}
.y1f_c00143{bottom:310.619876px;}
.y1e_c00143{bottom:341.579863px;}
.y1d_c00143{bottom:372.719851px;}
.y1c_c00143{bottom:403.679839px;}
.y1b_c00143{bottom:434.819826px;}
.y1a_c00143{bottom:465.779814px;}
.y19_c00143{bottom:496.919801px;}
.y18_c00143{bottom:527.879789px;}
.y17_c00143{bottom:559.019776px;}
.y16_c00143{bottom:589.979764px;}
.y15_c00143{bottom:621.119752px;}
.y14_c00143{bottom:652.079739px;}
.y13_c00143{bottom:683.219727px;}
.y12_c00143{bottom:714.179714px;}
.y11_c00143{bottom:745.319702px;}
.y10_c00143{bottom:776.279689px;}
.yf_c00143{bottom:807.419677px;}
.ye_c00143{bottom:838.379665px;}
.yd_c00143{bottom:869.519652px;}
.yc_c00143{bottom:900.479640px;}
.yb_c00143{bottom:931.619627px;}
.ya_c00143{bottom:962.579615px;}
.y9_c00143{bottom:993.719603px;}
.y8_c00143{bottom:1024.679590px;}
.y7_c00143{bottom:1055.819578px;}
.y6_c00143{bottom:1086.779565px;}
.y5_c00143{bottom:1117.919553px;}
.y2_c00143{bottom:1157.159537px;}
.y1_c00143{bottom:1196.039522px;}
.h2_c00143{height:44.149201px;}
.h1_c00143{height:58.651148px;}
.h3_c00143{height:72.562471px;}
.h0_c00143{height:1263.000000px;}
.w0_c00143{width:892.500000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:127.619949px;}
.x2_c00143{left:433.979514px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._1_c00143{margin-left:-0.982555pt;}
._0_c00143{width:1.062723pt;}
.fs0_c00143{font-size:53.119979pt;}
.fs1_c00143{font-size:58.879976pt;}
.fs2_c00143{font-size:63.999974pt;}
.y0_c00143{bottom:0.000000pt;}
.y4_c00143{bottom:67.466640pt;}
.y3_c00143{bottom:101.386626pt;}
.y24_c00143{bottom:138.026611pt;}
.y23_c00143{bottom:165.706600pt;}
.y22_c00143{bottom:193.226589pt;}
.y21_c00143{bottom:220.906578pt;}
.y20_c00143{bottom:248.426567pt;}
.y1f_c00143{bottom:276.106556pt;}
.y1e_c00143{bottom:303.626545pt;}
.y1d_c00143{bottom:331.306534pt;}
.y1c_c00143{bottom:358.826523pt;}
.y1b_c00143{bottom:386.506512pt;}
.y1a_c00143{bottom:414.026501pt;}
.y19_c00143{bottom:441.706490pt;}
.y18_c00143{bottom:469.226479pt;}
.y17_c00143{bottom:496.906468pt;}
.y16_c00143{bottom:524.426457pt;}
.y15_c00143{bottom:552.106446pt;}
.y14_c00143{bottom:579.626435pt;}
.y13_c00143{bottom:607.306424pt;}
.y12_c00143{bottom:634.826413pt;}
.y11_c00143{bottom:662.506402pt;}
.y10_c00143{bottom:690.026391pt;}
.yf_c00143{bottom:717.706380pt;}
.ye_c00143{bottom:745.226369pt;}
.yd_c00143{bottom:772.906358pt;}
.yc_c00143{bottom:800.426346pt;}
.yb_c00143{bottom:828.106335pt;}
.ya_c00143{bottom:855.626324pt;}
.y9_c00143{bottom:883.306313pt;}
.y8_c00143{bottom:910.826302pt;}
.y7_c00143{bottom:938.506291pt;}
.y6_c00143{bottom:966.026280pt;}
.y5_c00143{bottom:993.706269pt;}
.y2_c00143{bottom:1028.586255pt;}
.y1_c00143{bottom:1063.146241pt;}
.h2_c00143{height:39.243734pt;}
.h1_c00143{height:52.134354pt;}
.h3_c00143{height:64.499974pt;}
.h0_c00143{height:1122.666667pt;}
.w0_c00143{width:793.333333pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:113.439955pt;}
.x2_c00143{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7be70b9db5489cda23d68b26.woff2')format("woff");}.ff1_c00144{font-family:ff1_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:ff2_c00144;src:url('chunks/assets/font_cf64d496056d0107b8df729c.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:0.675781;font-style:normal;font-weight:normal;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_39bf2d942b94c07ed029747c.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.311035;font-style:normal;font-weight:normal;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_c66a1d5ab6131ffe3e36a3f0.woff2')format("woff");}.ff4_c00144{font-family:ff4_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:ff5_c00144;src:url('chunks/assets/font_72ff3c02d4760fa95afb3727.woff2')format("woff");}.ff5_c00144{font-family:ff5_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;}
.m0_c00144{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls3_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:0.021238px;}
.ls1_c00144{letter-spacing:0.374281px;}
.ls2_c00144{letter-spacing:15.311934px;}
.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;}
}
.ws2_c00144{word-spacing:-14.939994px;}
.ws0_c00144{word-spacing:-12.434276px;}
.ws1_c00144{word-spacing:-8.786876px;}
.ws3_c00144{word-spacing:0.000000px;}
._e_c00144{margin-left:-10.339705px;}
._1_c00144{margin-left:-1.105374px;}
._0_c00144{width:1.478351px;}
._d_c00144{width:2.791175px;}
._c_c00144{width:3.842631px;}
._6_c00144{width:5.058361px;}
._7_c00144{width:6.297576px;}
._8_c00144{width:7.557938px;}
._4_c00144{width:8.834118px;}
._3_c00144{width:10.612373px;}
._2_c00144{width:11.922519px;}
._9_c00144{width:13.852181px;}
._a_c00144{width:15.196552px;}
._5_c00144{width:20.242750px;}
._b_c00144{width:36.021240px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs4_c00144{font-size:38.879984px;}
.fs3_c00144{font-size:48.239981px;}
.fs0_c00144{font-size:59.759976px;}
.fs1_c00144{font-size:66.239974px;}
.fs2_c00144{font-size:71.999971px;}
.y0_c00144{bottom:0.000000px;}
.y4_c00144{bottom:75.900270px;}
.y3_c00144{bottom:114.060254px;}
.y22_c00144{bottom:135.839946px;}
.y21_c00144{bottom:155.639938px;}
.y20_c00144{bottom:175.799930px;}
.y1f_c00144{bottom:183.359927px;}
.y1e_c00144{bottom:194.879922px;}
.y1d_c00144{bottom:341.939863px;}
.y1c_c00144{bottom:373.079851px;}
.y1b_c00144{bottom:404.039838px;}
.y19_c00144{bottom:456.059818px;}
.y1a_c00144{bottom:464.339814px;}
.y18_c00144{bottom:487.199805px;}
.y17_c00144{bottom:518.159793px;}
.y16_c00144{bottom:549.299780px;}
.y15_c00144{bottom:580.259768px;}
.y14_c00144{bottom:611.399755px;}
.y13_c00144{bottom:642.359743px;}
.y12_c00144{bottom:673.499731px;}
.y11_c00144{bottom:704.459718px;}
.y10_c00144{bottom:756.479697px;}
.yf_c00144{bottom:787.619685px;}
.ye_c00144{bottom:818.579673px;}
.yd_c00144{bottom:849.539660px;}
.yc_c00144{bottom:901.379639px;}
.yb_c00144{bottom:932.339627px;}
.ya_c00144{bottom:963.479615px;}
.y9_c00144{bottom:994.439602px;}
.y8_c00144{bottom:1025.579590px;}
.y7_c00144{bottom:1056.539577px;}
.y6_c00144{bottom:1087.679565px;}
.y5_c00144{bottom:1118.639553px;}
.y2_c00144{bottom:1176.059530px;}
.y1_c00144{bottom:1196.219522px;}
.h6_c00144{height:25.913662px;}
.h2_c00144{height:44.149201px;}
.h5_c00144{height:47.344903px;}
.h1_c00144{height:58.651148px;}
.h4_c00144{height:70.664034px;}
.h3_c00144{height:72.562471px;}
.h0_c00144{height:1263.000000px;}
.w0_c00144{width:892.500000px;}
.x0_c00144{left:0.000000px;}
.x5_c00144{left:127.620262px;}
.x9_c00144{left:142.199943px;}
.x6_c00144{left:180.720080px;}
.x1_c00144{left:181.799927px;}
.x2_c00144{left:329.039408px;}
.x4_c00144{left:433.979826px;}
.x7_c00144{left:535.679786px;}
.x8_c00144{left:554.039778px;}
.x3_c00144{left:765.359694px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls3_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:0.018878pt;}
.ls1_c00144{letter-spacing:0.332694pt;}
.ls2_c00144{letter-spacing:13.610608pt;}
.ws2_c00144{word-spacing:-13.279995pt;}
.ws0_c00144{word-spacing:-11.052689pt;}
.ws1_c00144{word-spacing:-7.810557pt;}
.ws3_c00144{word-spacing:0.000000pt;}
._e_c00144{margin-left:-9.190849pt;}
._1_c00144{margin-left:-0.982555pt;}
._0_c00144{width:1.314090pt;}
._d_c00144{width:2.481044pt;}
._c_c00144{width:3.415672pt;}
._6_c00144{width:4.496321pt;}
._7_c00144{width:5.597845pt;}
._8_c00144{width:6.718167pt;}
._4_c00144{width:7.852549pt;}
._3_c00144{width:9.433220pt;}
._2_c00144{width:10.597794pt;}
._9_c00144{width:12.313050pt;}
._a_c00144{width:13.508046pt;}
._5_c00144{width:17.993556pt;}
._b_c00144{width:32.018880pt;}
.fs4_c00144{font-size:34.559986pt;}
.fs3_c00144{font-size:42.879983pt;}
.fs0_c00144{font-size:53.119979pt;}
.fs1_c00144{font-size:58.879976pt;}
.fs2_c00144{font-size:63.999974pt;}
.y0_c00144{bottom:0.000000pt;}
.y4_c00144{bottom:67.466906pt;}
.y3_c00144{bottom:101.386893pt;}
.y22_c00144{bottom:120.746618pt;}
.y21_c00144{bottom:138.346611pt;}
.y20_c00144{bottom:156.266604pt;}
.y1f_c00144{bottom:162.986601pt;}
.y1e_c00144{bottom:173.226597pt;}
.y1d_c00144{bottom:303.946545pt;}
.y1c_c00144{bottom:331.626534pt;}
.y1b_c00144{bottom:359.146523pt;}
.y19_c00144{bottom:405.386505pt;}
.y1a_c00144{bottom:412.746502pt;}
.y18_c00144{bottom:433.066493pt;}
.y17_c00144{bottom:460.586482pt;}
.y16_c00144{bottom:488.266471pt;}
.y15_c00144{bottom:515.786460pt;}
.y14_c00144{bottom:543.466449pt;}
.y13_c00144{bottom:570.986438pt;}
.y12_c00144{bottom:598.666427pt;}
.y11_c00144{bottom:626.186416pt;}
.y10_c00144{bottom:672.426398pt;}
.yf_c00144{bottom:700.106387pt;}
.ye_c00144{bottom:727.626376pt;}
.yd_c00144{bottom:755.146365pt;}
.yc_c00144{bottom:801.226346pt;}
.yb_c00144{bottom:828.746335pt;}
.ya_c00144{bottom:856.426324pt;}
.y9_c00144{bottom:883.946313pt;}
.y8_c00144{bottom:911.626302pt;}
.y7_c00144{bottom:939.146291pt;}
.y6_c00144{bottom:966.826280pt;}
.y5_c00144{bottom:994.346269pt;}
.y2_c00144{bottom:1045.386249pt;}
.y1_c00144{bottom:1063.306241pt;}
.h6_c00144{height:23.034366pt;}
.h2_c00144{height:39.243734pt;}
.h5_c00144{height:42.084358pt;}
.h1_c00144{height:52.134354pt;}
.h4_c00144{height:62.812475pt;}
.h3_c00144{height:64.499974pt;}
.h0_c00144{height:1122.666667pt;}
.w0_c00144{width:793.333333pt;}
.x0_c00144{left:0.000000pt;}
.x5_c00144{left:113.440233pt;}
.x9_c00144{left:126.399949pt;}
.x6_c00144{left:160.640071pt;}
.x1_c00144{left:161.599935pt;}
.x2_c00144{left:292.479474pt;}
.x4_c00144{left:385.759846pt;}
.x7_c00144{left:476.159810pt;}
.x8_c00144{left:492.479803pt;}
.x3_c00144{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea5dc0d859e708fe032c45ef.woff2')format("woff");}.ff1_c00145{font-family:ff1_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:ff2_c00145;src:url('chunks/assets/font_b639e536681ad25cf7782e4e.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:0.675781;font-style:normal;font-weight:normal;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_59d3038ce8d9d78f8a6d775c.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;}
.m0_c00145{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls4_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.374281px;}
.ls2_c00145{letter-spacing:3.071039px;}
.ls1_c00145{letter-spacing:8.827976px;}
.ls3_c00145{letter-spacing:16.039014px;}
.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:-12.434276px;}
.ws2_c00145{word-spacing:-9.437756px;}
.ws1_c00145{word-spacing:-8.786876px;}
.ws3_c00145{word-spacing:0.000000px;}
._12_c00145{margin-left:-10.618069px;}
._d_c00145{margin-left:-2.251656px;}
._1_c00145{margin-left:-1.105374px;}
._0_c00145{width:1.195563px;}
._2_c00145{width:2.393092px;}
._9_c00145{width:3.873200px;}
._3_c00145{width:5.028813px;}
._6_c00145{width:6.575940px;}
._f_c00145{width:7.836088px;}
._4_c00145{width:9.167157px;}
._7_c00145{width:10.934491px;}
._c_c00145{width:12.481841px;}
._b_c00145{width:13.599532px;}
._a_c00145{width:15.075790px;}
._5_c00145{width:16.665455px;}
._8_c00145{width:19.565914px;}
._10_c00145{width:21.194628px;}
._11_c00145{width:22.353314px;}
._e_c00145{width:25.285673px;}
.fc1_c00145{color:rgb(0,0,238);}
.fc0_c00145{color:rgb(0,0,0);}
.fs4_c00145{font-size:38.879984px;}
.fs5_c00145{font-size:41.759983px;}
.fs3_c00145{font-size:48.239981px;}
.fs0_c00145{font-size:59.759976px;}
.fs1_c00145{font-size:66.239974px;}
.fs2_c00145{font-size:71.999971px;}
.y0_c00145{bottom:0.000000px;}
.y4_c00145{bottom:75.899970px;}
.y3_c00145{bottom:114.059954px;}
.y2a_c00145{bottom:150.779940px;}
.y29_c00145{bottom:171.479931px;}
.y28_c00145{bottom:179.039928px;}
.y27_c00145{bottom:208.379917px;}
.y26_c00145{bottom:228.179909px;}
.y25_c00145{bottom:248.879900px;}
.y24_c00145{bottom:256.439897px;}
.y23_c00145{bottom:271.379891px;}
.y22_c00145{bottom:291.899883px;}
.y21_c00145{bottom:312.059875px;}
.y20_c00145{bottom:319.619872px;}
.y1f_c00145{bottom:331.139868px;}
.y1e_c00145{bottom:351.119860px;}
.y1d_c00145{bottom:382.259847px;}
.y1c_c00145{bottom:413.219835px;}
.y1b_c00145{bottom:444.359822px;}
.y1a_c00145{bottom:475.319810px;}
.y19_c00145{bottom:506.459797px;}
.y18_c00145{bottom:537.419785px;}
.y17_c00145{bottom:568.559773px;}
.y16_c00145{bottom:620.579752px;}
.y15_c00145{bottom:651.539739px;}
.y14_c00145{bottom:682.679727px;}
.y12_c00145{bottom:713.639715px;}
.y13_c00145{bottom:721.919711px;}
.y11_c00145{bottom:744.779702px;}
.y10_c00145{bottom:775.739690px;}
.yf_c00145{bottom:806.879677px;}
.yd_c00145{bottom:858.899656px;}
.ye_c00145{bottom:867.179653px;}
.yc_c00145{bottom:889.859644px;}
.yb_c00145{bottom:920.999632px;}
.ya_c00145{bottom:973.019611px;}
.y9_c00145{bottom:1003.979598px;}
.y8_c00145{bottom:1035.119586px;}
.y6_c00145{bottom:1087.139565px;}
.y7_c00145{bottom:1095.419562px;}
.y5_c00145{bottom:1118.279553px;}
.y2_c00145{bottom:1157.159537px;}
.y1_c00145{bottom:1196.039522px;}
.h5_c00145{height:25.913662px;}
.h7_c00145{height:27.833192px;}
.h6_c00145{height:39.830258px;}
.h2_c00145{height:44.149201px;}
.h4_c00145{height:47.344903px;}
.h1_c00145{height:58.651148px;}
.h3_c00145{height:70.664034px;}
.h0_c00145{height:1263.000000px;}
.w0_c00145{width:892.500000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:127.619949px;}
.xa_c00145{left:142.199943px;}
.xb_c00145{left:143.279943px;}
.xc_c00145{left:147.779941px;}
.x5_c00145{left:180.719913px;}
.x3_c00145{left:213.659915px;}
.x4_c00145{left:232.019907px;}
.x8_c00145{left:345.419862px;}
.x9_c00145{left:363.779854px;}
.x2_c00145{left:433.979514px;}
.xd_c00145{left:486.359805px;}
.x6_c00145{left:570.599772px;}
.x7_c00145{left:588.959764px;}
.xe_c00145{left:656.279737px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls4_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.332694pt;}
.ls2_c00145{letter-spacing:2.729812pt;}
.ls1_c00145{letter-spacing:7.847090pt;}
.ls3_c00145{letter-spacing:14.256901pt;}
.ws0_c00145{word-spacing:-11.052689pt;}
.ws2_c00145{word-spacing:-8.389117pt;}
.ws1_c00145{word-spacing:-7.810557pt;}
.ws3_c00145{word-spacing:0.000000pt;}
._12_c00145{margin-left:-9.438283pt;}
._d_c00145{margin-left:-2.001472pt;}
._1_c00145{margin-left:-0.982555pt;}
._0_c00145{width:1.062723pt;}
._2_c00145{width:2.127193pt;}
._9_c00145{width:3.442844pt;}
._3_c00145{width:4.470056pt;}
._6_c00145{width:5.845280pt;}
._f_c00145{width:6.965412pt;}
._4_c00145{width:8.148584pt;}
._7_c00145{width:9.719547pt;}
._c_c00145{width:11.094970pt;}
._b_c00145{width:12.088473pt;}
._a_c00145{width:13.400702pt;}
._5_c00145{width:14.813738pt;}
._8_c00145{width:17.391924pt;}
._10_c00145{width:18.839669pt;}
._11_c00145{width:19.869612pt;}
._e_c00145{width:22.476154pt;}
.fs4_c00145{font-size:34.559986pt;}
.fs5_c00145{font-size:37.119985pt;}
.fs3_c00145{font-size:42.879983pt;}
.fs0_c00145{font-size:53.119979pt;}
.fs1_c00145{font-size:58.879976pt;}
.fs2_c00145{font-size:63.999974pt;}
.y0_c00145{bottom:0.000000pt;}
.y4_c00145{bottom:67.466640pt;}
.y3_c00145{bottom:101.386626pt;}
.y2a_c00145{bottom:134.026613pt;}
.y29_c00145{bottom:152.426606pt;}
.y28_c00145{bottom:159.146603pt;}
.y27_c00145{bottom:185.226593pt;}
.y26_c00145{bottom:202.826586pt;}
.y25_c00145{bottom:221.226578pt;}
.y24_c00145{bottom:227.946575pt;}
.y23_c00145{bottom:241.226570pt;}
.y22_c00145{bottom:259.466563pt;}
.y21_c00145{bottom:277.386556pt;}
.y20_c00145{bottom:284.106553pt;}
.y1f_c00145{bottom:294.346549pt;}
.y1e_c00145{bottom:312.106542pt;}
.y1d_c00145{bottom:339.786531pt;}
.y1c_c00145{bottom:367.306520pt;}
.y1b_c00145{bottom:394.986509pt;}
.y1a_c00145{bottom:422.506498pt;}
.y19_c00145{bottom:450.186487pt;}
.y18_c00145{bottom:477.706476pt;}
.y17_c00145{bottom:505.386465pt;}
.y16_c00145{bottom:551.626446pt;}
.y15_c00145{bottom:579.146435pt;}
.y14_c00145{bottom:606.826424pt;}
.y12_c00145{bottom:634.346413pt;}
.y13_c00145{bottom:641.706410pt;}
.y11_c00145{bottom:662.026402pt;}
.y10_c00145{bottom:689.546391pt;}
.yf_c00145{bottom:717.226380pt;}
.yd_c00145{bottom:763.466361pt;}
.ye_c00145{bottom:770.826358pt;}
.yc_c00145{bottom:790.986350pt;}
.yb_c00145{bottom:818.666339pt;}
.ya_c00145{bottom:864.906321pt;}
.y9_c00145{bottom:892.426310pt;}
.y8_c00145{bottom:920.106299pt;}
.y6_c00145{bottom:966.346280pt;}
.y7_c00145{bottom:973.706277pt;}
.y5_c00145{bottom:994.026269pt;}
.y2_c00145{bottom:1028.586255pt;}
.y1_c00145{bottom:1063.146241pt;}
.h5_c00145{height:23.034366pt;}
.h7_c00145{height:24.740615pt;}
.h6_c00145{height:35.404673pt;}
.h2_c00145{height:39.243734pt;}
.h4_c00145{height:42.084358pt;}
.h1_c00145{height:52.134354pt;}
.h3_c00145{height:62.812475pt;}
.h0_c00145{height:1122.666667pt;}
.w0_c00145{width:793.333333pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:113.439955pt;}
.xa_c00145{left:126.399949pt;}
.xb_c00145{left:127.359949pt;}
.xc_c00145{left:131.359947pt;}
.x5_c00145{left:160.639922pt;}
.x3_c00145{left:189.919924pt;}
.x4_c00145{left:206.239918pt;}
.x8_c00145{left:307.039877pt;}
.x9_c00145{left:323.359871pt;}
.x2_c00145{left:385.759568pt;}
.xd_c00145{left:432.319827pt;}
.x6_c00145{left:507.199797pt;}
.x7_c00145{left:523.519791pt;}
.xe_c00145{left:583.359767pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df8fd79aed22b8c19356489a.woff2')format("woff");}.ff1_c00146{font-family:ff1_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:ff2_c00146;src:url('chunks/assets/font_6999467c72d424644df3c3e7.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:0.675781;font-style:normal;font-weight:normal;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_c0fd4395350677036061666a.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.284180;font-style:normal;font-weight:normal;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_6b9d016a30e478691895926a.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:0.669434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00146{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls5_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.374281px;}
.ls2_c00146{letter-spacing:3.784858px;}
.ls3_c00146{letter-spacing:3.791518px;}
.ls4_c00146{letter-spacing:16.039014px;}
.ls1_c00146{letter-spacing:23.064231px;}
.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;}
}
.ws2_c00146{word-spacing:-14.939994px;}
.ws0_c00146{word-spacing:-12.434276px;}
.ws1_c00146{word-spacing:-9.437756px;}
.ws3_c00146{word-spacing:0.000000px;}
._13_c00146{margin-left:-9.835029px;}
._6_c00146{margin-left:-2.260159px;}
._1_c00146{margin-left:-1.105374px;}
._0_c00146{width:1.478351px;}
._5_c00146{width:2.775397px;}
._4_c00146{width:3.807644px;}
._b_c00146{width:5.792900px;}
._10_c00146{width:7.284624px;}
._c_c00146{width:8.419551px;}
._d_c00146{width:9.925404px;}
._12_c00146{width:11.686985px;}
._8_c00146{width:12.789110px;}
._2_c00146{width:13.930185px;}
._3_c00146{width:15.175012px;}
._11_c00146{width:16.236871px;}
._7_c00146{width:19.884930px;}
._f_c00146{width:21.961185px;}
._e_c00146{width:23.060693px;}
._9_c00146{width:24.435358px;}
._a_c00146{width:25.971447px;}
.fc1_c00146{color:rgb(0,0,238);}
.fc0_c00146{color:rgb(0,0,0);}
.fs4_c00146{font-size:41.759983px;}
.fs3_c00146{font-size:48.239981px;}
.fs0_c00146{font-size:59.759976px;}
.fs1_c00146{font-size:66.239974px;}
.fs2_c00146{font-size:71.999971px;}
.y0_c00146{bottom:0.000000px;}
.y4_c00146{bottom:75.900270px;}
.y3_c00146{bottom:114.060254px;}
.y27_c00146{bottom:152.219939px;}
.y26_c00146{bottom:188.939924px;}
.y25_c00146{bottom:208.739917px;}
.y24_c00146{bottom:229.619908px;}
.y23_c00146{bottom:237.179905px;}
.y22_c00146{bottom:267.239893px;}
.y21_c00146{bottom:274.799890px;}
.y20_c00146{bottom:287.579885px;}
.y1f_c00146{bottom:331.859867px;}
.y1e_c00146{bottom:362.999855px;}
.y1d_c00146{bottom:393.959842px;}
.y1c_c00146{bottom:425.099830px;}
.y1b_c00146{bottom:456.059818px;}
.y1a_c00146{bottom:487.199805px;}
.y19_c00146{bottom:518.159793px;}
.y17_c00146{bottom:570.179772px;}
.y18_c00146{bottom:578.459769px;}
.y16_c00146{bottom:601.319759px;}
.y15_c00146{bottom:632.279747px;}
.y14_c00146{bottom:663.419735px;}
.y13_c00146{bottom:694.379722px;}
.y12_c00146{bottom:725.519710px;}
.y11_c00146{bottom:756.479697px;}
.y10_c00146{bottom:787.619685px;}
.yf_c00146{bottom:818.579673px;}
.ye_c00146{bottom:849.719660px;}
.yd_c00146{bottom:880.679648px;}
.yc_c00146{bottom:911.819635px;}
.yb_c00146{bottom:942.779623px;}
.y9_c00146{bottom:994.799602px;}
.ya_c00146{bottom:1003.079599px;}
.y8_c00146{bottom:1025.939590px;}
.y7_c00146{bottom:1056.899577px;}
.y6_c00146{bottom:1088.039565px;}
.y5_c00146{bottom:1118.999552px;}
.y2_c00146{bottom:1176.059530px;}
.y1_c00146{bottom:1196.219522px;}
.h5_c00146{height:27.833192px;}
.h2_c00146{height:44.149201px;}
.h4_c00146{height:47.344903px;}
.h1_c00146{height:58.651148px;}
.h3_c00146{height:70.664034px;}
.h0_c00146{height:1263.000000px;}
.w0_c00146{width:892.500000px;}
.x0_c00146{left:0.000000px;}
.x5_c00146{left:127.620262px;}
.xb_c00146{left:143.279943px;}
.xc_c00146{left:147.059941px;}
.x8_c00146{left:180.719623px;}
.x1_c00146{left:181.799927px;}
.xd_c00146{left:199.979920px;}
.x2_c00146{left:329.039408px;}
.x4_c00146{left:433.979826px;}
.xe_c00146{left:486.359805px;}
.x6_c00146{left:619.199752px;}
.x7_c00146{left:637.559745px;}
.x9_c00146{left:698.219721px;}
.xa_c00146{left:716.579713px;}
.x3_c00146{left:765.359694px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls5_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.332694pt;}
.ls2_c00146{letter-spacing:3.364319pt;}
.ls3_c00146{letter-spacing:3.370239pt;}
.ls4_c00146{letter-spacing:14.256901pt;}
.ls1_c00146{letter-spacing:20.501538pt;}
.ws2_c00146{word-spacing:-13.279995pt;}
.ws0_c00146{word-spacing:-11.052689pt;}
.ws1_c00146{word-spacing:-8.389117pt;}
.ws3_c00146{word-spacing:0.000000pt;}
._13_c00146{margin-left:-8.742248pt;}
._6_c00146{margin-left:-2.009030pt;}
._1_c00146{margin-left:-0.982555pt;}
._0_c00146{width:1.314090pt;}
._5_c00146{width:2.467019pt;}
._4_c00146{width:3.384573pt;}
._b_c00146{width:5.149245pt;}
._10_c00146{width:6.475222pt;}
._c_c00146{width:7.484045pt;}
._d_c00146{width:8.822581pt;}
._12_c00146{width:10.388431pt;}
._8_c00146{width:11.368098pt;}
._2_c00146{width:12.382387pt;}
._3_c00146{width:13.488899pt;}
._11_c00146{width:14.432775pt;}
._7_c00146{width:17.675493pt;}
._f_c00146{width:19.521053pt;}
._e_c00146{width:20.498394pt;}
._9_c00146{width:21.720318pt;}
._a_c00146{width:23.085730pt;}
.fs4_c00146{font-size:37.119985pt;}
.fs3_c00146{font-size:42.879983pt;}
.fs0_c00146{font-size:53.119979pt;}
.fs1_c00146{font-size:58.879976pt;}
.fs2_c00146{font-size:63.999974pt;}
.y0_c00146{bottom:0.000000pt;}
.y4_c00146{bottom:67.466906pt;}
.y3_c00146{bottom:101.386893pt;}
.y27_c00146{bottom:135.306613pt;}
.y26_c00146{bottom:167.946599pt;}
.y25_c00146{bottom:185.546592pt;}
.y24_c00146{bottom:204.106585pt;}
.y23_c00146{bottom:210.826582pt;}
.y22_c00146{bottom:237.546572pt;}
.y21_c00146{bottom:244.266569pt;}
.y20_c00146{bottom:255.626564pt;}
.y1f_c00146{bottom:294.986549pt;}
.y1e_c00146{bottom:322.666538pt;}
.y1d_c00146{bottom:350.186527pt;}
.y1c_c00146{bottom:377.866516pt;}
.y1b_c00146{bottom:405.386505pt;}
.y1a_c00146{bottom:433.066493pt;}
.y19_c00146{bottom:460.586482pt;}
.y17_c00146{bottom:506.826464pt;}
.y18_c00146{bottom:514.186461pt;}
.y16_c00146{bottom:534.506453pt;}
.y15_c00146{bottom:562.026442pt;}
.y14_c00146{bottom:589.706431pt;}
.y13_c00146{bottom:617.226420pt;}
.y12_c00146{bottom:644.906409pt;}
.y11_c00146{bottom:672.426398pt;}
.y10_c00146{bottom:700.106387pt;}
.yf_c00146{bottom:727.626376pt;}
.ye_c00146{bottom:755.306365pt;}
.yd_c00146{bottom:782.826354pt;}
.yc_c00146{bottom:810.506342pt;}
.yb_c00146{bottom:838.026331pt;}
.y9_c00146{bottom:884.266313pt;}
.ya_c00146{bottom:891.626310pt;}
.y8_c00146{bottom:911.946302pt;}
.y7_c00146{bottom:939.466291pt;}
.y6_c00146{bottom:967.146280pt;}
.y5_c00146{bottom:994.666269pt;}
.y2_c00146{bottom:1045.386249pt;}
.y1_c00146{bottom:1063.306241pt;}
.h5_c00146{height:24.740615pt;}
.h2_c00146{height:39.243734pt;}
.h4_c00146{height:42.084358pt;}
.h1_c00146{height:52.134354pt;}
.h3_c00146{height:62.812475pt;}
.h0_c00146{height:1122.666667pt;}
.w0_c00146{width:793.333333pt;}
.x0_c00146{left:0.000000pt;}
.x5_c00146{left:113.440233pt;}
.xb_c00146{left:127.359949pt;}
.xc_c00146{left:130.719948pt;}
.x8_c00146{left:160.639665pt;}
.x1_c00146{left:161.599935pt;}
.xd_c00146{left:177.759929pt;}
.x2_c00146{left:292.479474pt;}
.x4_c00146{left:385.759846pt;}
.xe_c00146{left:432.319827pt;}
.x6_c00146{left:550.399780pt;}
.x7_c00146{left:566.719773pt;}
.x9_c00146{left:620.639752pt;}
.xa_c00146{left:636.959745pt;}
.x3_c00146{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28c39b4d60cdb1735b108a3a.woff2')format("woff");}.ff1_c00147{font-family:ff1_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;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_9e9c2d8ca41a211c3ec49223.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:0.675781;font-style:normal;font-weight:normal;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_0f2b15008dd3e447eea66b4e.woff2')format("woff");}.ff3_c00147{font-family:ff3_c00147;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls6_c00147{letter-spacing:0.000000px;}
.ls1_c00147{letter-spacing:0.010626px;}
.ls2_c00147{letter-spacing:0.182640px;}
.ls0_c00147{letter-spacing:0.374281px;}
.ls3_c00147{letter-spacing:3.784858px;}
.ls4_c00147{letter-spacing:3.791518px;}
.ls5_c00147{letter-spacing:16.039014px;}
.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:-17.999993px;}
.ws3_c00147{word-spacing:-14.939994px;}
.ws1_c00147{word-spacing:-12.434276px;}
.ws4_c00147{word-spacing:-9.437756px;}
.ws2_c00147{word-spacing:-8.786876px;}
.ws5_c00147{word-spacing:0.000000px;}
._f_c00147{margin-left:-9.740606px;}
._1_c00147{margin-left:-1.105374px;}
._0_c00147{width:1.195563px;}
._10_c00147{width:2.386355px;}
._c_c00147{width:3.904425px;}
._3_c00147{width:5.698478px;}
._2_c00147{width:6.900682px;}
._5_c00147{width:8.581365px;}
._6_c00147{width:10.088673px;}
._8_c00147{width:12.076896px;}
._7_c00147{width:13.220389px;}
._b_c00147{width:14.479386px;}
._4_c00147{width:16.501162px;}
._e_c00147{width:20.588768px;}
._d_c00147{width:21.729625px;}
._9_c00147{width:23.759887px;}
._a_c00147{width:25.006451px;}
.fc2_c00147{color:rgb(0,0,238);}
.fc1_c00147{color:rgb(255,255,255);}
.fc0_c00147{color:rgb(0,0,0);}
.fs4_c00147{font-size:38.879984px;}
.fs5_c00147{font-size:41.759983px;}
.fs3_c00147{font-size:48.239981px;}
.fs0_c00147{font-size:59.759976px;}
.fs1_c00147{font-size:66.239974px;}
.fs2_c00147{font-size:71.999971px;}
.y0_c00147{bottom:0.000000px;}
.y4_c00147{bottom:75.899970px;}
.y3_c00147{bottom:114.059954px;}
.y29_c00147{bottom:152.219939px;}
.y28_c00147{bottom:188.939924px;}
.y27_c00147{bottom:208.739917px;}
.y26_c00147{bottom:229.619908px;}
.y25_c00147{bottom:237.179905px;}
.y24_c00147{bottom:272.459891px;}
.y23_c00147{bottom:293.159883px;}
.y22_c00147{bottom:300.719880px;}
.y21_c00147{bottom:333.839866px;}
.y20_c00147{bottom:341.399863px;}
.y1f_c00147{bottom:352.739859px;}
.y1e_c00147{bottom:384.239846px;}
.y1d_c00147{bottom:415.199834px;}
.y1c_c00147{bottom:446.159822px;}
.y1b_c00147{bottom:477.299809px;}
.y1a_c00147{bottom:508.259797px;}
.y19_c00147{bottom:539.399784px;}
.y18_c00147{bottom:570.359772px;}
.y17_c00147{bottom:601.499759px;}
.y15_c00147{bottom:647.579741px;}
.y16_c00147{bottom:655.859738px;}
.y14_c00147{bottom:678.539729px;}
.y13_c00147{bottom:709.679716px;}
.y12_c00147{bottom:740.639704px;}
.y11_c00147{bottom:771.779691px;}
.y10_c00147{bottom:802.739679px;}
.ye_c00147{bottom:848.819660px;}
.yf_c00147{bottom:857.099657px;}
.yd_c00147{bottom:879.779648px;}
.yc_c00147{bottom:910.919636px;}
.yb_c00147{bottom:941.879623px;}
.ya_c00147{bottom:973.019611px;}
.y8_c00147{bottom:1025.039590px;}
.y9_c00147{bottom:1033.319587px;}
.y7_c00147{bottom:1056.179578px;}
.y6_c00147{bottom:1087.139565px;}
.y5_c00147{bottom:1118.279553px;}
.y2_c00147{bottom:1157.159537px;}
.y1_c00147{bottom:1196.039522px;}
.h5_c00147{height:25.913662px;}
.h7_c00147{height:27.833192px;}
.h2_c00147{height:44.149201px;}
.h4_c00147{height:47.344903px;}
.h6_c00147{height:58.621969px;}
.h1_c00147{height:58.651148px;}
.h3_c00147{height:70.664034px;}
.h0_c00147{height:1263.000000px;}
.w0_c00147{width:892.500000px;}
.x0_c00147{left:0.000000px;}
.x1_c00147{left:127.619949px;}
.xa_c00147{left:142.199943px;}
.xb_c00147{left:143.279943px;}
.xc_c00147{left:147.779941px;}
.x5_c00147{left:180.720352px;}
.x8_c00147{left:211.139916px;}
.x9_c00147{left:229.499908px;}
.x2_c00147{left:433.979514px;}
.xe_c00147{left:486.359805px;}
.x6_c00147{left:525.419790px;}
.x7_c00147{left:543.779782px;}
.xd_c00147{left:632.519747px;}
.x3_c00147{left:689.039724px;}
.x4_c00147{left:707.399717px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls6_c00147{letter-spacing:0.000000pt;}
.ls1_c00147{letter-spacing:0.009446pt;}
.ls2_c00147{letter-spacing:0.162347pt;}
.ls0_c00147{letter-spacing:0.332694pt;}
.ls3_c00147{letter-spacing:3.364319pt;}
.ls4_c00147{letter-spacing:3.370239pt;}
.ls5_c00147{letter-spacing:14.256901pt;}
.ws0_c00147{word-spacing:-15.999994pt;}
.ws3_c00147{word-spacing:-13.279995pt;}
.ws1_c00147{word-spacing:-11.052689pt;}
.ws4_c00147{word-spacing:-8.389117pt;}
.ws2_c00147{word-spacing:-7.810557pt;}
.ws5_c00147{word-spacing:0.000000pt;}
._f_c00147{margin-left:-8.658317pt;}
._1_c00147{margin-left:-0.982555pt;}
._0_c00147{width:1.062723pt;}
._10_c00147{width:2.121204pt;}
._c_c00147{width:3.470600pt;}
._3_c00147{width:5.065313pt;}
._2_c00147{width:6.133940pt;}
._5_c00147{width:7.627880pt;}
._6_c00147{width:8.967709pt;}
._8_c00147{width:10.735019pt;}
._7_c00147{width:11.751457pt;}
._b_c00147{width:12.870565pt;}
._4_c00147{width:14.667699pt;}
._e_c00147{width:18.301127pt;}
._d_c00147{width:19.315222pt;}
._9_c00147{width:21.119899pt;}
._a_c00147{width:22.227957pt;}
.fs4_c00147{font-size:34.559986pt;}
.fs5_c00147{font-size:37.119985pt;}
.fs3_c00147{font-size:42.879983pt;}
.fs0_c00147{font-size:53.119979pt;}
.fs1_c00147{font-size:58.879976pt;}
.fs2_c00147{font-size:63.999974pt;}
.y0_c00147{bottom:0.000000pt;}
.y4_c00147{bottom:67.466640pt;}
.y3_c00147{bottom:101.386626pt;}
.y29_c00147{bottom:135.306613pt;}
.y28_c00147{bottom:167.946599pt;}
.y27_c00147{bottom:185.546592pt;}
.y26_c00147{bottom:204.106585pt;}
.y25_c00147{bottom:210.826582pt;}
.y24_c00147{bottom:242.186570pt;}
.y23_c00147{bottom:260.586562pt;}
.y22_c00147{bottom:267.306560pt;}
.y21_c00147{bottom:296.746548pt;}
.y20_c00147{bottom:303.466545pt;}
.y1f_c00147{bottom:313.546541pt;}
.y1e_c00147{bottom:341.546530pt;}
.y1d_c00147{bottom:369.066519pt;}
.y1c_c00147{bottom:396.586508pt;}
.y1b_c00147{bottom:424.266497pt;}
.y1a_c00147{bottom:451.786486pt;}
.y19_c00147{bottom:479.466475pt;}
.y18_c00147{bottom:506.986464pt;}
.y17_c00147{bottom:534.666453pt;}
.y15_c00147{bottom:575.626436pt;}
.y16_c00147{bottom:582.986433pt;}
.y14_c00147{bottom:603.146425pt;}
.y13_c00147{bottom:630.826414pt;}
.y12_c00147{bottom:658.346403pt;}
.y11_c00147{bottom:686.026392pt;}
.y10_c00147{bottom:713.546381pt;}
.ye_c00147{bottom:754.506365pt;}
.yf_c00147{bottom:761.866362pt;}
.yd_c00147{bottom:782.026354pt;}
.yc_c00147{bottom:809.706343pt;}
.yb_c00147{bottom:837.226332pt;}
.ya_c00147{bottom:864.906321pt;}
.y8_c00147{bottom:911.146302pt;}
.y9_c00147{bottom:918.506299pt;}
.y7_c00147{bottom:938.826291pt;}
.y6_c00147{bottom:966.346280pt;}
.y5_c00147{bottom:994.026269pt;}
.y2_c00147{bottom:1028.586255pt;}
.y1_c00147{bottom:1063.146241pt;}
.h5_c00147{height:23.034366pt;}
.h7_c00147{height:24.740615pt;}
.h2_c00147{height:39.243734pt;}
.h4_c00147{height:42.084358pt;}
.h6_c00147{height:52.108417pt;}
.h1_c00147{height:52.134354pt;}
.h3_c00147{height:62.812475pt;}
.h0_c00147{height:1122.666667pt;}
.w0_c00147{width:793.333333pt;}
.x0_c00147{left:0.000000pt;}
.x1_c00147{left:113.439955pt;}
.xa_c00147{left:126.399949pt;}
.xb_c00147{left:127.359949pt;}
.xc_c00147{left:131.359947pt;}
.x5_c00147{left:160.640313pt;}
.x8_c00147{left:187.679925pt;}
.x9_c00147{left:203.999918pt;}
.x2_c00147{left:385.759568pt;}
.xe_c00147{left:432.319827pt;}
.x6_c00147{left:467.039813pt;}
.x7_c00147{left:483.359807pt;}
.xd_c00147{left:562.239775pt;}
.x3_c00147{left:612.479755pt;}
.x4_c00147{left:628.799748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_613448966848c26af38c5a09.woff2')format("woff");}.ff1_c00148{font-family:ff1_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;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_0a4305250467888908bd84b0.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:0.675781;font-style:normal;font-weight:normal;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_e13a1fccace2deda1b5c6e21.woff2')format("woff");}.ff3_c00148{font-family:ff3_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:ff4_c00148;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00148{font-family:ff4_c00148;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00148;src:url('chunks/assets/font_98ac17b9ab08078a61ab28de.woff2')format("woff");}.ff5_c00148{font-family:ff5_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00148{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls5_c00148{letter-spacing:0.000000px;}
.ls4_c00148{letter-spacing:0.011169px;}
.ls0_c00148{letter-spacing:0.374281px;}
.ls3_c00148{letter-spacing:1.451459px;}
.ls1_c00148{letter-spacing:8.241237px;}
.ls2_c00148{letter-spacing:13.698715px;}
.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;}
}
.ws1_c00148{word-spacing:-16.559993px;}
.ws0_c00148{word-spacing:-12.434276px;}
.ws2_c00148{word-spacing:-9.011165px;}
.ws3_c00148{word-spacing:0.000000px;}
._10_c00148{margin-left:-9.653164px;}
._1_c00148{margin-left:-1.105374px;}
._0_c00148{width:1.478351px;}
._4_c00148{width:2.607165px;}
._c_c00148{width:5.611035px;}
._d_c00148{width:6.704731px;}
._6_c00148{width:8.006509px;}
._5_c00148{width:9.311073px;}
._3_c00148{width:10.335962px;}
._2_c00148{width:11.511511px;}
._b_c00148{width:12.549812px;}
._9_c00148{width:13.899406px;}
._e_c00148{width:15.110162px;}
._f_c00148{width:16.263942px;}
._7_c00148{width:19.051142px;}
._a_c00148{width:20.700212px;}
._8_c00148{width:2068.367173px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs4_c00148{font-size:35.999986px;}
.fs3_c00148{font-size:48.239981px;}
.fs5_c00148{font-size:53.999978px;}
.fs0_c00148{font-size:59.759976px;}
.fs1_c00148{font-size:66.239974px;}
.fs2_c00148{font-size:71.999971px;}
.y0_c00148{bottom:0.000000px;}
.y4_c00148{bottom:75.900270px;}
.y3_c00148{bottom:114.060254px;}
.y28_c00148{bottom:136.559945px;}
.y27_c00148{bottom:157.619937px;}
.y26_c00148{bottom:177.419929px;}
.y25_c00148{bottom:195.239922px;}
.y24_c00148{bottom:201.179920px;}
.y23_c00148{bottom:212.159915px;}
.y22_c00148{bottom:238.979904px;}
.y21_c00148{bottom:270.119892px;}
.y20_c00148{bottom:301.079880px;}
.y1f_c00148{bottom:332.219867px;}
.y1e_c00148{bottom:363.359855px;}
.y1d_c00148{bottom:415.379834px;}
.y1c_c00148{bottom:446.339821px;}
.y1b_c00148{bottom:477.479809px;}
.y1a_c00148{bottom:508.439797px;}
.y19_c00148{bottom:539.579784px;}
.y18_c00148{bottom:570.539772px;}
.y17_c00148{bottom:601.499759px;}
.y16_c00148{bottom:632.639747px;}
.y15_c00148{bottom:663.599735px;}
.y14_c00148{bottom:694.739722px;}
.y13_c00148{bottom:724.259710px;}
.y12_c00148{bottom:752.699699px;}
.y11_c00148{bottom:781.139688px;}
.y10_c00148{bottom:809.579676px;}
.ye_c00148{bottom:839.639664px;}
.yf_c00148{bottom:847.919661px;}
.yd_c00148{bottom:870.599652px;}
.yc_c00148{bottom:901.739639px;}
.yb_c00148{bottom:932.699627px;}
.ya_c00148{bottom:963.839614px;}
.y9_c00148{bottom:994.799602px;}
.y8_c00148{bottom:1025.939590px;}
.y7_c00148{bottom:1056.899577px;}
.y6_c00148{bottom:1088.039565px;}
.y5_c00148{bottom:1118.999552px;}
.y2_c00148{bottom:1176.059530px;}
.y1_c00148{bottom:1196.219522px;}
.h8_c00148{height:35.332017px;}
.ha_c00148{height:39.830258px;}
.h2_c00148{height:44.149201px;}
.h4_c00148{height:47.344903px;}
.h9_c00148{height:52.998026px;}
.h1_c00148{height:58.651148px;}
.h5_c00148{height:66.757473px;}
.h6_c00148{height:69.086222px;}
.h3_c00148{height:70.664034px;}
.h7_c00148{height:72.562471px;}
.h0_c00148{height:1263.000000px;}
.w0_c00148{width:892.500000px;}
.x0_c00148{left:0.000000px;}
.x5_c00148{left:127.620262px;}
.x9_c00148{left:141.119944px;}
.x8_c00148{left:180.719928px;}
.x1_c00148{left:181.799927px;}
.x6_c00148{left:249.119900px;}
.x7_c00148{left:267.479893px;}
.x2_c00148{left:329.039408px;}
.x4_c00148{left:433.979826px;}
.x3_c00148{left:765.359694px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls5_c00148{letter-spacing:0.000000pt;}
.ls4_c00148{letter-spacing:0.009928pt;}
.ls0_c00148{letter-spacing:0.332694pt;}
.ls3_c00148{letter-spacing:1.290186pt;}
.ls1_c00148{letter-spacing:7.325544pt;}
.ls2_c00148{letter-spacing:12.176635pt;}
.ws1_c00148{word-spacing:-14.719994pt;}
.ws0_c00148{word-spacing:-11.052689pt;}
.ws2_c00148{word-spacing:-8.009925pt;}
.ws3_c00148{word-spacing:0.000000pt;}
._10_c00148{margin-left:-8.580590pt;}
._1_c00148{margin-left:-0.982555pt;}
._0_c00148{width:1.314090pt;}
._4_c00148{width:2.317480pt;}
._c_c00148{width:4.987587pt;}
._d_c00148{width:5.959761pt;}
._6_c00148{width:7.116897pt;}
._5_c00148{width:8.276509pt;}
._3_c00148{width:9.187522pt;}
._2_c00148{width:10.232455pt;}
._b_c00148{width:11.155388pt;}
._9_c00148{width:12.355027pt;}
._e_c00148{width:13.431255pt;}
._f_c00148{width:14.456837pt;}
._7_c00148{width:16.934348pt;}
._a_c00148{width:18.400188pt;}
._8_c00148{width:1838.548598pt;}
.fs4_c00148{font-size:31.999987pt;}
.fs3_c00148{font-size:42.879983pt;}
.fs5_c00148{font-size:47.999981pt;}
.fs0_c00148{font-size:53.119979pt;}
.fs1_c00148{font-size:58.879976pt;}
.fs2_c00148{font-size:63.999974pt;}
.y0_c00148{bottom:0.000000pt;}
.y4_c00148{bottom:67.466906pt;}
.y3_c00148{bottom:101.386893pt;}
.y28_c00148{bottom:121.386618pt;}
.y27_c00148{bottom:140.106611pt;}
.y26_c00148{bottom:157.706604pt;}
.y25_c00148{bottom:173.546597pt;}
.y24_c00148{bottom:178.826595pt;}
.y23_c00148{bottom:188.586591pt;}
.y22_c00148{bottom:212.426582pt;}
.y21_c00148{bottom:240.106571pt;}
.y20_c00148{bottom:267.626560pt;}
.y1f_c00148{bottom:295.306549pt;}
.y1e_c00148{bottom:322.986537pt;}
.y1d_c00148{bottom:369.226519pt;}
.y1c_c00148{bottom:396.746508pt;}
.y1b_c00148{bottom:424.426497pt;}
.y1a_c00148{bottom:451.946486pt;}
.y19_c00148{bottom:479.626475pt;}
.y18_c00148{bottom:507.146464pt;}
.y17_c00148{bottom:534.666453pt;}
.y16_c00148{bottom:562.346442pt;}
.y15_c00148{bottom:589.866431pt;}
.y14_c00148{bottom:617.546420pt;}
.y13_c00148{bottom:643.786409pt;}
.y12_c00148{bottom:669.066399pt;}
.y11_c00148{bottom:694.346389pt;}
.y10_c00148{bottom:719.626379pt;}
.ye_c00148{bottom:746.346368pt;}
.yf_c00148{bottom:753.706365pt;}
.yd_c00148{bottom:773.866357pt;}
.yc_c00148{bottom:801.546346pt;}
.yb_c00148{bottom:829.066335pt;}
.ya_c00148{bottom:856.746324pt;}
.y9_c00148{bottom:884.266313pt;}
.y8_c00148{bottom:911.946302pt;}
.y7_c00148{bottom:939.466291pt;}
.y6_c00148{bottom:967.146280pt;}
.y5_c00148{bottom:994.666269pt;}
.y2_c00148{bottom:1045.386249pt;}
.y1_c00148{bottom:1063.306241pt;}
.h8_c00148{height:31.406237pt;}
.ha_c00148{height:35.404673pt;}
.h2_c00148{height:39.243734pt;}
.h4_c00148{height:42.084358pt;}
.h9_c00148{height:47.109356pt;}
.h1_c00148{height:52.134354pt;}
.h5_c00148{height:59.339976pt;}
.h6_c00148{height:61.409975pt;}
.h3_c00148{height:62.812475pt;}
.h7_c00148{height:64.499974pt;}
.h0_c00148{height:1122.666667pt;}
.w0_c00148{width:793.333333pt;}
.x0_c00148{left:0.000000pt;}
.x5_c00148{left:113.440233pt;}
.x9_c00148{left:125.439950pt;}
.x8_c00148{left:160.639936pt;}
.x1_c00148{left:161.599935pt;}
.x6_c00148{left:221.439911pt;}
.x7_c00148{left:237.759905pt;}
.x2_c00148{left:292.479474pt;}
.x4_c00148{left:385.759846pt;}
.x3_c00148{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dfc90d60626dcfe895e5eb76.woff2')format("woff");}.ff1_c00149{font-family:ff1_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:ff2_c00149;src:url('chunks/assets/font_59c32c1aabe003b312051868.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:0.675781;font-style:normal;font-weight:normal;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_ac9441a66390e2f035fa32f7.woff2')format("woff");}.ff3_c00149{font-family:ff3_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;}
.m0_c00149{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls6_c00149{letter-spacing:0.000000px;}
.ls4_c00149{letter-spacing:0.011169px;}
.ls3_c00149{letter-spacing:0.182640px;}
.ls5_c00149{letter-spacing:0.189300px;}
.ls0_c00149{letter-spacing:0.374281px;}
.ls1_c00149{letter-spacing:3.071039px;}
.ls2_c00149{letter-spacing:16.039014px;}
.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:-17.999993px;}
.ws5_c00149{word-spacing:-14.939994px;}
.ws0_c00149{word-spacing:-12.434276px;}
.ws4_c00149{word-spacing:-9.731165px;}
.ws2_c00149{word-spacing:-9.437756px;}
.ws3_c00149{word-spacing:-8.786876px;}
.ws6_c00149{word-spacing:0.000000px;}
._11_c00149{margin-left:-10.470428px;}
._1_c00149{margin-left:-1.105374px;}
._0_c00149{width:1.195563px;}
._2_c00149{width:2.580539px;}
._8_c00149{width:3.776055px;}
._e_c00149{width:4.866621px;}
._f_c00149{width:6.428300px;}
._10_c00149{width:7.451879px;}
._4_c00149{width:9.401776px;}
._3_c00149{width:10.568946px;}
._5_c00149{width:11.591225px;}
._6_c00149{width:12.680685px;}
._7_c00149{width:14.267954px;}
._b_c00149{width:16.438739px;}
._9_c00149{width:19.277856px;}
._a_c00149{width:20.437658px;}
._c_c00149{width:26.120725px;}
._d_c00149{width:27.273409px;}
.fc1_c00149{color:rgb(0,0,238);}
.fc0_c00149{color:rgb(0,0,0);}
.fs5_c00149{font-size:38.879984px;}
.fs4_c00149{font-size:41.759983px;}
.fs3_c00149{font-size:48.239981px;}
.fs0_c00149{font-size:59.759976px;}
.fs1_c00149{font-size:66.239974px;}
.fs2_c00149{font-size:71.999971px;}
.y0_c00149{bottom:0.000000px;}
.y4_c00149{bottom:75.899970px;}
.y3_c00149{bottom:114.059954px;}
.y2a_c00149{bottom:133.320247px;}
.y29_c00149{bottom:140.160244px;}
.y28_c00149{bottom:150.959940px;}
.y27_c00149{bottom:169.319932px;}
.y26_c00149{bottom:176.879929px;}
.y25_c00149{bottom:204.599918px;}
.y24_c00149{bottom:224.579910px;}
.y23_c00149{bottom:245.279902px;}
.y22_c00149{bottom:252.839899px;}
.y21_c00149{bottom:265.619894px;}
.y20_c00149{bottom:289.019884px;}
.y1f_c00149{bottom:320.159872px;}
.y1d_c00149{bottom:372.179851px;}
.y1e_c00149{bottom:380.459848px;}
.y1c_c00149{bottom:403.139839px;}
.y1b_c00149{bottom:434.279826px;}
.y1a_c00149{bottom:465.239814px;}
.y19_c00149{bottom:496.379801px;}
.y18_c00149{bottom:527.339789px;}
.y17_c00149{bottom:558.479777px;}
.y16_c00149{bottom:589.439764px;}
.y15_c00149{bottom:620.579752px;}
.y13_c00149{bottom:672.599731px;}
.y14_c00149{bottom:680.879728px;}
.y12_c00149{bottom:703.559719px;}
.y11_c00149{bottom:734.699706px;}
.y10_c00149{bottom:765.659694px;}
.yf_c00149{bottom:796.799681px;}
.ye_c00149{bottom:827.759669px;}
.yd_c00149{bottom:879.779648px;}
.yc_c00149{bottom:910.919636px;}
.yb_c00149{bottom:941.879623px;}
.ya_c00149{bottom:973.019611px;}
.y9_c00149{bottom:1003.979598px;}
.y8_c00149{bottom:1035.119586px;}
.y6_c00149{bottom:1087.139565px;}
.y7_c00149{bottom:1095.419562px;}
.y5_c00149{bottom:1118.279553px;}
.y2_c00149{bottom:1157.159537px;}
.y1_c00149{bottom:1196.039522px;}
.h6_c00149{height:25.913662px;}
.h5_c00149{height:27.833192px;}
.h9_c00149{height:38.158578px;}
.h8_c00149{height:39.830258px;}
.h2_c00149{height:44.149201px;}
.h4_c00149{height:47.344903px;}
.h7_c00149{height:58.621969px;}
.h1_c00149{height:58.651148px;}
.h3_c00149{height:70.664034px;}
.h0_c00149{height:1263.000000px;}
.w0_c00149{width:892.500000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:127.619949px;}
.xd_c00149{left:142.199943px;}
.xa_c00149{left:143.279943px;}
.xb_c00149{left:147.779941px;}
.x5_c00149{left:180.719944px;}
.x6_c00149{left:217.079913px;}
.x7_c00149{left:235.439906px;}
.x2_c00149{left:433.979514px;}
.xc_c00149{left:486.359805px;}
.x3_c00149{left:487.619805px;}
.x4_c00149{left:505.979798px;}
.x8_c00149{left:510.479796px;}
.x9_c00149{left:528.839788px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls6_c00149{letter-spacing:0.000000pt;}
.ls4_c00149{letter-spacing:0.009928pt;}
.ls3_c00149{letter-spacing:0.162347pt;}
.ls5_c00149{letter-spacing:0.168267pt;}
.ls0_c00149{letter-spacing:0.332694pt;}
.ls1_c00149{letter-spacing:2.729812pt;}
.ls2_c00149{letter-spacing:14.256901pt;}
.ws1_c00149{word-spacing:-15.999994pt;}
.ws5_c00149{word-spacing:-13.279995pt;}
.ws0_c00149{word-spacing:-11.052689pt;}
.ws4_c00149{word-spacing:-8.649924pt;}
.ws2_c00149{word-spacing:-8.389117pt;}
.ws3_c00149{word-spacing:-7.810557pt;}
.ws6_c00149{word-spacing:0.000000pt;}
._11_c00149{margin-left:-9.307047pt;}
._1_c00149{margin-left:-0.982555pt;}
._0_c00149{width:1.062723pt;}
._2_c00149{width:2.293812pt;}
._8_c00149{width:3.356494pt;}
._e_c00149{width:4.325886pt;}
._f_c00149{width:5.714044pt;}
._10_c00149{width:6.623893pt;}
._4_c00149{width:8.357134pt;}
._3_c00149{width:9.394619pt;}
._5_c00149{width:10.303311pt;}
._6_c00149{width:11.271720pt;}
._7_c00149{width:12.682626pt;}
._b_c00149{width:14.612213pt;}
._9_c00149{width:17.135872pt;}
._a_c00149{width:18.166807pt;}
._c_c00149{width:23.218422pt;}
._d_c00149{width:24.243030pt;}
.fs5_c00149{font-size:34.559986pt;}
.fs4_c00149{font-size:37.119985pt;}
.fs3_c00149{font-size:42.879983pt;}
.fs0_c00149{font-size:53.119979pt;}
.fs1_c00149{font-size:58.879976pt;}
.fs2_c00149{font-size:63.999974pt;}
.y0_c00149{bottom:0.000000pt;}
.y4_c00149{bottom:67.466640pt;}
.y3_c00149{bottom:101.386626pt;}
.y2a_c00149{bottom:118.506886pt;}
.y29_c00149{bottom:124.586883pt;}
.y28_c00149{bottom:134.186613pt;}
.y27_c00149{bottom:150.506606pt;}
.y26_c00149{bottom:157.226604pt;}
.y25_c00149{bottom:181.866594pt;}
.y24_c00149{bottom:199.626587pt;}
.y23_c00149{bottom:218.026579pt;}
.y22_c00149{bottom:224.746577pt;}
.y21_c00149{bottom:236.106572pt;}
.y20_c00149{bottom:256.906564pt;}
.y1f_c00149{bottom:284.586553pt;}
.y1d_c00149{bottom:330.826534pt;}
.y1e_c00149{bottom:338.186531pt;}
.y1c_c00149{bottom:358.346523pt;}
.y1b_c00149{bottom:386.026512pt;}
.y1a_c00149{bottom:413.546501pt;}
.y19_c00149{bottom:441.226490pt;}
.y18_c00149{bottom:468.746479pt;}
.y17_c00149{bottom:496.426468pt;}
.y16_c00149{bottom:523.946457pt;}
.y15_c00149{bottom:551.626446pt;}
.y13_c00149{bottom:597.866428pt;}
.y14_c00149{bottom:605.226425pt;}
.y12_c00149{bottom:625.386417pt;}
.y11_c00149{bottom:653.066405pt;}
.y10_c00149{bottom:680.586394pt;}
.yf_c00149{bottom:708.266383pt;}
.ye_c00149{bottom:735.786372pt;}
.yd_c00149{bottom:782.026354pt;}
.yc_c00149{bottom:809.706343pt;}
.yb_c00149{bottom:837.226332pt;}
.ya_c00149{bottom:864.906321pt;}
.y9_c00149{bottom:892.426310pt;}
.y8_c00149{bottom:920.106299pt;}
.y6_c00149{bottom:966.346280pt;}
.y7_c00149{bottom:973.706277pt;}
.y5_c00149{bottom:994.026269pt;}
.y2_c00149{bottom:1028.586255pt;}
.y1_c00149{bottom:1063.146241pt;}
.h6_c00149{height:23.034366pt;}
.h5_c00149{height:24.740615pt;}
.h9_c00149{height:33.918736pt;}
.h8_c00149{height:35.404673pt;}
.h2_c00149{height:39.243734pt;}
.h4_c00149{height:42.084358pt;}
.h7_c00149{height:52.108417pt;}
.h1_c00149{height:52.134354pt;}
.h3_c00149{height:62.812475pt;}
.h0_c00149{height:1122.666667pt;}
.w0_c00149{width:793.333333pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:113.439955pt;}
.xd_c00149{left:126.399949pt;}
.xa_c00149{left:127.359949pt;}
.xb_c00149{left:131.359947pt;}
.x5_c00149{left:160.639951pt;}
.x6_c00149{left:192.959923pt;}
.x7_c00149{left:209.279916pt;}
.x2_c00149{left:385.759568pt;}
.xc_c00149{left:432.319827pt;}
.x3_c00149{left:433.439827pt;}
.x4_c00149{left:449.759820pt;}
.x8_c00149{left:453.759818pt;}
.x9_c00149{left:470.079812pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cbded4410a61f2b02210953.woff2')format("woff");}.ff1_c00150{font-family:ff1_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:ff2_c00150;src:url('chunks/assets/font_ef507863f0d52149c339f801.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:0.675781;font-style:normal;font-weight:normal;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_42943b323002a4206ce03aa8.woff2')format("woff");}.ff3_c00150{font-family:ff3_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;}
.m0_c00150{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls2_c00150{letter-spacing:0.000000px;}
.ls1_c00150{letter-spacing:0.182640px;}
.ls0_c00150{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00150{word-spacing:-12.434276px;}
.ws1_c00150{word-spacing:-8.786876px;}
.ws2_c00150{word-spacing:0.000000px;}
._16_c00150{margin-left:-9.358749px;}
._a_c00150{margin-left:-2.272679px;}
._1_c00150{margin-left:-1.105374px;}
._0_c00150{width:1.478351px;}
._e_c00150{width:2.766259px;}
._f_c00150{width:4.306974px;}
._14_c00150{width:5.316620px;}
._12_c00150{width:7.354036px;}
._5_c00150{width:8.422012px;}
._6_c00150{width:10.026686px;}
._13_c00150{width:11.338169px;}
._9_c00150{width:13.233447px;}
._b_c00150{width:14.276268px;}
._3_c00150{width:15.522370px;}
._2_c00150{width:16.530842px;}
._10_c00150{width:19.974595px;}
._4_c00150{width:21.274999px;}
._11_c00150{width:25.623468px;}
._7_c00150{width:27.731558px;}
._8_c00150{width:28.950886px;}
._15_c00150{width:32.089517px;}
._c_c00150{width:33.441823px;}
._d_c00150{width:34.714203px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs4_c00150{font-size:38.879984px;}
.fs3_c00150{font-size:48.239981px;}
.fs0_c00150{font-size:59.759976px;}
.fs1_c00150{font-size:66.239974px;}
.fs2_c00150{font-size:71.999971px;}
.y0_c00150{bottom:0.000000px;}
.y4_c00150{bottom:75.900270px;}
.y3_c00150{bottom:114.060254px;}
.y25_c00150{bottom:133.679947px;}
.y24_c00150{bottom:152.039939px;}
.y23_c00150{bottom:159.599936px;}
.y22_c00150{bottom:170.939932px;}
.y21_c00150{bottom:217.739913px;}
.y20_c00150{bottom:248.879900px;}
.y1f_c00150{bottom:279.839888px;}
.y1e_c00150{bottom:310.979876px;}
.y1d_c00150{bottom:341.939863px;}
.y1c_c00150{bottom:373.079851px;}
.y1b_c00150{bottom:425.099830px;}
.y1a_c00150{bottom:456.059818px;}
.y19_c00150{bottom:487.199805px;}
.y18_c00150{bottom:518.159793px;}
.y17_c00150{bottom:549.299780px;}
.y16_c00150{bottom:601.319759px;}
.y15_c00150{bottom:632.279747px;}
.y14_c00150{bottom:663.419735px;}
.y13_c00150{bottom:694.379722px;}
.y12_c00150{bottom:725.519710px;}
.y11_c00150{bottom:756.479697px;}
.y10_c00150{bottom:787.619685px;}
.ye_c00150{bottom:839.639664px;}
.yf_c00150{bottom:847.919661px;}
.yd_c00150{bottom:870.599652px;}
.yc_c00150{bottom:901.739639px;}
.yb_c00150{bottom:932.699627px;}
.ya_c00150{bottom:963.839614px;}
.y9_c00150{bottom:994.799602px;}
.y8_c00150{bottom:1025.939590px;}
.y7_c00150{bottom:1056.899577px;}
.y6_c00150{bottom:1088.039565px;}
.y5_c00150{bottom:1118.999552px;}
.y2_c00150{bottom:1176.059530px;}
.y1_c00150{bottom:1196.219522px;}
.h5_c00150{height:25.913662px;}
.h7_c00150{height:39.830258px;}
.h2_c00150{height:44.149201px;}
.h4_c00150{height:47.344903px;}
.h6_c00150{height:58.621969px;}
.h1_c00150{height:58.651148px;}
.h3_c00150{height:70.664034px;}
.h0_c00150{height:1263.000000px;}
.w0_c00150{width:892.500000px;}
.x0_c00150{left:0.000000px;}
.x5_c00150{left:127.620262px;}
.x9_c00150{left:142.199943px;}
.x8_c00150{left:180.719972px;}
.x1_c00150{left:181.799927px;}
.x2_c00150{left:329.039408px;}
.x4_c00150{left:433.979826px;}
.x6_c00150{left:525.779790px;}
.x7_c00150{left:544.139782px;}
.x3_c00150{left:765.359694px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls2_c00150{letter-spacing:0.000000pt;}
.ls1_c00150{letter-spacing:0.162347pt;}
.ls0_c00150{letter-spacing:0.332694pt;}
.ws0_c00150{word-spacing:-11.052689pt;}
.ws1_c00150{word-spacing:-7.810557pt;}
.ws2_c00150{word-spacing:0.000000pt;}
._16_c00150{margin-left:-8.318888pt;}
._a_c00150{margin-left:-2.020159pt;}
._1_c00150{margin-left:-0.982555pt;}
._0_c00150{width:1.314090pt;}
._e_c00150{width:2.458897pt;}
._f_c00150{width:3.828422pt;}
._14_c00150{width:4.725884pt;}
._12_c00150{width:6.536921pt;}
._5_c00150{width:7.486232pt;}
._6_c00150{width:8.912610pt;}
._13_c00150{width:10.078373pt;}
._9_c00150{width:11.763064pt;}
._b_c00150{width:12.690016pt;}
._3_c00150{width:13.797662pt;}
._2_c00150{width:14.694081pt;}
._10_c00150{width:17.755196pt;}
._4_c00150{width:18.911110pt;}
._11_c00150{width:22.776416pt;}
._7_c00150{width:24.650274pt;}
._8_c00150{width:25.734121pt;}
._15_c00150{width:28.524015pt;}
._c_c00150{width:29.726065pt;}
._d_c00150{width:30.857069pt;}
.fs4_c00150{font-size:34.559986pt;}
.fs3_c00150{font-size:42.879983pt;}
.fs0_c00150{font-size:53.119979pt;}
.fs1_c00150{font-size:58.879976pt;}
.fs2_c00150{font-size:63.999974pt;}
.y0_c00150{bottom:0.000000pt;}
.y4_c00150{bottom:67.466906pt;}
.y3_c00150{bottom:101.386893pt;}
.y25_c00150{bottom:118.826619pt;}
.y24_c00150{bottom:135.146613pt;}
.y23_c00150{bottom:141.866610pt;}
.y22_c00150{bottom:151.946606pt;}
.y21_c00150{bottom:193.546589pt;}
.y20_c00150{bottom:221.226578pt;}
.y1f_c00150{bottom:248.746567pt;}
.y1e_c00150{bottom:276.426556pt;}
.y1d_c00150{bottom:303.946545pt;}
.y1c_c00150{bottom:331.626534pt;}
.y1b_c00150{bottom:377.866516pt;}
.y1a_c00150{bottom:405.386505pt;}
.y19_c00150{bottom:433.066493pt;}
.y18_c00150{bottom:460.586482pt;}
.y17_c00150{bottom:488.266471pt;}
.y16_c00150{bottom:534.506453pt;}
.y15_c00150{bottom:562.026442pt;}
.y14_c00150{bottom:589.706431pt;}
.y13_c00150{bottom:617.226420pt;}
.y12_c00150{bottom:644.906409pt;}
.y11_c00150{bottom:672.426398pt;}
.y10_c00150{bottom:700.106387pt;}
.ye_c00150{bottom:746.346368pt;}
.yf_c00150{bottom:753.706365pt;}
.yd_c00150{bottom:773.866357pt;}
.yc_c00150{bottom:801.546346pt;}
.yb_c00150{bottom:829.066335pt;}
.ya_c00150{bottom:856.746324pt;}
.y9_c00150{bottom:884.266313pt;}
.y8_c00150{bottom:911.946302pt;}
.y7_c00150{bottom:939.466291pt;}
.y6_c00150{bottom:967.146280pt;}
.y5_c00150{bottom:994.666269pt;}
.y2_c00150{bottom:1045.386249pt;}
.y1_c00150{bottom:1063.306241pt;}
.h5_c00150{height:23.034366pt;}
.h7_c00150{height:35.404673pt;}
.h2_c00150{height:39.243734pt;}
.h4_c00150{height:42.084358pt;}
.h6_c00150{height:52.108417pt;}
.h1_c00150{height:52.134354pt;}
.h3_c00150{height:62.812475pt;}
.h0_c00150{height:1122.666667pt;}
.w0_c00150{width:793.333333pt;}
.x0_c00150{left:0.000000pt;}
.x5_c00150{left:113.440233pt;}
.x9_c00150{left:126.399949pt;}
.x8_c00150{left:160.639975pt;}
.x1_c00150{left:161.599935pt;}
.x2_c00150{left:292.479474pt;}
.x4_c00150{left:385.759846pt;}
.x6_c00150{left:467.359813pt;}
.x7_c00150{left:483.679807pt;}
.x3_c00150{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9b25fd00360d9e4a703fd4d.woff2')format("woff");}.ff1_c00151{font-family:ff1_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:ff2_c00151;src:url('chunks/assets/font_59d9bdb9ba38d9686046bf3d.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:0.675781;font-style:normal;font-weight:normal;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_f4d550d35ca94dde3cf8c895.woff2')format("woff");}.ff3_c00151{font-family:ff3_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;}
.m0_c00151{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls6_c00151{letter-spacing:0.000000px;}
.ls1_c00151{letter-spacing:0.011169px;}
.ls2_c00151{letter-spacing:0.189300px;}
.ls0_c00151{letter-spacing:0.374281px;}
.ls3_c00151{letter-spacing:0.378602px;}
.ls4_c00151{letter-spacing:3.071039px;}
.ls5_c00151{letter-spacing:16.039014px;}
.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;}
}
.ws1_c00151{word-spacing:-17.999993px;}
.ws4_c00151{word-spacing:-15.318596px;}
.ws0_c00151{word-spacing:-12.434276px;}
.ws2_c00151{word-spacing:-9.731165px;}
.ws3_c00151{word-spacing:-9.437756px;}
.ws5_c00151{word-spacing:0.000000px;}
._10_c00151{margin-left:-9.736835px;}
._4_c00151{margin-left:-2.191457px;}
._1_c00151{margin-left:-1.105374px;}
._0_c00151{width:1.195563px;}
._c_c00151{width:2.712424px;}
._f_c00151{width:4.148142px;}
._9_c00151{width:5.694706px;}
._2_c00151{width:6.889689px;}
._3_c00151{width:8.040034px;}
._6_c00151{width:9.861596px;}
._7_c00151{width:10.909159px;}
._e_c00151{width:12.311173px;}
._a_c00151{width:13.359741px;}
._b_c00151{width:14.572689px;}
._8_c00151{width:15.767846px;}
._d_c00151{width:16.838890px;}
._5_c00151{width:19.118374px;}
.fc1_c00151{color:rgb(0,0,238);}
.fc0_c00151{color:rgb(0,0,0);}
.fs4_c00151{font-size:38.879984px;}
.fs5_c00151{font-size:41.759983px;}
.fs3_c00151{font-size:48.239981px;}
.fs0_c00151{font-size:59.759976px;}
.fs1_c00151{font-size:66.239974px;}
.fs2_c00151{font-size:71.999971px;}
.y0_c00151{bottom:0.000000px;}
.y4_c00151{bottom:75.899970px;}
.y3_c00151{bottom:114.059954px;}
.y29_c00151{bottom:152.219939px;}
.y28_c00151{bottom:188.939924px;}
.y27_c00151{bottom:208.739917px;}
.y26_c00151{bottom:229.619908px;}
.y25_c00151{bottom:237.179905px;}
.y24_c00151{bottom:266.339893px;}
.y23_c00151{bottom:286.139886px;}
.y22_c00151{bottom:307.019877px;}
.y21_c00151{bottom:314.579874px;}
.y20_c00151{bottom:326.279869px;}
.y1f_c00151{bottom:343.559863px;}
.y1e_c00151{bottom:350.399860px;}
.y1d_c00151{bottom:361.739855px;}
.y1b_c00151{bottom:455.159818px;}
.y1c_c00151{bottom:463.439815px;}
.y1a_c00151{bottom:486.299805px;}
.y19_c00151{bottom:517.259793px;}
.y18_c00151{bottom:548.399781px;}
.y17_c00151{bottom:579.359768px;}
.y16_c00151{bottom:610.499756px;}
.y15_c00151{bottom:641.459743px;}
.y14_c00151{bottom:672.599731px;}
.y13_c00151{bottom:703.559719px;}
.y12_c00151{bottom:734.699706px;}
.y11_c00151{bottom:765.659694px;}
.y10_c00151{bottom:796.799681px;}
.yf_c00151{bottom:827.759669px;}
.ye_c00151{bottom:858.899656px;}
.yc_c00151{bottom:910.919636px;}
.yd_c00151{bottom:919.199632px;}
.yb_c00151{bottom:941.879623px;}
.ya_c00151{bottom:973.019611px;}
.y9_c00151{bottom:1003.979598px;}
.y8_c00151{bottom:1035.119586px;}
.y6_c00151{bottom:1087.139565px;}
.y7_c00151{bottom:1095.419562px;}
.y5_c00151{bottom:1118.279553px;}
.y2_c00151{bottom:1157.159537px;}
.y1_c00151{bottom:1196.039522px;}
.h7_c00151{height:27.833192px;}
.h5_c00151{height:38.158578px;}
.h2_c00151{height:44.149201px;}
.h4_c00151{height:47.344903px;}
.h6_c00151{height:58.621969px;}
.h1_c00151{height:58.651148px;}
.h3_c00151{height:70.664034px;}
.h0_c00151{height:1263.000000px;}
.w0_c00151{width:892.500000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:127.619949px;}
.xa_c00151{left:142.199943px;}
.xb_c00151{left:143.279943px;}
.xc_c00151{left:148.679941px;}
.xd_c00151{left:153.899938px;}
.x5_c00151{left:180.719609px;}
.x2_c00151{left:433.979514px;}
.xe_c00151{left:486.359805px;}
.x8_c00151{left:682.379727px;}
.x3_c00151{left:687.779725px;}
.x9_c00151{left:700.739720px;}
.x4_c00151{left:706.139718px;}
.x6_c00151{left:733.499707px;}
.x7_c00151{left:751.859699px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls6_c00151{letter-spacing:0.000000pt;}
.ls1_c00151{letter-spacing:0.009928pt;}
.ls2_c00151{letter-spacing:0.168267pt;}
.ls0_c00151{letter-spacing:0.332694pt;}
.ls3_c00151{letter-spacing:0.336535pt;}
.ls4_c00151{letter-spacing:2.729812pt;}
.ls5_c00151{letter-spacing:14.256901pt;}
.ws1_c00151{word-spacing:-15.999994pt;}
.ws4_c00151{word-spacing:-13.616529pt;}
.ws0_c00151{word-spacing:-11.052689pt;}
.ws2_c00151{word-spacing:-8.649924pt;}
.ws3_c00151{word-spacing:-8.389117pt;}
.ws5_c00151{word-spacing:0.000000pt;}
._10_c00151{margin-left:-8.654964pt;}
._4_c00151{margin-left:-1.947962pt;}
._1_c00151{margin-left:-0.982555pt;}
._0_c00151{width:1.062723pt;}
._c_c00151{width:2.411044pt;}
._f_c00151{width:3.687237pt;}
._9_c00151{width:5.061961pt;}
._2_c00151{width:6.124168pt;}
._3_c00151{width:7.146697pt;}
._6_c00151{width:8.765863pt;}
._7_c00151{width:9.697030pt;}
._e_c00151{width:10.943265pt;}
._a_c00151{width:11.875325pt;}
._b_c00151{width:12.953501pt;}
._8_c00151{width:14.015863pt;}
._d_c00151{width:14.967902pt;}
._5_c00151{width:16.994110pt;}
.fs4_c00151{font-size:34.559986pt;}
.fs5_c00151{font-size:37.119985pt;}
.fs3_c00151{font-size:42.879983pt;}
.fs0_c00151{font-size:53.119979pt;}
.fs1_c00151{font-size:58.879976pt;}
.fs2_c00151{font-size:63.999974pt;}
.y0_c00151{bottom:0.000000pt;}
.y4_c00151{bottom:67.466640pt;}
.y3_c00151{bottom:101.386626pt;}
.y29_c00151{bottom:135.306613pt;}
.y28_c00151{bottom:167.946599pt;}
.y27_c00151{bottom:185.546592pt;}
.y26_c00151{bottom:204.106585pt;}
.y25_c00151{bottom:210.826582pt;}
.y24_c00151{bottom:236.746572pt;}
.y23_c00151{bottom:254.346565pt;}
.y22_c00151{bottom:272.906558pt;}
.y21_c00151{bottom:279.626555pt;}
.y20_c00151{bottom:290.026551pt;}
.y1f_c00151{bottom:305.386545pt;}
.y1e_c00151{bottom:311.466542pt;}
.y1d_c00151{bottom:321.546538pt;}
.y1b_c00151{bottom:404.586505pt;}
.y1c_c00151{bottom:411.946502pt;}
.y1a_c00151{bottom:432.266494pt;}
.y19_c00151{bottom:459.786483pt;}
.y18_c00151{bottom:487.466472pt;}
.y17_c00151{bottom:514.986461pt;}
.y16_c00151{bottom:542.666450pt;}
.y15_c00151{bottom:570.186439pt;}
.y14_c00151{bottom:597.866428pt;}
.y13_c00151{bottom:625.386417pt;}
.y12_c00151{bottom:653.066405pt;}
.y11_c00151{bottom:680.586394pt;}
.y10_c00151{bottom:708.266383pt;}
.yf_c00151{bottom:735.786372pt;}
.ye_c00151{bottom:763.466361pt;}
.yc_c00151{bottom:809.706343pt;}
.yd_c00151{bottom:817.066340pt;}
.yb_c00151{bottom:837.226332pt;}
.ya_c00151{bottom:864.906321pt;}
.y9_c00151{bottom:892.426310pt;}
.y8_c00151{bottom:920.106299pt;}
.y6_c00151{bottom:966.346280pt;}
.y7_c00151{bottom:973.706277pt;}
.y5_c00151{bottom:994.026269pt;}
.y2_c00151{bottom:1028.586255pt;}
.y1_c00151{bottom:1063.146241pt;}
.h7_c00151{height:24.740615pt;}
.h5_c00151{height:33.918736pt;}
.h2_c00151{height:39.243734pt;}
.h4_c00151{height:42.084358pt;}
.h6_c00151{height:52.108417pt;}
.h1_c00151{height:52.134354pt;}
.h3_c00151{height:62.812475pt;}
.h0_c00151{height:1122.666667pt;}
.w0_c00151{width:793.333333pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:113.439955pt;}
.xa_c00151{left:126.399949pt;}
.xb_c00151{left:127.359949pt;}
.xc_c00151{left:132.159947pt;}
.xd_c00151{left:136.799945pt;}
.x5_c00151{left:160.639652pt;}
.x2_c00151{left:385.759568pt;}
.xe_c00151{left:432.319827pt;}
.x8_c00151{left:606.559757pt;}
.x3_c00151{left:611.359755pt;}
.x9_c00151{left:622.879751pt;}
.x4_c00151{left:627.679749pt;}
.x6_c00151{left:651.999739pt;}
.x7_c00151{left:668.319733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e61894bb9f9cf2ce7258449f.woff2')format("woff");}.ff1_c00152{font-family:ff1_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:ff2_c00152;src:url('chunks/assets/font_7d0916c38b4905c06fde471e.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:0.675781;font-style:normal;font-weight:normal;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_13ba25df88ce274ea8e055be.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_6f3cbf74551e5efe4fe61ab6.woff2')format("woff");}.ff4_c00152{font-family:ff4_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;}
.m0_c00152{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls5_c00152{letter-spacing:0.000000px;}
.ls3_c00152{letter-spacing:0.153901px;}
.ls4_c00152{letter-spacing:0.182640px;}
.ls2_c00152{letter-spacing:0.374281px;}
.ls1_c00152{letter-spacing:0.731040px;}
.ls0_c00152{letter-spacing:5.053618px;}
.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;}
}
.ws1_c00152{word-spacing:-17.999993px;}
.ws0_c00152{word-spacing:-16.559993px;}
.ws4_c00152{word-spacing:-14.939994px;}
.ws2_c00152{word-spacing:-12.434276px;}
.ws3_c00152{word-spacing:-8.786876px;}
.ws5_c00152{word-spacing:0.000000px;}
._f_c00152{margin-left:-12.716934px;}
._1_c00152{margin-left:-1.105374px;}
._0_c00152{width:1.478351px;}
._e_c00152{width:2.602004px;}
._7_c00152{width:3.623405px;}
._c_c00152{width:4.731413px;}
._a_c00152{width:6.622022px;}
._b_c00152{width:7.690546px;}
._5_c00152{width:8.922676px;}
._6_c00152{width:10.070852px;}
._4_c00152{width:11.481971px;}
._d_c00152{width:12.949538px;}
._8_c00152{width:14.958856px;}
._9_c00152{width:16.056033px;}
._2_c00152{width:37.877817px;}
._3_c00152{width:39.099250px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs4_c00152{font-size:38.879984px;}
.fs3_c00152{font-size:48.239981px;}
.fs0_c00152{font-size:59.759976px;}
.fs1_c00152{font-size:66.239974px;}
.fs2_c00152{font-size:71.999971px;}
.y0_c00152{bottom:0.000000px;}
.y4_c00152{bottom:75.720270px;}
.y3_c00152{bottom:113.880254px;}
.y19_c00152{bottom:133.500247px;}
.y18_c00152{bottom:141.060244px;}
.y17_c00152{bottom:152.399939px;}
.y16_c00152{bottom:198.479921px;}
.y15_c00152{bottom:238.619905px;}
.y13_c00152{bottom:663.239735px;}
.y14_c00152{bottom:671.519731px;}
.y12_c00152{bottom:694.199722px;}
.y11_c00152{bottom:725.339710px;}
.y10_c00152{bottom:756.299697px;}
.yf_c00152{bottom:787.439685px;}
.ye_c00152{bottom:818.399673px;}
.yd_c00152{bottom:849.539660px;}
.yc_c00152{bottom:880.499648px;}
.yb_c00152{bottom:932.519627px;}
.ya_c00152{bottom:963.659615px;}
.y9_c00152{bottom:994.619602px;}
.y8_c00152{bottom:1025.759590px;}
.y7_c00152{bottom:1056.719577px;}
.y6_c00152{bottom:1087.859565px;}
.y5_c00152{bottom:1118.819552px;}
.y2_c00152{bottom:1175.879530px;}
.y1_c00152{bottom:1196.039522px;}
.h7_c00152{height:25.913662px;}
.h2_c00152{height:44.149201px;}
.h6_c00152{height:47.344903px;}
.h8_c00152{height:58.621969px;}
.h1_c00152{height:58.651148px;}
.h4_c00152{height:65.010911px;}
.h3_c00152{height:70.664034px;}
.h5_c00152{height:72.562471px;}
.h0_c00152{height:1263.000000px;}
.w0_c00152{width:892.500000px;}
.x0_c00152{left:0.000000px;}
.x5_c00152{left:127.800262px;}
.x13_c00152{left:142.379943px;}
.x8_c00152{left:165.599934px;}
.x6_c00152{left:180.899928px;}
.x1_c00152{left:181.979927px;}
.xf_c00152{left:241.739903px;}
.x12_c00152{left:244.439902px;}
.x10_c00152{left:260.099896px;}
.xb_c00152{left:307.439877px;}
.x2_c00152{left:329.219408px;}
.xc_c00152{left:423.359831px;}
.x4_c00152{left:434.159826px;}
.x9_c00152{left:538.199785px;}
.x11_c00152{left:599.580348px;}
.x7_c00152{left:663.659735px;}
.xa_c00152{left:678.959728px;}
.xd_c00152{left:702.539719px;}
.xe_c00152{left:711.899715px;}
.x3_c00152{left:765.539694px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls5_c00152{letter-spacing:0.000000pt;}
.ls3_c00152{letter-spacing:0.136801pt;}
.ls4_c00152{letter-spacing:0.162347pt;}
.ls2_c00152{letter-spacing:0.332694pt;}
.ls1_c00152{letter-spacing:0.649813pt;}
.ls0_c00152{letter-spacing:4.492105pt;}
.ws1_c00152{word-spacing:-15.999994pt;}
.ws0_c00152{word-spacing:-14.719994pt;}
.ws4_c00152{word-spacing:-13.279995pt;}
.ws2_c00152{word-spacing:-11.052689pt;}
.ws3_c00152{word-spacing:-7.810557pt;}
.ws5_c00152{word-spacing:0.000000pt;}
._f_c00152{margin-left:-11.303941pt;}
._1_c00152{margin-left:-0.982555pt;}
._0_c00152{width:1.314090pt;}
._e_c00152{width:2.312892pt;}
._7_c00152{width:3.220805pt;}
._c_c00152{width:4.205700pt;}
._a_c00152{width:5.886241pt;}
._b_c00152{width:6.836041pt;}
._5_c00152{width:7.931268pt;}
._6_c00152{width:8.951869pt;}
._4_c00152{width:10.206196pt;}
._d_c00152{width:11.510701pt;}
._8_c00152{width:13.296761pt;}
._9_c00152{width:14.272029pt;}
._2_c00152{width:33.669171pt;}
._3_c00152{width:34.754889pt;}
.fs4_c00152{font-size:34.559986pt;}
.fs3_c00152{font-size:42.879983pt;}
.fs0_c00152{font-size:53.119979pt;}
.fs1_c00152{font-size:58.879976pt;}
.fs2_c00152{font-size:63.999974pt;}
.y0_c00152{bottom:0.000000pt;}
.y4_c00152{bottom:67.306906pt;}
.y3_c00152{bottom:101.226893pt;}
.y19_c00152{bottom:118.666886pt;}
.y18_c00152{bottom:125.386883pt;}
.y17_c00152{bottom:135.466612pt;}
.y16_c00152{bottom:176.426596pt;}
.y15_c00152{bottom:212.106582pt;}
.y13_c00152{bottom:589.546431pt;}
.y14_c00152{bottom:596.906428pt;}
.y12_c00152{bottom:617.066420pt;}
.y11_c00152{bottom:644.746409pt;}
.y10_c00152{bottom:672.266398pt;}
.yf_c00152{bottom:699.946387pt;}
.ye_c00152{bottom:727.466376pt;}
.yd_c00152{bottom:755.146365pt;}
.yc_c00152{bottom:782.666354pt;}
.yb_c00152{bottom:828.906335pt;}
.ya_c00152{bottom:856.586324pt;}
.y9_c00152{bottom:884.106313pt;}
.y8_c00152{bottom:911.786302pt;}
.y7_c00152{bottom:939.306291pt;}
.y6_c00152{bottom:966.986280pt;}
.y5_c00152{bottom:994.506269pt;}
.y2_c00152{bottom:1045.226249pt;}
.y1_c00152{bottom:1063.146241pt;}
.h7_c00152{height:23.034366pt;}
.h2_c00152{height:39.243734pt;}
.h6_c00152{height:42.084358pt;}
.h8_c00152{height:52.108417pt;}
.h1_c00152{height:52.134354pt;}
.h4_c00152{height:57.787477pt;}
.h3_c00152{height:62.812475pt;}
.h5_c00152{height:64.499974pt;}
.h0_c00152{height:1122.666667pt;}
.w0_c00152{width:793.333333pt;}
.x0_c00152{left:0.000000pt;}
.x5_c00152{left:113.600233pt;}
.x13_c00152{left:126.559949pt;}
.x8_c00152{left:147.199941pt;}
.x6_c00152{left:160.799936pt;}
.x1_c00152{left:161.759935pt;}
.xf_c00152{left:214.879914pt;}
.x12_c00152{left:217.279913pt;}
.x10_c00152{left:231.199908pt;}
.xb_c00152{left:273.279891pt;}
.x2_c00152{left:292.639474pt;}
.xc_c00152{left:376.319849pt;}
.x4_c00152{left:385.919846pt;}
.x9_c00152{left:478.399809pt;}
.x11_c00152{left:532.960310pt;}
.x7_c00152{left:589.919764pt;}
.xa_c00152{left:603.519759pt;}
.xd_c00152{left:624.479750pt;}
.xe_c00152{left:632.799747pt;}
.x3_c00152{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4caa6ec01cf6006d02c2bfb0.woff2')format("woff");}.ff1_c00153{font-family:ff1_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:ff2_c00153;src:url('chunks/assets/font_cd6ebd847b01c31c618c794b.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00153{font-family:ff3_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;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_3f9275623cea749eb2aa70f9.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;}
.m0_c00153{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls2_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:0.374281px;}
.ls0_c00153{letter-spacing:15.139554px;}
.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;}
}
.ws0_c00153{word-spacing:-12.434276px;}
.ws1_c00153{word-spacing:-9.437756px;}
.ws2_c00153{word-spacing:0.000000px;}
._15_c00153{margin-left:-10.629634px;}
._8_c00153{margin-left:-2.139990px;}
._1_c00153{margin-left:-1.105374px;}
._0_c00153{width:1.195563px;}
._4_c00153{width:3.155726px;}
._5_c00153{width:4.979301px;}
._6_c00153{width:6.587505px;}
._d_c00153{width:7.680973px;}
._2_c00153{width:8.719617px;}
._3_c00153{width:9.869840px;}
._9_c00153{width:10.926828px;}
._e_c00153{width:12.571995px;}
._a_c00153{width:14.441534px;}
._b_c00153{width:15.674752px;}
._c_c00153{width:16.927919px;}
._7_c00153{width:19.596581px;}
._f_c00153{width:26.088838px;}
._10_c00153{width:27.287553px;}
._14_c00153{width:34.747709px;}
._13_c00153{width:35.829915px;}
._11_c00153{width:39.655206px;}
._12_c00153{width:40.803493px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs4_c00153{font-size:41.759983px;}
.fs3_c00153{font-size:48.239981px;}
.fs0_c00153{font-size:59.759976px;}
.fs1_c00153{font-size:66.239974px;}
.fs2_c00153{font-size:71.999971px;}
.y0_c00153{bottom:0.000000px;}
.y4_c00153{bottom:75.899970px;}
.y3_c00153{bottom:114.059954px;}
.y24_c00153{bottom:152.219939px;}
.y23_c00153{bottom:188.939924px;}
.y22_c00153{bottom:209.639916px;}
.y21_c00153{bottom:217.199913px;}
.y20_c00153{bottom:229.979908px;}
.y1e_c00153{bottom:296.939881px;}
.y1f_c00153{bottom:305.219878px;}
.y1d_c00153{bottom:328.079869px;}
.y1c_c00153{bottom:359.039856px;}
.y1b_c00153{bottom:390.179844px;}
.y1a_c00153{bottom:421.139832px;}
.y19_c00153{bottom:452.279819px;}
.y18_c00153{bottom:483.239807px;}
.y17_c00153{bottom:529.319788px;}
.y16_c00153{bottom:560.459776px;}
.y15_c00153{bottom:591.419763px;}
.y14_c00153{bottom:622.559751px;}
.y13_c00153{bottom:668.459733px;}
.y12_c00153{bottom:699.599720px;}
.y11_c00153{bottom:730.559708px;}
.y10_c00153{bottom:761.699695px;}
.yf_c00153{bottom:792.659683px;}
.ye_c00153{bottom:823.799670px;}
.yd_c00153{bottom:854.759658px;}
.yc_c00153{bottom:885.899646px;}
.yb_c00153{bottom:916.859633px;}
.ya_c00153{bottom:962.939615px;}
.y9_c00153{bottom:994.079602px;}
.y8_c00153{bottom:1025.039590px;}
.y7_c00153{bottom:1056.179578px;}
.y6_c00153{bottom:1087.139565px;}
.y5_c00153{bottom:1118.279553px;}
.y2_c00153{bottom:1157.159537px;}
.y1_c00153{bottom:1196.039522px;}
.h6_c00153{height:27.833192px;}
.h2_c00153{height:44.149201px;}
.h5_c00153{height:47.344903px;}
.h1_c00153{height:58.651148px;}
.h3_c00153{height:70.664034px;}
.h4_c00153{height:72.562471px;}
.h0_c00153{height:1263.000000px;}
.w0_c00153{width:892.500000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:127.619949px;}
.x6_c00153{left:143.279943px;}
.x7_c00153{left:148.679941px;}
.x3_c00153{left:180.719928px;}
.x2_c00153{left:433.979514px;}
.x4_c00153{left:487.979805px;}
.x5_c00153{left:506.339797px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls2_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:0.332694pt;}
.ls0_c00153{letter-spacing:13.457381pt;}
.ws0_c00153{word-spacing:-11.052689pt;}
.ws1_c00153{word-spacing:-8.389117pt;}
.ws2_c00153{word-spacing:0.000000pt;}
._15_c00153{margin-left:-9.448564pt;}
._8_c00153{margin-left:-1.902214pt;}
._1_c00153{margin-left:-0.982555pt;}
._0_c00153{width:1.062723pt;}
._4_c00153{width:2.805090pt;}
._5_c00153{width:4.426045pt;}
._6_c00153{width:5.855560pt;}
._d_c00153{width:6.827531pt;}
._2_c00153{width:7.750771pt;}
._3_c00153{width:8.773191pt;}
._9_c00153{width:9.712736pt;}
._e_c00153{width:11.175107pt;}
._a_c00153{width:12.836919pt;}
._b_c00153{width:13.933113pt;}
._c_c00153{width:15.047039pt;}
._7_c00153{width:17.419183pt;}
._f_c00153{width:23.190078pt;}
._10_c00153{width:24.255603pt;}
._14_c00153{width:30.886853pt;}
._13_c00153{width:31.848814pt;}
._11_c00153{width:35.249072pt;}
._12_c00153{width:36.269771pt;}
.fs4_c00153{font-size:37.119985pt;}
.fs3_c00153{font-size:42.879983pt;}
.fs0_c00153{font-size:53.119979pt;}
.fs1_c00153{font-size:58.879976pt;}
.fs2_c00153{font-size:63.999974pt;}
.y0_c00153{bottom:0.000000pt;}
.y4_c00153{bottom:67.466640pt;}
.y3_c00153{bottom:101.386626pt;}
.y24_c00153{bottom:135.306613pt;}
.y23_c00153{bottom:167.946599pt;}
.y22_c00153{bottom:186.346592pt;}
.y21_c00153{bottom:193.066589pt;}
.y20_c00153{bottom:204.426585pt;}
.y1e_c00153{bottom:263.946561pt;}
.y1f_c00153{bottom:271.306558pt;}
.y1d_c00153{bottom:291.626550pt;}
.y1c_c00153{bottom:319.146539pt;}
.y1b_c00153{bottom:346.826528pt;}
.y1a_c00153{bottom:374.346517pt;}
.y19_c00153{bottom:402.026506pt;}
.y18_c00153{bottom:429.546495pt;}
.y17_c00153{bottom:470.506478pt;}
.y16_c00153{bottom:498.186467pt;}
.y15_c00153{bottom:525.706456pt;}
.y14_c00153{bottom:553.386445pt;}
.y13_c00153{bottom:594.186429pt;}
.y12_c00153{bottom:621.866418pt;}
.y11_c00153{bottom:649.386407pt;}
.y10_c00153{bottom:677.066396pt;}
.yf_c00153{bottom:704.586385pt;}
.ye_c00153{bottom:732.266374pt;}
.yd_c00153{bottom:759.786363pt;}
.yc_c00153{bottom:787.466352pt;}
.yb_c00153{bottom:814.986341pt;}
.ya_c00153{bottom:855.946324pt;}
.y9_c00153{bottom:883.626313pt;}
.y8_c00153{bottom:911.146302pt;}
.y7_c00153{bottom:938.826291pt;}
.y6_c00153{bottom:966.346280pt;}
.y5_c00153{bottom:994.026269pt;}
.y2_c00153{bottom:1028.586255pt;}
.y1_c00153{bottom:1063.146241pt;}
.h6_c00153{height:24.740615pt;}
.h2_c00153{height:39.243734pt;}
.h5_c00153{height:42.084358pt;}
.h1_c00153{height:52.134354pt;}
.h3_c00153{height:62.812475pt;}
.h4_c00153{height:64.499974pt;}
.h0_c00153{height:1122.666667pt;}
.w0_c00153{width:793.333333pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:113.439955pt;}
.x6_c00153{left:127.359949pt;}
.x7_c00153{left:132.159947pt;}
.x3_c00153{left:160.639936pt;}
.x2_c00153{left:385.759568pt;}
.x4_c00153{left:433.759826pt;}
.x5_c00153{left:450.079820pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57c8b0d8c7b6b7c75c30fcdf.woff2')format("woff");}.ff1_c00154{font-family:ff1_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:ff2_c00154;src:url('chunks/assets/font_9e902349baad84b0b914539a.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:0.675781;font-style:normal;font-weight:normal;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_373cc783bb2a752679c5eebe.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;}
.m0_c00154{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.lsd_c00154{letter-spacing:0.000000px;}
.ls1_c00154{letter-spacing:0.010626px;}
.ls3_c00154{letter-spacing:0.021238px;}
.ls5_c00154{letter-spacing:0.021253px;}
.ls9_c00154{letter-spacing:0.021282px;}
.ls6_c00154{letter-spacing:0.088577px;}
.ls2_c00154{letter-spacing:0.155901px;}
.lsa_c00154{letter-spacing:0.177154px;}
.ls4_c00154{letter-spacing:0.451127px;}
.lsb_c00154{letter-spacing:0.518452px;}
.ls0_c00154{letter-spacing:0.731051px;}
.ls7_c00154{letter-spacing:0.741677px;}
.ls8_c00154{letter-spacing:3.612750px;}
.lsc_c00154{letter-spacing:18.021245px;}
.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;}
}
.ws0_c00154{word-spacing:-18.021231px;}
.ws1_c00154{word-spacing:-17.999993px;}
.ws2_c00154{word-spacing:0.000000px;}
._1_c00154{margin-left:-1.105374px;}
._0_c00154{width:1.478351px;}
._4_c00154{width:3.520283px;}
._6_c00154{width:5.300378px;}
._7_c00154{width:6.326009px;}
._3_c00154{width:8.003847px;}
._2_c00154{width:9.119925px;}
._a_c00154{width:10.561778px;}
._8_c00154{width:12.237763px;}
._9_c00154{width:13.737711px;}
._b_c00154{width:16.406799px;}
._5_c00154{width:19.219607px;}
._c_c00154{width:24.658556px;}
.fc7_c00154{color:rgb(54,54,53);}
.fc5_c00154{color:rgb(31,32,31);}
.fc3_c00154{color:rgb(41,42,40);}
.fc2_c00154{color:rgb(59,59,57);}
.fc6_c00154{color:rgb(73,73,73);}
.fc4_c00154{color:rgb(5,5,5);}
.fc1_c00154{color:rgb(15,15,15);}
.fc0_c00154{color:rgb(0,0,0);}
.fs0_c00154{font-size:59.759976px;}
.fs1_c00154{font-size:66.239974px;}
.fs2_c00154{font-size:71.999971px;}
.y0_c00154{bottom:0.000000px;}
.y4_c00154{bottom:75.900270px;}
.y3_c00154{bottom:114.060254px;}
.y22_c00154{bottom:203.699919px;}
.y21_c00154{bottom:234.659906px;}
.y20_c00154{bottom:265.799894px;}
.y1f_c00154{bottom:296.759881px;}
.y1e_c00154{bottom:327.899869px;}
.y1d_c00154{bottom:358.859856px;}
.y1c_c00154{bottom:389.999844px;}
.y1b_c00154{bottom:420.959832px;}
.y1a_c00154{bottom:452.099819px;}
.y19_c00154{bottom:483.059807px;}
.y18_c00154{bottom:514.199794px;}
.y17_c00154{bottom:545.159782px;}
.y16_c00154{bottom:576.299769px;}
.y15_c00154{bottom:607.259757px;}
.y14_c00154{bottom:638.399745px;}
.y13_c00154{bottom:669.359732px;}
.y12_c00154{bottom:715.439714px;}
.y11_c00154{bottom:746.399701px;}
.y10_c00154{bottom:777.539689px;}
.yf_c00154{bottom:808.499677px;}
.ye_c00154{bottom:839.639664px;}
.yd_c00154{bottom:870.599652px;}
.yc_c00154{bottom:901.739639px;}
.yb_c00154{bottom:932.699627px;}
.ya_c00154{bottom:963.839614px;}
.y9_c00154{bottom:994.799602px;}
.y8_c00154{bottom:1025.939590px;}
.y7_c00154{bottom:1056.899577px;}
.y6_c00154{bottom:1088.039565px;}
.y5_c00154{bottom:1118.999552px;}
.y2_c00154{bottom:1176.059530px;}
.y1_c00154{bottom:1196.219522px;}
.h2_c00154{height:44.149201px;}
.h1_c00154{height:58.651148px;}
.h4_c00154{height:70.628878px;}
.h3_c00154{height:70.664034px;}
.h0_c00154{height:1263.000000px;}
.w0_c00154{width:892.500000px;}
.x0_c00154{left:0.000000px;}
.x5_c00154{left:127.620262px;}
.x6_c00154{left:180.719928px;}
.x1_c00154{left:181.799927px;}
.x2_c00154{left:329.039408px;}
.x4_c00154{left:433.979826px;}
.x3_c00154{left:765.359694px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.lsd_c00154{letter-spacing:0.000000pt;}
.ls1_c00154{letter-spacing:0.009446pt;}
.ls3_c00154{letter-spacing:0.018878pt;}
.ls5_c00154{letter-spacing:0.018891pt;}
.ls9_c00154{letter-spacing:0.018917pt;}
.ls6_c00154{letter-spacing:0.078735pt;}
.ls2_c00154{letter-spacing:0.138579pt;}
.lsa_c00154{letter-spacing:0.157470pt;}
.ls4_c00154{letter-spacing:0.401002pt;}
.lsb_c00154{letter-spacing:0.460846pt;}
.ls0_c00154{letter-spacing:0.649823pt;}
.ls7_c00154{letter-spacing:0.659269pt;}
.ls8_c00154{letter-spacing:3.211333pt;}
.lsc_c00154{letter-spacing:16.018885pt;}
.ws0_c00154{word-spacing:-16.018872pt;}
.ws1_c00154{word-spacing:-15.999994pt;}
.ws2_c00154{word-spacing:0.000000pt;}
._1_c00154{margin-left:-0.982555pt;}
._0_c00154{width:1.314090pt;}
._4_c00154{width:3.129141pt;}
._6_c00154{width:4.711447pt;}
._7_c00154{width:5.623119pt;}
._3_c00154{width:7.114530pt;}
._2_c00154{width:8.106600pt;}
._a_c00154{width:9.388247pt;}
._8_c00154{width:10.878012pt;}
._9_c00154{width:12.211299pt;}
._b_c00154{width:14.583821pt;}
._5_c00154{width:17.084095pt;}
._c_c00154{width:21.918716pt;}
.fs0_c00154{font-size:53.119979pt;}
.fs1_c00154{font-size:58.879976pt;}
.fs2_c00154{font-size:63.999974pt;}
.y0_c00154{bottom:0.000000pt;}
.y4_c00154{bottom:67.466906pt;}
.y3_c00154{bottom:101.386893pt;}
.y22_c00154{bottom:181.066594pt;}
.y21_c00154{bottom:208.586583pt;}
.y20_c00154{bottom:236.266572pt;}
.y1f_c00154{bottom:263.786561pt;}
.y1e_c00154{bottom:291.466550pt;}
.y1d_c00154{bottom:318.986539pt;}
.y1c_c00154{bottom:346.666528pt;}
.y1b_c00154{bottom:374.186517pt;}
.y1a_c00154{bottom:401.866506pt;}
.y19_c00154{bottom:429.386495pt;}
.y18_c00154{bottom:457.066484pt;}
.y17_c00154{bottom:484.586473pt;}
.y16_c00154{bottom:512.266462pt;}
.y15_c00154{bottom:539.786451pt;}
.y14_c00154{bottom:567.466440pt;}
.y13_c00154{bottom:594.986429pt;}
.y12_c00154{bottom:635.946412pt;}
.y11_c00154{bottom:663.466401pt;}
.y10_c00154{bottom:691.146390pt;}
.yf_c00154{bottom:718.666379pt;}
.ye_c00154{bottom:746.346368pt;}
.yd_c00154{bottom:773.866357pt;}
.yc_c00154{bottom:801.546346pt;}
.yb_c00154{bottom:829.066335pt;}
.ya_c00154{bottom:856.746324pt;}
.y9_c00154{bottom:884.266313pt;}
.y8_c00154{bottom:911.946302pt;}
.y7_c00154{bottom:939.466291pt;}
.y6_c00154{bottom:967.146280pt;}
.y5_c00154{bottom:994.666269pt;}
.y2_c00154{bottom:1045.386249pt;}
.y1_c00154{bottom:1063.306241pt;}
.h2_c00154{height:39.243734pt;}
.h1_c00154{height:52.134354pt;}
.h4_c00154{height:62.781225pt;}
.h3_c00154{height:62.812475pt;}
.h0_c00154{height:1122.666667pt;}
.w0_c00154{width:793.333333pt;}
.x0_c00154{left:0.000000pt;}
.x5_c00154{left:113.440233pt;}
.x6_c00154{left:160.639936pt;}
.x1_c00154{left:161.599935pt;}
.x2_c00154{left:292.479474pt;}
.x4_c00154{left:385.759846pt;}
.x3_c00154{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_797306932a437dd38919689b.woff2')format("woff");}.ff1_c00155{font-family:ff1_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:ff2_c00155;src:url('chunks/assets/font_f52b3b88dc80c9676986bf22.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:0.675781;font-style:normal;font-weight:normal;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_aafa4cded612e15d5d0324ed.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.311035;font-style:normal;font-weight:normal;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_4c80d553083d5b95699fe234.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;}
.m0_c00155{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls1_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00155{word-spacing:-12.434276px;}
.ws1_c00155{word-spacing:-9.437756px;}
.ws2_c00155{word-spacing:0.000000px;}
._13_c00155{margin-left:-10.203464px;}
._1_c00155{margin-left:-1.105374px;}
._0_c00155{width:1.195563px;}
._5_c00155{width:2.417337px;}
._f_c00155{width:3.453511px;}
._9_c00155{width:4.478469px;}
._d_c00155{width:6.161335px;}
._6_c00155{width:7.393211px;}
._7_c00155{width:8.584641px;}
._a_c00155{width:9.671803px;}
._2_c00155{width:10.886578px;}
._e_c00155{width:12.117495px;}
._b_c00155{width:13.249858px;}
._c_c00155{width:14.306746px;}
._4_c00155{width:20.482398px;}
._3_c00155{width:21.598592px;}
._8_c00155{width:22.614339px;}
._10_c00155{width:31.866319px;}
._12_c00155{width:33.200410px;}
._11_c00155{width:34.723277px;}
.fc1_c00155{color:rgb(31,32,31);}
.fc3_c00155{color:rgb(5,5,5);}
.fc2_c00155{color:rgb(73,73,73);}
.fc0_c00155{color:rgb(0,0,0);}
.fs4_c00155{font-size:41.759983px;}
.fs3_c00155{font-size:48.239981px;}
.fs0_c00155{font-size:59.759976px;}
.fs1_c00155{font-size:66.239974px;}
.fs2_c00155{font-size:71.999971px;}
.y0_c00155{bottom:0.000000px;}
.y4_c00155{bottom:75.899970px;}
.y3_c00155{bottom:114.059954px;}
.y26_c00155{bottom:134.400246px;}
.y25_c00155{bottom:153.479939px;}
.y24_c00155{bottom:171.659931px;}
.y23_c00155{bottom:179.219928px;}
.y22_c00155{bottom:191.819923px;}
.y21_c00155{bottom:245.279902px;}
.y20_c00155{bottom:276.239890px;}
.y1f_c00155{bottom:307.379877px;}
.y1e_c00155{bottom:338.339865px;}
.y1d_c00155{bottom:369.479852px;}
.y1c_c00155{bottom:400.439840px;}
.y1b_c00155{bottom:431.219828px;}
.y1a_c00155{bottom:452.099819px;}
.y19_c00155{bottom:498.359801px;}
.y18_c00155{bottom:544.259782px;}
.y17_c00155{bottom:575.399770px;}
.y16_c00155{bottom:606.359757px;}
.y15_c00155{bottom:637.499745px;}
.y14_c00155{bottom:668.459733px;}
.y13_c00155{bottom:699.599720px;}
.y12_c00155{bottom:730.559708px;}
.y11_c00155{bottom:776.639689px;}
.y10_c00155{bottom:807.779677px;}
.yf_c00155{bottom:838.739665px;}
.ye_c00155{bottom:869.879652px;}
.yd_c00155{bottom:900.839640px;}
.yc_c00155{bottom:931.979627px;}
.yb_c00155{bottom:962.939615px;}
.ya_c00155{bottom:994.079602px;}
.y9_c00155{bottom:1025.039590px;}
.y8_c00155{bottom:1056.179578px;}
.y6_c00155{bottom:1087.139565px;}
.y7_c00155{bottom:1095.419562px;}
.y5_c00155{bottom:1118.279553px;}
.y2_c00155{bottom:1157.159537px;}
.y1_c00155{bottom:1196.039522px;}
.h6_c00155{height:27.833192px;}
.h2_c00155{height:44.149201px;}
.h4_c00155{height:47.344903px;}
.h1_c00155{height:58.651148px;}
.h3_c00155{height:70.664034px;}
.h5_c00155{height:72.562471px;}
.h0_c00155{height:1263.000000px;}
.w0_c00155{width:892.500000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:127.619949px;}
.x6_c00155{left:143.279943px;}
.x7_c00155{left:148.139941px;}
.x5_c00155{left:180.719928px;}
.x3_c00155{left:272.519891px;}
.x4_c00155{left:290.879884px;}
.x2_c00155{left:433.979514px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls1_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.332694pt;}
.ws0_c00155{word-spacing:-11.052689pt;}
.ws1_c00155{word-spacing:-8.389117pt;}
.ws2_c00155{word-spacing:0.000000pt;}
._13_c00155{margin-left:-9.069746pt;}
._1_c00155{margin-left:-0.982555pt;}
._0_c00155{width:1.062723pt;}
._5_c00155{width:2.148744pt;}
._f_c00155{width:3.069787pt;}
._9_c00155{width:3.980861pt;}
._d_c00155{width:5.476743pt;}
._6_c00155{width:6.571743pt;}
._7_c00155{width:7.630792pt;}
._a_c00155{width:8.597159pt;}
._2_c00155{width:9.676958pt;}
._e_c00155{width:10.771106pt;}
._b_c00155{width:11.777651pt;}
._c_c00155{width:12.717108pt;}
._4_c00155{width:18.206576pt;}
._3_c00155{width:19.198748pt;}
._8_c00155{width:20.101635pt;}
._10_c00155{width:28.325617pt;}
._12_c00155{width:29.511476pt;}
._11_c00155{width:30.865135pt;}
.fs4_c00155{font-size:37.119985pt;}
.fs3_c00155{font-size:42.879983pt;}
.fs0_c00155{font-size:53.119979pt;}
.fs1_c00155{font-size:58.879976pt;}
.fs2_c00155{font-size:63.999974pt;}
.y0_c00155{bottom:0.000000pt;}
.y4_c00155{bottom:67.466640pt;}
.y3_c00155{bottom:101.386626pt;}
.y26_c00155{bottom:119.466886pt;}
.y25_c00155{bottom:136.426612pt;}
.y24_c00155{bottom:152.586606pt;}
.y23_c00155{bottom:159.306603pt;}
.y22_c00155{bottom:170.506598pt;}
.y21_c00155{bottom:218.026579pt;}
.y20_c00155{bottom:245.546568pt;}
.y1f_c00155{bottom:273.226557pt;}
.y1e_c00155{bottom:300.746546pt;}
.y1d_c00155{bottom:328.426535pt;}
.y1c_c00155{bottom:355.946524pt;}
.y1b_c00155{bottom:383.306513pt;}
.y1a_c00155{bottom:401.866506pt;}
.y19_c00155{bottom:442.986489pt;}
.y18_c00155{bottom:483.786473pt;}
.y17_c00155{bottom:511.466462pt;}
.y16_c00155{bottom:538.986451pt;}
.y15_c00155{bottom:566.666440pt;}
.y14_c00155{bottom:594.186429pt;}
.y13_c00155{bottom:621.866418pt;}
.y12_c00155{bottom:649.386407pt;}
.y11_c00155{bottom:690.346391pt;}
.y10_c00155{bottom:718.026379pt;}
.yf_c00155{bottom:745.546368pt;}
.ye_c00155{bottom:773.226357pt;}
.yd_c00155{bottom:800.746346pt;}
.yc_c00155{bottom:828.426335pt;}
.yb_c00155{bottom:855.946324pt;}
.ya_c00155{bottom:883.626313pt;}
.y9_c00155{bottom:911.146302pt;}
.y8_c00155{bottom:938.826291pt;}
.y6_c00155{bottom:966.346280pt;}
.y7_c00155{bottom:973.706277pt;}
.y5_c00155{bottom:994.026269pt;}
.y2_c00155{bottom:1028.586255pt;}
.y1_c00155{bottom:1063.146241pt;}
.h6_c00155{height:24.740615pt;}
.h2_c00155{height:39.243734pt;}
.h4_c00155{height:42.084358pt;}
.h1_c00155{height:52.134354pt;}
.h3_c00155{height:62.812475pt;}
.h5_c00155{height:64.499974pt;}
.h0_c00155{height:1122.666667pt;}
.w0_c00155{width:793.333333pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:113.439955pt;}
.x6_c00155{left:127.359949pt;}
.x7_c00155{left:131.679947pt;}
.x5_c00155{left:160.639936pt;}
.x3_c00155{left:242.239903pt;}
.x4_c00155{left:258.559897pt;}
.x2_c00155{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5a06d91c1d59686f892c908.woff2')format("woff");}.ff1_c00156{font-family:ff1_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:ff2_c00156;src:url('chunks/assets/font_cd6ebd847b01c31c618c794b.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:0.675781;font-style:normal;font-weight:normal;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_b6a4395edf7a97df52b3b119.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;}
.m0_c00156{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls1_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00156{word-spacing:-17.999993px;}
.ws1_c00156{word-spacing:-12.434276px;}
.ws2_c00156{word-spacing:-9.437756px;}
.ws3_c00156{word-spacing:0.000000px;}
._12_c00156{margin-left:-9.803092px;}
._10_c00156{margin-left:-2.565457px;}
._1_c00156{margin-left:-1.105374px;}
._0_c00156{width:1.478351px;}
._2_c00156{width:2.796666px;}
._4_c00156{width:4.256500px;}
._3_c00156{width:5.760964px;}
._11_c00156{width:7.214829px;}
._f_c00156{width:8.741954px;}
._5_c00156{width:9.870897px;}
._6_c00156{width:11.049270px;}
._7_c00156{width:12.975827px;}
._8_c00156{width:14.851987px;}
._e_c00156{width:16.385204px;}
._a_c00156{width:19.425633px;}
._9_c00156{width:20.941867px;}
._b_c00156{width:21.990670px;}
._c_c00156{width:32.317515px;}
._d_c00156{width:33.530505px;}
.fc0_c00156{color:rgb(0,0,0);}
.fs4_c00156{font-size:41.759983px;}
.fs3_c00156{font-size:48.239981px;}
.fs0_c00156{font-size:59.759976px;}
.fs1_c00156{font-size:66.239974px;}
.fs2_c00156{font-size:71.999971px;}
.y0_c00156{bottom:0.000000px;}
.y4_c00156{bottom:75.900270px;}
.y3_c00156{bottom:114.060254px;}
.y25_c00156{bottom:149.160240px;}
.y24_c00156{bottom:183.359927px;}
.y23_c00156{bottom:215.579914px;}
.y22_c00156{bottom:233.939906px;}
.y21_c00156{bottom:241.499903px;}
.y20_c00156{bottom:254.099898px;}
.y1f_c00156{bottom:321.779871px;}
.y1e_c00156{bottom:352.919859px;}
.y1d_c00156{bottom:404.939838px;}
.y1c_c00156{bottom:436.079826px;}
.y1b_c00156{bottom:467.039813px;}
.y1a_c00156{bottom:498.179801px;}
.y19_c00156{bottom:529.139788px;}
.y18_c00156{bottom:560.279776px;}
.y17_c00156{bottom:591.239764px;}
.y16_c00156{bottom:622.199751px;}
.y15_c00156{bottom:653.339739px;}
.y14_c00156{bottom:684.299726px;}
.y13_c00156{bottom:715.439714px;}
.y12_c00156{bottom:746.399701px;}
.y11_c00156{bottom:777.539689px;}
.y10_c00156{bottom:808.499677px;}
.yf_c00156{bottom:839.639664px;}
.ye_c00156{bottom:870.599652px;}
.yc_c00156{bottom:901.739639px;}
.yd_c00156{bottom:910.019636px;}
.yb_c00156{bottom:932.699627px;}
.ya_c00156{bottom:963.839614px;}
.y9_c00156{bottom:994.799602px;}
.y8_c00156{bottom:1025.939590px;}
.y7_c00156{bottom:1056.899577px;}
.y6_c00156{bottom:1088.039565px;}
.y5_c00156{bottom:1118.999552px;}
.y2_c00156{bottom:1176.059530px;}
.y1_c00156{bottom:1196.219522px;}
.h5_c00156{height:27.833192px;}
.h2_c00156{height:44.149201px;}
.h4_c00156{height:47.344903px;}
.h1_c00156{height:58.651148px;}
.h3_c00156{height:70.664034px;}
.h0_c00156{height:1263.000000px;}
.w0_c00156{width:892.500000px;}
.x0_c00156{left:0.000000px;}
.x5_c00156{left:127.620262px;}
.x9_c00156{left:143.279943px;}
.xa_c00156{left:150.299940px;}
.x6_c00156{left:180.719928px;}
.x1_c00156{left:181.799927px;}
.x7_c00156{left:198.179921px;}
.x8_c00156{left:216.539913px;}
.x2_c00156{left:329.039408px;}
.x4_c00156{left:433.979826px;}
.x3_c00156{left:765.359694px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls1_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.332694pt;}
.ws0_c00156{word-spacing:-15.999994pt;}
.ws1_c00156{word-spacing:-11.052689pt;}
.ws2_c00156{word-spacing:-8.389117pt;}
.ws3_c00156{word-spacing:0.000000pt;}
._12_c00156{margin-left:-8.713860pt;}
._10_c00156{margin-left:-2.280406pt;}
._1_c00156{margin-left:-0.982555pt;}
._0_c00156{width:1.314090pt;}
._2_c00156{width:2.485926pt;}
._4_c00156{width:3.783556pt;}
._3_c00156{width:5.120856pt;}
._11_c00156{width:6.413181pt;}
._f_c00156{width:7.770626pt;}
._5_c00156{width:8.774131pt;}
._6_c00156{width:9.821573pt;}
._7_c00156{width:11.534069pt;}
._8_c00156{width:13.201766pt;}
._e_c00156{width:14.564626pt;}
._a_c00156{width:17.267229pt;}
._9_c00156{width:18.614993pt;}
._b_c00156{width:19.547262pt;}
._c_c00156{width:28.726680pt;}
._d_c00156{width:29.804894pt;}
.fs4_c00156{font-size:37.119985pt;}
.fs3_c00156{font-size:42.879983pt;}
.fs0_c00156{font-size:53.119979pt;}
.fs1_c00156{font-size:58.879976pt;}
.fs2_c00156{font-size:63.999974pt;}
.y0_c00156{bottom:0.000000pt;}
.y4_c00156{bottom:67.466906pt;}
.y3_c00156{bottom:101.386893pt;}
.y25_c00156{bottom:132.586880pt;}
.y24_c00156{bottom:162.986601pt;}
.y23_c00156{bottom:191.626590pt;}
.y22_c00156{bottom:207.946583pt;}
.y21_c00156{bottom:214.666581pt;}
.y20_c00156{bottom:225.866576pt;}
.y1f_c00156{bottom:286.026552pt;}
.y1e_c00156{bottom:313.706541pt;}
.y1d_c00156{bottom:359.946523pt;}
.y1c_c00156{bottom:387.626512pt;}
.y1b_c00156{bottom:415.146501pt;}
.y1a_c00156{bottom:442.826490pt;}
.y19_c00156{bottom:470.346479pt;}
.y18_c00156{bottom:498.026467pt;}
.y17_c00156{bottom:525.546456pt;}
.y16_c00156{bottom:553.066445pt;}
.y15_c00156{bottom:580.746434pt;}
.y14_c00156{bottom:608.266423pt;}
.y13_c00156{bottom:635.946412pt;}
.y12_c00156{bottom:663.466401pt;}
.y11_c00156{bottom:691.146390pt;}
.y10_c00156{bottom:718.666379pt;}
.yf_c00156{bottom:746.346368pt;}
.ye_c00156{bottom:773.866357pt;}
.yc_c00156{bottom:801.546346pt;}
.yd_c00156{bottom:808.906343pt;}
.yb_c00156{bottom:829.066335pt;}
.ya_c00156{bottom:856.746324pt;}
.y9_c00156{bottom:884.266313pt;}
.y8_c00156{bottom:911.946302pt;}
.y7_c00156{bottom:939.466291pt;}
.y6_c00156{bottom:967.146280pt;}
.y5_c00156{bottom:994.666269pt;}
.y2_c00156{bottom:1045.386249pt;}
.y1_c00156{bottom:1063.306241pt;}
.h5_c00156{height:24.740615pt;}
.h2_c00156{height:39.243734pt;}
.h4_c00156{height:42.084358pt;}
.h1_c00156{height:52.134354pt;}
.h3_c00156{height:62.812475pt;}
.h0_c00156{height:1122.666667pt;}
.w0_c00156{width:793.333333pt;}
.x0_c00156{left:0.000000pt;}
.x5_c00156{left:113.440233pt;}
.x9_c00156{left:127.359949pt;}
.xa_c00156{left:133.599947pt;}
.x6_c00156{left:160.639936pt;}
.x1_c00156{left:161.599935pt;}
.x7_c00156{left:176.159930pt;}
.x8_c00156{left:192.479923pt;}
.x2_c00156{left:292.479474pt;}
.x4_c00156{left:385.759846pt;}
.x3_c00156{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c140ced01931091b131f974.woff2')format("woff");}.ff1_c00157{font-family:ff1_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:ff2_c00157;src:url('chunks/assets/font_b18b2c0a3fdfa96ab8dbe1d9.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:0.675781;font-style:normal;font-weight:normal;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_72996ddba3a105f0151535e1.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;}
.m0_c00157{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls5_c00157{letter-spacing:0.000000px;}
.ls3_c00157{letter-spacing:0.011169px;}
.ls2_c00157{letter-spacing:0.182640px;}
.ls4_c00157{letter-spacing:0.189300px;}
.ls0_c00157{letter-spacing:0.374281px;}
.ls1_c00157{letter-spacing:7.387077px;}
.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;}
}
.ws0_c00157{word-spacing:-12.434276px;}
.ws2_c00157{word-spacing:-9.731165px;}
.ws1_c00157{word-spacing:-8.786876px;}
.ws3_c00157{word-spacing:0.000000px;}
._12_c00157{margin-left:-9.453791px;}
._7_c00157{margin-left:-2.111767px;}
._1_c00157{margin-left:-1.105374px;}
._0_c00157{width:1.195563px;}
._2_c00157{width:2.778981px;}
._3_c00157{width:4.092954px;}
._c_c00157{width:5.411663px;}
._8_c00157{width:6.482564px;}
._6_c00157{width:7.992099px;}
._d_c00157{width:9.969313px;}
._b_c00157{width:11.824464px;}
._10_c00157{width:12.877940px;}
._11_c00157{width:14.008064px;}
._f_c00157{width:15.634302px;}
._e_c00157{width:16.817885px;}
._a_c00157{width:19.132879px;}
._9_c00157{width:20.175004px;}
._4_c00157{width:25.921110px;}
._5_c00157{width:27.425820px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs4_c00157{font-size:38.879984px;}
.fs3_c00157{font-size:48.239981px;}
.fs0_c00157{font-size:59.759976px;}
.fs1_c00157{font-size:66.239974px;}
.fs2_c00157{font-size:71.999971px;}
.y0_c00157{bottom:0.000000px;}
.y4_c00157{bottom:75.899970px;}
.y3_c00157{bottom:114.059954px;}
.y2a_c00157{bottom:133.679947px;}
.y29_c00157{bottom:151.679939px;}
.y28_c00157{bottom:158.519937px;}
.y27_c00157{bottom:168.959932px;}
.y26_c00157{bottom:186.599925px;}
.y25_c00157{bottom:194.159922px;}
.y24_c00157{bottom:204.599918px;}
.y23_c00157{bottom:221.699911px;}
.y22_c00157{bottom:239.339904px;}
.y21_c00157{bottom:246.899901px;}
.y20_c00157{bottom:258.239897px;}
.y1f_c00157{bottom:323.039871px;}
.y1e_c00157{bottom:354.179858px;}
.y1d_c00157{bottom:385.139846px;}
.y1c_c00157{bottom:416.279833px;}
.y1a_c00157{bottom:462.359815px;}
.y1b_c00157{bottom:470.639812px;}
.y19_c00157{bottom:493.319803px;}
.y18_c00157{bottom:524.459790px;}
.y17_c00157{bottom:555.419778px;}
.y16_c00157{bottom:601.499759px;}
.y15_c00157{bottom:632.459747px;}
.y14_c00157{bottom:663.599735px;}
.y13_c00157{bottom:694.559722px;}
.y12_c00157{bottom:725.699710px;}
.y10_c00157{bottom:771.779691px;}
.y11_c00157{bottom:780.059688px;}
.yf_c00157{bottom:802.739679px;}
.ye_c00157{bottom:833.879666px;}
.yd_c00157{bottom:864.839654px;}
.yc_c00157{bottom:910.919636px;}
.yb_c00157{bottom:941.879623px;}
.ya_c00157{bottom:973.019611px;}
.y9_c00157{bottom:1003.979598px;}
.y8_c00157{bottom:1035.119586px;}
.y6_c00157{bottom:1087.139565px;}
.y7_c00157{bottom:1095.419562px;}
.y5_c00157{bottom:1118.279553px;}
.y2_c00157{bottom:1157.159537px;}
.y1_c00157{bottom:1196.039522px;}
.h5_c00157{height:25.913662px;}
.h7_c00157{height:38.158578px;}
.h8_c00157{height:39.830258px;}
.h2_c00157{height:44.149201px;}
.h4_c00157{height:47.344903px;}
.h6_c00157{height:58.621969px;}
.h1_c00157{height:58.651148px;}
.h3_c00157{height:70.664034px;}
.h0_c00157{height:1263.000000px;}
.w0_c00157{width:892.500000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:127.619949px;}
.xa_c00157{left:142.199943px;}
.x5_c00157{left:180.720012px;}
.x6_c00157{left:340.559864px;}
.x7_c00157{left:358.919856px;}
.x3_c00157{left:386.099846px;}
.x4_c00157{left:404.459838px;}
.x2_c00157{left:433.979514px;}
.x8_c00157{left:603.359759px;}
.x9_c00157{left:621.719751px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls5_c00157{letter-spacing:0.000000pt;}
.ls3_c00157{letter-spacing:0.009928pt;}
.ls2_c00157{letter-spacing:0.162347pt;}
.ls4_c00157{letter-spacing:0.168267pt;}
.ls0_c00157{letter-spacing:0.332694pt;}
.ls1_c00157{letter-spacing:6.566291pt;}
.ws0_c00157{word-spacing:-11.052689pt;}
.ws2_c00157{word-spacing:-8.649924pt;}
.ws1_c00157{word-spacing:-7.810557pt;}
.ws3_c00157{word-spacing:0.000000pt;}
._12_c00157{margin-left:-8.403370pt;}
._7_c00157{margin-left:-1.877127pt;}
._1_c00157{margin-left:-0.982555pt;}
._0_c00157{width:1.062723pt;}
._2_c00157{width:2.470206pt;}
._3_c00157{width:3.638181pt;}
._c_c00157{width:4.810367pt;}
._8_c00157{width:5.762280pt;}
._6_c00157{width:7.104088pt;}
._d_c00157{width:8.861612pt;}
._b_c00157{width:10.510635pt;}
._10_c00157{width:11.447058pt;}
._11_c00157{width:12.451613pt;}
._f_c00157{width:13.897157pt;}
._e_c00157{width:14.949231pt;}
._a_c00157{width:17.007003pt;}
._9_c00157{width:17.933337pt;}
._4_c00157{width:23.040987pt;}
._5_c00157{width:24.378506pt;}
.fs4_c00157{font-size:34.559986pt;}
.fs3_c00157{font-size:42.879983pt;}
.fs0_c00157{font-size:53.119979pt;}
.fs1_c00157{font-size:58.879976pt;}
.fs2_c00157{font-size:63.999974pt;}
.y0_c00157{bottom:0.000000pt;}
.y4_c00157{bottom:67.466640pt;}
.y3_c00157{bottom:101.386626pt;}
.y2a_c00157{bottom:118.826619pt;}
.y29_c00157{bottom:134.826613pt;}
.y28_c00157{bottom:140.906610pt;}
.y27_c00157{bottom:150.186607pt;}
.y26_c00157{bottom:165.866600pt;}
.y25_c00157{bottom:172.586598pt;}
.y24_c00157{bottom:181.866594pt;}
.y23_c00157{bottom:197.066588pt;}
.y22_c00157{bottom:212.746582pt;}
.y21_c00157{bottom:219.466579pt;}
.y20_c00157{bottom:229.546575pt;}
.y1f_c00157{bottom:287.146552pt;}
.y1e_c00157{bottom:314.826541pt;}
.y1d_c00157{bottom:342.346530pt;}
.y1c_c00157{bottom:370.026519pt;}
.y1a_c00157{bottom:410.986502pt;}
.y1b_c00157{bottom:418.346499pt;}
.y19_c00157{bottom:438.506491pt;}
.y18_c00157{bottom:466.186480pt;}
.y17_c00157{bottom:493.706469pt;}
.y16_c00157{bottom:534.666453pt;}
.y15_c00157{bottom:562.186442pt;}
.y14_c00157{bottom:589.866431pt;}
.y13_c00157{bottom:617.386420pt;}
.y12_c00157{bottom:645.066409pt;}
.y10_c00157{bottom:686.026392pt;}
.y11_c00157{bottom:693.386389pt;}
.yf_c00157{bottom:713.546381pt;}
.ye_c00157{bottom:741.226370pt;}
.yd_c00157{bottom:768.746359pt;}
.yc_c00157{bottom:809.706343pt;}
.yb_c00157{bottom:837.226332pt;}
.ya_c00157{bottom:864.906321pt;}
.y9_c00157{bottom:892.426310pt;}
.y8_c00157{bottom:920.106299pt;}
.y6_c00157{bottom:966.346280pt;}
.y7_c00157{bottom:973.706277pt;}
.y5_c00157{bottom:994.026269pt;}
.y2_c00157{bottom:1028.586255pt;}
.y1_c00157{bottom:1063.146241pt;}
.h5_c00157{height:23.034366pt;}
.h7_c00157{height:33.918736pt;}
.h8_c00157{height:35.404673pt;}
.h2_c00157{height:39.243734pt;}
.h4_c00157{height:42.084358pt;}
.h6_c00157{height:52.108417pt;}
.h1_c00157{height:52.134354pt;}
.h3_c00157{height:62.812475pt;}
.h0_c00157{height:1122.666667pt;}
.w0_c00157{width:793.333333pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:113.439955pt;}
.xa_c00157{left:126.399949pt;}
.x5_c00157{left:160.640011pt;}
.x6_c00157{left:302.719879pt;}
.x7_c00157{left:319.039872pt;}
.x3_c00157{left:343.199863pt;}
.x4_c00157{left:359.519856pt;}
.x2_c00157{left:385.759568pt;}
.x8_c00157{left:536.319785pt;}
.x9_c00157{left:552.639779pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98769d74a175469a34f6f0e1.woff2')format("woff");}.ff1_c00158{font-family:ff1_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:ff2_c00158;src:url('chunks/assets/font_1cdc60465c24d0babe1ce29b.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:0.675781;font-style:normal;font-weight:normal;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_2ae2feb8c7544ffc156b3028.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;}
.m0_c00158{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls2_c00158{letter-spacing:0.000000px;}
.ls1_c00158{letter-spacing:0.182640px;}
.ls0_c00158{letter-spacing:0.374281px;}
.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;}
}
.ws3_c00158{word-spacing:-14.939994px;}
.ws0_c00158{word-spacing:-12.434276px;}
.ws1_c00158{word-spacing:-9.437756px;}
.ws2_c00158{word-spacing:-8.786876px;}
.ws4_c00158{word-spacing:0.000000px;}
._13_c00158{margin-left:-10.081928px;}
._12_c00158{margin-left:-2.169214px;}
._1_c00158{margin-left:-1.105374px;}
._0_c00158{width:1.478351px;}
._4_c00158{width:2.887904px;}
._2_c00158{width:4.895272px;}
._3_c00158{width:6.039799px;}
._6_c00158{width:7.487655px;}
._7_c00158{width:8.762182px;}
._8_c00158{width:9.824554px;}
._e_c00158{width:10.876970px;}
._f_c00158{width:12.170697px;}
._10_c00158{width:13.507373px;}
._11_c00158{width:16.690281px;}
._5_c00158{width:19.560663px;}
._c_c00158{width:20.587883px;}
._d_c00158{width:23.230055px;}
._b_c00158{width:24.490669px;}
._a_c00158{width:25.512522px;}
._9_c00158{width:30.339381px;}
.fc0_c00158{color:rgb(0,0,0);}
.fs5_c00158{font-size:38.879984px;}
.fs4_c00158{font-size:41.759983px;}
.fs3_c00158{font-size:48.239981px;}
.fs0_c00158{font-size:59.759976px;}
.fs1_c00158{font-size:66.239974px;}
.fs2_c00158{font-size:71.999971px;}
.y0_c00158{bottom:0.000000px;}
.y4_c00158{bottom:75.900270px;}
.y3_c00158{bottom:114.060254px;}
.y28_c00158{bottom:133.680247px;}
.y27_c00158{bottom:141.240244px;}
.y26_c00158{bottom:154.199938px;}
.y25_c00158{bottom:173.999930px;}
.y24_c00158{bottom:194.699922px;}
.y23_c00158{bottom:202.259919px;}
.y22_c00158{bottom:215.039914px;}
.y21_c00158{bottom:266.879893px;}
.y20_c00158{bottom:297.839881px;}
.y1f_c00158{bottom:328.979868px;}
.y1e_c00158{bottom:359.939856px;}
.y1d_c00158{bottom:391.079844px;}
.y1c_c00158{bottom:422.039831px;}
.y1b_c00158{bottom:453.179819px;}
.y1a_c00158{bottom:484.139806px;}
.y19_c00158{bottom:515.279794px;}
.y17_c00158{bottom:546.239782px;}
.y18_c00158{bottom:554.519778px;}
.y16_c00158{bottom:577.199769px;}
.y15_c00158{bottom:608.339757px;}
.y14_c00158{bottom:639.299744px;}
.y13_c00158{bottom:670.439732px;}
.y12_c00158{bottom:701.399719px;}
.y10_c00158{bottom:747.479701px;}
.y11_c00158{bottom:755.759698px;}
.yf_c00158{bottom:778.619689px;}
.ye_c00158{bottom:809.579676px;}
.yd_c00158{bottom:840.719664px;}
.yc_c00158{bottom:886.799645px;}
.yb_c00158{bottom:917.759633px;}
.ya_c00158{bottom:948.719621px;}
.y9_c00158{bottom:979.859608px;}
.y8_c00158{bottom:1010.819596px;}
.y7_c00158{bottom:1041.959583px;}
.y6_c00158{bottom:1088.039565px;}
.y5_c00158{bottom:1118.999552px;}
.y2_c00158{bottom:1176.059530px;}
.y1_c00158{bottom:1196.219522px;}
.h6_c00158{height:25.913662px;}
.h5_c00158{height:27.833192px;}
.h2_c00158{height:44.149201px;}
.h4_c00158{height:47.344903px;}
.h7_c00158{height:58.621969px;}
.h1_c00158{height:58.651148px;}
.h3_c00158{height:70.664034px;}
.h0_c00158{height:1263.000000px;}
.w0_c00158{width:892.500000px;}
.x0_c00158{left:0.000000px;}
.x5_c00158{left:127.620262px;}
.xf_c00158{left:142.199943px;}
.xd_c00158{left:143.279943px;}
.xe_c00158{left:149.039940px;}
.x6_c00158{left:180.719930px;}
.x1_c00158{left:181.799927px;}
.xb_c00158{left:225.899910px;}
.xc_c00158{left:230.399908px;}
.x2_c00158{left:329.039408px;}
.x4_c00158{left:433.979826px;}
.x7_c00158{left:600.479760px;}
.x8_c00158{left:618.839752px;}
.x9_c00158{left:682.019727px;}
.xa_c00158{left:700.379720px;}
.x3_c00158{left:765.359694px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls2_c00158{letter-spacing:0.000000pt;}
.ls1_c00158{letter-spacing:0.162347pt;}
.ls0_c00158{letter-spacing:0.332694pt;}
.ws3_c00158{word-spacing:-13.279995pt;}
.ws0_c00158{word-spacing:-11.052689pt;}
.ws1_c00158{word-spacing:-8.389117pt;}
.ws2_c00158{word-spacing:-7.810557pt;}
.ws4_c00158{word-spacing:0.000000pt;}
._13_c00158{margin-left:-8.961714pt;}
._12_c00158{margin-left:-1.928190pt;}
._1_c00158{margin-left:-0.982555pt;}
._0_c00158{width:1.314090pt;}
._4_c00158{width:2.567026pt;}
._2_c00158{width:4.351353pt;}
._3_c00158{width:5.368710pt;}
._6_c00158{width:6.655693pt;}
._7_c00158{width:7.788606pt;}
._8_c00158{width:8.732937pt;}
._e_c00158{width:9.668418pt;}
._f_c00158{width:10.818397pt;}
._10_c00158{width:12.006554pt;}
._11_c00158{width:14.835806pt;}
._5_c00158{width:17.387256pt;}
._c_c00158{width:18.300340pt;}
._d_c00158{width:20.648938pt;}
._b_c00158{width:21.769484pt;}
._a_c00158{width:22.677798pt;}
._9_c00158{width:26.968338pt;}
.fs5_c00158{font-size:34.559986pt;}
.fs4_c00158{font-size:37.119985pt;}
.fs3_c00158{font-size:42.879983pt;}
.fs0_c00158{font-size:53.119979pt;}
.fs1_c00158{font-size:58.879976pt;}
.fs2_c00158{font-size:63.999974pt;}
.y0_c00158{bottom:0.000000pt;}
.y4_c00158{bottom:67.466906pt;}
.y3_c00158{bottom:101.386893pt;}
.y28_c00158{bottom:118.826886pt;}
.y27_c00158{bottom:125.546883pt;}
.y26_c00158{bottom:137.066612pt;}
.y25_c00158{bottom:154.666605pt;}
.y24_c00158{bottom:173.066597pt;}
.y23_c00158{bottom:179.786595pt;}
.y22_c00158{bottom:191.146590pt;}
.y21_c00158{bottom:237.226572pt;}
.y20_c00158{bottom:264.746561pt;}
.y1f_c00158{bottom:292.426550pt;}
.y1e_c00158{bottom:319.946539pt;}
.y1d_c00158{bottom:347.626528pt;}
.y1c_c00158{bottom:375.146517pt;}
.y1b_c00158{bottom:402.826506pt;}
.y1a_c00158{bottom:430.346495pt;}
.y19_c00158{bottom:458.026483pt;}
.y17_c00158{bottom:485.546472pt;}
.y18_c00158{bottom:492.906470pt;}
.y16_c00158{bottom:513.066461pt;}
.y15_c00158{bottom:540.746450pt;}
.y14_c00158{bottom:568.266439pt;}
.y13_c00158{bottom:595.946428pt;}
.y12_c00158{bottom:623.466417pt;}
.y10_c00158{bottom:664.426401pt;}
.y11_c00158{bottom:671.786398pt;}
.yf_c00158{bottom:692.106390pt;}
.ye_c00158{bottom:719.626379pt;}
.yd_c00158{bottom:747.306368pt;}
.yc_c00158{bottom:788.266351pt;}
.yb_c00158{bottom:815.786340pt;}
.ya_c00158{bottom:843.306329pt;}
.y9_c00158{bottom:870.986318pt;}
.y8_c00158{bottom:898.506307pt;}
.y7_c00158{bottom:926.186296pt;}
.y6_c00158{bottom:967.146280pt;}
.y5_c00158{bottom:994.666269pt;}
.y2_c00158{bottom:1045.386249pt;}
.y1_c00158{bottom:1063.306241pt;}
.h6_c00158{height:23.034366pt;}
.h5_c00158{height:24.740615pt;}
.h2_c00158{height:39.243734pt;}
.h4_c00158{height:42.084358pt;}
.h7_c00158{height:52.108417pt;}
.h1_c00158{height:52.134354pt;}
.h3_c00158{height:62.812475pt;}
.h0_c00158{height:1122.666667pt;}
.w0_c00158{width:793.333333pt;}
.x0_c00158{left:0.000000pt;}
.x5_c00158{left:113.440233pt;}
.xf_c00158{left:126.399949pt;}
.xd_c00158{left:127.359949pt;}
.xe_c00158{left:132.479947pt;}
.x6_c00158{left:160.639938pt;}
.x1_c00158{left:161.599935pt;}
.xb_c00158{left:200.799920pt;}
.xc_c00158{left:204.799918pt;}
.x2_c00158{left:292.479474pt;}
.x4_c00158{left:385.759846pt;}
.x7_c00158{left:533.759786pt;}
.x8_c00158{left:550.079780pt;}
.x9_c00158{left:606.239758pt;}
.xa_c00158{left:622.559751pt;}
.x3_c00158{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c37ba30e969f106cbe49ba2d.woff2')format("woff");}.ff1_c00159{font-family:ff1_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:ff2_c00159;src:url('chunks/assets/font_ed7c86db0c6f0d8355ba2c89.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:0.675781;font-style:normal;font-weight:normal;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_a316fe49974480eff7ece67c.woff2')format("woff");}.ff3_c00159{font-family:ff3_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;}
.m0_c00159{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls4_c00159{letter-spacing:0.000000px;}
.ls2_c00159{letter-spacing:0.011169px;}
.ls3_c00159{letter-spacing:0.189300px;}
.ls0_c00159{letter-spacing:0.374281px;}
.ls1_c00159{letter-spacing:13.871034px;}
.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;}
}
.ws3_c00159{word-spacing:-14.939994px;}
.ws0_c00159{word-spacing:-12.434276px;}
.ws2_c00159{word-spacing:-9.731165px;}
.ws1_c00159{word-spacing:-8.786876px;}
.ws4_c00159{word-spacing:0.000000px;}
._13_c00159{margin-left:-11.071526px;}
._11_c00159{margin-left:-2.190828px;}
._1_c00159{margin-left:-1.105374px;}
._0_c00159{width:1.195563px;}
._4_c00159{width:2.473812px;}
._b_c00159{width:3.486001px;}
._d_c00159{width:5.117373px;}
._c_c00159{width:7.029398px;}
._7_c00159{width:8.222377px;}
._12_c00159{width:9.376196px;}
._e_c00159{width:10.772136px;}
._f_c00159{width:12.128495px;}
._14_c00159{width:13.162946px;}
._2_c00159{width:14.316385px;}
._3_c00159{width:16.234082px;}
._5_c00159{width:19.121978px;}
._6_c00159{width:20.778623px;}
._a_c00159{width:22.282458px;}
._10_c00159{width:24.911304px;}
._8_c00159{width:27.763525px;}
._9_c00159{width:28.987663px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs4_c00159{font-size:38.879984px;}
.fs3_c00159{font-size:48.239981px;}
.fs0_c00159{font-size:59.759976px;}
.fs1_c00159{font-size:66.239974px;}
.fs2_c00159{font-size:71.999971px;}
.y0_c00159{bottom:0.000000px;}
.y4_c00159{bottom:75.899970px;}
.y3_c00159{bottom:114.059954px;}
.y24_c00159{bottom:148.260241px;}
.y23_c00159{bottom:155.099938px;}
.y22_c00159{bottom:180.479928px;}
.y21_c00159{bottom:198.299921px;}
.y20_c00159{bottom:205.859918px;}
.y1f_c00159{bottom:217.199913px;}
.y1e_c00159{bottom:314.039874px;}
.y1c_c00159{bottom:360.119856px;}
.y1d_c00159{bottom:368.399853px;}
.y1b_c00159{bottom:391.259843px;}
.y1a_c00159{bottom:422.219831px;}
.y19_c00159{bottom:453.359819px;}
.y18_c00159{bottom:484.319806px;}
.y17_c00159{bottom:515.459794px;}
.y16_c00159{bottom:546.419781px;}
.y14_c00159{bottom:592.499763px;}
.y15_c00159{bottom:600.779760px;}
.y13_c00159{bottom:623.459751px;}
.y12_c00159{bottom:654.599738px;}
.y11_c00159{bottom:700.679720px;}
.y10_c00159{bottom:731.639707px;}
.yf_c00159{bottom:762.779695px;}
.ye_c00159{bottom:793.739683px;}
.yd_c00159{bottom:824.879670px;}
.yc_c00159{bottom:870.779652px;}
.yb_c00159{bottom:901.919639px;}
.ya_c00159{bottom:932.879627px;}
.y9_c00159{bottom:978.959608px;}
.y8_c00159{bottom:1010.099596px;}
.y7_c00159{bottom:1041.059584px;}
.y6_c00159{bottom:1087.139565px;}
.y5_c00159{bottom:1118.279553px;}
.y2_c00159{bottom:1157.159537px;}
.y1_c00159{bottom:1196.039522px;}
.h5_c00159{height:25.913662px;}
.h6_c00159{height:38.158578px;}
.h2_c00159{height:44.149201px;}
.h4_c00159{height:47.344903px;}
.h1_c00159{height:58.651148px;}
.h3_c00159{height:70.664034px;}
.h0_c00159{height:1263.000000px;}
.w0_c00159{width:892.500000px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:127.619949px;}
.x8_c00159{left:142.199943px;}
.x3_c00159{left:180.719930px;}
.x4_c00159{left:334.619866px;}
.x5_c00159{left:352.979859px;}
.x2_c00159{left:433.979514px;}
.x6_c00159{left:485.639806px;}
.x7_c00159{left:503.999798px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls4_c00159{letter-spacing:0.000000pt;}
.ls2_c00159{letter-spacing:0.009928pt;}
.ls3_c00159{letter-spacing:0.168267pt;}
.ls0_c00159{letter-spacing:0.332694pt;}
.ls1_c00159{letter-spacing:12.329808pt;}
.ws3_c00159{word-spacing:-13.279995pt;}
.ws0_c00159{word-spacing:-11.052689pt;}
.ws2_c00159{word-spacing:-8.649924pt;}
.ws1_c00159{word-spacing:-7.810557pt;}
.ws4_c00159{word-spacing:0.000000pt;}
._13_c00159{margin-left:-9.841357pt;}
._11_c00159{margin-left:-1.947402pt;}
._1_c00159{margin-left:-0.982555pt;}
._0_c00159{width:1.062723pt;}
._4_c00159{width:2.198944pt;}
._b_c00159{width:3.098668pt;}
._d_c00159{width:4.548776pt;}
._c_c00159{width:6.248353pt;}
._7_c00159{width:7.308780pt;}
._12_c00159{width:8.334397pt;}
._e_c00159{width:9.575232pt;}
._f_c00159{width:10.780885pt;}
._14_c00159{width:11.700396pt;}
._2_c00159{width:12.725675pt;}
._3_c00159{width:14.430295pt;}
._5_c00159{width:16.997314pt;}
._6_c00159{width:18.469887pt;}
._a_c00159{width:19.806629pt;}
._10_c00159{width:22.143381pt;}
._8_c00159{width:24.678689pt;}
._9_c00159{width:25.766811pt;}
.fs4_c00159{font-size:34.559986pt;}
.fs3_c00159{font-size:42.879983pt;}
.fs0_c00159{font-size:53.119979pt;}
.fs1_c00159{font-size:58.879976pt;}
.fs2_c00159{font-size:63.999974pt;}
.y0_c00159{bottom:0.000000pt;}
.y4_c00159{bottom:67.466640pt;}
.y3_c00159{bottom:101.386626pt;}
.y24_c00159{bottom:131.786881pt;}
.y23_c00159{bottom:137.866612pt;}
.y22_c00159{bottom:160.426602pt;}
.y21_c00159{bottom:176.266596pt;}
.y20_c00159{bottom:182.986593pt;}
.y1f_c00159{bottom:193.066589pt;}
.y1e_c00159{bottom:279.146555pt;}
.y1c_c00159{bottom:320.106539pt;}
.y1d_c00159{bottom:327.466536pt;}
.y1b_c00159{bottom:347.786528pt;}
.y1a_c00159{bottom:375.306517pt;}
.y19_c00159{bottom:402.986505pt;}
.y18_c00159{bottom:430.506494pt;}
.y17_c00159{bottom:458.186483pt;}
.y16_c00159{bottom:485.706472pt;}
.y14_c00159{bottom:526.666456pt;}
.y15_c00159{bottom:534.026453pt;}
.y13_c00159{bottom:554.186445pt;}
.y12_c00159{bottom:581.866434pt;}
.y11_c00159{bottom:622.826418pt;}
.y10_c00159{bottom:650.346407pt;}
.yf_c00159{bottom:678.026395pt;}
.ye_c00159{bottom:705.546384pt;}
.yd_c00159{bottom:733.226373pt;}
.yc_c00159{bottom:774.026357pt;}
.yb_c00159{bottom:801.706346pt;}
.ya_c00159{bottom:829.226335pt;}
.y9_c00159{bottom:870.186319pt;}
.y8_c00159{bottom:897.866308pt;}
.y7_c00159{bottom:925.386297pt;}
.y6_c00159{bottom:966.346280pt;}
.y5_c00159{bottom:994.026269pt;}
.y2_c00159{bottom:1028.586255pt;}
.y1_c00159{bottom:1063.146241pt;}
.h5_c00159{height:23.034366pt;}
.h6_c00159{height:33.918736pt;}
.h2_c00159{height:39.243734pt;}
.h4_c00159{height:42.084358pt;}
.h1_c00159{height:52.134354pt;}
.h3_c00159{height:62.812475pt;}
.h0_c00159{height:1122.666667pt;}
.w0_c00159{width:793.333333pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:113.439955pt;}
.x8_c00159{left:126.399949pt;}
.x3_c00159{left:160.639938pt;}
.x4_c00159{left:297.439881pt;}
.x5_c00159{left:313.759874pt;}
.x2_c00159{left:385.759568pt;}
.x6_c00159{left:431.679827pt;}
.x7_c00159{left:447.999821pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b1d7fdd762b038cba79b528.woff2')format("woff");}.ff1_c00160{font-family:ff1_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:ff2_c00160;src:url('chunks/assets/font_f968bbe8be824a19b9c8876f.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:0.675781;font-style:normal;font-weight:normal;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_f4b9c228283ff181f04de247.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;}
.m0_c00160{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls5_c00160{letter-spacing:0.000000px;}
.ls2_c00160{letter-spacing:0.011169px;}
.ls0_c00160{letter-spacing:0.012576px;}
.ls3_c00160{letter-spacing:0.012620px;}
.ls4_c00160{letter-spacing:0.182640px;}
.ls1_c00160{letter-spacing:0.374281px;}
.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:-12.434276px;}
.ws3_c00160{word-spacing:-10.452616px;}
.ws0_c00160{word-spacing:-10.452572px;}
.ws2_c00160{word-spacing:-9.731165px;}
.ws4_c00160{word-spacing:-8.786876px;}
.ws5_c00160{word-spacing:0.000000px;}
._12_c00160{margin-left:-10.465865px;}
._1_c00160{margin-left:-1.105374px;}
._0_c00160{width:1.478351px;}
._3_c00160{width:2.842996px;}
._11_c00160{width:3.876326px;}
._2_c00160{width:4.944253px;}
._5_c00160{width:6.423736px;}
._4_c00160{width:8.004923px;}
._10_c00160{width:9.486036px;}
._8_c00160{width:11.289378px;}
._9_c00160{width:12.405943px;}
._c_c00160{width:13.827956px;}
._d_c00160{width:16.622917px;}
._6_c00160{width:19.955724px;}
._7_c00160{width:21.035351px;}
._a_c00160{width:26.014738px;}
._b_c00160{width:27.628389px;}
._e_c00160{width:29.387310px;}
._f_c00160{width:30.483252px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs5_c00160{font-size:38.879984px;}
.fs2_c00160{font-size:41.759983px;}
.fs4_c00160{font-size:48.239981px;}
.fs0_c00160{font-size:59.759976px;}
.fs1_c00160{font-size:66.239974px;}
.fs3_c00160{font-size:71.999971px;}
.y0_c00160{bottom:0.000000px;}
.y4_c00160{bottom:75.900270px;}
.y3_c00160{bottom:114.060254px;}
.y2b_c00160{bottom:133.680247px;}
.y2a_c00160{bottom:141.240244px;}
.y29_c00160{bottom:154.199938px;}
.y28_c00160{bottom:173.999930px;}
.y27_c00160{bottom:194.339922px;}
.y26_c00160{bottom:201.899919px;}
.y25_c00160{bottom:231.779907px;}
.y24_c00160{bottom:253.559899px;}
.y23_c00160{bottom:273.539891px;}
.y22_c00160{bottom:280.379888px;}
.y21_c00160{bottom:312.599875px;}
.y20_c00160{bottom:352.739859px;}
.y1f_c00160{bottom:383.699847px;}
.y1e_c00160{bottom:414.839834px;}
.y1d_c00160{bottom:460.919816px;}
.y1c_c00160{bottom:491.879803px;}
.y1b_c00160{bottom:523.019791px;}
.y1a_c00160{bottom:553.979778px;}
.y19_c00160{bottom:600.059760px;}
.y18_c00160{bottom:631.019748px;}
.y17_c00160{bottom:662.159735px;}
.y15_c00160{bottom:708.239717px;}
.y16_c00160{bottom:716.519713px;}
.y14_c00160{bottom:739.199704px;}
.y13_c00160{bottom:770.339692px;}
.y12_c00160{bottom:801.299679px;}
.y10_c00160{bottom:832.439667px;}
.y11_c00160{bottom:840.719664px;}
.yf_c00160{bottom:863.399655px;}
.ye_c00160{bottom:894.539642px;}
.yd_c00160{bottom:925.499630px;}
.yc_c00160{bottom:956.639617px;}
.yb_c00160{bottom:987.599605px;}
.ya_c00160{bottom:1018.739593px;}
.y9_c00160{bottom:1063.559575px;}
.y7_c00160{bottom:1063.559875px;}
.y8_c00160{bottom:1071.119572px;}
.y6_c00160{bottom:1091.999863px;}
.y5_c00160{bottom:1120.439852px;}
.y2_c00160{bottom:1176.059530px;}
.y1_c00160{bottom:1196.219522px;}
.h8_c00160{height:25.913662px;}
.h7_c00160{height:38.158578px;}
.h4_c00160{height:40.985140px;}
.h2_c00160{height:44.149201px;}
.h6_c00160{height:47.344903px;}
.h9_c00160{height:58.621969px;}
.h1_c00160{height:58.651148px;}
.h3_c00160{height:65.010911px;}
.h5_c00160{height:70.664034px;}
.h0_c00160{height:1263.000000px;}
.w0_c00160{width:892.500000px;}
.x0_c00160{left:0.000000px;}
.x5_c00160{left:127.620262px;}
.xd_c00160{left:142.199943px;}
.xe_c00160{left:143.279943px;}
.x6_c00160{left:180.720268px;}
.x1_c00160{left:181.799927px;}
.x9_c00160{left:275.039890px;}
.xa_c00160{left:293.399883px;}
.x7_c00160{left:317.339873px;}
.x2_c00160{left:329.039408px;}
.x8_c00160{left:332.999867px;}
.xb_c00160{left:370.079852px;}
.xc_c00160{left:388.439845px;}
.x4_c00160{left:433.979826px;}
.x3_c00160{left:765.359694px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls5_c00160{letter-spacing:0.000000pt;}
.ls2_c00160{letter-spacing:0.009928pt;}
.ls0_c00160{letter-spacing:0.011179pt;}
.ls3_c00160{letter-spacing:0.011218pt;}
.ls4_c00160{letter-spacing:0.162347pt;}
.ls1_c00160{letter-spacing:0.332694pt;}
.ws1_c00160{word-spacing:-11.052689pt;}
.ws3_c00160{word-spacing:-9.291214pt;}
.ws0_c00160{word-spacing:-9.291175pt;}
.ws2_c00160{word-spacing:-8.649924pt;}
.ws4_c00160{word-spacing:-7.810557pt;}
.ws5_c00160{word-spacing:0.000000pt;}
._12_c00160{margin-left:-9.302991pt;}
._1_c00160{margin-left:-0.982555pt;}
._0_c00160{width:1.314090pt;}
._3_c00160{width:2.527107pt;}
._11_c00160{width:3.445623pt;}
._2_c00160{width:4.394892pt;}
._5_c00160{width:5.709988pt;}
._4_c00160{width:7.115487pt;}
._10_c00160{width:8.432032pt;}
._8_c00160{width:10.035002pt;}
._9_c00160{width:11.027505pt;}
._c_c00160{width:12.291516pt;}
._d_c00160{width:14.775927pt;}
._6_c00160{width:17.738421pt;}
._7_c00160{width:18.698090pt;}
._a_c00160{width:23.124212pt;}
._b_c00160{width:24.558568pt;}
._e_c00160{width:26.122053pt;}
._f_c00160{width:27.096224pt;}
.fs5_c00160{font-size:34.559986pt;}
.fs2_c00160{font-size:37.119985pt;}
.fs4_c00160{font-size:42.879983pt;}
.fs0_c00160{font-size:53.119979pt;}
.fs1_c00160{font-size:58.879976pt;}
.fs3_c00160{font-size:63.999974pt;}
.y0_c00160{bottom:0.000000pt;}
.y4_c00160{bottom:67.466906pt;}
.y3_c00160{bottom:101.386893pt;}
.y2b_c00160{bottom:118.826886pt;}
.y2a_c00160{bottom:125.546883pt;}
.y29_c00160{bottom:137.066612pt;}
.y28_c00160{bottom:154.666605pt;}
.y27_c00160{bottom:172.746598pt;}
.y26_c00160{bottom:179.466595pt;}
.y25_c00160{bottom:206.026584pt;}
.y24_c00160{bottom:225.386577pt;}
.y23_c00160{bottom:243.146569pt;}
.y22_c00160{bottom:249.226567pt;}
.y21_c00160{bottom:277.866556pt;}
.y20_c00160{bottom:313.546541pt;}
.y1f_c00160{bottom:341.066530pt;}
.y1e_c00160{bottom:368.746519pt;}
.y1d_c00160{bottom:409.706503pt;}
.y1c_c00160{bottom:437.226492pt;}
.y1b_c00160{bottom:464.906481pt;}
.y1a_c00160{bottom:492.426470pt;}
.y19_c00160{bottom:533.386453pt;}
.y18_c00160{bottom:560.906442pt;}
.y17_c00160{bottom:588.586431pt;}
.y15_c00160{bottom:629.546415pt;}
.y16_c00160{bottom:636.906412pt;}
.y14_c00160{bottom:657.066404pt;}
.y13_c00160{bottom:684.746393pt;}
.y12_c00160{bottom:712.266382pt;}
.y10_c00160{bottom:739.946371pt;}
.y11_c00160{bottom:747.306368pt;}
.yf_c00160{bottom:767.466360pt;}
.ye_c00160{bottom:795.146349pt;}
.yd_c00160{bottom:822.666338pt;}
.yc_c00160{bottom:850.346327pt;}
.yb_c00160{bottom:877.866316pt;}
.ya_c00160{bottom:905.546304pt;}
.y9_c00160{bottom:945.386289pt;}
.y7_c00160{bottom:945.386555pt;}
.y8_c00160{bottom:952.106286pt;}
.y6_c00160{bottom:970.666545pt;}
.y5_c00160{bottom:995.946535pt;}
.y2_c00160{bottom:1045.386249pt;}
.y1_c00160{bottom:1063.306241pt;}
.h8_c00160{height:23.034366pt;}
.h7_c00160{height:33.918736pt;}
.h4_c00160{height:36.431235pt;}
.h2_c00160{height:39.243734pt;}
.h6_c00160{height:42.084358pt;}
.h9_c00160{height:52.108417pt;}
.h1_c00160{height:52.134354pt;}
.h3_c00160{height:57.787477pt;}
.h5_c00160{height:62.812475pt;}
.h0_c00160{height:1122.666667pt;}
.w0_c00160{width:793.333333pt;}
.x0_c00160{left:0.000000pt;}
.x5_c00160{left:113.440233pt;}
.xd_c00160{left:126.399949pt;}
.xe_c00160{left:127.359949pt;}
.x6_c00160{left:160.640238pt;}
.x1_c00160{left:161.599935pt;}
.x9_c00160{left:244.479902pt;}
.xa_c00160{left:260.799896pt;}
.x7_c00160{left:282.079887pt;}
.x2_c00160{left:292.479474pt;}
.x8_c00160{left:295.999882pt;}
.xb_c00160{left:328.959868pt;}
.xc_c00160{left:345.279862pt;}
.x4_c00160{left:385.759846pt;}
.x3_c00160{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b01ab9de403f413d5603869c.woff2')format("woff");}.ff1_c00161{font-family:ff1_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:ff2_c00161;src:url('chunks/assets/font_21c5bade39ad461acfd89e39.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:0.675781;font-style:normal;font-weight:normal;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_22ccf36b0ecc3ab05bb5f896.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;}
.m0_c00161{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls1_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00161{word-spacing:-12.434276px;}
.ws1_c00161{word-spacing:-9.437756px;}
.ws2_c00161{word-spacing:0.000000px;}
._a_c00161{margin-left:-10.990054px;}
._1_c00161{margin-left:-1.105374px;}
._0_c00161{width:1.195563px;}
._6_c00161{width:3.231269px;}
._7_c00161{width:4.330901px;}
._8_c00161{width:6.947925px;}
._5_c00161{width:8.630965px;}
._4_c00161{width:15.900161px;}
._9_c00161{width:21.665956px;}
._2_c00161{width:24.750764px;}
._3_c00161{width:26.615425px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs4_c00161{font-size:41.759983px;}
.fs3_c00161{font-size:48.239981px;}
.fs0_c00161{font-size:59.759976px;}
.fs1_c00161{font-size:66.239974px;}
.fs2_c00161{font-size:71.999971px;}
.y0_c00161{bottom:0.000000px;}
.y4_c00161{bottom:75.899970px;}
.y3_c00161{bottom:114.059954px;}
.y20_c00161{bottom:158.339937px;}
.y1f_c00161{bottom:201.179920px;}
.y1e_c00161{bottom:221.879911px;}
.y1d_c00161{bottom:229.439908px;}
.y1c_c00161{bottom:263.099895px;}
.y1b_c00161{bottom:335.819866px;}
.y1a_c00161{bottom:373.979850px;}
.y19_c00161{bottom:412.139835px;}
.y18_c00161{bottom:450.299820px;}
.y17_c00161{bottom:488.459805px;}
.y16_c00161{bottom:526.619789px;}
.y15_c00161{bottom:564.779774px;}
.y14_c00161{bottom:602.939759px;}
.y13_c00161{bottom:641.099744px;}
.y12_c00161{bottom:679.259728px;}
.y11_c00161{bottom:717.419713px;}
.yf_c00161{bottom:762.779695px;}
.y10_c00161{bottom:771.059692px;}
.ye_c00161{bottom:793.739683px;}
.yd_c00161{bottom:839.819664px;}
.yc_c00161{bottom:870.779652px;}
.yb_c00161{bottom:916.859633px;}
.ya_c00161{bottom:947.999621px;}
.y9_c00161{bottom:978.959608px;}
.y8_c00161{bottom:1010.099596px;}
.y7_c00161{bottom:1056.179578px;}
.y6_c00161{bottom:1087.139565px;}
.y5_c00161{bottom:1118.279553px;}
.y2_c00161{bottom:1157.159537px;}
.y1_c00161{bottom:1196.039522px;}
.h5_c00161{height:27.833192px;}
.h2_c00161{height:44.149201px;}
.h4_c00161{height:47.344903px;}
.h1_c00161{height:58.651148px;}
.h3_c00161{height:70.664034px;}
.h0_c00161{height:1263.000000px;}
.w0_c00161{width:892.500000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:127.619949px;}
.x6_c00161{left:143.279943px;}
.x7_c00161{left:147.059941px;}
.x3_c00161{left:180.719928px;}
.x4_c00161{left:399.599840px;}
.x5_c00161{left:417.959833px;}
.x2_c00161{left:433.979514px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls1_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:0.332694pt;}
.ws0_c00161{word-spacing:-11.052689pt;}
.ws1_c00161{word-spacing:-8.389117pt;}
.ws2_c00161{word-spacing:0.000000pt;}
._a_c00161{margin-left:-9.768937pt;}
._1_c00161{margin-left:-0.982555pt;}
._0_c00161{width:1.062723pt;}
._6_c00161{width:2.872239pt;}
._7_c00161{width:3.849690pt;}
._8_c00161{width:6.175933pt;}
._5_c00161{width:7.671969pt;}
._4_c00161{width:14.133477pt;}
._9_c00161{width:19.258627pt;}
._2_c00161{width:22.000679pt;}
._3_c00161{width:23.658156pt;}
.fs4_c00161{font-size:37.119985pt;}
.fs3_c00161{font-size:42.879983pt;}
.fs0_c00161{font-size:53.119979pt;}
.fs1_c00161{font-size:58.879976pt;}
.fs2_c00161{font-size:63.999974pt;}
.y0_c00161{bottom:0.000000pt;}
.y4_c00161{bottom:67.466640pt;}
.y3_c00161{bottom:101.386626pt;}
.y20_c00161{bottom:140.746610pt;}
.y1f_c00161{bottom:178.826595pt;}
.y1e_c00161{bottom:197.226588pt;}
.y1d_c00161{bottom:203.946585pt;}
.y1c_c00161{bottom:233.866573pt;}
.y1b_c00161{bottom:298.506547pt;}
.y1a_c00161{bottom:332.426534pt;}
.y19_c00161{bottom:366.346520pt;}
.y18_c00161{bottom:400.266507pt;}
.y17_c00161{bottom:434.186493pt;}
.y16_c00161{bottom:468.106479pt;}
.y15_c00161{bottom:502.026466pt;}
.y14_c00161{bottom:535.946452pt;}
.y13_c00161{bottom:569.866439pt;}
.y12_c00161{bottom:603.786425pt;}
.y11_c00161{bottom:637.706412pt;}
.yf_c00161{bottom:678.026395pt;}
.y10_c00161{bottom:685.386393pt;}
.ye_c00161{bottom:705.546384pt;}
.yd_c00161{bottom:746.506368pt;}
.yc_c00161{bottom:774.026357pt;}
.yb_c00161{bottom:814.986341pt;}
.ya_c00161{bottom:842.666330pt;}
.y9_c00161{bottom:870.186319pt;}
.y8_c00161{bottom:897.866308pt;}
.y7_c00161{bottom:938.826291pt;}
.y6_c00161{bottom:966.346280pt;}
.y5_c00161{bottom:994.026269pt;}
.y2_c00161{bottom:1028.586255pt;}
.y1_c00161{bottom:1063.146241pt;}
.h5_c00161{height:24.740615pt;}
.h2_c00161{height:39.243734pt;}
.h4_c00161{height:42.084358pt;}
.h1_c00161{height:52.134354pt;}
.h3_c00161{height:62.812475pt;}
.h0_c00161{height:1122.666667pt;}
.w0_c00161{width:793.333333pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:113.439955pt;}
.x6_c00161{left:127.359949pt;}
.x7_c00161{left:130.719948pt;}
.x3_c00161{left:160.639936pt;}
.x4_c00161{left:355.199858pt;}
.x5_c00161{left:371.519851pt;}
.x2_c00161{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0162a780a9b3780ce2733277.woff2')format("woff");}.ff1_c00162{font-family:ff1_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:ff2_c00162;src:url('chunks/assets/font_b639e536681ad25cf7782e4e.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:0.675781;font-style:normal;font-weight:normal;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_5259921b02355c5a3285f636.woff2')format("woff");}.ff3_c00162{font-family:ff3_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:ff4_c00162;src:url('chunks/assets/font_6d86d35c6b686600de9b7241.woff2')format("woff");}.ff4_c00162{font-family:ff4_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:ff5_c00162;src:url('chunks/assets/font_e242ed169e539d9b5de2da50.woff2')format("woff");}.ff5_c00162{font-family:ff5_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;}
.m0_c00162{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls8_c00162{letter-spacing:0.000000px;}
.ls6_c00162{letter-spacing:0.021238px;}
.ls7_c00162{letter-spacing:0.182640px;}
.ls3_c00162{letter-spacing:0.374281px;}
.ls1_c00162{letter-spacing:3.612719px;}
.ls5_c00162{letter-spacing:5.053618px;}
.ls2_c00162{letter-spacing:7.214877px;}
.ls4_c00162{letter-spacing:7.935297px;}
.ls0_c00162{letter-spacing:10.096556px;}
.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;}
}
.ws1_c00162{word-spacing:-18.021231px;}
.ws3_c00162{word-spacing:-14.939994px;}
.ws0_c00162{word-spacing:-12.434276px;}
.ws2_c00162{word-spacing:-9.437756px;}
.ws4_c00162{word-spacing:-8.786876px;}
.ws5_c00162{word-spacing:0.000000px;}
._11_c00162{margin-left:-9.405167px;}
._1_c00162{margin-left:-1.105374px;}
._0_c00162{width:1.478351px;}
._7_c00162{width:3.024604px;}
._8_c00162{width:4.304858px;}
._c_c00162{width:5.363038px;}
._9_c00162{width:7.101543px;}
._a_c00162{width:8.203697px;}
._5_c00162{width:9.664275px;}
._6_c00162{width:10.702375px;}
._e_c00162{width:12.209419px;}
._f_c00162{width:14.008059px;}
._10_c00162{width:15.017581px;}
._b_c00162{width:16.236805px;}
._4_c00162{width:19.852752px;}
._3_c00162{width:22.284959px;}
._2_c00162{width:23.316591px;}
._d_c00162{width:24.838244px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs6_c00162{font-size:38.879984px;}
.fs5_c00162{font-size:41.759983px;}
.fs4_c00162{font-size:48.239981px;}
.fs0_c00162{font-size:59.759976px;}
.fs1_c00162{font-size:66.239974px;}
.fs3_c00162{font-size:71.999971px;}
.fs2_c00162{font-size:84.239966px;}
.y0_c00162{bottom:0.000000px;}
.y4_c00162{bottom:75.900270px;}
.y3_c00162{bottom:114.060254px;}
.y27_c00162{bottom:133.679947px;}
.y26_c00162{bottom:152.039939px;}
.y25_c00162{bottom:159.599936px;}
.y24_c00162{bottom:184.439926px;}
.y23_c00162{bottom:202.799919px;}
.y22_c00162{bottom:210.359916px;}
.y21_c00162{bottom:222.959911px;}
.y1f_c00162{bottom:282.899887px;}
.y20_c00162{bottom:291.179884px;}
.y1e_c00162{bottom:314.039874px;}
.y1d_c00162{bottom:344.999862px;}
.y1c_c00162{bottom:376.139850px;}
.y1b_c00162{bottom:407.099837px;}
.y19_c00162{bottom:453.179819px;}
.y1a_c00162{bottom:461.459815px;}
.y18_c00162{bottom:484.319806px;}
.y17_c00162{bottom:515.279794px;}
.y16_c00162{bottom:546.419781px;}
.y15_c00162{bottom:577.379769px;}
.y14_c00162{bottom:608.519757px;}
.y13_c00162{bottom:639.479744px;}
.y12_c00162{bottom:670.619732px;}
.y11_c00162{bottom:701.579719px;}
.y10_c00162{bottom:747.659701px;}
.yf_c00162{bottom:778.619689px;}
.ye_c00162{bottom:809.759676px;}
.yd_c00162{bottom:840.719664px;}
.yc_c00162{bottom:871.859651px;}
.yb_c00162{bottom:902.819639px;}
.ya_c00162{bottom:933.959626px;}
.y9_c00162{bottom:964.919614px;}
.y8_c00162{bottom:1003.799598px;}
.y7_c00162{bottom:1032.599587px;}
.y6_c00162{bottom:1079.759568px;}
.y5_c00162{bottom:1115.939554px;}
.y2_c00162{bottom:1176.059530px;}
.y1_c00162{bottom:1196.219522px;}
.h8_c00162{height:25.913662px;}
.h7_c00162{height:27.833192px;}
.ha_c00162{height:39.830258px;}
.h2_c00162{height:44.149201px;}
.h6_c00162{height:47.344903px;}
.h9_c00162{height:58.621969px;}
.h1_c00162{height:58.651148px;}
.h4_c00162{height:66.757473px;}
.h5_c00162{height:70.664034px;}
.h3_c00162{height:84.898091px;}
.h0_c00162{height:1263.000000px;}
.w0_c00162{width:892.500000px;}
.x0_c00162{left:0.000000px;}
.x5_c00162{left:127.620262px;}
.xd_c00162{left:142.199943px;}
.xb_c00162{left:143.279943px;}
.xc_c00162{left:149.939940px;}
.x9_c00162{left:168.119933px;}
.x6_c00162{left:180.719928px;}
.x1_c00162{left:181.799927px;}
.xa_c00162{left:186.479925px;}
.x2_c00162{left:329.039408px;}
.x4_c00162{left:433.979826px;}
.x7_c00162{left:484.919806px;}
.x8_c00162{left:503.279799px;}
.x3_c00162{left:765.359694px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls8_c00162{letter-spacing:0.000000pt;}
.ls6_c00162{letter-spacing:0.018878pt;}
.ls7_c00162{letter-spacing:0.162347pt;}
.ls3_c00162{letter-spacing:0.332694pt;}
.ls1_c00162{letter-spacing:3.211305pt;}
.ls5_c00162{letter-spacing:4.492105pt;}
.ls2_c00162{letter-spacing:6.413224pt;}
.ls4_c00162{letter-spacing:7.053597pt;}
.ls0_c00162{letter-spacing:8.974716pt;}
.ws1_c00162{word-spacing:-16.018872pt;}
.ws3_c00162{word-spacing:-13.279995pt;}
.ws0_c00162{word-spacing:-11.052689pt;}
.ws2_c00162{word-spacing:-8.389117pt;}
.ws4_c00162{word-spacing:-7.810557pt;}
.ws5_c00162{word-spacing:0.000000pt;}
._11_c00162{margin-left:-8.360149pt;}
._1_c00162{margin-left:-0.982555pt;}
._0_c00162{width:1.314090pt;}
._7_c00162{width:2.688537pt;}
._8_c00162{width:3.826541pt;}
._c_c00162{width:4.767145pt;}
._9_c00162{width:6.312483pt;}
._a_c00162{width:7.292175pt;}
._5_c00162{width:8.590467pt;}
._6_c00162{width:9.513222pt;}
._e_c00162{width:10.852817pt;}
._f_c00162{width:12.451608pt;}
._10_c00162{width:13.348961pt;}
._b_c00162{width:14.432715pt;}
._4_c00162{width:17.646891pt;}
._3_c00162{width:19.808852pt;}
._2_c00162{width:20.725858pt;}
._d_c00162{width:22.078439pt;}
.fs6_c00162{font-size:34.559986pt;}
.fs5_c00162{font-size:37.119985pt;}
.fs4_c00162{font-size:42.879983pt;}
.fs0_c00162{font-size:53.119979pt;}
.fs1_c00162{font-size:58.879976pt;}
.fs3_c00162{font-size:63.999974pt;}
.fs2_c00162{font-size:74.879970pt;}
.y0_c00162{bottom:0.000000pt;}
.y4_c00162{bottom:67.466906pt;}
.y3_c00162{bottom:101.386893pt;}
.y27_c00162{bottom:118.826619pt;}
.y26_c00162{bottom:135.146613pt;}
.y25_c00162{bottom:141.866610pt;}
.y24_c00162{bottom:163.946601pt;}
.y23_c00162{bottom:180.266595pt;}
.y22_c00162{bottom:186.986592pt;}
.y21_c00162{bottom:198.186587pt;}
.y1f_c00162{bottom:251.466566pt;}
.y20_c00162{bottom:258.826563pt;}
.y1e_c00162{bottom:279.146555pt;}
.y1d_c00162{bottom:306.666544pt;}
.y1c_c00162{bottom:334.346533pt;}
.y1b_c00162{bottom:361.866522pt;}
.y19_c00162{bottom:402.826506pt;}
.y1a_c00162{bottom:410.186503pt;}
.y18_c00162{bottom:430.506494pt;}
.y17_c00162{bottom:458.026483pt;}
.y16_c00162{bottom:485.706472pt;}
.y15_c00162{bottom:513.226461pt;}
.y14_c00162{bottom:540.906450pt;}
.y13_c00162{bottom:568.426439pt;}
.y12_c00162{bottom:596.106428pt;}
.y11_c00162{bottom:623.626417pt;}
.y10_c00162{bottom:664.586401pt;}
.yf_c00162{bottom:692.106390pt;}
.ye_c00162{bottom:719.786379pt;}
.yd_c00162{bottom:747.306368pt;}
.yc_c00162{bottom:774.986357pt;}
.yb_c00162{bottom:802.506346pt;}
.ya_c00162{bottom:830.186335pt;}
.y9_c00162{bottom:857.706324pt;}
.y8_c00162{bottom:892.266310pt;}
.y7_c00162{bottom:917.866300pt;}
.y6_c00162{bottom:959.786283pt;}
.y5_c00162{bottom:991.946270pt;}
.y2_c00162{bottom:1045.386249pt;}
.y1_c00162{bottom:1063.306241pt;}
.h8_c00162{height:23.034366pt;}
.h7_c00162{height:24.740615pt;}
.ha_c00162{height:35.404673pt;}
.h2_c00162{height:39.243734pt;}
.h6_c00162{height:42.084358pt;}
.h9_c00162{height:52.108417pt;}
.h1_c00162{height:52.134354pt;}
.h4_c00162{height:59.339976pt;}
.h5_c00162{height:62.812475pt;}
.h3_c00162{height:75.464970pt;}
.h0_c00162{height:1122.666667pt;}
.w0_c00162{width:793.333333pt;}
.x0_c00162{left:0.000000pt;}
.x5_c00162{left:113.440233pt;}
.xd_c00162{left:126.399949pt;}
.xb_c00162{left:127.359949pt;}
.xc_c00162{left:133.279947pt;}
.x9_c00162{left:149.439940pt;}
.x6_c00162{left:160.639936pt;}
.x1_c00162{left:161.599935pt;}
.xa_c00162{left:165.759934pt;}
.x2_c00162{left:292.479474pt;}
.x4_c00162{left:385.759846pt;}
.x7_c00162{left:431.039828pt;}
.x8_c00162{left:447.359821pt;}
.x3_c00162{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44793f2d5966cc4db9944ddd.woff2')format("woff");}.ff1_c00163{font-family:ff1_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:ff2_c00163;src:url('chunks/assets/font_0ef8ddcf300dbacdb085e4a5.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:0.675781;font-style:normal;font-weight:normal;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_7ce3a026da70a29fc5663721.woff2')format("woff");}.ff3_c00163{font-family:ff3_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;}
.m0_c00163{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls9_c00163{letter-spacing:0.000000px;}
.ls8_c00163{letter-spacing:0.182640px;}
.ls5_c00163{letter-spacing:0.374281px;}
.ls6_c00163{letter-spacing:0.731040px;}
.ls1_c00163{letter-spacing:1.451459px;}
.ls0_c00163{letter-spacing:2.171879px;}
.ls7_c00163{letter-spacing:2.892299px;}
.ls4_c00163{letter-spacing:8.655717px;}
.ls3_c00163{letter-spacing:11.537395px;}
.ls2_c00163{letter-spacing:12.978295px;}
.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;}
}
.ws0_c00163{word-spacing:-17.999993px;}
.ws1_c00163{word-spacing:-12.434276px;}
.ws2_c00163{word-spacing:-8.786876px;}
.ws3_c00163{word-spacing:0.000000px;}
._f_c00163{margin-left:-9.676354px;}
._1_c00163{margin-left:-1.105374px;}
._0_c00163{width:1.195563px;}
._2_c00163{width:2.712384px;}
._8_c00163{width:4.617814px;}
._9_c00163{width:5.634225px;}
._c_c00163{width:7.167707px;}
._6_c00163{width:8.315603px;}
._7_c00163{width:9.320780px;}
._5_c00163{width:11.484345px;}
._3_c00163{width:12.606085px;}
._4_c00163{width:13.946651px;}
._e_c00163{width:15.047563px;}
._d_c00163{width:19.770290px;}
._b_c00163{width:22.816257px;}
._a_c00163{width:24.364606px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs4_c00163{font-size:38.879984px;}
.fs3_c00163{font-size:48.239981px;}
.fs0_c00163{font-size:59.759976px;}
.fs1_c00163{font-size:66.239974px;}
.fs2_c00163{font-size:71.999971px;}
.y0_c00163{bottom:0.000000px;}
.y4_c00163{bottom:75.899970px;}
.y3_c00163{bottom:114.059954px;}
.y2d_c00163{bottom:133.679947px;}
.y2c_c00163{bottom:152.039939px;}
.y2b_c00163{bottom:159.599936px;}
.y2a_c00163{bottom:170.039932px;}
.y29_c00163{bottom:187.679925px;}
.y28_c00163{bottom:195.239922px;}
.y27_c00163{bottom:205.499918px;}
.y26_c00163{bottom:223.139911px;}
.y25_c00163{bottom:230.699908px;}
.y24_c00163{bottom:242.039903px;}
.y23_c00163{bottom:264.899894px;}
.y22_c00163{bottom:296.039882px;}
.y21_c00163{bottom:326.999869px;}
.y1f_c00163{bottom:373.079851px;}
.y20_c00163{bottom:381.359847px;}
.y1e_c00163{bottom:404.039838px;}
.y1d_c00163{bottom:435.179826px;}
.y1c_c00163{bottom:466.139814px;}
.y1b_c00163{bottom:497.279801px;}
.y1a_c00163{bottom:528.239789px;}
.y19_c00163{bottom:559.379776px;}
.y18_c00163{bottom:590.339764px;}
.y17_c00163{bottom:621.479751px;}
.y16_c00163{bottom:652.439739px;}
.y14_c00163{bottom:683.579727px;}
.y15_c00163{bottom:691.859723px;}
.y13_c00163{bottom:714.539714px;}
.y12_c00163{bottom:745.679702px;}
.y11_c00163{bottom:776.639689px;}
.y10_c00163{bottom:807.779677px;}
.yf_c00163{bottom:838.739665px;}
.ye_c00163{bottom:869.879652px;}
.yd_c00163{bottom:900.839640px;}
.yb_c00163{bottom:931.979627px;}
.yc_c00163{bottom:940.259624px;}
.ya_c00163{bottom:962.939615px;}
.y9_c00163{bottom:994.079602px;}
.y8_c00163{bottom:1025.039590px;}
.y7_c00163{bottom:1056.179578px;}
.y6_c00163{bottom:1087.139565px;}
.y5_c00163{bottom:1118.279553px;}
.y2_c00163{bottom:1157.159537px;}
.y1_c00163{bottom:1196.039522px;}
.h5_c00163{height:25.913662px;}
.h7_c00163{height:39.830258px;}
.h2_c00163{height:44.149201px;}
.h4_c00163{height:47.344903px;}
.h6_c00163{height:58.621969px;}
.h1_c00163{height:58.651148px;}
.h3_c00163{height:70.664034px;}
.h0_c00163{height:1263.000000px;}
.w0_c00163{width:892.500000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:127.619949px;}
.xa_c00163{left:142.199943px;}
.x3_c00163{left:180.719928px;}
.x2_c00163{left:433.979514px;}
.x4_c00163{left:610.919756px;}
.x5_c00163{left:629.279748px;}
.x6_c00163{left:640.979744px;}
.x7_c00163{left:659.339736px;}
.x8_c00163{left:691.019724px;}
.x9_c00163{left:709.379716px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls9_c00163{letter-spacing:0.000000pt;}
.ls8_c00163{letter-spacing:0.162347pt;}
.ls5_c00163{letter-spacing:0.332694pt;}
.ls6_c00163{letter-spacing:0.649813pt;}
.ls1_c00163{letter-spacing:1.290186pt;}
.ls0_c00163{letter-spacing:1.930559pt;}
.ls7_c00163{letter-spacing:2.570932pt;}
.ls4_c00163{letter-spacing:7.693970pt;}
.ls3_c00163{letter-spacing:10.255463pt;}
.ls2_c00163{letter-spacing:11.536262pt;}
.ws0_c00163{word-spacing:-15.999994pt;}
.ws1_c00163{word-spacing:-11.052689pt;}
.ws2_c00163{word-spacing:-7.810557pt;}
.ws3_c00163{word-spacing:0.000000pt;}
._f_c00163{margin-left:-8.601204pt;}
._1_c00163{margin-left:-0.982555pt;}
._0_c00163{width:1.062723pt;}
._2_c00163{width:2.411008pt;}
._8_c00163{width:4.104723pt;}
._9_c00163{width:5.008200pt;}
._c_c00163{width:6.371295pt;}
._6_c00163{width:7.391647pt;}
._7_c00163{width:8.285138pt;}
._5_c00163{width:10.208307pt;}
._3_c00163{width:11.205409pt;}
._4_c00163{width:12.397023pt;}
._e_c00163{width:13.375611pt;}
._d_c00163{width:17.573591pt;}
._b_c00163{width:20.281117pt;}
._a_c00163{width:21.657427pt;}
.fs4_c00163{font-size:34.559986pt;}
.fs3_c00163{font-size:42.879983pt;}
.fs0_c00163{font-size:53.119979pt;}
.fs1_c00163{font-size:58.879976pt;}
.fs2_c00163{font-size:63.999974pt;}
.y0_c00163{bottom:0.000000pt;}
.y4_c00163{bottom:67.466640pt;}
.y3_c00163{bottom:101.386626pt;}
.y2d_c00163{bottom:118.826619pt;}
.y2c_c00163{bottom:135.146613pt;}
.y2b_c00163{bottom:141.866610pt;}
.y2a_c00163{bottom:151.146606pt;}
.y29_c00163{bottom:166.826600pt;}
.y28_c00163{bottom:173.546597pt;}
.y27_c00163{bottom:182.666594pt;}
.y26_c00163{bottom:198.346587pt;}
.y25_c00163{bottom:205.066585pt;}
.y24_c00163{bottom:215.146581pt;}
.y23_c00163{bottom:235.466572pt;}
.y22_c00163{bottom:263.146561pt;}
.y21_c00163{bottom:290.666550pt;}
.y1f_c00163{bottom:331.626534pt;}
.y20_c00163{bottom:338.986531pt;}
.y1e_c00163{bottom:359.146523pt;}
.y1d_c00163{bottom:386.826512pt;}
.y1c_c00163{bottom:414.346501pt;}
.y1b_c00163{bottom:442.026490pt;}
.y1a_c00163{bottom:469.546479pt;}
.y19_c00163{bottom:497.226468pt;}
.y18_c00163{bottom:524.746457pt;}
.y17_c00163{bottom:552.426446pt;}
.y16_c00163{bottom:579.946435pt;}
.y14_c00163{bottom:607.626424pt;}
.y15_c00163{bottom:614.986421pt;}
.y13_c00163{bottom:635.146413pt;}
.y12_c00163{bottom:662.826402pt;}
.y11_c00163{bottom:690.346391pt;}
.y10_c00163{bottom:718.026379pt;}
.yf_c00163{bottom:745.546368pt;}
.ye_c00163{bottom:773.226357pt;}
.yd_c00163{bottom:800.746346pt;}
.yb_c00163{bottom:828.426335pt;}
.yc_c00163{bottom:835.786332pt;}
.ya_c00163{bottom:855.946324pt;}
.y9_c00163{bottom:883.626313pt;}
.y8_c00163{bottom:911.146302pt;}
.y7_c00163{bottom:938.826291pt;}
.y6_c00163{bottom:966.346280pt;}
.y5_c00163{bottom:994.026269pt;}
.y2_c00163{bottom:1028.586255pt;}
.y1_c00163{bottom:1063.146241pt;}
.h5_c00163{height:23.034366pt;}
.h7_c00163{height:35.404673pt;}
.h2_c00163{height:39.243734pt;}
.h4_c00163{height:42.084358pt;}
.h6_c00163{height:52.108417pt;}
.h1_c00163{height:52.134354pt;}
.h3_c00163{height:62.812475pt;}
.h0_c00163{height:1122.666667pt;}
.w0_c00163{width:793.333333pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:113.439955pt;}
.xa_c00163{left:126.399949pt;}
.x3_c00163{left:160.639936pt;}
.x2_c00163{left:385.759568pt;}
.x4_c00163{left:543.039783pt;}
.x5_c00163{left:559.359776pt;}
.x6_c00163{left:569.759772pt;}
.x7_c00163{left:586.079766pt;}
.x8_c00163{left:614.239754pt;}
.x9_c00163{left:630.559748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05f4c578405edc98ad422c1b.woff2')format("woff");}.ff1_c00164{font-family:ff1_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:ff2_c00164;src:url('chunks/assets/font_18f8ff6085cb059d3b4613e5.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:0.675781;font-style:normal;font-weight:normal;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_7f70d1b36246a1a0ab34b363.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;}
.m0_c00164{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls2_c00164{letter-spacing:0.000000px;}
.ls1_c00164{letter-spacing:0.182640px;}
.ls0_c00164{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00164{word-spacing:-14.939994px;}
.ws0_c00164{word-spacing:-12.434276px;}
.ws1_c00164{word-spacing:-8.786876px;}
.ws3_c00164{word-spacing:0.000000px;}
._10_c00164{margin-left:-10.423233px;}
._c_c00164{margin-left:-2.125967px;}
._1_c00164{margin-left:-1.105374px;}
._0_c00164{width:1.478351px;}
._4_c00164{width:3.354215px;}
._5_c00164{width:4.771273px;}
._6_c00164{width:6.381104px;}
._7_c00164{width:7.392662px;}
._a_c00164{width:8.586001px;}
._2_c00164{width:10.841831px;}
._3_c00164{width:11.972029px;}
._f_c00164{width:13.131369px;}
._8_c00164{width:14.171104px;}
._9_c00164{width:15.416018px;}
._b_c00164{width:16.583930px;}
._d_c00164{width:32.489942px;}
._e_c00164{width:33.862859px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs4_c00164{font-size:38.879984px;}
.fs3_c00164{font-size:48.239981px;}
.fs0_c00164{font-size:59.759976px;}
.fs1_c00164{font-size:66.239974px;}
.fs2_c00164{font-size:71.999971px;}
.y0_c00164{bottom:0.000000px;}
.y4_c00164{bottom:75.900270px;}
.y3_c00164{bottom:114.060254px;}
.y26_c00164{bottom:133.680247px;}
.y25_c00164{bottom:141.240244px;}
.y24_c00164{bottom:152.579939px;}
.y23_c00164{bottom:173.639931px;}
.y22_c00164{bottom:204.779918px;}
.y21_c00164{bottom:235.739906px;}
.y20_c00164{bottom:281.819887px;}
.y1f_c00164{bottom:312.779875px;}
.y1e_c00164{bottom:343.919862px;}
.y1d_c00164{bottom:374.879850px;}
.y1c_c00164{bottom:406.019838px;}
.y1b_c00164{bottom:436.979825px;}
.y1a_c00164{bottom:468.119813px;}
.y19_c00164{bottom:499.079800px;}
.y18_c00164{bottom:530.219788px;}
.y17_c00164{bottom:561.179776px;}
.y15_c00164{bottom:607.259757px;}
.y16_c00164{bottom:615.539754px;}
.y14_c00164{bottom:638.399745px;}
.y13_c00164{bottom:669.359732px;}
.y12_c00164{bottom:700.499720px;}
.y11_c00164{bottom:731.459707px;}
.y10_c00164{bottom:762.599695px;}
.yf_c00164{bottom:793.559683px;}
.ye_c00164{bottom:824.699670px;}
.yd_c00164{bottom:855.659658px;}
.yc_c00164{bottom:886.799645px;}
.yb_c00164{bottom:917.759633px;}
.ya_c00164{bottom:948.719621px;}
.y9_c00164{bottom:994.799602px;}
.y8_c00164{bottom:1025.939590px;}
.y7_c00164{bottom:1056.899577px;}
.y6_c00164{bottom:1088.039565px;}
.y5_c00164{bottom:1118.999552px;}
.y2_c00164{bottom:1176.059530px;}
.y1_c00164{bottom:1196.219522px;}
.h6_c00164{height:25.913662px;}
.h2_c00164{height:44.149201px;}
.h4_c00164{height:47.344903px;}
.h7_c00164{height:58.621969px;}
.h1_c00164{height:58.651148px;}
.h5_c00164{height:70.628878px;}
.h3_c00164{height:70.664034px;}
.h0_c00164{height:1263.000000px;}
.w0_c00164{width:892.500000px;}
.x0_c00164{left:0.000000px;}
.x5_c00164{left:127.620262px;}
.x9_c00164{left:142.199943px;}
.x6_c00164{left:180.719930px;}
.x1_c00164{left:181.799927px;}
.x7_c00164{left:259.019896px;}
.x8_c00164{left:277.379889px;}
.x2_c00164{left:329.039408px;}
.x4_c00164{left:433.979826px;}
.x3_c00164{left:765.359694px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls2_c00164{letter-spacing:0.000000pt;}
.ls1_c00164{letter-spacing:0.162347pt;}
.ls0_c00164{letter-spacing:0.332694pt;}
.ws2_c00164{word-spacing:-13.279995pt;}
.ws0_c00164{word-spacing:-11.052689pt;}
.ws1_c00164{word-spacing:-7.810557pt;}
.ws3_c00164{word-spacing:0.000000pt;}
._10_c00164{margin-left:-9.265096pt;}
._c_c00164{margin-left:-1.889748pt;}
._1_c00164{margin-left:-0.982555pt;}
._0_c00164{width:1.314090pt;}
._4_c00164{width:2.981524pt;}
._5_c00164{width:4.241131pt;}
._6_c00164{width:5.672092pt;}
._7_c00164{width:6.571255pt;}
._a_c00164{width:7.632001pt;}
._2_c00164{width:9.637183pt;}
._3_c00164{width:10.641804pt;}
._f_c00164{width:11.672328pt;}
._8_c00164{width:12.596537pt;}
._9_c00164{width:13.703127pt;}
._b_c00164{width:14.741271pt;}
._d_c00164{width:28.879949pt;}
._e_c00164{width:30.100320pt;}
.fs4_c00164{font-size:34.559986pt;}
.fs3_c00164{font-size:42.879983pt;}
.fs0_c00164{font-size:53.119979pt;}
.fs1_c00164{font-size:58.879976pt;}
.fs2_c00164{font-size:63.999974pt;}
.y0_c00164{bottom:0.000000pt;}
.y4_c00164{bottom:67.466906pt;}
.y3_c00164{bottom:101.386893pt;}
.y26_c00164{bottom:118.826886pt;}
.y25_c00164{bottom:125.546883pt;}
.y24_c00164{bottom:135.626612pt;}
.y23_c00164{bottom:154.346605pt;}
.y22_c00164{bottom:182.026594pt;}
.y21_c00164{bottom:209.546583pt;}
.y20_c00164{bottom:250.506566pt;}
.y1f_c00164{bottom:278.026555pt;}
.y1e_c00164{bottom:305.706544pt;}
.y1d_c00164{bottom:333.226533pt;}
.y1c_c00164{bottom:360.906522pt;}
.y1b_c00164{bottom:388.426511pt;}
.y1a_c00164{bottom:416.106500pt;}
.y19_c00164{bottom:443.626489pt;}
.y18_c00164{bottom:471.306478pt;}
.y17_c00164{bottom:498.826467pt;}
.y15_c00164{bottom:539.786451pt;}
.y16_c00164{bottom:547.146448pt;}
.y14_c00164{bottom:567.466440pt;}
.y13_c00164{bottom:594.986429pt;}
.y12_c00164{bottom:622.666418pt;}
.y11_c00164{bottom:650.186407pt;}
.y10_c00164{bottom:677.866396pt;}
.yf_c00164{bottom:705.386385pt;}
.ye_c00164{bottom:733.066373pt;}
.yd_c00164{bottom:760.586362pt;}
.yc_c00164{bottom:788.266351pt;}
.yb_c00164{bottom:815.786340pt;}
.ya_c00164{bottom:843.306329pt;}
.y9_c00164{bottom:884.266313pt;}
.y8_c00164{bottom:911.946302pt;}
.y7_c00164{bottom:939.466291pt;}
.y6_c00164{bottom:967.146280pt;}
.y5_c00164{bottom:994.666269pt;}
.y2_c00164{bottom:1045.386249pt;}
.y1_c00164{bottom:1063.306241pt;}
.h6_c00164{height:23.034366pt;}
.h2_c00164{height:39.243734pt;}
.h4_c00164{height:42.084358pt;}
.h7_c00164{height:52.108417pt;}
.h1_c00164{height:52.134354pt;}
.h5_c00164{height:62.781225pt;}
.h3_c00164{height:62.812475pt;}
.h0_c00164{height:1122.666667pt;}
.w0_c00164{width:793.333333pt;}
.x0_c00164{left:0.000000pt;}
.x5_c00164{left:113.440233pt;}
.x9_c00164{left:126.399949pt;}
.x6_c00164{left:160.639938pt;}
.x1_c00164{left:161.599935pt;}
.x7_c00164{left:230.239908pt;}
.x8_c00164{left:246.559901pt;}
.x2_c00164{left:292.479474pt;}
.x4_c00164{left:385.759846pt;}
.x3_c00164{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca49603ef5e3691c5057c2d3.woff2')format("woff");}.ff1_c00165{font-family:ff1_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:ff2_c00165;src:url('chunks/assets/font_b639e536681ad25cf7782e4e.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:0.675781;font-style:normal;font-weight:normal;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_23b3273b949fbf76b0c70e6f.woff2')format("woff");}.ff3_c00165{font-family:ff3_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;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_4899533a6580e9cc598a6c36.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00165;src:url('chunks/assets/font_6d86d35c6b686600de9b7241.woff2')format("woff");}.ff5_c00165{font-family:ff5_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls2_c00165{letter-spacing:0.000000px;}
.ls1_c00165{letter-spacing:0.010620px;}
.ls0_c00165{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00165{word-spacing:-12.434276px;}
.ws1_c00165{word-spacing:-9.437756px;}
.ws2_c00165{word-spacing:0.000000px;}
._11_c00165{margin-left:-9.675661px;}
._6_c00165{margin-left:-2.283203px;}
._1_c00165{margin-left:-1.105374px;}
._0_c00165{width:1.195563px;}
._3_c00165{width:3.120461px;}
._4_c00165{width:4.598952px;}
._a_c00165{width:5.633532px;}
._2_c00165{width:7.229147px;}
._5_c00165{width:8.769946px;}
._8_c00165{width:10.020131px;}
._9_c00165{width:11.039014px;}
._d_c00165{width:13.627795px;}
._e_c00165{width:15.654107px;}
._12_c00165{width:17.231471px;}
._7_c00165{width:19.093663px;}
._f_c00165{width:20.249604px;}
._c_c00165{width:25.191232px;}
._b_c00165{width:26.339231px;}
._10_c00165{width:27.822497px;}
.fc0_c00165{color:rgb(0,0,0);}
.fs5_c00165{font-size:41.759983px;}
.fs3_c00165{font-size:48.239981px;}
.fs0_c00165{font-size:59.759976px;}
.fs1_c00165{font-size:66.239974px;}
.fs2_c00165{font-size:71.999971px;}
.fs4_c00165{font-size:84.239966px;}
.y0_c00165{bottom:0.000000px;}
.y4_c00165{bottom:75.899970px;}
.y3_c00165{bottom:114.059954px;}
.y26_c00165{bottom:133.679947px;}
.y25_c00165{bottom:151.679939px;}
.y24_c00165{bottom:169.859932px;}
.y23_c00165{bottom:177.419929px;}
.y22_c00165{bottom:190.019924px;}
.y21_c00165{bottom:235.559906px;}
.y20_c00165{bottom:266.699893px;}
.y1f_c00165{bottom:297.659881px;}
.y1e_c00165{bottom:328.619869px;}
.y1d_c00165{bottom:374.699850px;}
.y1c_c00165{bottom:405.839838px;}
.y1b_c00165{bottom:436.799825px;}
.y1a_c00165{bottom:466.319813px;}
.y19_c00165{bottom:494.759802px;}
.y18_c00165{bottom:523.379791px;}
.y17_c00165{bottom:561.179776px;}
.y16_c00165{bottom:606.359757px;}
.y15_c00165{bottom:637.499745px;}
.y14_c00165{bottom:668.459733px;}
.y13_c00165{bottom:714.539714px;}
.y12_c00165{bottom:745.679702px;}
.y11_c00165{bottom:776.639689px;}
.y10_c00165{bottom:807.779677px;}
.yf_c00165{bottom:838.739665px;}
.ye_c00165{bottom:869.879652px;}
.yd_c00165{bottom:900.839640px;}
.yb_c00165{bottom:931.979627px;}
.yc_c00165{bottom:940.259624px;}
.ya_c00165{bottom:962.939615px;}
.y9_c00165{bottom:994.079602px;}
.y8_c00165{bottom:1025.039590px;}
.y7_c00165{bottom:1056.179578px;}
.y6_c00165{bottom:1087.139565px;}
.y5_c00165{bottom:1118.279553px;}
.y2_c00165{bottom:1157.159537px;}
.y1_c00165{bottom:1196.039522px;}
.h8_c00165{height:27.833192px;}
.h9_c00165{height:39.830258px;}
.h2_c00165{height:44.149201px;}
.h4_c00165{height:47.344903px;}
.h1_c00165{height:58.651148px;}
.h6_c00165{height:66.757473px;}
.h3_c00165{height:70.628878px;}
.h5_c00165{height:70.664034px;}
.h7_c00165{height:84.898091px;}
.h0_c00165{height:1263.000000px;}
.w0_c00165{width:892.500000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:127.619949px;}
.x7_c00165{left:143.279943px;}
.x8_c00165{left:151.379939px;}
.x3_c00165{left:180.719928px;}
.x4_c00165{left:315.719874px;}
.x5_c00165{left:334.079866px;}
.x2_c00165{left:433.979514px;}
.x6_c00165{left:648.539741px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls2_c00165{letter-spacing:0.000000pt;}
.ls1_c00165{letter-spacing:0.009440pt;}
.ls0_c00165{letter-spacing:0.332694pt;}
.ws0_c00165{word-spacing:-11.052689pt;}
.ws1_c00165{word-spacing:-8.389117pt;}
.ws2_c00165{word-spacing:0.000000pt;}
._11_c00165{margin-left:-8.600588pt;}
._6_c00165{margin-left:-2.029513pt;}
._1_c00165{margin-left:-0.982555pt;}
._0_c00165{width:1.062723pt;}
._3_c00165{width:2.773743pt;}
._4_c00165{width:4.087958pt;}
._a_c00165{width:5.007584pt;}
._2_c00165{width:6.425908pt;}
._5_c00165{width:7.795508pt;}
._8_c00165{width:8.906783pt;}
._9_c00165{width:9.812457pt;}
._d_c00165{width:12.113595pt;}
._e_c00165{width:13.914762pt;}
._12_c00165{width:15.316863pt;}
._7_c00165{width:16.972145pt;}
._f_c00165{width:17.999648pt;}
._c_c00165{width:22.392206pt;}
._b_c00165{width:23.412650pt;}
._10_c00165{width:24.731109pt;}
.fs5_c00165{font-size:37.119985pt;}
.fs3_c00165{font-size:42.879983pt;}
.fs0_c00165{font-size:53.119979pt;}
.fs1_c00165{font-size:58.879976pt;}
.fs2_c00165{font-size:63.999974pt;}
.fs4_c00165{font-size:74.879970pt;}
.y0_c00165{bottom:0.000000pt;}
.y4_c00165{bottom:67.466640pt;}
.y3_c00165{bottom:101.386626pt;}
.y26_c00165{bottom:118.826619pt;}
.y25_c00165{bottom:134.826613pt;}
.y24_c00165{bottom:150.986606pt;}
.y23_c00165{bottom:157.706604pt;}
.y22_c00165{bottom:168.906599pt;}
.y21_c00165{bottom:209.386583pt;}
.y20_c00165{bottom:237.066572pt;}
.y1f_c00165{bottom:264.586561pt;}
.y1e_c00165{bottom:292.106550pt;}
.y1d_c00165{bottom:333.066533pt;}
.y1c_c00165{bottom:360.746522pt;}
.y1b_c00165{bottom:388.266511pt;}
.y1a_c00165{bottom:414.506501pt;}
.y19_c00165{bottom:439.786491pt;}
.y18_c00165{bottom:465.226481pt;}
.y17_c00165{bottom:498.826467pt;}
.y16_c00165{bottom:538.986451pt;}
.y15_c00165{bottom:566.666440pt;}
.y14_c00165{bottom:594.186429pt;}
.y13_c00165{bottom:635.146413pt;}
.y12_c00165{bottom:662.826402pt;}
.y11_c00165{bottom:690.346391pt;}
.y10_c00165{bottom:718.026379pt;}
.yf_c00165{bottom:745.546368pt;}
.ye_c00165{bottom:773.226357pt;}
.yd_c00165{bottom:800.746346pt;}
.yb_c00165{bottom:828.426335pt;}
.yc_c00165{bottom:835.786332pt;}
.ya_c00165{bottom:855.946324pt;}
.y9_c00165{bottom:883.626313pt;}
.y8_c00165{bottom:911.146302pt;}
.y7_c00165{bottom:938.826291pt;}
.y6_c00165{bottom:966.346280pt;}
.y5_c00165{bottom:994.026269pt;}
.y2_c00165{bottom:1028.586255pt;}
.y1_c00165{bottom:1063.146241pt;}
.h8_c00165{height:24.740615pt;}
.h9_c00165{height:35.404673pt;}
.h2_c00165{height:39.243734pt;}
.h4_c00165{height:42.084358pt;}
.h1_c00165{height:52.134354pt;}
.h6_c00165{height:59.339976pt;}
.h3_c00165{height:62.781225pt;}
.h5_c00165{height:62.812475pt;}
.h7_c00165{height:75.464970pt;}
.h0_c00165{height:1122.666667pt;}
.w0_c00165{width:793.333333pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:113.439955pt;}
.x7_c00165{left:127.359949pt;}
.x8_c00165{left:134.559946pt;}
.x3_c00165{left:160.639936pt;}
.x4_c00165{left:280.639888pt;}
.x5_c00165{left:296.959881pt;}
.x2_c00165{left:385.759568pt;}
.x6_c00165{left:576.479769pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_005ca17e30b67661e2175063.woff2')format("woff");}.ff1_c00166{font-family:ff1_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:ff2_c00166;src:url('chunks/assets/font_1e8192903282d2715a30f097.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:0.675781;font-style:normal;font-weight:normal;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_655c364913eb31cac2c2ef8f.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_16f40a13175a5d4bd16d0ccd.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;}
.m0_c00166{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00166{word-spacing:0.000000px;}
._4_c00166{margin-left:-2.139990px;}
._1_c00166{margin-left:-1.105374px;}
._0_c00166{width:1.478351px;}
._5_c00166{width:2.892325px;}
._3_c00166{width:4.322636px;}
._9_c00166{width:5.504758px;}
._a_c00166{width:6.507477px;}
._2_c00166{width:8.000235px;}
._e_c00166{width:9.076186px;}
._6_c00166{width:10.202973px;}
._7_c00166{width:11.424055px;}
._8_c00166{width:12.816192px;}
._d_c00166{width:16.261500px;}
._b_c00166{width:22.251747px;}
._c_c00166{width:23.343112px;}
.fc1_c00166{color:rgb(0,128,0);}
.fc0_c00166{color:rgb(0,0,0);}
.fs0_c00166{font-size:59.759976px;}
.fs1_c00166{font-size:66.239974px;}
.fs2_c00166{font-size:71.999971px;}
.fs3_c00166{font-size:77.759969px;}
.y0_c00166{bottom:0.000000px;}
.y4_c00166{bottom:75.900270px;}
.y3_c00166{bottom:114.060254px;}
.y19_c00166{bottom:396.119842px;}
.y18_c00166{bottom:442.199823px;}
.y17_c00166{bottom:473.159811px;}
.y16_c00166{bottom:504.299798px;}
.y15_c00166{bottom:535.259786px;}
.y14_c00166{bottom:581.339767px;}
.y13_c00166{bottom:612.299755px;}
.y12_c00166{bottom:643.439743px;}
.y11_c00166{bottom:674.399730px;}
.y10_c00166{bottom:720.479712px;}
.yf_c00166{bottom:751.619699px;}
.ye_c00166{bottom:782.579687px;}
.yd_c00166{bottom:813.719675px;}
.yc_c00166{bottom:859.799656px;}
.yb_c00166{bottom:890.759644px;}
.ya_c00166{bottom:942.779623px;}
.y9_c00166{bottom:973.919610px;}
.y8_c00166{bottom:1004.879598px;}
.y7_c00166{bottom:1056.899577px;}
.y6_c00166{bottom:1088.039565px;}
.y5_c00166{bottom:1118.999552px;}
.y2_c00166{bottom:1176.059530px;}
.y1_c00166{bottom:1196.219522px;}
.h2_c00166{height:44.149201px;}
.h4_c00166{height:58.319977px;}
.h1_c00166{height:58.651148px;}
.h5_c00166{height:70.628878px;}
.h3_c00166{height:70.664034px;}
.h0_c00166{height:1263.000000px;}
.w0_c00166{width:892.500000px;}
.x0_c00166{left:0.000000px;}
.x5_c00166{left:127.620262px;}
.x6_c00166{left:180.720080px;}
.x1_c00166{left:181.799927px;}
.x2_c00166{left:329.039408px;}
.x7_c00166{left:382.139847px;}
.x8_c00166{left:390.419844px;}
.x4_c00166{left:433.979826px;}
.x3_c00166{left:765.359694px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
._4_c00166{margin-left:-1.902214pt;}
._1_c00166{margin-left:-0.982555pt;}
._0_c00166{width:1.314090pt;}
._5_c00166{width:2.570956pt;}
._3_c00166{width:3.842343pt;}
._9_c00166{width:4.893118pt;}
._a_c00166{width:5.784424pt;}
._2_c00166{width:7.111320pt;}
._e_c00166{width:8.067721pt;}
._6_c00166{width:9.069310pt;}
._7_c00166{width:10.154716pt;}
._8_c00166{width:11.392170pt;}
._d_c00166{width:14.454667pt;}
._b_c00166{width:19.779331pt;}
._c_c00166{width:20.749433pt;}
.fs0_c00166{font-size:53.119979pt;}
.fs1_c00166{font-size:58.879976pt;}
.fs2_c00166{font-size:63.999974pt;}
.fs3_c00166{font-size:69.119972pt;}
.y0_c00166{bottom:0.000000pt;}
.y4_c00166{bottom:67.466906pt;}
.y3_c00166{bottom:101.386893pt;}
.y19_c00166{bottom:352.106526pt;}
.y18_c00166{bottom:393.066509pt;}
.y17_c00166{bottom:420.586498pt;}
.y16_c00166{bottom:448.266487pt;}
.y15_c00166{bottom:475.786476pt;}
.y14_c00166{bottom:516.746460pt;}
.y13_c00166{bottom:544.266449pt;}
.y12_c00166{bottom:571.946438pt;}
.y11_c00166{bottom:599.466427pt;}
.y10_c00166{bottom:640.426410pt;}
.yf_c00166{bottom:668.106399pt;}
.ye_c00166{bottom:695.626388pt;}
.yd_c00166{bottom:723.306377pt;}
.yc_c00166{bottom:764.266361pt;}
.yb_c00166{bottom:791.786350pt;}
.ya_c00166{bottom:838.026331pt;}
.y9_c00166{bottom:865.706320pt;}
.y8_c00166{bottom:893.226309pt;}
.y7_c00166{bottom:939.466291pt;}
.y6_c00166{bottom:967.146280pt;}
.y5_c00166{bottom:994.666269pt;}
.y2_c00166{bottom:1045.386249pt;}
.y1_c00166{bottom:1063.306241pt;}
.h2_c00166{height:39.243734pt;}
.h4_c00166{height:51.839979pt;}
.h1_c00166{height:52.134354pt;}
.h5_c00166{height:62.781225pt;}
.h3_c00166{height:62.812475pt;}
.h0_c00166{height:1122.666667pt;}
.w0_c00166{width:793.333333pt;}
.x0_c00166{left:0.000000pt;}
.x5_c00166{left:113.440233pt;}
.x6_c00166{left:160.640071pt;}
.x1_c00166{left:161.599935pt;}
.x2_c00166{left:292.479474pt;}
.x7_c00166{left:339.679864pt;}
.x8_c00166{left:347.039861pt;}
.x4_c00166{left:385.759846pt;}
.x3_c00166{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c143c33d002544ac138a61bf.woff2')format("woff");}.ff1_c00167{font-family:ff1_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:ff2_c00167;src:url('chunks/assets/font_b14dba1513fb8ac8d53fdc72.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:0.675781;font-style:normal;font-weight:normal;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_2bbc964ce5eeaf02d5be928a.woff2')format("woff");}.ff3_c00167{font-family:ff3_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:ff4_c00167;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.012664px;}
.ls1_c00167{letter-spacing:0.153901px;}
.ls2_c00167{letter-spacing:0.182640px;}
.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;}
}
.ws0_c00167{word-spacing:-10.452660px;}
.ws1_c00167{word-spacing:-8.786876px;}
.ws2_c00167{word-spacing:0.000000px;}
._2_c00167{margin-left:-12.716934px;}
._1_c00167{margin-left:-1.105374px;}
._0_c00167{width:1.195563px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs4_c00167{font-size:38.879984px;}
.fs3_c00167{font-size:41.759983px;}
.fs0_c00167{font-size:59.759976px;}
.fs1_c00167{font-size:66.239974px;}
.fs2_c00167{font-size:71.999971px;}
.y0_c00167{bottom:0.000000px;}
.y4_c00167{bottom:75.719970px;}
.y3_c00167{bottom:113.879954px;}
.yd_c00167{bottom:133.139947px;}
.yc_c00167{bottom:150.779940px;}
.yb_c00167{bottom:158.339937px;}
.ya_c00167{bottom:169.679932px;}
.y9_c00167{bottom:246.359901px;}
.y8_c00167{bottom:275.159890px;}
.y6_c00167{bottom:318.899872px;}
.y7_c00167{bottom:326.459869px;}
.y5_c00167{bottom:359.219856px;}
.y2_c00167{bottom:1156.979537px;}
.y1_c00167{bottom:1195.859522px;}
.h7_c00167{height:25.913662px;}
.h5_c00167{height:40.985140px;}
.h2_c00167{height:44.149201px;}
.h1_c00167{height:58.651148px;}
.h4_c00167{height:65.010911px;}
.h6_c00167{height:66.757473px;}
.h3_c00167{height:70.664034px;}
.h0_c00167{height:1263.000000px;}
.w0_c00167{width:892.500000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:127.799949px;}
.x7_c00167{left:142.379943px;}
.x4_c00167{left:168.119933px;}
.x2_c00167{left:434.159514px;}
.x5_c00167{left:709.559716px;}
.x6_c00167{left:725.219710px;}
.x3_c00167{left:741.959703px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.011257pt;}
.ls1_c00167{letter-spacing:0.136801pt;}
.ls2_c00167{letter-spacing:0.162347pt;}
.ws0_c00167{word-spacing:-9.291253pt;}
.ws1_c00167{word-spacing:-7.810557pt;}
.ws2_c00167{word-spacing:0.000000pt;}
._2_c00167{margin-left:-11.303941pt;}
._1_c00167{margin-left:-0.982555pt;}
._0_c00167{width:1.062723pt;}
.fs4_c00167{font-size:34.559986pt;}
.fs3_c00167{font-size:37.119985pt;}
.fs0_c00167{font-size:53.119979pt;}
.fs1_c00167{font-size:58.879976pt;}
.fs2_c00167{font-size:63.999974pt;}
.y0_c00167{bottom:0.000000pt;}
.y4_c00167{bottom:67.306640pt;}
.y3_c00167{bottom:101.226626pt;}
.yd_c00167{bottom:118.346619pt;}
.yc_c00167{bottom:134.026613pt;}
.yb_c00167{bottom:140.746610pt;}
.ya_c00167{bottom:150.826606pt;}
.y9_c00167{bottom:218.986579pt;}
.y8_c00167{bottom:244.586569pt;}
.y6_c00167{bottom:283.466553pt;}
.y7_c00167{bottom:290.186551pt;}
.y5_c00167{bottom:319.306539pt;}
.y2_c00167{bottom:1028.426255pt;}
.y1_c00167{bottom:1062.986241pt;}
.h7_c00167{height:23.034366pt;}
.h5_c00167{height:36.431235pt;}
.h2_c00167{height:39.243734pt;}
.h1_c00167{height:52.134354pt;}
.h4_c00167{height:57.787477pt;}
.h6_c00167{height:59.339976pt;}
.h3_c00167{height:62.812475pt;}
.h0_c00167{height:1122.666667pt;}
.w0_c00167{width:793.333333pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:113.599955pt;}
.x7_c00167{left:126.559949pt;}
.x4_c00167{left:149.439940pt;}
.x2_c00167{left:385.919568pt;}
.x5_c00167{left:630.719748pt;}
.x6_c00167{left:644.639742pt;}
.x3_c00167{left:659.519736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ac285102ba54e3383ddd61c.woff2')format("woff");}.ff1_c00168{font-family:ff1_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:ff2_c00168;src:url('chunks/assets/font_ff065c085cc3283345d08035.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:0.675781;font-style:normal;font-weight:normal;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_df12c403c2b9caccfff0d96e.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.311035;font-style:normal;font-weight:normal;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_6d86d35c6b686600de9b7241.woff2')format("woff");}.ff4_c00168{font-family:ff4_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:ff5_c00168;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00168;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls2_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.163552px;}
.ls1_c00168{letter-spacing:54.908378px;}
.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:0.000000px;}
._5_c00168{margin-left:-2.139990px;}
._1_c00168{margin-left:-1.105374px;}
._0_c00168{width:1.478351px;}
._4_c00168{width:2.827445px;}
._6_c00168{width:4.367178px;}
._9_c00168{width:7.165258px;}
._a_c00168{width:8.671365px;}
._7_c00168{width:10.296104px;}
._8_c00168{width:11.330648px;}
._2_c00168{width:30.552033px;}
._3_c00168{width:32.561382px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs0_c00168{font-size:59.759976px;}
.fs1_c00168{font-size:66.239974px;}
.fs2_c00168{font-size:71.999971px;}
.y0_c00168{bottom:0.000000px;}
.y4_c00168{bottom:75.900270px;}
.y3_c00168{bottom:114.060254px;}
.y24_c00168{bottom:147.359941px;}
.y23_c00168{bottom:178.499929px;}
.y22_c00168{bottom:224.579910px;}
.y21_c00168{bottom:255.539898px;}
.y20_c00168{bottom:276.419889px;}
.y1f_c00168{bottom:307.199877px;}
.y1e_c00168{bottom:338.339865px;}
.y1d_c00168{bottom:369.299852px;}
.y1c_c00168{bottom:400.439840px;}
.y1b_c00168{bottom:431.399827px;}
.y1a_c00168{bottom:462.539815px;}
.y19_c00168{bottom:493.499803px;}
.y18_c00168{bottom:524.639790px;}
.y17_c00168{bottom:555.599778px;}
.y16_c00168{bottom:586.739765px;}
.y15_c00168{bottom:617.699753px;}
.y14_c00168{bottom:648.839740px;}
.y13_c00168{bottom:679.799728px;}
.y12_c00168{bottom:710.939716px;}
.y11_c00168{bottom:741.899703px;}
.y10_c00168{bottom:773.039691px;}
.yf_c00168{bottom:803.639679px;}
.ye_c00168{bottom:835.139666px;}
.yd_c00168{bottom:866.099654px;}
.yc_c00168{bottom:897.239641px;}
.yb_c00168{bottom:928.199629px;}
.ya_c00168{bottom:959.339616px;}
.y9_c00168{bottom:990.299604px;}
.y8_c00168{bottom:1021.439591px;}
.y7_c00168{bottom:1052.039579px;}
.y6_c00168{bottom:1091.279863px;}
.y5_c00168{bottom:1120.079852px;}
.y2_c00168{bottom:1176.059530px;}
.y1_c00168{bottom:1196.219522px;}
.h2_c00168{height:44.149201px;}
.h1_c00168{height:58.651148px;}
.h3_c00168{height:66.757473px;}
.h6_c00168{height:70.664034px;}
.h4_c00168{height:72.562471px;}
.h5_c00168{height:75.093720px;}
.h0_c00168{height:1263.000000px;}
.w0_c00168{width:892.500000px;}
.x0_c00168{left:0.000000px;}
.x5_c00168{left:127.620262px;}
.x6_c00168{left:154.619938px;}
.x1_c00168{left:181.799927px;}
.x2_c00168{left:329.039408px;}
.x4_c00168{left:433.979826px;}
.x3_c00168{left:765.359694px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls2_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.145380pt;}
.ls1_c00168{letter-spacing:48.807447pt;}
.ws0_c00168{word-spacing:0.000000pt;}
._5_c00168{margin-left:-1.902214pt;}
._1_c00168{margin-left:-0.982555pt;}
._0_c00168{width:1.314090pt;}
._4_c00168{width:2.513285pt;}
._6_c00168{width:3.881936pt;}
._9_c00168{width:6.369118pt;}
._a_c00168{width:7.707880pt;}
._7_c00168{width:9.152092pt;}
._8_c00168{width:10.071687pt;}
._2_c00168{width:27.157363pt;}
._3_c00168{width:28.943450pt;}
.fs0_c00168{font-size:53.119979pt;}
.fs1_c00168{font-size:58.879976pt;}
.fs2_c00168{font-size:63.999974pt;}
.y0_c00168{bottom:0.000000pt;}
.y4_c00168{bottom:67.466906pt;}
.y3_c00168{bottom:101.386893pt;}
.y24_c00168{bottom:130.986614pt;}
.y23_c00168{bottom:158.666603pt;}
.y22_c00168{bottom:199.626587pt;}
.y21_c00168{bottom:227.146576pt;}
.y20_c00168{bottom:245.706568pt;}
.y1f_c00168{bottom:273.066557pt;}
.y1e_c00168{bottom:300.746546pt;}
.y1d_c00168{bottom:328.266535pt;}
.y1c_c00168{bottom:355.946524pt;}
.y1b_c00168{bottom:383.466513pt;}
.y1a_c00168{bottom:411.146502pt;}
.y19_c00168{bottom:438.666491pt;}
.y18_c00168{bottom:466.346480pt;}
.y17_c00168{bottom:493.866469pt;}
.y16_c00168{bottom:521.546458pt;}
.y15_c00168{bottom:549.066447pt;}
.y14_c00168{bottom:576.746436pt;}
.y13_c00168{bottom:604.266425pt;}
.y12_c00168{bottom:631.946414pt;}
.y11_c00168{bottom:659.466403pt;}
.y10_c00168{bottom:687.146392pt;}
.yf_c00168{bottom:714.346381pt;}
.ye_c00168{bottom:742.346370pt;}
.yd_c00168{bottom:769.866359pt;}
.yc_c00168{bottom:797.546348pt;}
.yb_c00168{bottom:825.066337pt;}
.ya_c00168{bottom:852.746326pt;}
.y9_c00168{bottom:880.266315pt;}
.y8_c00168{bottom:907.946303pt;}
.y7_c00168{bottom:935.146293pt;}
.y6_c00168{bottom:970.026545pt;}
.y5_c00168{bottom:995.626535pt;}
.y2_c00168{bottom:1045.386249pt;}
.y1_c00168{bottom:1063.306241pt;}
.h2_c00168{height:39.243734pt;}
.h1_c00168{height:52.134354pt;}
.h3_c00168{height:59.339976pt;}
.h6_c00168{height:62.812475pt;}
.h4_c00168{height:64.499974pt;}
.h5_c00168{height:66.749973pt;}
.h0_c00168{height:1122.666667pt;}
.w0_c00168{width:793.333333pt;}
.x0_c00168{left:0.000000pt;}
.x5_c00168{left:113.440233pt;}
.x6_c00168{left:137.439945pt;}
.x1_c00168{left:161.599935pt;}
.x2_c00168{left:292.479474pt;}
.x4_c00168{left:385.759846pt;}
.x3_c00168{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2eccc8e011779d9f37cd9d82.woff2')format("woff");}.ff1_c00169{font-family:ff1_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:ff2_c00169;src:url('chunks/assets/font_8364023649f519df43925b7d.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:0.675781;font-style:normal;font-weight:normal;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_eb6c32b561125f39a9baefa3.woff2')format("woff");}.ff3_c00169{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls1_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.009900px;}
.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;}
}
.ws0_c00169{word-spacing:0.000000px;}
._c_c00169{margin-left:-3.118496px;}
._1_c00169{margin-left:-1.105374px;}
._0_c00169{width:1.195563px;}
._2_c00169{width:3.343484px;}
._3_c00169{width:4.440727px;}
._9_c00169{width:5.834189px;}
._6_c00169{width:7.055417px;}
._7_c00169{width:8.117543px;}
._b_c00169{width:9.129526px;}
._a_c00169{width:10.166146px;}
._e_c00169{width:11.424061px;}
._d_c00169{width:12.953482px;}
._4_c00169{width:14.327070px;}
._5_c00169{width:15.751849px;}
._8_c00169{width:19.886126px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs0_c00169{font-size:59.759976px;}
.fs1_c00169{font-size:66.239974px;}
.fs2_c00169{font-size:71.999971px;}
.y0_c00169{bottom:0.000000px;}
.y4_c00169{bottom:75.719970px;}
.y3_c00169{bottom:113.879954px;}
.y1e_c00169{bottom:140.339944px;}
.y1d_c00169{bottom:171.479931px;}
.y1c_c00169{bottom:202.439919px;}
.y1b_c00169{bottom:233.579907px;}
.y1a_c00169{bottom:264.539894px;}
.y19_c00169{bottom:295.679882px;}
.y18_c00169{bottom:325.199870px;}
.y17_c00169{bottom:353.639859px;}
.y16_c00169{bottom:398.639841px;}
.y15_c00169{bottom:429.599828px;}
.y14_c00169{bottom:460.739816px;}
.y13_c00169{bottom:505.559798px;}
.y12_c00169{bottom:545.879782px;}
.y11_c00169{bottom:647.579741px;}
.y10_c00169{bottom:776.459689px;}
.yf_c00169{bottom:807.599677px;}
.ye_c00169{bottom:838.559665px;}
.yd_c00169{bottom:869.699652px;}
.yc_c00169{bottom:900.659640px;}
.yb_c00169{bottom:931.799627px;}
.ya_c00169{bottom:962.759615px;}
.y9_c00169{bottom:993.899602px;}
.y8_c00169{bottom:1024.859590px;}
.y7_c00169{bottom:1055.999578px;}
.y6_c00169{bottom:1086.959565px;}
.y5_c00169{bottom:1118.099553px;}
.y2_c00169{bottom:1156.979537px;}
.y1_c00169{bottom:1195.859522px;}
.h2_c00169{height:44.149201px;}
.h1_c00169{height:58.651148px;}
.h4_c00169{height:66.757473px;}
.h3_c00169{height:70.664034px;}
.h0_c00169{height:1263.000000px;}
.w0_c00169{width:892.500000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:127.799949px;}
.x3_c00169{left:180.899928px;}
.x5_c00169{left:186.299925px;}
.x2_c00169{left:434.159514px;}
.x4_c00169{left:743.040694px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls1_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.008800pt;}
.ws0_c00169{word-spacing:0.000000pt;}
._c_c00169{margin-left:-2.771997pt;}
._1_c00169{margin-left:-0.982555pt;}
._0_c00169{width:1.062723pt;}
._2_c00169{width:2.971986pt;}
._3_c00169{width:3.947313pt;}
._9_c00169{width:5.185946pt;}
._6_c00169{width:6.271482pt;}
._7_c00169{width:7.215594pt;}
._b_c00169{width:8.115134pt;}
._a_c00169{width:9.036574pt;}
._e_c00169{width:10.154721pt;}
._d_c00169{width:11.514207pt;}
._4_c00169{width:12.735173pt;}
._5_c00169{width:14.001644pt;}
._8_c00169{width:17.676556pt;}
.fs0_c00169{font-size:53.119979pt;}
.fs1_c00169{font-size:58.879976pt;}
.fs2_c00169{font-size:63.999974pt;}
.y0_c00169{bottom:0.000000pt;}
.y4_c00169{bottom:67.306640pt;}
.y3_c00169{bottom:101.226626pt;}
.y1e_c00169{bottom:124.746617pt;}
.y1d_c00169{bottom:152.426606pt;}
.y1c_c00169{bottom:179.946595pt;}
.y1b_c00169{bottom:207.626584pt;}
.y1a_c00169{bottom:235.146573pt;}
.y19_c00169{bottom:262.826562pt;}
.y18_c00169{bottom:289.066551pt;}
.y17_c00169{bottom:314.346541pt;}
.y16_c00169{bottom:354.346525pt;}
.y15_c00169{bottom:381.866514pt;}
.y14_c00169{bottom:409.546503pt;}
.y13_c00169{bottom:449.386487pt;}
.y12_c00169{bottom:485.226473pt;}
.y11_c00169{bottom:575.626436pt;}
.y10_c00169{bottom:690.186391pt;}
.yf_c00169{bottom:717.866380pt;}
.ye_c00169{bottom:745.386369pt;}
.yd_c00169{bottom:773.066357pt;}
.yc_c00169{bottom:800.586346pt;}
.yb_c00169{bottom:828.266335pt;}
.ya_c00169{bottom:855.786324pt;}
.y9_c00169{bottom:883.466313pt;}
.y8_c00169{bottom:910.986302pt;}
.y7_c00169{bottom:938.666291pt;}
.y6_c00169{bottom:966.186280pt;}
.y5_c00169{bottom:993.866269pt;}
.y2_c00169{bottom:1028.426255pt;}
.y1_c00169{bottom:1062.986241pt;}
.h2_c00169{height:39.243734pt;}
.h1_c00169{height:52.134354pt;}
.h4_c00169{height:59.339976pt;}
.h3_c00169{height:62.812475pt;}
.h0_c00169{height:1122.666667pt;}
.w0_c00169{width:793.333333pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:113.599955pt;}
.x3_c00169{left:160.799936pt;}
.x5_c00169{left:165.599934pt;}
.x2_c00169{left:385.919568pt;}
.x4_c00169{left:660.480617pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c91e44852cfa074bb1d7653.woff2')format("woff");}.ff1_c00170{font-family:ff1_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:ff2_c00170;src:url('chunks/assets/font_11a657ac68c27d8fe5bcd9b0.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:0.675781;font-style:normal;font-weight:normal;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_03c157c71263272310847fe4.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_0cafa9a75e8ad69db79ec632.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls1_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.010620px;}
.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;}
}
.ws0_c00170{word-spacing:-17.999993px;}
.ws1_c00170{word-spacing:0.000000px;}
._b_c00170{margin-left:-2.265902px;}
._1_c00170{margin-left:-1.105374px;}
._0_c00170{width:1.478351px;}
._4_c00170{width:2.552178px;}
._5_c00170{width:4.359621px;}
._6_c00170{width:5.659775px;}
._7_c00170{width:6.984536px;}
._8_c00170{width:7.989812px;}
._c_c00170{width:9.069102px;}
._d_c00170{width:10.109990px;}
._2_c00170{width:11.889396px;}
._3_c00170{width:13.621979px;}
._11_c00170{width:15.835210px;}
._12_c00170{width:16.895803px;}
._9_c00170{width:19.157421px;}
._a_c00170{width:20.320377px;}
._f_c00170{width:25.717068px;}
._e_c00170{width:26.797375px;}
._10_c00170{width:28.391488px;}
.fc0_c00170{color:rgb(0,0,0);}
.fs0_c00170{font-size:59.759976px;}
.fs1_c00170{font-size:66.239974px;}
.fs2_c00170{font-size:71.999971px;}
.y0_c00170{bottom:0.000000px;}
.y4_c00170{bottom:75.900270px;}
.y3_c00170{bottom:114.060254px;}
.y21_c00170{bottom:184.979926px;}
.y20_c00170{bottom:216.119914px;}
.y1f_c00170{bottom:247.079901px;}
.y1e_c00170{bottom:278.219889px;}
.y1d_c00170{bottom:307.739877px;}
.y1c_c00170{bottom:352.739859px;}
.y1b_c00170{bottom:383.699847px;}
.y1a_c00170{bottom:414.839834px;}
.y19_c00170{bottom:444.359822px;}
.y18_c00170{bottom:489.359804px;}
.y17_c00170{bottom:520.319792px;}
.y16_c00170{bottom:551.459779px;}
.y15_c00170{bottom:582.419767px;}
.y14_c00170{bottom:613.559755px;}
.y13_c00170{bottom:643.079743px;}
.y12_c00170{bottom:688.079725px;}
.y11_c00170{bottom:719.039712px;}
.y10_c00170{bottom:750.179700px;}
.yf_c00170{bottom:781.139688px;}
.ye_c00170{bottom:812.279675px;}
.yd_c00170{bottom:843.239663px;}
.yc_c00170{bottom:874.379650px;}
.yb_c00170{bottom:903.899638px;}
.ya_c00170{bottom:948.719621px;}
.y9_c00170{bottom:979.859608px;}
.y8_c00170{bottom:1010.819596px;}
.y7_c00170{bottom:1041.959583px;}
.y6_c00170{bottom:1088.039565px;}
.y5_c00170{bottom:1118.999552px;}
.y2_c00170{bottom:1176.059530px;}
.y1_c00170{bottom:1196.219522px;}
.h2_c00170{height:44.149201px;}
.h1_c00170{height:58.651148px;}
.h4_c00170{height:66.757473px;}
.h5_c00170{height:70.628878px;}
.h3_c00170{height:70.664034px;}
.h0_c00170{height:1263.000000px;}
.w0_c00170{width:892.500000px;}
.x0_c00170{left:0.000000px;}
.x5_c00170{left:127.620262px;}
.x6_c00170{left:180.719930px;}
.x1_c00170{left:181.799927px;}
.x2_c00170{left:329.039408px;}
.x4_c00170{left:433.979826px;}
.x3_c00170{left:765.359694px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls1_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.009440pt;}
.ws0_c00170{word-spacing:-15.999994pt;}
.ws1_c00170{word-spacing:0.000000pt;}
._b_c00170{margin-left:-2.014135pt;}
._1_c00170{margin-left:-0.982555pt;}
._0_c00170{width:1.314090pt;}
._4_c00170{width:2.268603pt;}
._5_c00170{width:3.875219pt;}
._6_c00170{width:5.030911pt;}
._7_c00170{width:6.208476pt;}
._8_c00170{width:7.102055pt;}
._c_c00170{width:8.061424pt;}
._d_c00170{width:8.986658pt;}
._2_c00170{width:10.568352pt;}
._3_c00170{width:12.108426pt;}
._11_c00170{width:14.075742pt;}
._12_c00170{width:15.018492pt;}
._9_c00170{width:17.028818pt;}
._a_c00170{width:18.062557pt;}
._f_c00170{width:22.859616pt;}
._e_c00170{width:23.819889pt;}
._10_c00170{width:25.236878pt;}
.fs0_c00170{font-size:53.119979pt;}
.fs1_c00170{font-size:58.879976pt;}
.fs2_c00170{font-size:63.999974pt;}
.y0_c00170{bottom:0.000000pt;}
.y4_c00170{bottom:67.466906pt;}
.y3_c00170{bottom:101.386893pt;}
.y21_c00170{bottom:164.426601pt;}
.y20_c00170{bottom:192.106590pt;}
.y1f_c00170{bottom:219.626579pt;}
.y1e_c00170{bottom:247.306568pt;}
.y1d_c00170{bottom:273.546557pt;}
.y1c_c00170{bottom:313.546541pt;}
.y1b_c00170{bottom:341.066530pt;}
.y1a_c00170{bottom:368.746519pt;}
.y19_c00170{bottom:394.986509pt;}
.y18_c00170{bottom:434.986493pt;}
.y17_c00170{bottom:462.506482pt;}
.y16_c00170{bottom:490.186471pt;}
.y15_c00170{bottom:517.706460pt;}
.y14_c00170{bottom:545.386449pt;}
.y13_c00170{bottom:571.626438pt;}
.y12_c00170{bottom:611.626422pt;}
.y11_c00170{bottom:639.146411pt;}
.y10_c00170{bottom:666.826400pt;}
.yf_c00170{bottom:694.346389pt;}
.ye_c00170{bottom:722.026378pt;}
.yd_c00170{bottom:749.546367pt;}
.yc_c00170{bottom:777.226356pt;}
.yb_c00170{bottom:803.466345pt;}
.ya_c00170{bottom:843.306329pt;}
.y9_c00170{bottom:870.986318pt;}
.y8_c00170{bottom:898.506307pt;}
.y7_c00170{bottom:926.186296pt;}
.y6_c00170{bottom:967.146280pt;}
.y5_c00170{bottom:994.666269pt;}
.y2_c00170{bottom:1045.386249pt;}
.y1_c00170{bottom:1063.306241pt;}
.h2_c00170{height:39.243734pt;}
.h1_c00170{height:52.134354pt;}
.h4_c00170{height:59.339976pt;}
.h5_c00170{height:62.781225pt;}
.h3_c00170{height:62.812475pt;}
.h0_c00170{height:1122.666667pt;}
.w0_c00170{width:793.333333pt;}
.x0_c00170{left:0.000000pt;}
.x5_c00170{left:113.440233pt;}
.x6_c00170{left:160.639938pt;}
.x1_c00170{left:161.599935pt;}
.x2_c00170{left:292.479474pt;}
.x4_c00170{left:385.759846pt;}
.x3_c00170{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94cbc8d7a47ef46802b4714a.woff2')format("woff");}.ff1_c00171{font-family:ff1_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:ff2_c00171;src:url('chunks/assets/font_18efd57d3f8ee82a74bc82f4.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:0.675781;font-style:normal;font-weight:normal;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_114b79c9e73b2a82cbf0edeb.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.311035;font-style:normal;font-weight:normal;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_7527be517aad2942aad5d910.woff2')format("woff");}.ff4_c00171{font-family:ff4_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;}
.m0_c00171{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00171{word-spacing:0.000000px;}
._1_c00171{margin-left:-1.105374px;}
._0_c00171{width:1.195563px;}
._2_c00171{width:2.362878px;}
._3_c00171{width:3.888291px;}
._8_c00171{width:4.930044px;}
._7_c00171{width:6.241804px;}
._9_c00171{width:11.693156px;}
._5_c00171{width:13.629026px;}
._6_c00171{width:14.940432px;}
._4_c00171{width:16.396044px;}
.fc1_c00171{color:rgb(255,0,0);}
.fc0_c00171{color:rgb(0,0,0);}
.fs0_c00171{font-size:59.759976px;}
.fs1_c00171{font-size:66.239974px;}
.fs2_c00171{font-size:71.999971px;}
.y0_c00171{bottom:0.000000px;}
.y4_c00171{bottom:75.719970px;}
.y3_c00171{bottom:113.879954px;}
.y16_c00171{bottom:140.159944px;}
.y15_c00171{bottom:171.119932px;}
.y14_c00171{bottom:202.259919px;}
.y13_c00171{bottom:233.219907px;}
.y12_c00171{bottom:278.219889px;}
.y11_c00171{bottom:306.659877px;}
.y10_c00171{bottom:346.979861px;}
.yf_c00171{bottom:790.679684px;}
.ye_c00171{bottom:821.639671px;}
.yd_c00171{bottom:852.779659px;}
.yc_c00171{bottom:898.679641px;}
.yb_c00171{bottom:929.819628px;}
.ya_c00171{bottom:960.779616px;}
.y9_c00171{bottom:991.919603px;}
.y8_c00171{bottom:1022.879591px;}
.y7_c00171{bottom:1052.399579px;}
.y6_c00171{bottom:1090.199564px;}
.y5_c00171{bottom:1119.179552px;}
.y2_c00171{bottom:1156.979537px;}
.y1_c00171{bottom:1195.859522px;}
.h2_c00171{height:44.149201px;}
.h1_c00171{height:58.651148px;}
.h5_c00171{height:65.010911px;}
.h3_c00171{height:66.757473px;}
.h4_c00171{height:70.664034px;}
.h0_c00171{height:1263.000000px;}
.w0_c00171{width:892.500000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:127.799949px;}
.x5_c00171{left:138.599945px;}
.x3_c00171{left:180.899928px;}
.x6_c00171{left:376.739706px;}
.x2_c00171{left:434.159514px;}
.x4_c00171{left:743.579703px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
._1_c00171{margin-left:-0.982555pt;}
._0_c00171{width:1.062723pt;}
._2_c00171{width:2.100336pt;}
._3_c00171{width:3.456259pt;}
._8_c00171{width:4.382261pt;}
._7_c00171{width:5.548270pt;}
._9_c00171{width:10.393917pt;}
._5_c00171{width:12.114690pt;}
._6_c00171{width:13.280384pt;}
._4_c00171{width:14.574261pt;}
.fs0_c00171{font-size:53.119979pt;}
.fs1_c00171{font-size:58.879976pt;}
.fs2_c00171{font-size:63.999974pt;}
.y0_c00171{bottom:0.000000pt;}
.y4_c00171{bottom:67.306640pt;}
.y3_c00171{bottom:101.226626pt;}
.y16_c00171{bottom:124.586617pt;}
.y15_c00171{bottom:152.106606pt;}
.y14_c00171{bottom:179.786595pt;}
.y13_c00171{bottom:207.306584pt;}
.y12_c00171{bottom:247.306568pt;}
.y11_c00171{bottom:272.586558pt;}
.y10_c00171{bottom:308.426543pt;}
.yf_c00171{bottom:702.826386pt;}
.ye_c00171{bottom:730.346375pt;}
.yd_c00171{bottom:758.026363pt;}
.yc_c00171{bottom:798.826347pt;}
.yb_c00171{bottom:826.506336pt;}
.ya_c00171{bottom:854.026325pt;}
.y9_c00171{bottom:881.706314pt;}
.y8_c00171{bottom:909.226303pt;}
.y7_c00171{bottom:935.466292pt;}
.y6_c00171{bottom:969.066279pt;}
.y5_c00171{bottom:994.826269pt;}
.y2_c00171{bottom:1028.426255pt;}
.y1_c00171{bottom:1062.986241pt;}
.h2_c00171{height:39.243734pt;}
.h1_c00171{height:52.134354pt;}
.h5_c00171{height:57.787477pt;}
.h3_c00171{height:59.339976pt;}
.h4_c00171{height:62.812475pt;}
.h0_c00171{height:1122.666667pt;}
.w0_c00171{width:793.333333pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:113.599955pt;}
.x5_c00171{left:123.199951pt;}
.x3_c00171{left:160.799936pt;}
.x6_c00171{left:334.879739pt;}
.x2_c00171{left:385.919568pt;}
.x4_c00171{left:660.959736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e988e1307c74df9e2d07aad.woff2')format("woff");}.ff1_c00172{font-family:ff1_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:ff2_c00172;src:url('chunks/assets/font_25762209eaa53888a327bf2b.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:0.675781;font-style:normal;font-weight:normal;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_c6d580952740b4b7bf02246d.woff2')format("woff");}.ff3_c00172{font-family:ff3_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;}
.m0_c00172{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls1_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:0.244500px;}
.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;}
}
.ws0_c00172{word-spacing:0.000000px;}
._1_c00172{margin-left:-1.105374px;}
._0_c00172{width:1.478351px;}
._2_c00172{width:4.641383px;}
._6_c00172{width:5.763338px;}
._3_c00172{width:7.101543px;}
._5_c00172{width:8.387424px;}
._4_c00172{width:9.575825px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs0_c00172{font-size:59.759976px;}
.fs1_c00172{font-size:66.239974px;}
.fs2_c00172{font-size:71.999971px;}
.y0_c00172{bottom:0.000000px;}
.y4_c00172{bottom:75.720270px;}
.y3_c00172{bottom:113.880254px;}
.ye_c00172{bottom:249.239900px;}
.yd_c00172{bottom:292.799883px;}
.yc_c00172{bottom:332.219867px;}
.yb_c00172{bottom:917.579633px;}
.ya_c00172{bottom:948.539621px;}
.y9_c00172{bottom:979.679608px;}
.y8_c00172{bottom:1010.639596px;}
.y7_c00172{bottom:1056.719577px;}
.y6_c00172{bottom:1087.859565px;}
.y5_c00172{bottom:1118.819552px;}
.y2_c00172{bottom:1175.879530px;}
.y1_c00172{bottom:1196.039522px;}
.h2_c00172{height:44.149201px;}
.h1_c00172{height:58.651148px;}
.h4_c00172{height:65.010911px;}
.h3_c00172{height:70.664034px;}
.h0_c00172{height:1263.000000px;}
.w0_c00172{width:892.500000px;}
.x0_c00172{left:0.000000px;}
.x5_c00172{left:127.800262px;}
.x6_c00172{left:180.900605px;}
.x1_c00172{left:181.979927px;}
.x8_c00172{left:308.520020px;}
.x2_c00172{left:329.219408px;}
.x4_c00172{left:434.159826px;}
.x9_c00172{left:446.580006px;}
.x7_c00172{left:732.419707px;}
.x3_c00172{left:765.539694px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls1_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:0.217333pt;}
.ws0_c00172{word-spacing:0.000000pt;}
._1_c00172{margin-left:-0.982555pt;}
._0_c00172{width:1.314090pt;}
._2_c00172{width:4.125673pt;}
._6_c00172{width:5.122967pt;}
._3_c00172{width:6.312483pt;}
._5_c00172{width:7.455488pt;}
._4_c00172{width:8.511844pt;}
.fs0_c00172{font-size:53.119979pt;}
.fs1_c00172{font-size:58.879976pt;}
.fs2_c00172{font-size:63.999974pt;}
.y0_c00172{bottom:0.000000pt;}
.y4_c00172{bottom:67.306906pt;}
.y3_c00172{bottom:101.226893pt;}
.ye_c00172{bottom:221.546578pt;}
.yd_c00172{bottom:260.266563pt;}
.yc_c00172{bottom:295.306549pt;}
.yb_c00172{bottom:815.626340pt;}
.ya_c00172{bottom:843.146329pt;}
.y9_c00172{bottom:870.826318pt;}
.y8_c00172{bottom:898.346307pt;}
.y7_c00172{bottom:939.306291pt;}
.y6_c00172{bottom:966.986280pt;}
.y5_c00172{bottom:994.506269pt;}
.y2_c00172{bottom:1045.226249pt;}
.y1_c00172{bottom:1063.146241pt;}
.h2_c00172{height:39.243734pt;}
.h1_c00172{height:52.134354pt;}
.h4_c00172{height:57.787477pt;}
.h3_c00172{height:62.812475pt;}
.h0_c00172{height:1122.666667pt;}
.w0_c00172{width:793.333333pt;}
.x0_c00172{left:0.000000pt;}
.x5_c00172{left:113.600233pt;}
.x6_c00172{left:160.800538pt;}
.x1_c00172{left:161.759935pt;}
.x8_c00172{left:274.240018pt;}
.x2_c00172{left:292.639474pt;}
.x4_c00172{left:385.919846pt;}
.x9_c00172{left:396.960005pt;}
.x7_c00172{left:651.039740pt;}
.x3_c00172{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_abc997dbcb6ff0e6f2b4ec3e.woff2')format("woff");}.ff1_c00173{font-family:ff1_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:ff2_c00173;src:url('chunks/assets/font_9e51a87da77b46fe616cefbc.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:0.675781;font-style:normal;font-weight:normal;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_90dc4a31c5230b23edd925fe.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;}
.m0_c00173{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00173{word-spacing:-17.999993px;}
.ws1_c00173{word-spacing:0.000000px;}
._1_c00173{margin-left:-1.105374px;}
._0_c00173{width:1.195563px;}
._6_c00173{width:2.661974px;}
._7_c00173{width:3.793618px;}
._8_c00173{width:5.114360px;}
._2_c00173{width:6.537026px;}
._3_c00173{width:8.830600px;}
._4_c00173{width:10.017192px;}
._5_c00173{width:11.478625px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:59.759976px;}
.fs1_c00173{font-size:66.239974px;}
.fs2_c00173{font-size:71.999971px;}
.y0_c00173{bottom:0.000000px;}
.y4_c00173{bottom:75.719970px;}
.y3_c00173{bottom:113.879954px;}
.yf_c00173{bottom:134.039946px;}
.ye_c00173{bottom:164.999934px;}
.yd_c00173{bottom:196.139922px;}
.yc_c00173{bottom:227.099909px;}
.yb_c00173{bottom:271.919891px;}
.ya_c00173{bottom:312.239875px;}
.y9_c00173{bottom:414.839834px;}
.y8_c00173{bottom:445.979822px;}
.y7_c00173{bottom:476.939809px;}
.y6_c00173{bottom:521.939791px;}
.y5_c00173{bottom:562.259775px;}
.y2_c00173{bottom:1156.979537px;}
.y1_c00173{bottom:1195.859522px;}
.h2_c00173{height:44.149201px;}
.h1_c00173{height:58.651148px;}
.h4_c00173{height:65.010911px;}
.h3_c00173{height:70.664034px;}
.h0_c00173{height:1263.000000px;}
.w0_c00173{width:892.500000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:127.799949px;}
.x5_c00173{left:180.899928px;}
.x7_c00173{left:295.379882px;}
.x4_c00173{left:301.319879px;}
.x2_c00173{left:434.159514px;}
.x3_c00173{left:740.699704px;}
.x6_c00173{left:765.540452px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:-15.999994pt;}
.ws1_c00173{word-spacing:0.000000pt;}
._1_c00173{margin-left:-0.982555pt;}
._0_c00173{width:1.062723pt;}
._6_c00173{width:2.366199pt;}
._7_c00173{width:3.372105pt;}
._8_c00173{width:4.546098pt;}
._2_c00173{width:5.810690pt;}
._3_c00173{width:7.849422pt;}
._4_c00173{width:8.904171pt;}
._5_c00173{width:10.203222pt;}
.fs0_c00173{font-size:53.119979pt;}
.fs1_c00173{font-size:58.879976pt;}
.fs2_c00173{font-size:63.999974pt;}
.y0_c00173{bottom:0.000000pt;}
.y4_c00173{bottom:67.306640pt;}
.y3_c00173{bottom:101.226626pt;}
.yf_c00173{bottom:119.146619pt;}
.ye_c00173{bottom:146.666608pt;}
.yd_c00173{bottom:174.346597pt;}
.yc_c00173{bottom:201.866586pt;}
.yb_c00173{bottom:241.706570pt;}
.ya_c00173{bottom:277.546556pt;}
.y9_c00173{bottom:368.746519pt;}
.y8_c00173{bottom:396.426508pt;}
.y7_c00173{bottom:423.946497pt;}
.y6_c00173{bottom:463.946481pt;}
.y5_c00173{bottom:499.786467pt;}
.y2_c00173{bottom:1028.426255pt;}
.y1_c00173{bottom:1062.986241pt;}
.h2_c00173{height:39.243734pt;}
.h1_c00173{height:52.134354pt;}
.h4_c00173{height:57.787477pt;}
.h3_c00173{height:62.812475pt;}
.h0_c00173{height:1122.666667pt;}
.w0_c00173{width:793.333333pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:113.599955pt;}
.x5_c00173{left:160.799936pt;}
.x7_c00173{left:262.559895pt;}
.x4_c00173{left:267.839893pt;}
.x2_c00173{left:385.919568pt;}
.x3_c00173{left:658.399737pt;}
.x6_c00173{left:680.480402pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_944ffd19a23d198f0bd6dd88.woff2')format("woff");}.ff1_c00174{font-family:ff1_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:ff2_c00174;src:url('chunks/assets/font_34358eecfe8e61a4fe9d88c7.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:0.675781;font-style:normal;font-weight:normal;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_547124af4beca3ecbe2fae3c.woff2')format("woff");}.ff3_c00174{font-family:ff3_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;}
.m0_c00174{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls0_c00174{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00174{word-spacing:-17.999993px;}
.ws1_c00174{word-spacing:0.000000px;}
._1_c00174{margin-left:-1.105374px;}
._0_c00174{width:1.478351px;}
._5_c00174{width:2.739979px;}
._6_c00174{width:3.741555px;}
._7_c00174{width:4.750004px;}
._8_c00174{width:6.323420px;}
._2_c00174{width:13.632545px;}
._3_c00174{width:14.909257px;}
._4_c00174{width:20.945436px;}
.fc0_c00174{color:rgb(0,0,0);}
.fs0_c00174{font-size:59.759976px;}
.fs1_c00174{font-size:66.239974px;}
.fs2_c00174{font-size:71.999971px;}
.y0_c00174{bottom:0.000000px;}
.y4_c00174{bottom:75.720270px;}
.y3_c00174{bottom:113.880254px;}
.yc_c00174{bottom:197.939921px;}
.yb_c00174{bottom:238.259905px;}
.ya_c00174{bottom:963.659615px;}
.y9_c00174{bottom:994.619602px;}
.y8_c00174{bottom:1025.759590px;}
.y7_c00174{bottom:1056.719577px;}
.y6_c00174{bottom:1087.859565px;}
.y5_c00174{bottom:1118.819552px;}
.y2_c00174{bottom:1175.879530px;}
.y1_c00174{bottom:1196.039522px;}
.h2_c00174{height:44.149201px;}
.h1_c00174{height:58.651148px;}
.h4_c00174{height:65.010911px;}
.h3_c00174{height:70.664034px;}
.h0_c00174{height:1263.000000px;}
.w0_c00174{width:892.500000px;}
.x0_c00174{left:0.000000px;}
.x5_c00174{left:127.800262px;}
.x1_c00174{left:181.979927px;}
.x7_c00174{left:308.519877px;}
.x2_c00174{left:329.219408px;}
.x4_c00174{left:434.159826px;}
.x6_c00174{left:720.360160px;}
.x3_c00174{left:765.539694px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:-15.999994pt;}
.ws1_c00174{word-spacing:0.000000pt;}
._1_c00174{margin-left:-0.982555pt;}
._0_c00174{width:1.314090pt;}
._5_c00174{width:2.435537pt;}
._6_c00174{width:3.325827pt;}
._7_c00174{width:4.222226pt;}
._8_c00174{width:5.620818pt;}
._2_c00174{width:12.117817pt;}
._3_c00174{width:13.252672pt;}
._4_c00174{width:18.618165pt;}
.fs0_c00174{font-size:53.119979pt;}
.fs1_c00174{font-size:58.879976pt;}
.fs2_c00174{font-size:63.999974pt;}
.y0_c00174{bottom:0.000000pt;}
.y4_c00174{bottom:67.306906pt;}
.y3_c00174{bottom:101.226893pt;}
.yc_c00174{bottom:175.946596pt;}
.yb_c00174{bottom:211.786582pt;}
.ya_c00174{bottom:856.586324pt;}
.y9_c00174{bottom:884.106313pt;}
.y8_c00174{bottom:911.786302pt;}
.y7_c00174{bottom:939.306291pt;}
.y6_c00174{bottom:966.986280pt;}
.y5_c00174{bottom:994.506269pt;}
.y2_c00174{bottom:1045.226249pt;}
.y1_c00174{bottom:1063.146241pt;}
.h2_c00174{height:39.243734pt;}
.h1_c00174{height:52.134354pt;}
.h4_c00174{height:57.787477pt;}
.h3_c00174{height:62.812475pt;}
.h0_c00174{height:1122.666667pt;}
.w0_c00174{width:793.333333pt;}
.x0_c00174{left:0.000000pt;}
.x5_c00174{left:113.600233pt;}
.x1_c00174{left:161.759935pt;}
.x7_c00174{left:274.239890pt;}
.x2_c00174{left:292.639474pt;}
.x4_c00174{left:385.919846pt;}
.x6_c00174{left:640.320142pt;}
.x3_c00174{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b36744a88510061405c2bb1.woff2')format("woff");}.ff1_c00175{font-family:ff1_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:ff2_c00175;src:url('chunks/assets/font_0a4305250467888908bd84b0.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:0.675781;font-style:normal;font-weight:normal;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_296f9caebd09beaa971785e8.woff2')format("woff");}.ff3_c00175{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00175{word-spacing:0.000000px;}
._1_c00175{margin-left:-1.105374px;}
._0_c00175{width:1.195563px;}
._2_c00175{width:2.867540px;}
._4_c00175{width:4.186841px;}
._3_c00175{width:5.459803px;}
._7_c00175{width:6.557292px;}
._8_c00175{width:7.910533px;}
._6_c00175{width:9.715373px;}
._5_c00175{width:10.975130px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs0_c00175{font-size:59.759976px;}
.fs1_c00175{font-size:66.239974px;}
.fs2_c00175{font-size:71.999971px;}
.y0_c00175{bottom:0.000000px;}
.y4_c00175{bottom:75.719970px;}
.y3_c00175{bottom:113.879954px;}
.yf_c00175{bottom:153.119939px;}
.ye_c00175{bottom:184.259926px;}
.yd_c00175{bottom:230.339908px;}
.yc_c00175{bottom:261.299895px;}
.yb_c00175{bottom:292.439883px;}
.ya_c00175{bottom:337.259865px;}
.y9_c00175{bottom:377.399849px;}
.y8_c00175{bottom:1024.859590px;}
.y7_c00175{bottom:1055.999578px;}
.y6_c00175{bottom:1086.959565px;}
.y5_c00175{bottom:1118.099553px;}
.y2_c00175{bottom:1156.979537px;}
.y1_c00175{bottom:1195.859522px;}
.h2_c00175{height:44.149201px;}
.h1_c00175{height:58.651148px;}
.h4_c00175{height:65.010911px;}
.h3_c00175{height:70.664034px;}
.h0_c00175{height:1263.000000px;}
.w0_c00175{width:892.500000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:127.799949px;}
.x3_c00175{left:180.899928px;}
.x5_c00175{left:209.699916px;}
.x2_c00175{left:434.159514px;}
.x4_c00175{left:743.219988px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
._1_c00175{margin-left:-0.982555pt;}
._0_c00175{width:1.062723pt;}
._2_c00175{width:2.548924pt;}
._4_c00175{width:3.721636pt;}
._3_c00175{width:4.853158pt;}
._7_c00175{width:5.828704pt;}
._8_c00175{width:7.031585pt;}
._6_c00175{width:8.635887pt;}
._5_c00175{width:9.755671pt;}
.fs0_c00175{font-size:53.119979pt;}
.fs1_c00175{font-size:58.879976pt;}
.fs2_c00175{font-size:63.999974pt;}
.y0_c00175{bottom:0.000000pt;}
.y4_c00175{bottom:67.306640pt;}
.y3_c00175{bottom:101.226626pt;}
.yf_c00175{bottom:136.106612pt;}
.ye_c00175{bottom:163.786601pt;}
.yd_c00175{bottom:204.746585pt;}
.yc_c00175{bottom:232.266574pt;}
.yb_c00175{bottom:259.946563pt;}
.ya_c00175{bottom:299.786547pt;}
.y9_c00175{bottom:335.466532pt;}
.y8_c00175{bottom:910.986302pt;}
.y7_c00175{bottom:938.666291pt;}
.y6_c00175{bottom:966.186280pt;}
.y5_c00175{bottom:993.866269pt;}
.y2_c00175{bottom:1028.426255pt;}
.y1_c00175{bottom:1062.986241pt;}
.h2_c00175{height:39.243734pt;}
.h1_c00175{height:52.134354pt;}
.h4_c00175{height:57.787477pt;}
.h3_c00175{height:62.812475pt;}
.h0_c00175{height:1122.666667pt;}
.w0_c00175{width:793.333333pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:113.599955pt;}
.x3_c00175{left:160.799936pt;}
.x5_c00175{left:186.399925pt;}
.x2_c00175{left:385.919568pt;}
.x4_c00175{left:660.639989pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9907cafe2d590eb4547795f1.woff2')format("woff");}.ff1_c00176{font-family:ff1_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:ff2_c00176;src:url('chunks/assets/font_e44057df03a6a2bd0bcd7940.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:0.675781;font-style:normal;font-weight:normal;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_5c6ac77ed742e889b681cefa.woff2')format("woff");}.ff3_c00176{font-family:ff3_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;}
.m0_c00176{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00176{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls5_c00176{letter-spacing:0.000000px;}
.ls4_c00176{letter-spacing:0.011169px;}
.ls0_c00176{letter-spacing:0.012664px;}
.ls2_c00176{letter-spacing:0.021282px;}
.ls3_c00176{letter-spacing:0.153901px;}
.ls1_c00176{letter-spacing:4.333198px;}
.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:-18.021275px;}
.ws0_c00176{word-spacing:-10.452660px;}
.ws2_c00176{word-spacing:-9.731165px;}
.ws3_c00176{word-spacing:0.000000px;}
._6_c00176{margin-left:-12.716934px;}
._1_c00176{margin-left:-1.105374px;}
._0_c00176{width:1.478351px;}
._3_c00176{width:3.344507px;}
._2_c00176{width:4.372103px;}
._4_c00176{width:6.469662px;}
._5_c00176{width:7.817350px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs4_c00176{font-size:38.879984px;}
.fs3_c00176{font-size:41.759983px;}
.fs0_c00176{font-size:59.759976px;}
.fs1_c00176{font-size:66.239974px;}
.fs2_c00176{font-size:71.999971px;}
.y0_c00176{bottom:0.000000px;}
.y4_c00176{bottom:75.720270px;}
.y3_c00176{bottom:113.880254px;}
.y15_c00176{bottom:133.139947px;}
.y14_c00176{bottom:150.419940px;}
.y13_c00176{bottom:157.259937px;}
.y12_c00176{bottom:168.599933px;}
.y11_c00176{bottom:273.179891px;}
.y10_c00176{bottom:304.319878px;}
.yf_c00176{bottom:335.279866px;}
.ye_c00176{bottom:381.359847px;}
.yc_c00176{bottom:426.179830px;}
.yd_c00176{bottom:433.739827px;}
.yb_c00176{bottom:454.619818px;}
.ya_c00176{bottom:494.939802px;}
.y9_c00176{bottom:721.559711px;}
.y8_c00176{bottom:764.939694px;}
.y7_c00176{bottom:805.259678px;}
.y6_c00176{bottom:1087.859565px;}
.y5_c00176{bottom:1118.819552px;}
.y2_c00176{bottom:1175.879530px;}
.y1_c00176{bottom:1196.039522px;}
.h6_c00176{height:38.158578px;}
.h5_c00176{height:40.985140px;}
.h2_c00176{height:44.149201px;}
.h1_c00176{height:58.651148px;}
.h4_c00176{height:65.010911px;}
.h3_c00176{height:70.664034px;}
.h0_c00176{height:1263.000000px;}
.w0_c00176{width:892.500000px;}
.x0_c00176{left:0.000000px;}
.x5_c00176{left:127.800262px;}
.x8_c00176{left:129.239948px;}
.xd_c00176{left:142.379943px;}
.x6_c00176{left:145.439942px;}
.xc_c00176{left:180.899928px;}
.x1_c00176{left:181.979927px;}
.x2_c00176{left:329.219408px;}
.x9_c00176{left:401.400340px;}
.x4_c00176{left:434.159826px;}
.x7_c00176{left:444.960302px;}
.xa_c00176{left:472.859811px;}
.xb_c00176{left:488.519805px;}
.x3_c00176{left:765.539694px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls5_c00176{letter-spacing:0.000000pt;}
.ls4_c00176{letter-spacing:0.009928pt;}
.ls0_c00176{letter-spacing:0.011257pt;}
.ls2_c00176{letter-spacing:0.018917pt;}
.ls3_c00176{letter-spacing:0.136801pt;}
.ls1_c00176{letter-spacing:3.851732pt;}
.ws1_c00176{word-spacing:-16.018911pt;}
.ws0_c00176{word-spacing:-9.291253pt;}
.ws2_c00176{word-spacing:-8.649924pt;}
.ws3_c00176{word-spacing:0.000000pt;}
._6_c00176{margin-left:-11.303941pt;}
._1_c00176{margin-left:-0.982555pt;}
._0_c00176{width:1.314090pt;}
._3_c00176{width:2.972895pt;}
._2_c00176{width:3.886313pt;}
._4_c00176{width:5.750810pt;}
._5_c00176{width:6.948756pt;}
.fs4_c00176{font-size:34.559986pt;}
.fs3_c00176{font-size:37.119985pt;}
.fs0_c00176{font-size:53.119979pt;}
.fs1_c00176{font-size:58.879976pt;}
.fs2_c00176{font-size:63.999974pt;}
.y0_c00176{bottom:0.000000pt;}
.y4_c00176{bottom:67.306906pt;}
.y3_c00176{bottom:101.226893pt;}
.y15_c00176{bottom:118.346619pt;}
.y14_c00176{bottom:133.706613pt;}
.y13_c00176{bottom:139.786611pt;}
.y12_c00176{bottom:149.866607pt;}
.y11_c00176{bottom:242.826570pt;}
.y10_c00176{bottom:270.506558pt;}
.yf_c00176{bottom:298.026547pt;}
.ye_c00176{bottom:338.986531pt;}
.yc_c00176{bottom:378.826515pt;}
.yd_c00176{bottom:385.546512pt;}
.yb_c00176{bottom:404.106505pt;}
.ya_c00176{bottom:439.946491pt;}
.y9_c00176{bottom:641.386410pt;}
.y8_c00176{bottom:679.946395pt;}
.y7_c00176{bottom:715.786380pt;}
.y6_c00176{bottom:966.986280pt;}
.y5_c00176{bottom:994.506269pt;}
.y2_c00176{bottom:1045.226249pt;}
.y1_c00176{bottom:1063.146241pt;}
.h6_c00176{height:33.918736pt;}
.h5_c00176{height:36.431235pt;}
.h2_c00176{height:39.243734pt;}
.h1_c00176{height:52.134354pt;}
.h4_c00176{height:57.787477pt;}
.h3_c00176{height:62.812475pt;}
.h0_c00176{height:1122.666667pt;}
.w0_c00176{width:793.333333pt;}
.x0_c00176{left:0.000000pt;}
.x5_c00176{left:113.600233pt;}
.x8_c00176{left:114.879954pt;}
.xd_c00176{left:126.559949pt;}
.x6_c00176{left:129.279948pt;}
.xc_c00176{left:160.799936pt;}
.x1_c00176{left:161.759935pt;}
.x2_c00176{left:292.639474pt;}
.x9_c00176{left:356.800302pt;}
.x4_c00176{left:385.919846pt;}
.x7_c00176{left:395.520268pt;}
.xa_c00176{left:420.319832pt;}
.xb_c00176{left:434.239826pt;}
.x3_c00176{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e0e8484a5c380d2bdf05d00.woff2')format("woff");}.ff1_c00177{font-family:ff1_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:ff2_c00177;src:url('chunks/assets/font_ff065c085cc3283345d08035.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:0.675781;font-style:normal;font-weight:normal;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_55f6ef3ca5abbf05a3e4ef92.woff2')format("woff");}.ff3_c00177{font-family:ff3_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;}
.m0_c00177{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls1_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.021106px;}
.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;}
}
.ws0_c00177{word-spacing:-17.999993px;}
.ws1_c00177{word-spacing:0.000000px;}
._1_c00177{margin-left:-1.105374px;}
._0_c00177{width:1.195563px;}
._2_c00177{width:12.233051px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs0_c00177{font-size:59.759976px;}
.fs1_c00177{font-size:66.239974px;}
.fs2_c00177{font-size:71.999971px;}
.y0_c00177{bottom:0.000000px;}
.y4_c00177{bottom:75.719970px;}
.y3_c00177{bottom:113.879954px;}
.yb_c00177{bottom:133.860246px;}
.ya_c00177{bottom:178.679929px;}
.y9_c00177{bottom:218.999912px;}
.y8_c00177{bottom:612.119755px;}
.y7_c00177{bottom:643.079743px;}
.y6_c00177{bottom:687.899725px;}
.y5_c00177{bottom:728.219709px;}
.y2_c00177{bottom:1156.979537px;}
.y1_c00177{bottom:1195.859522px;}
.h2_c00177{height:44.149201px;}
.h1_c00177{height:58.651148px;}
.h4_c00177{height:65.010911px;}
.h3_c00177{height:70.628878px;}
.h5_c00177{height:70.664034px;}
.h0_c00177{height:1263.000000px;}
.w0_c00177{width:892.500000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:127.799949px;}
.x5_c00177{left:180.899928px;}
.x4_c00177{left:237.599905px;}
.x2_c00177{left:434.159514px;}
.x7_c00177{left:444.959822px;}
.x3_c00177{left:724.319710px;}
.x6_c00177{left:734.037912px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls1_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.018761pt;}
.ws0_c00177{word-spacing:-15.999994pt;}
.ws1_c00177{word-spacing:0.000000pt;}
._1_c00177{margin-left:-0.982555pt;}
._0_c00177{width:1.062723pt;}
._2_c00177{width:10.873823pt;}
.fs0_c00177{font-size:53.119979pt;}
.fs1_c00177{font-size:58.879976pt;}
.fs2_c00177{font-size:63.999974pt;}
.y0_c00177{bottom:0.000000pt;}
.y4_c00177{bottom:67.306640pt;}
.y3_c00177{bottom:101.226626pt;}
.yb_c00177{bottom:118.986886pt;}
.ya_c00177{bottom:158.826603pt;}
.y9_c00177{bottom:194.666589pt;}
.y8_c00177{bottom:544.106449pt;}
.y7_c00177{bottom:571.626438pt;}
.y6_c00177{bottom:611.466422pt;}
.y5_c00177{bottom:647.306408pt;}
.y2_c00177{bottom:1028.426255pt;}
.y1_c00177{bottom:1062.986241pt;}
.h2_c00177{height:39.243734pt;}
.h1_c00177{height:52.134354pt;}
.h4_c00177{height:57.787477pt;}
.h3_c00177{height:62.781225pt;}
.h5_c00177{height:62.812475pt;}
.h0_c00177{height:1122.666667pt;}
.w0_c00177{width:793.333333pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:113.599955pt;}
.x5_c00177{left:160.799936pt;}
.x4_c00177{left:211.199916pt;}
.x2_c00177{left:385.919568pt;}
.x7_c00177{left:395.519842pt;}
.x3_c00177{left:643.839742pt;}
.x6_c00177{left:652.478144pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd421ffe6b48b0178df1ebde.woff2')format("woff");}.ff1_c00178{font-family:ff1_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:ff2_c00178;src:url('chunks/assets/font_25762209eaa53888a327bf2b.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:0.675781;font-style:normal;font-weight:normal;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_f74d52274e9e24dbcb83aaef.woff2')format("woff");}.ff3_c00178{font-family:ff3_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;}
.m0_c00178{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00178{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls0_c00178{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00178{word-spacing:0.000000px;}
._1_c00178{margin-left:-1.105374px;}
._0_c00178{width:1.478351px;}
._2_c00178{width:2.826517px;}
._5_c00178{width:4.309221px;}
._3_c00178{width:8.708882px;}
._6_c00178{width:12.524763px;}
._7_c00178{width:13.641018px;}
._4_c00178{width:30.427894px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs0_c00178{font-size:59.759976px;}
.fs1_c00178{font-size:66.239974px;}
.fs2_c00178{font-size:71.999971px;}
.y0_c00178{bottom:0.000000px;}
.y4_c00178{bottom:75.720270px;}
.y3_c00178{bottom:113.880254px;}
.yf_c00178{bottom:244.019902px;}
.ye_c00178{bottom:289.919884px;}
.yd_c00178{bottom:321.059872px;}
.yc_c00178{bottom:352.019859px;}
.yb_c00178{bottom:397.019841px;}
.ya_c00178{bottom:440.399824px;}
.y9_c00178{bottom:480.719808px;}
.y8_c00178{bottom:1025.759590px;}
.y7_c00178{bottom:1056.719577px;}
.y6_c00178{bottom:1087.859565px;}
.y5_c00178{bottom:1118.819552px;}
.y2_c00178{bottom:1175.879530px;}
.y1_c00178{bottom:1196.039522px;}
.h2_c00178{height:44.149201px;}
.h1_c00178{height:58.651148px;}
.h4_c00178{height:65.010911px;}
.h3_c00178{height:70.664034px;}
.h0_c00178{height:1263.000000px;}
.w0_c00178{width:892.500000px;}
.x0_c00178{left:0.000000px;}
.x5_c00178{left:127.800262px;}
.x6_c00178{left:180.899928px;}
.x1_c00178{left:181.979927px;}
.x8_c00178{left:294.299882px;}
.x2_c00178{left:329.219408px;}
.x4_c00178{left:434.159826px;}
.x9_c00178{left:444.959674px;}
.x7_c00178{left:743.039345px;}
.x3_c00178{left:765.539694px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
._1_c00178{margin-left:-0.982555pt;}
._0_c00178{width:1.314090pt;}
._2_c00178{width:2.512460pt;}
._5_c00178{width:3.830419pt;}
._3_c00178{width:7.741228pt;}
._6_c00178{width:11.133122pt;}
._7_c00178{width:12.125349pt;}
._4_c00178{width:27.047017pt;}
.fs0_c00178{font-size:53.119979pt;}
.fs1_c00178{font-size:58.879976pt;}
.fs2_c00178{font-size:63.999974pt;}
.y0_c00178{bottom:0.000000pt;}
.y4_c00178{bottom:67.306906pt;}
.y3_c00178{bottom:101.226893pt;}
.yf_c00178{bottom:216.906580pt;}
.ye_c00178{bottom:257.706564pt;}
.yd_c00178{bottom:285.386553pt;}
.yc_c00178{bottom:312.906542pt;}
.yb_c00178{bottom:352.906526pt;}
.ya_c00178{bottom:391.466510pt;}
.y9_c00178{bottom:427.306496pt;}
.y8_c00178{bottom:911.786302pt;}
.y7_c00178{bottom:939.306291pt;}
.y6_c00178{bottom:966.986280pt;}
.y5_c00178{bottom:994.506269pt;}
.y2_c00178{bottom:1045.226249pt;}
.y1_c00178{bottom:1063.146241pt;}
.h2_c00178{height:39.243734pt;}
.h1_c00178{height:52.134354pt;}
.h4_c00178{height:57.787477pt;}
.h3_c00178{height:62.812475pt;}
.h0_c00178{height:1122.666667pt;}
.w0_c00178{width:793.333333pt;}
.x0_c00178{left:0.000000pt;}
.x5_c00178{left:113.600233pt;}
.x6_c00178{left:160.799936pt;}
.x1_c00178{left:161.759935pt;}
.x8_c00178{left:261.599895pt;}
.x2_c00178{left:292.639474pt;}
.x4_c00178{left:385.919846pt;}
.x9_c00178{left:395.519710pt;}
.x7_c00178{left:660.479417pt;}
.x3_c00178{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66f141af6de2636313e3985b.woff2')format("woff");}.ff1_c00179{font-family:ff1_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:ff2_c00179;src:url('chunks/assets/font_6e5ec67bc7bba23a398aa80e.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:0.675781;font-style:normal;font-weight:normal;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_722b8f00b2069340d61d2dba.woff2')format("woff");}.ff3_c00179{font-family:ff3_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;}
.m0_c00179{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00179{word-spacing:-17.999993px;}
.ws1_c00179{word-spacing:0.000000px;}
._1_c00179{margin-left:-1.105374px;}
._0_c00179{width:1.195563px;}
._2_c00179{width:3.015886px;}
._6_c00179{width:4.772505px;}
._7_c00179{width:6.246420px;}
._3_c00179{width:9.372590px;}
._5_c00179{width:10.743885px;}
._4_c00179{width:11.783006px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs0_c00179{font-size:59.759976px;}
.fs1_c00179{font-size:66.239974px;}
.fs2_c00179{font-size:71.999971px;}
.y0_c00179{bottom:0.000000px;}
.y4_c00179{bottom:75.719970px;}
.y3_c00179{bottom:113.879954px;}
.y14_c00179{bottom:186.779925px;}
.y13_c00179{bottom:232.859907px;}
.y12_c00179{bottom:263.819894px;}
.y11_c00179{bottom:294.959882px;}
.y10_c00179{bottom:325.919870px;}
.yf_c00179{bottom:357.059857px;}
.ye_c00179{bottom:388.019845px;}
.yd_c00179{bottom:419.159832px;}
.yc_c00179{bottom:450.119820px;}
.yb_c00179{bottom:496.199802px;}
.ya_c00179{bottom:527.339789px;}
.y9_c00179{bottom:558.299777px;}
.y8_c00179{bottom:589.439764px;}
.y7_c00179{bottom:634.259746px;}
.y6_c00179{bottom:674.399730px;}
.y5_c00179{bottom:884.639646px;}
.y2_c00179{bottom:1156.979537px;}
.y1_c00179{bottom:1195.859522px;}
.h2_c00179{height:44.149201px;}
.h1_c00179{height:58.651148px;}
.h4_c00179{height:65.010911px;}
.h5_c00179{height:70.628878px;}
.h3_c00179{height:70.664034px;}
.h0_c00179{height:1263.000000px;}
.w0_c00179{width:892.500000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:127.799949px;}
.x6_c00179{left:180.899863px;}
.x4_c00179{left:213.839914px;}
.x2_c00179{left:434.159514px;}
.x5_c00179{left:676.259729px;}
.x3_c00179{left:730.079708px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:-15.999994pt;}
.ws1_c00179{word-spacing:0.000000pt;}
._1_c00179{margin-left:-0.982555pt;}
._0_c00179{width:1.062723pt;}
._2_c00179{width:2.680788pt;}
._6_c00179{width:4.242226pt;}
._7_c00179{width:5.552374pt;}
._3_c00179{width:8.331191pt;}
._5_c00179{width:9.550120pt;}
._4_c00179{width:10.473783pt;}
.fs0_c00179{font-size:53.119979pt;}
.fs1_c00179{font-size:58.879976pt;}
.fs2_c00179{font-size:63.999974pt;}
.y0_c00179{bottom:0.000000pt;}
.y4_c00179{bottom:67.306640pt;}
.y3_c00179{bottom:101.226626pt;}
.y14_c00179{bottom:166.026600pt;}
.y13_c00179{bottom:206.986584pt;}
.y12_c00179{bottom:234.506573pt;}
.y11_c00179{bottom:262.186562pt;}
.y10_c00179{bottom:289.706551pt;}
.yf_c00179{bottom:317.386540pt;}
.ye_c00179{bottom:344.906529pt;}
.yd_c00179{bottom:372.586518pt;}
.yc_c00179{bottom:400.106507pt;}
.yb_c00179{bottom:441.066490pt;}
.ya_c00179{bottom:468.746479pt;}
.y9_c00179{bottom:496.266468pt;}
.y8_c00179{bottom:523.946457pt;}
.y7_c00179{bottom:563.786441pt;}
.y6_c00179{bottom:599.466427pt;}
.y5_c00179{bottom:786.346352pt;}
.y2_c00179{bottom:1028.426255pt;}
.y1_c00179{bottom:1062.986241pt;}
.h2_c00179{height:39.243734pt;}
.h1_c00179{height:52.134354pt;}
.h4_c00179{height:57.787477pt;}
.h5_c00179{height:62.781225pt;}
.h3_c00179{height:62.812475pt;}
.h0_c00179{height:1122.666667pt;}
.w0_c00179{width:793.333333pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:113.599955pt;}
.x6_c00179{left:160.799878pt;}
.x4_c00179{left:190.079924pt;}
.x2_c00179{left:385.919568pt;}
.x5_c00179{left:601.119760pt;}
.x3_c00179{left:648.959740pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2134f9675bb77149a68a9265.woff2')format("woff");}.ff1_c00180{font-family:ff1_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:ff2_c00180;src:url('chunks/assets/font_d928fc8248d3f43c6fd55498.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.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:0.000000px;}
._3_c00180{margin-left:-2.953882px;}
._1_c00180{margin-left:-1.105374px;}
._0_c00180{width:1.478351px;}
._4_c00180{width:2.570125px;}
._5_c00180{width:3.587964px;}
._6_c00180{width:5.591807px;}
._7_c00180{width:6.620629px;}
._2_c00180{width:16.463451px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs0_c00180{font-size:59.759976px;}
.fs1_c00180{font-size:66.239974px;}
.fs2_c00180{font-size:71.999971px;}
.y0_c00180{bottom:0.000000px;}
.y4_c00180{bottom:75.720270px;}
.y3_c00180{bottom:113.880254px;}
.yc_c00180{bottom:133.859946px;}
.yb_c00180{bottom:164.999934px;}
.ya_c00180{bottom:211.079916px;}
.y9_c00180{bottom:242.039903px;}
.y8_c00180{bottom:273.179891px;}
.y7_c00180{bottom:304.139878px;}
.y6_c00180{bottom:349.139860px;}
.y5_c00180{bottom:389.279844px;}
.y2_c00180{bottom:1175.879530px;}
.y1_c00180{bottom:1196.039522px;}
.h2_c00180{height:44.149201px;}
.h1_c00180{height:58.651148px;}
.h4_c00180{height:65.010911px;}
.h3_c00180{height:70.664034px;}
.h0_c00180{height:1263.000000px;}
.w0_c00180{width:892.500000px;}
.x0_c00180{left:0.000000px;}
.x5_c00180{left:127.800262px;}
.x8_c00180{left:180.899928px;}
.x1_c00180{left:181.979927px;}
.x7_c00180{left:252.539899px;}
.x2_c00180{left:329.219408px;}
.x4_c00180{left:434.159826px;}
.x6_c00180{left:743.039703px;}
.x3_c00180{left:765.539694px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:0.000000pt;}
._3_c00180{margin-left:-2.625673pt;}
._1_c00180{margin-left:-0.982555pt;}
._0_c00180{width:1.314090pt;}
._4_c00180{width:2.284555pt;}
._5_c00180{width:3.189302pt;}
._6_c00180{width:4.970495pt;}
._7_c00180{width:5.885004pt;}
._2_c00180{width:14.634179pt;}
.fs0_c00180{font-size:53.119979pt;}
.fs1_c00180{font-size:58.879976pt;}
.fs2_c00180{font-size:63.999974pt;}
.y0_c00180{bottom:0.000000pt;}
.y4_c00180{bottom:67.306906pt;}
.y3_c00180{bottom:101.226893pt;}
.yc_c00180{bottom:118.986619pt;}
.yb_c00180{bottom:146.666608pt;}
.ya_c00180{bottom:187.626592pt;}
.y9_c00180{bottom:215.146581pt;}
.y8_c00180{bottom:242.826570pt;}
.y7_c00180{bottom:270.346559pt;}
.y6_c00180{bottom:310.346543pt;}
.y5_c00180{bottom:346.026528pt;}
.y2_c00180{bottom:1045.226249pt;}
.y1_c00180{bottom:1063.146241pt;}
.h2_c00180{height:39.243734pt;}
.h1_c00180{height:52.134354pt;}
.h4_c00180{height:57.787477pt;}
.h3_c00180{height:62.812475pt;}
.h0_c00180{height:1122.666667pt;}
.w0_c00180{width:793.333333pt;}
.x0_c00180{left:0.000000pt;}
.x5_c00180{left:113.600233pt;}
.x8_c00180{left:160.799936pt;}
.x1_c00180{left:161.759935pt;}
.x7_c00180{left:224.479910pt;}
.x2_c00180{left:292.639474pt;}
.x4_c00180{left:385.919846pt;}
.x6_c00180{left:660.479736pt;}
.x3_c00180{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07adb38f1bc26aa19c51c0e5.woff2')format("woff");}.ff1_c00181{font-family:ff1_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:ff2_c00181;src:url('chunks/assets/font_fc186a8e9070f0271b2a7c34.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:0.675781;font-style:normal;font-weight:normal;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_6f446b6f5e12864b0cccf237.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;}
.m0_c00181{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00181{word-spacing:0.000000px;}
._1_c00181{margin-left:-1.105374px;}
._0_c00181{width:1.195563px;}
._6_c00181{width:4.308389px;}
._7_c00181{width:5.363258px;}
._2_c00181{width:6.381104px;}
._3_c00181{width:8.024012px;}
._4_c00181{width:19.366416px;}
._5_c00181{width:20.736477px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs0_c00181{font-size:59.759976px;}
.fs1_c00181{font-size:66.239974px;}
.fs2_c00181{font-size:71.999971px;}
.y0_c00181{bottom:0.000000px;}
.y4_c00181{bottom:75.719970px;}
.y3_c00181{bottom:113.879954px;}
.y10_c00181{bottom:182.639927px;}
.yf_c00181{bottom:222.239911px;}
.ye_c00181{bottom:498.179801px;}
.yd_c00181{bottom:529.139788px;}
.yc_c00181{bottom:560.279776px;}
.yb_c00181{bottom:606.179758px;}
.ya_c00181{bottom:651.179740px;}
.y9_c00181{bottom:691.319723px;}
.y8_c00181{bottom:1024.859590px;}
.y7_c00181{bottom:1055.999578px;}
.y6_c00181{bottom:1086.959565px;}
.y5_c00181{bottom:1118.099553px;}
.y2_c00181{bottom:1156.979537px;}
.y1_c00181{bottom:1195.859522px;}
.h2_c00181{height:44.149201px;}
.h1_c00181{height:58.651148px;}
.h4_c00181{height:65.010911px;}
.h5_c00181{height:70.628878px;}
.h3_c00181{height:70.664034px;}
.h0_c00181{height:1263.000000px;}
.w0_c00181{width:892.500000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:127.799949px;}
.x5_c00181{left:180.899928px;}
.x7_c00181{left:246.779412px;}
.x4_c00181{left:296.459881px;}
.x2_c00181{left:434.159514px;}
.x3_c00181{left:740.880772px;}
.x6_c00181{left:742.319703px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
._1_c00181{margin-left:-0.982555pt;}
._0_c00181{width:1.062723pt;}
._6_c00181{width:3.829679pt;}
._7_c00181{width:4.767340pt;}
._2_c00181{width:5.672092pt;}
._3_c00181{width:7.132455pt;}
._4_c00181{width:17.214592pt;}
._5_c00181{width:18.432424pt;}
.fs0_c00181{font-size:53.119979pt;}
.fs1_c00181{font-size:58.879976pt;}
.fs2_c00181{font-size:63.999974pt;}
.y0_c00181{bottom:0.000000pt;}
.y4_c00181{bottom:67.306640pt;}
.y3_c00181{bottom:101.226626pt;}
.y10_c00181{bottom:162.346602pt;}
.yf_c00181{bottom:197.546588pt;}
.ye_c00181{bottom:442.826490pt;}
.yd_c00181{bottom:470.346479pt;}
.yc_c00181{bottom:498.026467pt;}
.yb_c00181{bottom:538.826451pt;}
.ya_c00181{bottom:578.826435pt;}
.y9_c00181{bottom:614.506421pt;}
.y8_c00181{bottom:910.986302pt;}
.y7_c00181{bottom:938.666291pt;}
.y6_c00181{bottom:966.186280pt;}
.y5_c00181{bottom:993.866269pt;}
.y2_c00181{bottom:1028.426255pt;}
.y1_c00181{bottom:1062.986241pt;}
.h2_c00181{height:39.243734pt;}
.h1_c00181{height:52.134354pt;}
.h4_c00181{height:57.787477pt;}
.h5_c00181{height:62.781225pt;}
.h3_c00181{height:62.812475pt;}
.h0_c00181{height:1122.666667pt;}
.w0_c00181{width:793.333333pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:113.599955pt;}
.x5_c00181{left:160.799936pt;}
.x7_c00181{left:219.359477pt;}
.x4_c00181{left:263.519895pt;}
.x2_c00181{left:385.919568pt;}
.x3_c00181{left:658.560686pt;}
.x6_c00181{left:659.839736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76a143263c40b021a012b7e1.woff2')format("woff");}.ff1_c00182{font-family:ff1_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:ff2_c00182;src:url('chunks/assets/font_53d4ed5631ce0c0652244198.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:0.675781;font-style:normal;font-weight:normal;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_605caa29a68fd27465226a50.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:1.311035;font-style:normal;font-weight:normal;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_4c19149890154aff910a7cb6.woff2')format("woff");}.ff4_c00182{font-family:ff4_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;}
.m0_c00182{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls3_c00182{letter-spacing:0.000000px;}
.ls1_c00182{letter-spacing:0.009900px;}
.ls2_c00182{letter-spacing:0.010620px;}
.ls0_c00182{letter-spacing:0.021282px;}
.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;}
}
.ws0_c00182{word-spacing:-18.021275px;}
.ws1_c00182{word-spacing:0.000000px;}
._1_c00182{margin-left:-1.105374px;}
._0_c00182{width:1.478351px;}
._2_c00182{width:2.533318px;}
._5_c00182{width:3.900753px;}
._6_c00182{width:4.902310px;}
._7_c00182{width:6.003034px;}
._4_c00182{width:10.845305px;}
._3_c00182{width:13.016995px;}
._8_c00182{width:37.281559px;}
._9_c00182{width:38.794796px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs0_c00182{font-size:59.759976px;}
.fs1_c00182{font-size:66.239974px;}
.fs2_c00182{font-size:71.999971px;}
.y0_c00182{bottom:0.000000px;}
.y4_c00182{bottom:75.720270px;}
.y3_c00182{bottom:113.880254px;}
.y13_c00182{bottom:167.519933px;}
.y12_c00182{bottom:198.479921px;}
.y11_c00182{bottom:244.559902px;}
.y10_c00182{bottom:275.519890px;}
.yf_c00182{bottom:306.659877px;}
.ye_c00182{bottom:337.619865px;}
.yd_c00182{bottom:382.619847px;}
.yc_c00182{bottom:422.759831px;}
.yb_c00182{bottom:935.219626px;}
.ya_c00182{bottom:966.179614px;}
.y9_c00182{bottom:997.319601px;}
.y8_c00182{bottom:1028.279589px;}
.y7_c00182{bottom:1059.419576px;}
.y6_c00182{bottom:1090.379564px;}
.y5_c00182{bottom:1119.899852px;}
.y2_c00182{bottom:1175.879530px;}
.y1_c00182{bottom:1196.039522px;}
.h2_c00182{height:44.149201px;}
.h1_c00182{height:58.651148px;}
.h3_c00182{height:66.757473px;}
.h4_c00182{height:70.664034px;}
.h0_c00182{height:1263.000000px;}
.w0_c00182{width:892.500000px;}
.x0_c00182{left:0.000000px;}
.x5_c00182{left:127.800262px;}
.x8_c00182{left:170.999932px;}
.x6_c00182{left:180.899928px;}
.x1_c00182{left:181.979927px;}
.x2_c00182{left:329.219408px;}
.x4_c00182{left:434.159826px;}
.x7_c00182{left:745.380961px;}
.x3_c00182{left:765.539694px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls3_c00182{letter-spacing:0.000000pt;}
.ls1_c00182{letter-spacing:0.008800pt;}
.ls2_c00182{letter-spacing:0.009440pt;}
.ls0_c00182{letter-spacing:0.018917pt;}
.ws0_c00182{word-spacing:-16.018911pt;}
.ws1_c00182{word-spacing:0.000000pt;}
._1_c00182{margin-left:-0.982555pt;}
._0_c00182{width:1.314090pt;}
._2_c00182{width:2.251838pt;}
._5_c00182{width:3.467336pt;}
._6_c00182{width:4.357609pt;}
._7_c00182{width:5.336031pt;}
._4_c00182{width:9.640271pt;}
._3_c00182{width:11.570662pt;}
._8_c00182{width:33.139163pt;}
._9_c00182{width:34.484263pt;}
.fs0_c00182{font-size:53.119979pt;}
.fs1_c00182{font-size:58.879976pt;}
.fs2_c00182{font-size:63.999974pt;}
.y0_c00182{bottom:0.000000pt;}
.y4_c00182{bottom:67.306906pt;}
.y3_c00182{bottom:101.226893pt;}
.y13_c00182{bottom:148.906607pt;}
.y12_c00182{bottom:176.426596pt;}
.y11_c00182{bottom:217.386580pt;}
.y10_c00182{bottom:244.906569pt;}
.yf_c00182{bottom:272.586558pt;}
.ye_c00182{bottom:300.106547pt;}
.yd_c00182{bottom:340.106531pt;}
.yc_c00182{bottom:375.786516pt;}
.yb_c00182{bottom:831.306334pt;}
.ya_c00182{bottom:858.826323pt;}
.y9_c00182{bottom:886.506312pt;}
.y8_c00182{bottom:914.026301pt;}
.y7_c00182{bottom:941.706290pt;}
.y6_c00182{bottom:969.226279pt;}
.y5_c00182{bottom:995.466535pt;}
.y2_c00182{bottom:1045.226249pt;}
.y1_c00182{bottom:1063.146241pt;}
.h2_c00182{height:39.243734pt;}
.h1_c00182{height:52.134354pt;}
.h3_c00182{height:59.339976pt;}
.h4_c00182{height:62.812475pt;}
.h0_c00182{height:1122.666667pt;}
.w0_c00182{width:793.333333pt;}
.x0_c00182{left:0.000000pt;}
.x5_c00182{left:113.600233pt;}
.x8_c00182{left:151.999939pt;}
.x6_c00182{left:160.799936pt;}
.x1_c00182{left:161.759935pt;}
.x2_c00182{left:292.639474pt;}
.x4_c00182{left:385.919846pt;}
.x7_c00182{left:662.560854pt;}
.x3_c00182{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a395ae6fde2f005ee0486e5d.woff2')format("woff");}.ff1_c00183{font-family:ff1_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:ff2_c00183;src:url('chunks/assets/font_57f074acccf3942e95a407ca.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:0.675781;font-style:normal;font-weight:normal;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_0beb9c9c258188f97331a569.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;}
.m0_c00183{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls1_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:0.021238px;}
.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.021231px;}
.ws1_c00183{word-spacing:0.000000px;}
._1_c00183{margin-left:-1.105374px;}
._0_c00183{width:1.195563px;}
._2_c00183{width:4.699206px;}
._3_c00183{width:6.409898px;}
._5_c00183{width:11.892595px;}
._6_c00183{width:13.320595px;}
._4_c00183{width:15.114778px;}
.fc1_c00183{color:rgb(255,0,0);}
.fc0_c00183{color:rgb(0,0,0);}
.fs0_c00183{font-size:59.759976px;}
.fs1_c00183{font-size:66.239974px;}
.fs2_c00183{font-size:71.999971px;}
.y0_c00183{bottom:0.000000px;}
.y4_c00183{bottom:75.719970px;}
.y3_c00183{bottom:113.879954px;}
.ye_c00183{bottom:146.460241px;}
.yd_c00183{bottom:186.779925px;}
.yc_c00183{bottom:570.719772px;}
.yb_c00183{bottom:601.679759px;}
.ya_c00183{bottom:632.819747px;}
.y9_c00183{bottom:663.779734px;}
.y8_c00183{bottom:708.779716px;}
.y7_c00183{bottom:748.919700px;}
.y6_c00183{bottom:1086.959565px;}
.y5_c00183{bottom:1118.099553px;}
.y2_c00183{bottom:1156.979537px;}
.y1_c00183{bottom:1195.859522px;}
.h2_c00183{height:44.149201px;}
.h1_c00183{height:58.651148px;}
.h4_c00183{height:65.010911px;}
.h3_c00183{height:70.664034px;}
.h0_c00183{height:1263.000000px;}
.w0_c00183{width:892.500000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:127.799949px;}
.x5_c00183{left:180.899928px;}
.x7_c00183{left:219.959912px;}
.x4_c00183{left:271.619891px;}
.x2_c00183{left:434.159514px;}
.x8_c00183{left:669.959732px;}
.x6_c00183{left:688.499824px;}
.x3_c00183{left:719.999095px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls1_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:0.018878pt;}
.ws0_c00183{word-spacing:-16.018872pt;}
.ws1_c00183{word-spacing:0.000000pt;}
._1_c00183{margin-left:-0.982555pt;}
._0_c00183{width:1.062723pt;}
._2_c00183{width:4.177072pt;}
._3_c00183{width:5.697687pt;}
._5_c00183{width:10.571196pt;}
._6_c00183{width:11.840529pt;}
._4_c00183{width:13.435358pt;}
.fs0_c00183{font-size:53.119979pt;}
.fs1_c00183{font-size:58.879976pt;}
.fs2_c00183{font-size:63.999974pt;}
.y0_c00183{bottom:0.000000pt;}
.y4_c00183{bottom:67.306640pt;}
.y3_c00183{bottom:101.226626pt;}
.ye_c00183{bottom:130.186881pt;}
.yd_c00183{bottom:166.026600pt;}
.yc_c00183{bottom:507.306464pt;}
.yb_c00183{bottom:534.826453pt;}
.ya_c00183{bottom:562.506442pt;}
.y9_c00183{bottom:590.026431pt;}
.y8_c00183{bottom:630.026415pt;}
.y7_c00183{bottom:665.706400pt;}
.y6_c00183{bottom:966.186280pt;}
.y5_c00183{bottom:993.866269pt;}
.y2_c00183{bottom:1028.426255pt;}
.y1_c00183{bottom:1062.986241pt;}
.h2_c00183{height:39.243734pt;}
.h1_c00183{height:52.134354pt;}
.h4_c00183{height:57.787477pt;}
.h3_c00183{height:62.812475pt;}
.h0_c00183{height:1122.666667pt;}
.w0_c00183{width:793.333333pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:113.599955pt;}
.x5_c00183{left:160.799936pt;}
.x7_c00183{left:195.519922pt;}
.x4_c00183{left:241.439903pt;}
.x2_c00183{left:385.919568pt;}
.x8_c00183{left:595.519762pt;}
.x6_c00183{left:611.999843pt;}
.x3_c00183{left:639.999196pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3be9452b2ce2933d34085f16.woff2')format("woff");}.ff1_c00184{font-family:ff1_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:ff2_c00184;src:url('chunks/assets/font_d9b0e9a3b87830e58b5d20ca.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:0.675781;font-style:normal;font-weight:normal;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_0f590c5f447dc015bb37f9ee.woff2')format("woff");}.ff3_c00184{font-family:ff3_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;}
.m0_c00184{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00184{word-spacing:0.000000px;}
._1_c00184{margin-left:-1.105374px;}
._0_c00184{width:1.478351px;}
._3_c00184{width:2.778981px;}
._4_c00184{width:3.871912px;}
._2_c00184{width:5.386739px;}
._5_c00184{width:8.832924px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs0_c00184{font-size:59.759976px;}
.fs1_c00184{font-size:66.239974px;}
.fs2_c00184{font-size:71.999971px;}
.y0_c00184{bottom:0.000000px;}
.y4_c00184{bottom:75.720270px;}
.y3_c00184{bottom:113.880254px;}
.y11_c00184{bottom:232.139907px;}
.y10_c00184{bottom:263.279895px;}
.yf_c00184{bottom:294.239882px;}
.ye_c00184{bottom:325.379870px;}
.yd_c00184{bottom:356.339857px;}
.yc_c00184{bottom:402.419839px;}
.yb_c00184{bottom:447.419821px;}
.ya_c00184{bottom:487.559805px;}
.y9_c00184{bottom:979.679608px;}
.y8_c00184{bottom:1010.639596px;}
.y7_c00184{bottom:1041.779583px;}
.y6_c00184{bottom:1072.739571px;}
.y5_c00184{bottom:1118.819552px;}
.y2_c00184{bottom:1175.879530px;}
.y1_c00184{bottom:1196.039522px;}
.h2_c00184{height:44.149201px;}
.h1_c00184{height:58.651148px;}
.h5_c00184{height:65.010911px;}
.h4_c00184{height:70.628878px;}
.h3_c00184{height:70.664034px;}
.h0_c00184{height:1263.000000px;}
.w0_c00184{width:892.500000px;}
.x0_c00184{left:0.000000px;}
.x5_c00184{left:127.800262px;}
.x6_c00184{left:180.900080px;}
.x1_c00184{left:181.979927px;}
.x8_c00184{left:273.419891px;}
.x2_c00184{left:329.219408px;}
.x4_c00184{left:434.159826px;}
.x7_c00184{left:761.039364px;}
.x3_c00184{left:765.539694px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
._1_c00184{margin-left:-0.982555pt;}
._0_c00184{width:1.314090pt;}
._3_c00184{width:2.470206pt;}
._4_c00184{width:3.441700pt;}
._2_c00184{width:4.788213pt;}
._5_c00184{width:7.851488pt;}
.fs0_c00184{font-size:53.119979pt;}
.fs1_c00184{font-size:58.879976pt;}
.fs2_c00184{font-size:63.999974pt;}
.y0_c00184{bottom:0.000000pt;}
.y4_c00184{bottom:67.306906pt;}
.y3_c00184{bottom:101.226893pt;}
.y11_c00184{bottom:206.346584pt;}
.y10_c00184{bottom:234.026573pt;}
.yf_c00184{bottom:261.546562pt;}
.ye_c00184{bottom:289.226551pt;}
.yd_c00184{bottom:316.746540pt;}
.yc_c00184{bottom:357.706524pt;}
.yb_c00184{bottom:397.706508pt;}
.ya_c00184{bottom:433.386493pt;}
.y9_c00184{bottom:870.826318pt;}
.y8_c00184{bottom:898.346307pt;}
.y7_c00184{bottom:926.026296pt;}
.y6_c00184{bottom:953.546285pt;}
.y5_c00184{bottom:994.506269pt;}
.y2_c00184{bottom:1045.226249pt;}
.y1_c00184{bottom:1063.146241pt;}
.h2_c00184{height:39.243734pt;}
.h1_c00184{height:52.134354pt;}
.h5_c00184{height:57.787477pt;}
.h4_c00184{height:62.781225pt;}
.h3_c00184{height:62.812475pt;}
.h0_c00184{height:1122.666667pt;}
.w0_c00184{width:793.333333pt;}
.x0_c00184{left:0.000000pt;}
.x5_c00184{left:113.600233pt;}
.x6_c00184{left:160.800071pt;}
.x1_c00184{left:161.759935pt;}
.x8_c00184{left:243.039903pt;}
.x2_c00184{left:292.639474pt;}
.x4_c00184{left:385.919846pt;}
.x7_c00184{left:676.479434pt;}
.x3_c00184{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dae149db606b7b1648ceecfc.woff2')format("woff");}.ff1_c00185{font-family:ff1_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:ff2_c00185;src:url('chunks/assets/font_3c6f33d9a88e4b5f5b5c28cb.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:0.675781;font-style:normal;font-weight:normal;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_45c9c555a2aea42828dc425e.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;}
.m0_c00185{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00185{word-spacing:0.000000px;}
._1_c00185{margin-left:-1.105374px;}
._0_c00185{width:1.195563px;}
._4_c00185{width:7.173331px;}
._2_c00185{width:8.542406px;}
._3_c00185{width:9.572309px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs0_c00185{font-size:59.759976px;}
.fs1_c00185{font-size:66.239974px;}
.fs2_c00185{font-size:71.999971px;}
.y0_c00185{bottom:0.000000px;}
.y4_c00185{bottom:75.719970px;}
.y3_c00185{bottom:113.879954px;}
.yb_c00185{bottom:136.019946px;}
.ya_c00185{bottom:182.099927px;}
.y9_c00185{bottom:213.059915px;}
.y8_c00185{bottom:244.199902px;}
.y7_c00185{bottom:275.159890px;}
.y6_c00185{bottom:320.159872px;}
.y5_c00185{bottom:360.479856px;}
.y2_c00185{bottom:1156.979537px;}
.y1_c00185{bottom:1195.859522px;}
.h2_c00185{height:44.149201px;}
.h1_c00185{height:58.651148px;}
.h4_c00185{height:65.010911px;}
.h3_c00185{height:70.664034px;}
.h0_c00185{height:1263.000000px;}
.w0_c00185{width:892.500000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:127.799949px;}
.x5_c00185{left:180.899928px;}
.x4_c00185{left:255.959898px;}
.x2_c00185{left:434.159514px;}
.x3_c00185{left:746.459701px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.000000pt;}
._1_c00185{margin-left:-0.982555pt;}
._0_c00185{width:1.062723pt;}
._4_c00185{width:6.376294pt;}
._2_c00185{width:7.593250pt;}
._3_c00185{width:8.508719pt;}
.fs0_c00185{font-size:53.119979pt;}
.fs1_c00185{font-size:58.879976pt;}
.fs2_c00185{font-size:63.999974pt;}
.y0_c00185{bottom:0.000000pt;}
.y4_c00185{bottom:67.306640pt;}
.y3_c00185{bottom:101.226626pt;}
.yb_c00185{bottom:120.906618pt;}
.ya_c00185{bottom:161.866602pt;}
.y9_c00185{bottom:189.386591pt;}
.y8_c00185{bottom:217.066580pt;}
.y7_c00185{bottom:244.586569pt;}
.y6_c00185{bottom:284.586553pt;}
.y5_c00185{bottom:320.426538pt;}
.y2_c00185{bottom:1028.426255pt;}
.y1_c00185{bottom:1062.986241pt;}
.h2_c00185{height:39.243734pt;}
.h1_c00185{height:52.134354pt;}
.h4_c00185{height:57.787477pt;}
.h3_c00185{height:62.812475pt;}
.h0_c00185{height:1122.666667pt;}
.w0_c00185{width:793.333333pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:113.599955pt;}
.x5_c00185{left:160.799936pt;}
.x4_c00185{left:227.519909pt;}
.x2_c00185{left:385.919568pt;}
.x3_c00185{left:663.519735pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2653dd990fec580ce032a3a.woff2')format("woff");}.ff1_c00186{font-family:ff1_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:ff2_c00186;src:url('chunks/assets/font_e33fc05ab3b4340cd198fcab.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:0.675781;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.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;}
.m0_c00186{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00186{word-spacing:0.000000px;}
._1_c00186{margin-left:-1.105374px;}
._0_c00186{width:1.478351px;}
._2_c00186{width:21.510033px;}
._3_c00186{width:22.882856px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs0_c00186{font-size:59.759976px;}
.fs1_c00186{font-size:66.239974px;}
.fs2_c00186{font-size:71.999971px;}
.y0_c00186{bottom:0.000000px;}
.y4_c00186{bottom:75.720270px;}
.y3_c00186{bottom:113.880254px;}
.yc_c00186{bottom:173.999930px;}
.yb_c00186{bottom:215.579914px;}
.ya_c00186{bottom:580.619768px;}
.y9_c00186{bottom:626.699749px;}
.y8_c00186{bottom:657.659737px;}
.y7_c00186{bottom:702.659719px;}
.y6_c00186{bottom:746.039702px;}
.y5_c00186{bottom:786.179686px;}
.y2_c00186{bottom:1175.879530px;}
.y1_c00186{bottom:1196.039522px;}
.h2_c00186{height:44.149201px;}
.h1_c00186{height:58.651148px;}
.h4_c00186{height:65.010911px;}
.h5_c00186{height:70.628878px;}
.h3_c00186{height:70.664034px;}
.h0_c00186{height:1263.000000px;}
.w0_c00186{width:892.500000px;}
.x0_c00186{left:0.000000px;}
.x5_c00186{left:127.800262px;}
.x9_c00186{left:180.899928px;}
.x1_c00186{left:181.979927px;}
.x7_c00186{left:293.939882px;}
.x2_c00186{left:329.219408px;}
.x4_c00186{left:434.159826px;}
.x8_c00186{left:471.600007px;}
.xa_c00186{left:722.339573px;}
.x6_c00186{left:734.039706px;}
.x3_c00186{left:765.539694px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.000000pt;}
._1_c00186{margin-left:-0.982555pt;}
._0_c00186{width:1.314090pt;}
._2_c00186{width:19.120029pt;}
._3_c00186{width:20.340317pt;}
.fs0_c00186{font-size:53.119979pt;}
.fs1_c00186{font-size:58.879976pt;}
.fs2_c00186{font-size:63.999974pt;}
.y0_c00186{bottom:0.000000pt;}
.y4_c00186{bottom:67.306906pt;}
.y3_c00186{bottom:101.226893pt;}
.yc_c00186{bottom:154.666605pt;}
.yb_c00186{bottom:191.626590pt;}
.ya_c00186{bottom:516.106460pt;}
.y9_c00186{bottom:557.066444pt;}
.y8_c00186{bottom:584.586433pt;}
.y7_c00186{bottom:624.586417pt;}
.y6_c00186{bottom:663.146401pt;}
.y5_c00186{bottom:698.826387pt;}
.y2_c00186{bottom:1045.226249pt;}
.y1_c00186{bottom:1063.146241pt;}
.h2_c00186{height:39.243734pt;}
.h1_c00186{height:52.134354pt;}
.h4_c00186{height:57.787477pt;}
.h5_c00186{height:62.781225pt;}
.h3_c00186{height:62.812475pt;}
.h0_c00186{height:1122.666667pt;}
.w0_c00186{width:793.333333pt;}
.x0_c00186{left:0.000000pt;}
.x5_c00186{left:113.600233pt;}
.x9_c00186{left:160.799936pt;}
.x1_c00186{left:161.759935pt;}
.x7_c00186{left:261.279895pt;}
.x2_c00186{left:292.639474pt;}
.x4_c00186{left:385.919846pt;}
.x8_c00186{left:419.200006pt;}
.xa_c00186{left:642.079620pt;}
.x6_c00186{left:652.479739pt;}
.x3_c00186{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d18b2a668b294fde9004e403.woff2')format("woff");}.ff1_c00187{font-family:ff1_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:ff2_c00187;src:url('chunks/assets/font_4740975de66b979ea4c7eaad.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:0.675781;font-style:normal;font-weight:normal;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_42ff2d079a9f2eabde213def.woff2')format("woff");}.ff3_c00187{font-family:ff3_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:ff4_c00187;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00187{font-family:ff4_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;}
.m0_c00187{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls7_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.010620px;}
.ls4_c00187{letter-spacing:0.021282px;}
.ls5_c00187{letter-spacing:0.153901px;}
.ls6_c00187{letter-spacing:0.182640px;}
.ls3_c00187{letter-spacing:0.374281px;}
.ls2_c00187{letter-spacing:2.892299px;}
.ls1_c00187{letter-spacing:5.053618px;}
.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;}
}
.ws0_c00187{word-spacing:-17.999993px;}
.ws1_c00187{word-spacing:-12.434276px;}
.ws2_c00187{word-spacing:-8.786876px;}
.ws3_c00187{word-spacing:0.000000px;}
._7_c00187{margin-left:-12.716934px;}
._1_c00187{margin-left:-1.105374px;}
._0_c00187{width:1.195563px;}
._5_c00187{width:3.024725px;}
._6_c00187{width:4.127827px;}
._4_c00187{width:5.163453px;}
._2_c00187{width:15.114778px;}
._3_c00187{width:16.935751px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs5_c00187{font-size:38.879984px;}
.fs3_c00187{font-size:48.239981px;}
.fs0_c00187{font-size:59.759976px;}
.fs1_c00187{font-size:66.239974px;}
.fs4_c00187{font-size:69.119972px;}
.fs2_c00187{font-size:71.999971px;}
.y0_c00187{bottom:0.000000px;}
.y4_c00187{bottom:75.719970px;}
.y3_c00187{bottom:113.879954px;}
.y1b_c00187{bottom:133.499947px;}
.y1a_c00187{bottom:151.859939px;}
.y19_c00187{bottom:159.419936px;}
.y18_c00187{bottom:170.759932px;}
.y17_c00187{bottom:200.279920px;}
.y16_c00187{bottom:231.239908px;}
.y15_c00187{bottom:262.379895px;}
.y14_c00187{bottom:293.339883px;}
.y13_c00187{bottom:323.759870px;}
.y11_c00187{bottom:354.179858px;}
.y12_c00187{bottom:362.459855px;}
.y10_c00187{bottom:385.139846px;}
.yf_c00187{bottom:416.279833px;}
.ye_c00187{bottom:447.239821px;}
.yd_c00187{bottom:478.379809px;}
.yc_c00187{bottom:523.199791px;}
.yb_c00187{bottom:563.519775px;}
.ya_c00187{bottom:753.599699px;}
.y9_c00187{bottom:784.559686px;}
.y8_c00187{bottom:815.699674px;}
.y7_c00187{bottom:846.659661px;}
.y6_c00187{bottom:891.659643px;}
.y5_c00187{bottom:931.979627px;}
.y2_c00187{bottom:1156.979537px;}
.y1_c00187{bottom:1195.859522px;}
.h9_c00187{height:25.913662px;}
.ha_c00187{height:39.830258px;}
.h2_c00187{height:44.149201px;}
.h7_c00187{height:47.344903px;}
.h1_c00187{height:58.651148px;}
.h4_c00187{height:65.010911px;}
.h8_c00187{height:67.837473px;}
.h3_c00187{height:70.628878px;}
.h5_c00187{height:70.664034px;}
.h6_c00187{height:72.562471px;}
.h0_c00187{height:1263.000000px;}
.w0_c00187{width:892.500000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:127.799949px;}
.xa_c00187{left:142.379943px;}
.x4_c00187{left:155.339938px;}
.x5_c00187{left:180.899928px;}
.x7_c00187{left:279.359888px;}
.x8_c00187{left:330.659868px;}
.x9_c00187{left:349.019860px;}
.x2_c00187{left:434.159514px;}
.x3_c00187{left:727.379709px;}
.x6_c00187{left:765.539358px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls7_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.009440pt;}
.ls4_c00187{letter-spacing:0.018917pt;}
.ls5_c00187{letter-spacing:0.136801pt;}
.ls6_c00187{letter-spacing:0.162347pt;}
.ls3_c00187{letter-spacing:0.332694pt;}
.ls2_c00187{letter-spacing:2.570932pt;}
.ls1_c00187{letter-spacing:4.492105pt;}
.ws0_c00187{word-spacing:-15.999994pt;}
.ws1_c00187{word-spacing:-11.052689pt;}
.ws2_c00187{word-spacing:-7.810557pt;}
.ws3_c00187{word-spacing:0.000000pt;}
._7_c00187{margin-left:-11.303941pt;}
._1_c00187{margin-left:-0.982555pt;}
._0_c00187{width:1.062723pt;}
._5_c00187{width:2.688645pt;}
._6_c00187{width:3.669180pt;}
._4_c00187{width:4.589736pt;}
._2_c00187{width:13.435358pt;}
._3_c00187{width:15.054001pt;}
.fs5_c00187{font-size:34.559986pt;}
.fs3_c00187{font-size:42.879983pt;}
.fs0_c00187{font-size:53.119979pt;}
.fs1_c00187{font-size:58.879976pt;}
.fs4_c00187{font-size:61.439975pt;}
.fs2_c00187{font-size:63.999974pt;}
.y0_c00187{bottom:0.000000pt;}
.y4_c00187{bottom:67.306640pt;}
.y3_c00187{bottom:101.226626pt;}
.y1b_c00187{bottom:118.666619pt;}
.y1a_c00187{bottom:134.986613pt;}
.y19_c00187{bottom:141.706610pt;}
.y18_c00187{bottom:151.786606pt;}
.y17_c00187{bottom:178.026595pt;}
.y16_c00187{bottom:205.546584pt;}
.y15_c00187{bottom:233.226573pt;}
.y14_c00187{bottom:260.746562pt;}
.y13_c00187{bottom:287.786552pt;}
.y11_c00187{bottom:314.826541pt;}
.y12_c00187{bottom:322.186538pt;}
.y10_c00187{bottom:342.346530pt;}
.yf_c00187{bottom:370.026519pt;}
.ye_c00187{bottom:397.546508pt;}
.yd_c00187{bottom:425.226497pt;}
.yc_c00187{bottom:465.066481pt;}
.yb_c00187{bottom:500.906466pt;}
.ya_c00187{bottom:669.866399pt;}
.y9_c00187{bottom:697.386388pt;}
.y8_c00187{bottom:725.066377pt;}
.y7_c00187{bottom:752.586366pt;}
.y6_c00187{bottom:792.586350pt;}
.y5_c00187{bottom:828.426335pt;}
.y2_c00187{bottom:1028.426255pt;}
.y1_c00187{bottom:1062.986241pt;}
.h9_c00187{height:23.034366pt;}
.ha_c00187{height:35.404673pt;}
.h2_c00187{height:39.243734pt;}
.h7_c00187{height:42.084358pt;}
.h1_c00187{height:52.134354pt;}
.h4_c00187{height:57.787477pt;}
.h8_c00187{height:60.299976pt;}
.h3_c00187{height:62.781225pt;}
.h5_c00187{height:62.812475pt;}
.h6_c00187{height:64.499974pt;}
.h0_c00187{height:1122.666667pt;}
.w0_c00187{width:793.333333pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:113.599955pt;}
.xa_c00187{left:126.559949pt;}
.x4_c00187{left:138.079945pt;}
.x5_c00187{left:160.799936pt;}
.x7_c00187{left:248.319901pt;}
.x8_c00187{left:293.919882pt;}
.x9_c00187{left:310.239876pt;}
.x2_c00187{left:385.919568pt;}
.x3_c00187{left:646.559741pt;}
.x6_c00187{left:680.479429pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e0f55eb30677798e26a5a58.woff2')format("woff");}.ff1_c00188{font-family:ff1_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:ff2_c00188;src:url('chunks/assets/font_dee0037485f6444dad24b874.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:0.675781;font-style:normal;font-weight:normal;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_10ebc6e7045fc4091a81ed21.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;}
.m0_c00188{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls3_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.021282px;}
.ls2_c00188{letter-spacing:0.153901px;}
.ls1_c00188{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00188{word-spacing:-17.999993px;}
.ws1_c00188{word-spacing:-12.434276px;}
.ws2_c00188{word-spacing:-9.437756px;}
.ws3_c00188{word-spacing:0.000000px;}
._12_c00188{margin-left:-12.716934px;}
._c_c00188{margin-left:-2.139990px;}
._1_c00188{margin-left:-1.105374px;}
._0_c00188{width:1.478351px;}
._2_c00188{width:3.157799px;}
._e_c00188{width:4.931213px;}
._5_c00188{width:6.761337px;}
._6_c00188{width:7.786571px;}
._4_c00188{width:9.061962px;}
._3_c00188{width:10.299666px;}
._d_c00188{width:11.408214px;}
._f_c00188{width:13.808510px;}
._7_c00188{width:15.633206px;}
._8_c00188{width:19.524741px;}
._a_c00188{width:23.593500px;}
._b_c00188{width:24.606712px;}
._9_c00188{width:26.609662px;}
._10_c00188{width:32.958969px;}
._11_c00188{width:34.543349px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs4_c00188{font-size:41.759983px;}
.fs3_c00188{font-size:48.239981px;}
.fs0_c00188{font-size:59.759976px;}
.fs1_c00188{font-size:66.239974px;}
.fs2_c00188{font-size:71.999971px;}
.y0_c00188{bottom:0.000000px;}
.y4_c00188{bottom:75.720270px;}
.y3_c00188{bottom:113.880254px;}
.y1f_c00188{bottom:133.139947px;}
.y1e_c00188{bottom:151.319939px;}
.y1d_c00188{bottom:158.879936px;}
.y1c_c00188{bottom:171.479931px;}
.y1b_c00188{bottom:226.919909px;}
.y1a_c00188{bottom:257.879897px;}
.y19_c00188{bottom:303.959878px;}
.y18_c00188{bottom:334.919866px;}
.y17_c00188{bottom:366.059854px;}
.y16_c00188{bottom:410.879836px;}
.y15_c00188{bottom:451.199820px;}
.y14_c00188{bottom:537.239785px;}
.y13_c00188{bottom:568.199773px;}
.y12_c00188{bottom:599.339760px;}
.y11_c00188{bottom:630.299748px;}
.y10_c00188{bottom:675.119730px;}
.yf_c00188{bottom:715.439714px;}
.ye_c00188{bottom:855.479658px;}
.yd_c00188{bottom:886.619645px;}
.yb_c00188{bottom:932.519627px;}
.yc_c00188{bottom:940.799624px;}
.ya_c00188{bottom:963.659615px;}
.y9_c00188{bottom:994.619602px;}
.y8_c00188{bottom:1025.759590px;}
.y7_c00188{bottom:1056.719577px;}
.y6_c00188{bottom:1087.859565px;}
.y5_c00188{bottom:1118.819552px;}
.y2_c00188{bottom:1175.879530px;}
.y1_c00188{bottom:1196.039522px;}
.h6_c00188{height:27.833192px;}
.h2_c00188{height:44.149201px;}
.h4_c00188{height:47.344903px;}
.h1_c00188{height:58.651148px;}
.h5_c00188{height:65.010911px;}
.h3_c00188{height:70.664034px;}
.h0_c00188{height:1263.000000px;}
.w0_c00188{width:892.500000px;}
.x0_c00188{left:0.000000px;}
.x5_c00188{left:127.800262px;}
.xb_c00188{left:143.459943px;}
.xc_c00188{left:147.239941px;}
.x8_c00188{left:180.899772px;}
.x1_c00188{left:181.979927px;}
.xa_c00188{left:212.939915px;}
.x9_c00188{left:278.819888px;}
.x2_c00188{left:329.219408px;}
.x6_c00188{left:347.759861px;}
.x7_c00188{left:366.119854px;}
.x4_c00188{left:434.159826px;}
.x3_c00188{left:765.539694px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls3_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.018917pt;}
.ls2_c00188{letter-spacing:0.136801pt;}
.ls1_c00188{letter-spacing:0.332694pt;}
.ws0_c00188{word-spacing:-15.999994pt;}
.ws1_c00188{word-spacing:-11.052689pt;}
.ws2_c00188{word-spacing:-8.389117pt;}
.ws3_c00188{word-spacing:0.000000pt;}
._12_c00188{margin-left:-11.303941pt;}
._c_c00188{margin-left:-1.902214pt;}
._1_c00188{margin-left:-0.982555pt;}
._0_c00188{width:1.314090pt;}
._2_c00188{width:2.806932pt;}
._e_c00188{width:4.383300pt;}
._5_c00188{width:6.010077pt;}
._6_c00188{width:6.921397pt;}
._4_c00188{width:8.055077pt;}
._3_c00188{width:9.155259pt;}
._d_c00188{width:10.140634pt;}
._f_c00188{width:12.274232pt;}
._7_c00188{width:13.896183pt;}
._8_c00188{width:17.355325pt;}
._a_c00188{width:20.972000pt;}
._b_c00188{width:21.872633pt;}
._9_c00188{width:23.653033pt;}
._10_c00188{width:29.296861pt;}
._11_c00188{width:30.705199pt;}
.fs4_c00188{font-size:37.119985pt;}
.fs3_c00188{font-size:42.879983pt;}
.fs0_c00188{font-size:53.119979pt;}
.fs1_c00188{font-size:58.879976pt;}
.fs2_c00188{font-size:63.999974pt;}
.y0_c00188{bottom:0.000000pt;}
.y4_c00188{bottom:67.306906pt;}
.y3_c00188{bottom:101.226893pt;}
.y1f_c00188{bottom:118.346619pt;}
.y1e_c00188{bottom:134.506613pt;}
.y1d_c00188{bottom:141.226610pt;}
.y1c_c00188{bottom:152.426606pt;}
.y1b_c00188{bottom:201.706586pt;}
.y1a_c00188{bottom:229.226575pt;}
.y19_c00188{bottom:270.186559pt;}
.y18_c00188{bottom:297.706548pt;}
.y17_c00188{bottom:325.386537pt;}
.y16_c00188{bottom:365.226521pt;}
.y15_c00188{bottom:401.066506pt;}
.y14_c00188{bottom:477.546476pt;}
.y13_c00188{bottom:505.066465pt;}
.y12_c00188{bottom:532.746454pt;}
.y11_c00188{bottom:560.266443pt;}
.y10_c00188{bottom:600.106427pt;}
.yf_c00188{bottom:635.946412pt;}
.ye_c00188{bottom:760.426362pt;}
.yd_c00188{bottom:788.106351pt;}
.yb_c00188{bottom:828.906335pt;}
.yc_c00188{bottom:836.266332pt;}
.ya_c00188{bottom:856.586324pt;}
.y9_c00188{bottom:884.106313pt;}
.y8_c00188{bottom:911.786302pt;}
.y7_c00188{bottom:939.306291pt;}
.y6_c00188{bottom:966.986280pt;}
.y5_c00188{bottom:994.506269pt;}
.y2_c00188{bottom:1045.226249pt;}
.y1_c00188{bottom:1063.146241pt;}
.h6_c00188{height:24.740615pt;}
.h2_c00188{height:39.243734pt;}
.h4_c00188{height:42.084358pt;}
.h1_c00188{height:52.134354pt;}
.h5_c00188{height:57.787477pt;}
.h3_c00188{height:62.812475pt;}
.h0_c00188{height:1122.666667pt;}
.w0_c00188{width:793.333333pt;}
.x0_c00188{left:0.000000pt;}
.x5_c00188{left:113.600233pt;}
.xb_c00188{left:127.519949pt;}
.xc_c00188{left:130.879948pt;}
.x8_c00188{left:160.799797pt;}
.x1_c00188{left:161.759935pt;}
.xa_c00188{left:189.279924pt;}
.x9_c00188{left:247.839901pt;}
.x2_c00188{left:292.639474pt;}
.x6_c00188{left:309.119876pt;}
.x7_c00188{left:325.439870pt;}
.x4_c00188{left:385.919846pt;}
.x3_c00188{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6127150eec7a60ad1c343927.woff2')format("woff");}.ff1_c00189{font-family:ff1_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:ff2_c00189;src:url('chunks/assets/font_53d4ed5631ce0c0652244198.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:0.675781;font-style:normal;font-weight:normal;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_1298861344c4af6ec69b9b37.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:1.311035;font-style:normal;font-weight:normal;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_1b104cda4ce8f3fae31606fb.woff2')format("woff");}.ff4_c00189{font-family:ff4_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;}
.m0_c00189{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00189{word-spacing:0.000000px;}
._1_c00189{margin-left:-1.105374px;}
._0_c00189{width:1.195563px;}
._4_c00189{width:4.464398px;}
._2_c00189{width:5.547234px;}
._3_c00189{width:6.670698px;}
._6_c00189{width:10.752005px;}
._7_c00189{width:12.054272px;}
._5_c00189{width:15.114778px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs0_c00189{font-size:59.759976px;}
.fs1_c00189{font-size:66.239974px;}
.fs2_c00189{font-size:71.999971px;}
.y0_c00189{bottom:0.000000px;}
.y4_c00189{bottom:75.719970px;}
.y3_c00189{bottom:113.879954px;}
.y13_c00189{bottom:173.999930px;}
.y12_c00189{bottom:214.319914px;}
.y11_c00189{bottom:319.979872px;}
.y10_c00189{bottom:360.299856px;}
.yf_c00189{bottom:487.199805px;}
.ye_c00189{bottom:518.159793px;}
.yd_c00189{bottom:549.299780px;}
.yc_c00189{bottom:578.819768px;}
.yb_c00189{bottom:616.619753px;}
.ya_c00189{bottom:654.239738px;}
.y9_c00189{bottom:694.379722px;}
.y8_c00189{bottom:1009.919596px;}
.y7_c00189{bottom:1040.879584px;}
.y6_c00189{bottom:1086.959565px;}
.y5_c00189{bottom:1118.099553px;}
.y2_c00189{bottom:1156.979537px;}
.y1_c00189{bottom:1195.859522px;}
.h2_c00189{height:44.149201px;}
.h1_c00189{height:58.651148px;}
.h4_c00189{height:65.010911px;}
.h5_c00189{height:66.757473px;}
.h3_c00189{height:70.664034px;}
.h0_c00189{height:1263.000000px;}
.w0_c00189{width:892.500000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:127.799949px;}
.x3_c00189{left:180.899930px;}
.x8_c00189{left:235.619906px;}
.x6_c00189{left:244.259902px;}
.x2_c00189{left:434.159514px;}
.x7_c00189{left:746.999701px;}
.x5_c00189{left:749.699460px;}
.x4_c00189{left:765.539555px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:-15.999994pt;}
.ws1_c00189{word-spacing:0.000000pt;}
._1_c00189{margin-left:-0.982555pt;}
._0_c00189{width:1.062723pt;}
._4_c00189{width:3.968353pt;}
._2_c00189{width:4.930875pt;}
._3_c00189{width:5.929509pt;}
._6_c00189{width:9.557338pt;}
._7_c00189{width:10.714909pt;}
._5_c00189{width:13.435358pt;}
.fs0_c00189{font-size:53.119979pt;}
.fs1_c00189{font-size:58.879976pt;}
.fs2_c00189{font-size:63.999974pt;}
.y0_c00189{bottom:0.000000pt;}
.y4_c00189{bottom:67.306640pt;}
.y3_c00189{bottom:101.226626pt;}
.y13_c00189{bottom:154.666605pt;}
.y12_c00189{bottom:190.506590pt;}
.y11_c00189{bottom:284.426553pt;}
.y10_c00189{bottom:320.266539pt;}
.yf_c00189{bottom:433.066493pt;}
.ye_c00189{bottom:460.586482pt;}
.yd_c00189{bottom:488.266471pt;}
.yc_c00189{bottom:514.506461pt;}
.yb_c00189{bottom:548.106447pt;}
.ya_c00189{bottom:581.546434pt;}
.y9_c00189{bottom:617.226420pt;}
.y8_c00189{bottom:897.706308pt;}
.y7_c00189{bottom:925.226297pt;}
.y6_c00189{bottom:966.186280pt;}
.y5_c00189{bottom:993.866269pt;}
.y2_c00189{bottom:1028.426255pt;}
.y1_c00189{bottom:1062.986241pt;}
.h2_c00189{height:39.243734pt;}
.h1_c00189{height:52.134354pt;}
.h4_c00189{height:57.787477pt;}
.h5_c00189{height:59.339976pt;}
.h3_c00189{height:62.812475pt;}
.h0_c00189{height:1122.666667pt;}
.w0_c00189{width:793.333333pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:113.599955pt;}
.x3_c00189{left:160.799938pt;}
.x8_c00189{left:209.439916pt;}
.x6_c00189{left:217.119913pt;}
.x2_c00189{left:385.919568pt;}
.x7_c00189{left:663.999734pt;}
.x5_c00189{left:666.399520pt;}
.x4_c00189{left:680.479605pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f822d269961ac2e584a7d5b.woff2')format("woff");}.ff1_c00190{font-family:ff1_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:ff2_c00190;src:url('chunks/assets/font_706b209ac6ea35035cb0de4b.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:0.675781;font-style:normal;font-weight:normal;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_25a170be1ed1c0b4705d1f00.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;}
.m0_c00190{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls1_c00190{letter-spacing:0.000000px;}
.ls0_c00190{letter-spacing:0.010620px;}
.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:-17.999993px;}
.ws1_c00190{word-spacing:0.000000px;}
._4_c00190{margin-left:-2.299518px;}
._1_c00190{margin-left:-1.105374px;}
._0_c00190{width:1.478351px;}
._2_c00190{width:3.339967px;}
._3_c00190{width:4.446170px;}
._5_c00190{width:5.591601px;}
._6_c00190{width:6.974097px;}
._7_c00190{width:8.034453px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs0_c00190{font-size:59.759976px;}
.fs1_c00190{font-size:66.239974px;}
.fs2_c00190{font-size:71.999971px;}
.y0_c00190{bottom:0.000000px;}
.y4_c00190{bottom:75.720270px;}
.y3_c00190{bottom:113.880254px;}
.y11_c00190{bottom:270.839892px;}
.y10_c00190{bottom:316.919873px;}
.yf_c00190{bottom:362.999855px;}
.ye_c00190{bottom:393.959842px;}
.yd_c00190{bottom:425.099830px;}
.yc_c00190{bottom:469.919812px;}
.yb_c00190{bottom:513.299795px;}
.ya_c00190{bottom:541.919783px;}
.y9_c00190{bottom:582.059767px;}
.y8_c00190{bottom:814.259674px;}
.y7_c00190{bottom:1056.719577px;}
.y6_c00190{bottom:1087.859565px;}
.y5_c00190{bottom:1118.819552px;}
.y2_c00190{bottom:1175.879530px;}
.y1_c00190{bottom:1196.039522px;}
.h2_c00190{height:44.149201px;}
.h1_c00190{height:58.651148px;}
.h4_c00190{height:65.010911px;}
.h3_c00190{height:70.664034px;}
.h0_c00190{height:1263.000000px;}
.w0_c00190{width:892.500000px;}
.x0_c00190{left:0.000000px;}
.x5_c00190{left:127.800262px;}
.x9_c00190{left:150.119940px;}
.x6_c00190{left:180.899928px;}
.x1_c00190{left:181.979927px;}
.x2_c00190{left:329.219408px;}
.xa_c00190{left:420.659502px;}
.x4_c00190{left:434.159826px;}
.xb_c00190{left:446.578978px;}
.x7_c00190{left:763.020621px;}
.x3_c00190{left:765.539694px;}
.x8_c00190{left:773.460618px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls1_c00190{letter-spacing:0.000000pt;}
.ls0_c00190{letter-spacing:0.009440pt;}
.ws0_c00190{word-spacing:-15.999994pt;}
.ws1_c00190{word-spacing:0.000000pt;}
._4_c00190{margin-left:-2.044016pt;}
._1_c00190{margin-left:-0.982555pt;}
._0_c00190{width:1.314090pt;}
._2_c00190{width:2.968859pt;}
._3_c00190{width:3.952151pt;}
._5_c00190{width:4.970312pt;}
._6_c00190{width:6.199198pt;}
._7_c00190{width:7.141736pt;}
.fs0_c00190{font-size:53.119979pt;}
.fs1_c00190{font-size:58.879976pt;}
.fs2_c00190{font-size:63.999974pt;}
.y0_c00190{bottom:0.000000pt;}
.y4_c00190{bottom:67.306906pt;}
.y3_c00190{bottom:101.226893pt;}
.y11_c00190{bottom:240.746570pt;}
.y10_c00190{bottom:281.706554pt;}
.yf_c00190{bottom:322.666538pt;}
.ye_c00190{bottom:350.186527pt;}
.yd_c00190{bottom:377.866516pt;}
.yc_c00190{bottom:417.706500pt;}
.yb_c00190{bottom:456.266484pt;}
.ya_c00190{bottom:481.706474pt;}
.y9_c00190{bottom:517.386460pt;}
.y8_c00190{bottom:723.786377pt;}
.y7_c00190{bottom:939.306291pt;}
.y6_c00190{bottom:966.986280pt;}
.y5_c00190{bottom:994.506269pt;}
.y2_c00190{bottom:1045.226249pt;}
.y1_c00190{bottom:1063.146241pt;}
.h2_c00190{height:39.243734pt;}
.h1_c00190{height:52.134354pt;}
.h4_c00190{height:57.787477pt;}
.h3_c00190{height:62.812475pt;}
.h0_c00190{height:1122.666667pt;}
.w0_c00190{width:793.333333pt;}
.x0_c00190{left:0.000000pt;}
.x5_c00190{left:113.600233pt;}
.x9_c00190{left:133.439947pt;}
.x6_c00190{left:160.799936pt;}
.x1_c00190{left:161.759935pt;}
.x2_c00190{left:292.639474pt;}
.xa_c00190{left:373.919558pt;}
.x4_c00190{left:385.919846pt;}
.xb_c00190{left:396.959092pt;}
.x7_c00190{left:678.240552pt;}
.x3_c00190{left:680.479728pt;}
.x8_c00190{left:687.520550pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a54eb45620198dcc0d1c87fd.woff2')format("woff");}.ff1_c00191{font-family:ff1_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:ff2_c00191;src:url('chunks/assets/font_3c8d30b0a68effe5f22ab99d.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00191{word-spacing:0.000000px;}
._1_c00191{margin-left:-1.105374px;}
._0_c00191{width:1.195563px;}
._2_c00191{width:5.749238px;}
._3_c00191{width:7.189316px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs0_c00191{font-size:59.759976px;}
.fs1_c00191{font-size:66.239974px;}
.fs2_c00191{font-size:71.999971px;}
.y0_c00191{bottom:0.000000px;}
.y4_c00191{bottom:75.719970px;}
.y3_c00191{bottom:113.879954px;}
.ya_c00191{bottom:186.239926px;}
.y9_c00191{bottom:232.139907px;}
.y8_c00191{bottom:263.279895px;}
.y7_c00191{bottom:308.099877px;}
.y6_c00191{bottom:351.659859px;}
.y5_c00191{bottom:391.979843px;}
.y2_c00191{bottom:1156.979537px;}
.y1_c00191{bottom:1195.859522px;}
.h2_c00191{height:44.149201px;}
.h1_c00191{height:58.651148px;}
.h4_c00191{height:65.010911px;}
.h3_c00191{height:70.664034px;}
.h0_c00191{height:1263.000000px;}
.w0_c00191{width:892.500000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:127.799949px;}
.x5_c00191{left:180.899928px;}
.x2_c00191{left:434.159514px;}
.x4_c00191{left:446.580092px;}
.x3_c00191{left:736.199706px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:0.000000pt;}
._1_c00191{margin-left:-0.982555pt;}
._0_c00191{width:1.062723pt;}
._2_c00191{width:5.110434pt;}
._3_c00191{width:6.390503pt;}
.fs0_c00191{font-size:53.119979pt;}
.fs1_c00191{font-size:58.879976pt;}
.fs2_c00191{font-size:63.999974pt;}
.y0_c00191{bottom:0.000000pt;}
.y4_c00191{bottom:67.306640pt;}
.y3_c00191{bottom:101.226626pt;}
.ya_c00191{bottom:165.546600pt;}
.y9_c00191{bottom:206.346584pt;}
.y8_c00191{bottom:234.026573pt;}
.y7_c00191{bottom:273.866557pt;}
.y6_c00191{bottom:312.586542pt;}
.y5_c00191{bottom:348.426527pt;}
.y2_c00191{bottom:1028.426255pt;}
.y1_c00191{bottom:1062.986241pt;}
.h2_c00191{height:39.243734pt;}
.h1_c00191{height:52.134354pt;}
.h4_c00191{height:57.787477pt;}
.h3_c00191{height:62.812475pt;}
.h0_c00191{height:1122.666667pt;}
.w0_c00191{width:793.333333pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:113.599955pt;}
.x5_c00191{left:160.799936pt;}
.x2_c00191{left:385.919568pt;}
.x4_c00191{left:396.960082pt;}
.x3_c00191{left:654.399738pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f5608465c9dd121751ea8c6.woff2')format("woff");}.ff1_c00192{font-family:ff1_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:ff2_c00192;src:url('chunks/assets/font_2b3c152adcdab3c7895274ea.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:0.675781;font-style:normal;font-weight:normal;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_24f9142e827a90b056f20fed.woff2')format("woff");}.ff3_c00192{font-family:ff3_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;}
.m0_c00192{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00192{word-spacing:-16.559993px;}
.ws1_c00192{word-spacing:0.000000px;}
._1_c00192{margin-left:-1.105374px;}
._0_c00192{width:1.478351px;}
._3_c00192{width:3.681672px;}
._2_c00192{width:4.913108px;}
._4_c00192{width:12.523569px;}
._5_c00192{width:13.952585px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs0_c00192{font-size:59.759976px;}
.fs1_c00192{font-size:66.239974px;}
.fs2_c00192{font-size:71.999971px;}
.y0_c00192{bottom:0.000000px;}
.y4_c00192{bottom:75.720270px;}
.y3_c00192{bottom:113.880254px;}
.yf_c00192{bottom:134.939946px;}
.ye_c00192{bottom:267.239893px;}
.yd_c00192{bottom:395.939842px;}
.yc_c00192{bottom:440.759824px;}
.yb_c00192{bottom:481.079808px;}
.ya_c00192{bottom:666.659733px;}
.y9_c00192{bottom:697.799721px;}
.y8_c00192{bottom:728.759708px;}
.y7_c00192{bottom:773.759690px;}
.y6_c00192{bottom:813.899674px;}
.y5_c00192{bottom:994.439602px;}
.y2_c00192{bottom:1175.879530px;}
.y1_c00192{bottom:1196.039522px;}
.h2_c00192{height:44.149201px;}
.h1_c00192{height:58.651148px;}
.h4_c00192{height:65.010911px;}
.h3_c00192{height:70.664034px;}
.h0_c00192{height:1263.000000px;}
.w0_c00192{width:892.500000px;}
.x0_c00192{left:0.000000px;}
.x5_c00192{left:127.800262px;}
.x8_c00192{left:180.899928px;}
.x1_c00192{left:181.979927px;}
.xa_c00192{left:261.719895px;}
.x7_c00192{left:266.219894px;}
.x2_c00192{left:329.219408px;}
.x4_c00192{left:434.159826px;}
.xb_c00192{left:446.579821px;}
.x9_c00192{left:572.579543px;}
.xd_c00192{left:595.079096px;}
.x6_c00192{left:623.519751px;}
.xc_c00192{left:656.099048px;}
.x3_c00192{left:765.539694px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:-14.719994pt;}
.ws1_c00192{word-spacing:0.000000pt;}
._1_c00192{margin-left:-0.982555pt;}
._0_c00192{width:1.314090pt;}
._3_c00192{width:3.272597pt;}
._2_c00192{width:4.367207pt;}
._4_c00192{width:11.132061pt;}
._5_c00192{width:12.402298pt;}
.fs0_c00192{font-size:53.119979pt;}
.fs1_c00192{font-size:58.879976pt;}
.fs2_c00192{font-size:63.999974pt;}
.y0_c00192{bottom:0.000000pt;}
.y4_c00192{bottom:67.306906pt;}
.y3_c00192{bottom:101.226893pt;}
.yf_c00192{bottom:119.946619pt;}
.ye_c00192{bottom:237.546572pt;}
.yd_c00192{bottom:351.946526pt;}
.yc_c00192{bottom:391.786510pt;}
.yb_c00192{bottom:427.626496pt;}
.ya_c00192{bottom:592.586430pt;}
.y9_c00192{bottom:620.266419pt;}
.y8_c00192{bottom:647.786408pt;}
.y7_c00192{bottom:687.786392pt;}
.y6_c00192{bottom:723.466377pt;}
.y5_c00192{bottom:883.946313pt;}
.y2_c00192{bottom:1045.226249pt;}
.y1_c00192{bottom:1063.146241pt;}
.h2_c00192{height:39.243734pt;}
.h1_c00192{height:52.134354pt;}
.h4_c00192{height:57.787477pt;}
.h3_c00192{height:62.812475pt;}
.h0_c00192{height:1122.666667pt;}
.w0_c00192{width:793.333333pt;}
.x0_c00192{left:0.000000pt;}
.x5_c00192{left:113.600233pt;}
.x8_c00192{left:160.799936pt;}
.x1_c00192{left:161.759935pt;}
.xa_c00192{left:232.639907pt;}
.x7_c00192{left:236.639905pt;}
.x2_c00192{left:292.639474pt;}
.x4_c00192{left:385.919846pt;}
.xb_c00192{left:396.959841pt;}
.x9_c00192{left:508.959594pt;}
.xd_c00192{left:528.959196pt;}
.x6_c00192{left:554.239778pt;}
.xc_c00192{left:583.199154pt;}
.x3_c00192{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c47e800e5934402babbddb97.woff2')format("woff");}.ff1_c00193{font-family:ff1_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:ff2_c00193;src:url('chunks/assets/font_3705753efc484e1f6509e458.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00193{word-spacing:0.000000px;}
._1_c00193{margin-left:-1.105374px;}
._0_c00193{width:1.195563px;}
._4_c00193{width:21.155203px;}
._3_c00193{width:22.203311px;}
._5_c00193{width:25.112120px;}
._6_c00193{width:26.614688px;}
._2_c00193{width:195.966987px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs0_c00193{font-size:59.759976px;}
.fs1_c00193{font-size:66.239974px;}
.fs2_c00193{font-size:71.999971px;}
.y0_c00193{bottom:0.000000px;}
.y4_c00193{bottom:75.719970px;}
.y3_c00193{bottom:113.879954px;}
.y12_c00193{bottom:179.579928px;}
.y11_c00193{bottom:210.719916px;}
.y10_c00193{bottom:256.799897px;}
.yf_c00193{bottom:301.619879px;}
.ye_c00193{bottom:341.759863px;}
.yd_c00193{bottom:530.939788px;}
.yc_c00193{bottom:571.079772px;}
.yb_c00193{bottom:744.779702px;}
.ya_c00193{bottom:790.859684px;}
.y9_c00193{bottom:821.999671px;}
.y8_c00193{bottom:866.819653px;}
.y7_c00193{bottom:910.199636px;}
.y6_c00193{bottom:950.519620px;}
.y5_c00193{bottom:1118.099553px;}
.y2_c00193{bottom:1156.979537px;}
.y1_c00193{bottom:1195.859522px;}
.h2_c00193{height:44.149201px;}
.h1_c00193{height:58.651148px;}
.h4_c00193{height:65.010911px;}
.h3_c00193{height:70.664034px;}
.h0_c00193{height:1263.000000px;}
.w0_c00193{width:892.500000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:127.799949px;}
.x6_c00193{left:180.899928px;}
.x8_c00193{left:217.259913px;}
.xa_c00193{left:219.419912px;}
.x5_c00193{left:224.459910px;}
.x2_c00193{left:434.159514px;}
.x3_c00193{left:446.579821px;}
.x4_c00193{left:576.539698px;}
.x9_c00193{left:662.039735px;}
.x7_c00193{left:671.579559px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.000000pt;}
._1_c00193{margin-left:-0.982555pt;}
._0_c00193{width:1.062723pt;}
._4_c00193{width:18.804625pt;}
._3_c00193{width:19.736276pt;}
._5_c00193{width:22.321884pt;}
._6_c00193{width:23.657501pt;}
._2_c00193{width:174.192878pt;}
.fs0_c00193{font-size:53.119979pt;}
.fs1_c00193{font-size:58.879976pt;}
.fs2_c00193{font-size:63.999974pt;}
.y0_c00193{bottom:0.000000pt;}
.y4_c00193{bottom:67.306640pt;}
.y3_c00193{bottom:101.226626pt;}
.y12_c00193{bottom:159.626603pt;}
.y11_c00193{bottom:187.306592pt;}
.y10_c00193{bottom:228.266575pt;}
.yf_c00193{bottom:268.106559pt;}
.ye_c00193{bottom:303.786545pt;}
.yd_c00193{bottom:471.946478pt;}
.yc_c00193{bottom:507.626464pt;}
.yb_c00193{bottom:662.026402pt;}
.ya_c00193{bottom:702.986385pt;}
.y9_c00193{bottom:730.666374pt;}
.y8_c00193{bottom:770.506358pt;}
.y7_c00193{bottom:809.066343pt;}
.y6_c00193{bottom:844.906329pt;}
.y5_c00193{bottom:993.866269pt;}
.y2_c00193{bottom:1028.426255pt;}
.y1_c00193{bottom:1062.986241pt;}
.h2_c00193{height:39.243734pt;}
.h1_c00193{height:52.134354pt;}
.h4_c00193{height:57.787477pt;}
.h3_c00193{height:62.812475pt;}
.h0_c00193{height:1122.666667pt;}
.w0_c00193{width:793.333333pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:113.599955pt;}
.x6_c00193{left:160.799936pt;}
.x8_c00193{left:193.119923pt;}
.xa_c00193{left:195.039922pt;}
.x5_c00193{left:199.519920pt;}
.x2_c00193{left:385.919568pt;}
.x3_c00193{left:396.959841pt;}
.x4_c00193{left:512.479731pt;}
.x9_c00193{left:588.479765pt;}
.x7_c00193{left:596.959608pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff27885c7729a81e57bdc8e8.woff2')format("woff");}.ff1_c00194{font-family:ff1_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:ff2_c00194;src:url('chunks/assets/font_ed3c5617a694440775c91b3b.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00194{margin-left:-1.105374px;}
._0_c00194{width:1.478351px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs0_c00194{font-size:59.759976px;}
.fs1_c00194{font-size:66.239974px;}
.fs2_c00194{font-size:71.999971px;}
.y0_c00194{bottom:0.000000px;}
.y4_c00194{bottom:75.720270px;}
.y3_c00194{bottom:113.880254px;}
.y9_c00194{bottom:152.219939px;}
.y8_c00194{bottom:198.119921px;}
.y7_c00194{bottom:243.119903px;}
.y6_c00194{bottom:283.259887px;}
.y5_c00194{bottom:1118.819552px;}
.y2_c00194{bottom:1175.879530px;}
.y1_c00194{bottom:1196.039522px;}
.h2_c00194{height:44.149201px;}
.h1_c00194{height:58.651148px;}
.h4_c00194{height:65.010911px;}
.h3_c00194{height:70.664034px;}
.h0_c00194{height:1263.000000px;}
.w0_c00194{width:892.500000px;}
.x0_c00194{left:0.000000px;}
.x5_c00194{left:127.800262px;}
.x6_c00194{left:174.599930px;}
.x7_c00194{left:180.899928px;}
.x1_c00194{left:181.979927px;}
.x2_c00194{left:329.219408px;}
.x4_c00194{left:434.159826px;}
.x3_c00194{left:765.539694px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
._1_c00194{margin-left:-0.982555pt;}
._0_c00194{width:1.314090pt;}
.fs0_c00194{font-size:53.119979pt;}
.fs1_c00194{font-size:58.879976pt;}
.fs2_c00194{font-size:63.999974pt;}
.y0_c00194{bottom:0.000000pt;}
.y4_c00194{bottom:67.306906pt;}
.y3_c00194{bottom:101.226893pt;}
.y9_c00194{bottom:135.306613pt;}
.y8_c00194{bottom:176.106596pt;}
.y7_c00194{bottom:216.106580pt;}
.y6_c00194{bottom:251.786566pt;}
.y5_c00194{bottom:994.506269pt;}
.y2_c00194{bottom:1045.226249pt;}
.y1_c00194{bottom:1063.146241pt;}
.h2_c00194{height:39.243734pt;}
.h1_c00194{height:52.134354pt;}
.h4_c00194{height:57.787477pt;}
.h3_c00194{height:62.812475pt;}
.h0_c00194{height:1122.666667pt;}
.w0_c00194{width:793.333333pt;}
.x0_c00194{left:0.000000pt;}
.x5_c00194{left:113.600233pt;}
.x6_c00194{left:155.199938pt;}
.x7_c00194{left:160.799936pt;}
.x1_c00194{left:161.759935pt;}
.x2_c00194{left:292.639474pt;}
.x4_c00194{left:385.919846pt;}
.x3_c00194{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88945f07286b325ca907f1e2.woff2')format("woff");}.ff1_c00195{font-family:ff1_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:ff2_c00195;src:url('chunks/assets/font_eaec46ecc4945be1b23d55f9.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:0.675781;font-style:normal;font-weight:normal;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_79773f69f24de167f8666b00.woff2')format("woff");}.ff3_c00195{font-family:ff3_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:ff4_c00195;src:url('chunks/assets/font_26c08f1f7aa55864c1082ba5.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00195{word-spacing:0.000000px;}
._1_c00195{margin-left:-1.105374px;}
._0_c00195{width:1.195563px;}
._2_c00195{width:2.260318px;}
._15_c00195{width:4.844603px;}
._3_c00195{width:12.903839px;}
._4_c00195{width:14.069506px;}
._a_c00195{width:92.451851px;}
._12_c00195{width:126.857129px;}
._f_c00195{width:134.355734px;}
._11_c00195{width:194.422076px;}
._8_c00195{width:288.598658px;}
._10_c00195{width:296.464489px;}
._b_c00195{width:305.158658px;}
._c_c00195{width:309.100792px;}
._5_c00195{width:322.505741px;}
._13_c00195{width:332.464073px;}
._9_c00195{width:337.126942px;}
._14_c00195{width:346.414466px;}
._7_c00195{width:350.108675px;}
._d_c00195{width:358.510447px;}
._e_c00195{width:361.578159px;}
._6_c00195{width:375.376336px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs0_c00195{font-size:59.759976px;}
.fs1_c00195{font-size:66.239974px;}
.fs2_c00195{font-size:71.999971px;}
.y0_c00195{bottom:0.000000px;}
.y4_c00195{bottom:75.719970px;}
.y3_c00195{bottom:113.879954px;}
.y19_c00195{bottom:163.199935px;}
.y18_c00195{bottom:185.519926px;}
.y17_c00195{bottom:206.219918px;}
.y16_c00195{bottom:228.539909px;}
.y15_c00195{bottom:250.679900px;}
.y14_c00195{bottom:272.819891px;}
.y13_c00195{bottom:295.139882px;}
.y12_c00195{bottom:317.279873px;}
.y11_c00195{bottom:339.419864px;}
.y10_c00195{bottom:361.739855px;}
.yf_c00195{bottom:383.879846px;}
.ye_c00195{bottom:405.659838px;}
.yd_c00195{bottom:453.359819px;}
.yc_c00195{bottom:499.439800px;}
.yb_c00195{bottom:530.579788px;}
.ya_c00195{bottom:576.479769px;}
.y9_c00195{bottom:621.479751px;}
.y8_c00195{bottom:661.799735px;}
.y7_c00195{bottom:1055.999578px;}
.y6_c00195{bottom:1086.959565px;}
.y5_c00195{bottom:1118.099553px;}
.y2_c00195{bottom:1156.979537px;}
.y1_c00195{bottom:1195.859522px;}
.h2_c00195{height:44.149201px;}
.h1_c00195{height:58.651148px;}
.h4_c00195{height:65.010911px;}
.h3_c00195{height:70.664034px;}
.h5_c00195{height:72.562471px;}
.h0_c00195{height:1263.000000px;}
.w0_c00195{width:892.500000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:127.799949px;}
.x6_c00195{left:163.079935px;}
.x3_c00195{left:180.899928px;}
.x5_c00195{left:224.999910px;}
.x2_c00195{left:434.159514px;}
.x4_c00195{left:729.541319px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:-15.999994pt;}
.ws1_c00195{word-spacing:0.000000pt;}
._1_c00195{margin-left:-0.982555pt;}
._0_c00195{width:1.062723pt;}
._2_c00195{width:2.009171pt;}
._15_c00195{width:4.306314pt;}
._3_c00195{width:11.470079pt;}
._4_c00195{width:12.506227pt;}
._a_c00195{width:82.179423pt;}
._12_c00195{width:112.761893pt;}
._f_c00195{width:119.427319pt;}
._11_c00195{width:172.819623pt;}
._8_c00195{width:256.532141pt;}
._10_c00195{width:263.523990pt;}
._b_c00195{width:271.252141pt;}
._c_c00195{width:274.756260pt;}
._5_c00195{width:286.671770pt;}
._13_c00195{width:295.523620pt;}
._9_c00195{width:299.668393pt;}
._14_c00195{width:307.923970pt;}
._7_c00195{width:311.207711pt;}
._d_c00195{width:318.675953pt;}
._e_c00195{width:321.402808pt;}
._6_c00195{width:333.667854pt;}
.fs0_c00195{font-size:53.119979pt;}
.fs1_c00195{font-size:58.879976pt;}
.fs2_c00195{font-size:63.999974pt;}
.y0_c00195{bottom:0.000000pt;}
.y4_c00195{bottom:67.306640pt;}
.y3_c00195{bottom:101.226626pt;}
.y19_c00195{bottom:145.066609pt;}
.y18_c00195{bottom:164.906601pt;}
.y17_c00195{bottom:183.306593pt;}
.y16_c00195{bottom:203.146585pt;}
.y15_c00195{bottom:222.826578pt;}
.y14_c00195{bottom:242.506570pt;}
.y13_c00195{bottom:262.346562pt;}
.y12_c00195{bottom:282.026554pt;}
.y11_c00195{bottom:301.706546pt;}
.y10_c00195{bottom:321.546538pt;}
.yf_c00195{bottom:341.226530pt;}
.ye_c00195{bottom:360.586522pt;}
.yd_c00195{bottom:402.986505pt;}
.yc_c00195{bottom:443.946489pt;}
.yb_c00195{bottom:471.626478pt;}
.ya_c00195{bottom:512.426462pt;}
.y9_c00195{bottom:552.426446pt;}
.y8_c00195{bottom:588.266431pt;}
.y7_c00195{bottom:938.666291pt;}
.y6_c00195{bottom:966.186280pt;}
.y5_c00195{bottom:993.866269pt;}
.y2_c00195{bottom:1028.426255pt;}
.y1_c00195{bottom:1062.986241pt;}
.h2_c00195{height:39.243734pt;}
.h1_c00195{height:52.134354pt;}
.h4_c00195{height:57.787477pt;}
.h3_c00195{height:62.812475pt;}
.h5_c00195{height:64.499974pt;}
.h0_c00195{height:1122.666667pt;}
.w0_c00195{width:793.333333pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:113.599955pt;}
.x6_c00195{left:144.959942pt;}
.x3_c00195{left:160.799936pt;}
.x5_c00195{left:199.999920pt;}
.x2_c00195{left:385.919568pt;}
.x4_c00195{left:648.481172pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b5a244bb161fbb7822482106.woff2')format("woff");}.ff1_c00196{font-family:ff1_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:ff2_c00196;src:url('chunks/assets/font_b21f4142ddd8e7e0423a6067.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:0.675781;font-style:normal;font-weight:normal;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_1c2f1736369be6f31197a6e3.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;}
.m0_c00196{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00196{word-spacing:-17.999993px;}
.ws1_c00196{word-spacing:0.000000px;}
._1_c00196{margin-left:-1.105374px;}
._0_c00196{width:1.478351px;}
._4_c00196{width:3.555182px;}
._7_c00196{width:4.928144px;}
._2_c00196{width:11.512620px;}
._3_c00196{width:13.535838px;}
._6_c00196{width:15.130152px;}
._5_c00196{width:16.266207px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs0_c00196{font-size:59.759976px;}
.fs1_c00196{font-size:66.239974px;}
.fs2_c00196{font-size:71.999971px;}
.y0_c00196{bottom:0.000000px;}
.y4_c00196{bottom:75.900270px;}
.y3_c00196{bottom:114.060254px;}
.yd_c00196{bottom:855.659658px;}
.yc_c00196{bottom:886.799645px;}
.yb_c00196{bottom:917.759633px;}
.ya_c00196{bottom:963.839614px;}
.y9_c00196{bottom:994.799602px;}
.y8_c00196{bottom:1025.939590px;}
.y7_c00196{bottom:1056.899577px;}
.y6_c00196{bottom:1088.039565px;}
.y5_c00196{bottom:1118.999552px;}
.y2_c00196{bottom:1176.059530px;}
.y1_c00196{bottom:1196.219522px;}
.h2_c00196{height:44.149201px;}
.h1_c00196{height:58.651148px;}
.h4_c00196{height:70.628878px;}
.h3_c00196{height:70.664034px;}
.h0_c00196{height:1263.000000px;}
.w0_c00196{width:892.500000px;}
.x0_c00196{left:0.000000px;}
.x5_c00196{left:127.620262px;}
.x6_c00196{left:180.719928px;}
.x1_c00196{left:181.799927px;}
.x2_c00196{left:329.039408px;}
.x4_c00196{left:433.979826px;}
.x3_c00196{left:765.359694px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:-15.999994pt;}
.ws1_c00196{word-spacing:0.000000pt;}
._1_c00196{margin-left:-0.982555pt;}
._0_c00196{width:1.314090pt;}
._4_c00196{width:3.160162pt;}
._7_c00196{width:4.380572pt;}
._2_c00196{width:10.233440pt;}
._3_c00196{width:12.031856pt;}
._6_c00196{width:13.449024pt;}
._5_c00196{width:14.458850pt;}
.fs0_c00196{font-size:53.119979pt;}
.fs1_c00196{font-size:58.879976pt;}
.fs2_c00196{font-size:63.999974pt;}
.y0_c00196{bottom:0.000000pt;}
.y4_c00196{bottom:67.466906pt;}
.y3_c00196{bottom:101.386893pt;}
.yd_c00196{bottom:760.586362pt;}
.yc_c00196{bottom:788.266351pt;}
.yb_c00196{bottom:815.786340pt;}
.ya_c00196{bottom:856.746324pt;}
.y9_c00196{bottom:884.266313pt;}
.y8_c00196{bottom:911.946302pt;}
.y7_c00196{bottom:939.466291pt;}
.y6_c00196{bottom:967.146280pt;}
.y5_c00196{bottom:994.666269pt;}
.y2_c00196{bottom:1045.386249pt;}
.y1_c00196{bottom:1063.306241pt;}
.h2_c00196{height:39.243734pt;}
.h1_c00196{height:52.134354pt;}
.h4_c00196{height:62.781225pt;}
.h3_c00196{height:62.812475pt;}
.h0_c00196{height:1122.666667pt;}
.w0_c00196{width:793.333333pt;}
.x0_c00196{left:0.000000pt;}
.x5_c00196{left:113.440233pt;}
.x6_c00196{left:160.639936pt;}
.x1_c00196{left:161.599935pt;}
.x2_c00196{left:292.479474pt;}
.x4_c00196{left:385.759846pt;}
.x3_c00196{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8eadfa410e1b708e16d72aa.woff2')format("woff");}.ff1_c00197{font-family:ff1_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:ff2_c00197;src:url('chunks/assets/font_11a657ac68c27d8fe5bcd9b0.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00197{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00197{word-spacing:0.000000px;}
._1_c00197{margin-left:-1.158931px;}
._0_c00197{width:1.088436px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs0_c00197{font-size:59.759976px;}
.fs1_c00197{font-size:66.239974px;}
.fs2_c00197{font-size:71.999971px;}
.y0_c00197{bottom:0.000000px;}
.y4_c00197{bottom:75.120327px;}
.y3_c00197{bottom:113.280312px;}
.y12_c00197{bottom:150.360297px;}
.y11_c00197{bottom:195.000279px;}
.y10_c00197{bottom:241.080261px;}
.yf_c00197{bottom:286.980242px;}
.ye_c00197{bottom:333.060224px;}
.yd_c00197{bottom:379.140205px;}
.yc_c00197{bottom:425.220187px;}
.yb_c00197{bottom:471.300168px;}
.ya_c00197{bottom:517.200150px;}
.y9_c00197{bottom:563.280132px;}
.y8_c00197{bottom:609.360113px;}
.y7_c00197{bottom:655.440095px;}
.y6_c00197{bottom:701.520076px;}
.y5_c00197{bottom:747.600058px;}
.y2_c00197{bottom:786.480042px;}
.y1_c00197{bottom:825.360027px;}
.h2_c00197{height:44.149201px;}
.h1_c00197{height:58.651148px;}
.h4_c00197{height:65.010911px;}
.h3_c00197{height:70.664034px;}
.h0_c00197{height:892.500000px;}
.w0_c00197{width:1263.000000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:106.545857px;}
.x4_c00197{left:372.046351px;}
.x2_c00197{left:619.003849px;}
.x3_c00197{left:629.985382px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
._1_c00197{margin-left:-1.030161pt;}
._0_c00197{width:0.967499pt;}
.fs0_c00197{font-size:53.119979pt;}
.fs1_c00197{font-size:58.879976pt;}
.fs2_c00197{font-size:63.999974pt;}
.y0_c00197{bottom:0.000000pt;}
.y4_c00197{bottom:66.773624pt;}
.y3_c00197{bottom:100.693610pt;}
.y12_c00197{bottom:133.653597pt;}
.y11_c00197{bottom:173.333581pt;}
.y10_c00197{bottom:214.293565pt;}
.yf_c00197{bottom:255.093549pt;}
.ye_c00197{bottom:296.053532pt;}
.yd_c00197{bottom:337.013516pt;}
.yc_c00197{bottom:377.973499pt;}
.yb_c00197{bottom:418.933483pt;}
.ya_c00197{bottom:459.733467pt;}
.y9_c00197{bottom:500.693450pt;}
.y8_c00197{bottom:541.653434pt;}
.y7_c00197{bottom:582.613418pt;}
.y6_c00197{bottom:623.573401pt;}
.y5_c00197{bottom:664.533385pt;}
.y2_c00197{bottom:699.093371pt;}
.y1_c00197{bottom:733.653357pt;}
.h2_c00197{height:39.243734pt;}
.h1_c00197{height:52.134354pt;}
.h4_c00197{height:57.787477pt;}
.h3_c00197{height:62.812475pt;}
.h0_c00197{height:793.333333pt;}
.w0_c00197{width:1122.666667pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:94.707429pt;}
.x4_c00197{left:330.707868pt;}
.x2_c00197{left:550.225644pt;}
.x3_c00197{left:559.987006pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a8f9d24cdd4af598d28cf62.woff2')format("woff");}.ff1_c00198{font-family:ff1_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:ff2_c00198;src:url('chunks/assets/font_d928fc8248d3f43c6fd55498.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:0.675781;font-style:normal;font-weight:normal;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_55e518ec9f37bf148d78c9d5.woff2')format("woff");}.ff3_c00198{font-family:ff3_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:ff4_c00198;src:url('chunks/assets/font_cb57a4fb854a3dccce405631.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.021282px;}
.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:-18.021275px;}
.ws1_c00198{word-spacing:0.000000px;}
._8_c00198{margin-left:-3.103548px;}
._1_c00198{margin-left:-1.105374px;}
._0_c00198{width:1.478351px;}
._5_c00198{width:3.015748px;}
._6_c00198{width:4.281511px;}
._3_c00198{width:5.465711px;}
._4_c00198{width:6.846841px;}
._2_c00198{width:13.741191px;}
._9_c00198{width:15.139578px;}
._7_c00198{width:16.735113px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs0_c00198{font-size:59.759976px;}
.fs1_c00198{font-size:66.239974px;}
.fs2_c00198{font-size:71.999971px;}
.y0_c00198{bottom:0.000000px;}
.y4_c00198{bottom:75.719970px;}
.y3_c00198{bottom:113.879954px;}
.y13_c00198{bottom:561.899775px;}
.y12_c00198{bottom:607.799757px;}
.y11_c00198{bottom:638.939744px;}
.y10_c00198{bottom:669.899732px;}
.yf_c00198{bottom:701.039720px;}
.ye_c00198{bottom:731.999707px;}
.yd_c00198{bottom:770.519692px;}
.yc_c00198{bottom:809.219676px;}
.yb_c00198{bottom:839.639664px;}
.ya_c00198{bottom:868.079653px;}
.y9_c00198{bottom:908.219637px;}
.y8_c00198{bottom:1025.759590px;}
.y7_c00198{bottom:1056.719577px;}
.y6_c00198{bottom:1087.859565px;}
.y5_c00198{bottom:1118.819552px;}
.y2_c00198{bottom:1176.059530px;}
.y1_c00198{bottom:1196.039522px;}
.h2_c00198{height:44.149201px;}
.h1_c00198{height:58.651148px;}
.h5_c00198{height:65.010911px;}
.h3_c00198{height:70.664034px;}
.h4_c00198{height:72.562471px;}
.h0_c00198{height:1263.000000px;}
.w0_c00198{width:892.500000px;}
.x0_c00198{left:0.000000px;}
.x5_c00198{left:127.800545px;}
.x6_c00198{left:180.899928px;}
.x1_c00198{left:181.979927px;}
.x8_c00198{left:219.059912px;}
.x2_c00198{left:329.219408px;}
.x4_c00198{left:434.160110px;}
.x9_c00198{left:446.579133px;}
.x7_c00198{left:732.959314px;}
.x3_c00198{left:765.539694px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.018917pt;}
.ws0_c00198{word-spacing:-16.018911pt;}
.ws1_c00198{word-spacing:0.000000pt;}
._8_c00198{margin-left:-2.758710pt;}
._1_c00198{margin-left:-0.982555pt;}
._0_c00198{width:1.314090pt;}
._5_c00198{width:2.680665pt;}
._6_c00198{width:3.805788pt;}
._3_c00198{width:4.858410pt;}
._4_c00198{width:6.086080pt;}
._2_c00198{width:12.214392pt;}
._9_c00198{width:13.457403pt;}
._7_c00198{width:14.875656pt;}
.fs0_c00198{font-size:53.119979pt;}
.fs1_c00198{font-size:58.879976pt;}
.fs2_c00198{font-size:63.999974pt;}
.y0_c00198{bottom:0.000000pt;}
.y4_c00198{bottom:67.306640pt;}
.y3_c00198{bottom:101.226626pt;}
.y13_c00198{bottom:499.466467pt;}
.y12_c00198{bottom:540.266451pt;}
.y11_c00198{bottom:567.946439pt;}
.y10_c00198{bottom:595.466428pt;}
.yf_c00198{bottom:623.146417pt;}
.ye_c00198{bottom:650.666406pt;}
.yd_c00198{bottom:684.906393pt;}
.yc_c00198{bottom:719.306379pt;}
.yb_c00198{bottom:746.346368pt;}
.ya_c00198{bottom:771.626358pt;}
.y9_c00198{bottom:807.306344pt;}
.y8_c00198{bottom:911.786302pt;}
.y7_c00198{bottom:939.306291pt;}
.y6_c00198{bottom:966.986280pt;}
.y5_c00198{bottom:994.506269pt;}
.y2_c00198{bottom:1045.386249pt;}
.y1_c00198{bottom:1063.146241pt;}
.h2_c00198{height:39.243734pt;}
.h1_c00198{height:52.134354pt;}
.h5_c00198{height:57.787477pt;}
.h3_c00198{height:62.812475pt;}
.h4_c00198{height:64.499974pt;}
.h0_c00198{height:1122.666667pt;}
.w0_c00198{width:793.333333pt;}
.x0_c00198{left:0.000000pt;}
.x5_c00198{left:113.600485pt;}
.x6_c00198{left:160.799936pt;}
.x1_c00198{left:161.759935pt;}
.x8_c00198{left:194.719922pt;}
.x2_c00198{left:292.639474pt;}
.x4_c00198{left:385.920098pt;}
.x9_c00198{left:396.959230pt;}
.x7_c00198{left:651.519391pt;}
.x3_c00198{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f592ebcbe942f8448b23a5d5.woff2')format("woff");}.ff1_c00199{font-family:ff1_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:ff2_c00199;src:url('chunks/assets/font_706b209ac6ea35035cb0de4b.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:0.675781;font-style:normal;font-weight:normal;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_ba9b8899890d568c661024a4.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;}
.m0_c00199{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls2_c00199{letter-spacing:0.000000px;}
.ls0_c00199{letter-spacing:4.333198px;}
.ls1_c00199{letter-spacing:13.698715px;}
.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;}
}
.ws0_c00199{word-spacing:-17.999993px;}
.ws1_c00199{word-spacing:0.000000px;}
._1_c00199{margin-left:-1.105374px;}
._0_c00199{width:1.195563px;}
._2_c00199{width:4.308389px;}
._9_c00199{width:6.043412px;}
._5_c00199{width:7.193550px;}
._4_c00199{width:8.538958px;}
._3_c00199{width:9.585235px;}
._8_c00199{width:11.544190px;}
._7_c00199{width:12.915675px;}
._6_c00199{width:14.095598px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs0_c00199{font-size:59.759976px;}
.fs1_c00199{font-size:66.239974px;}
.fs2_c00199{font-size:71.999971px;}
.y0_c00199{bottom:0.000000px;}
.y4_c00199{bottom:75.719970px;}
.y3_c00199{bottom:113.879954px;}
.yf_c00199{bottom:147.539941px;}
.ye_c00199{bottom:178.679929px;}
.yd_c00199{bottom:209.639916px;}
.yc_c00199{bottom:240.779904px;}
.yb_c00199{bottom:271.739891px;}
.ya_c00199{bottom:317.819873px;}
.y9_c00199{bottom:348.779860px;}
.y8_c00199{bottom:379.919848px;}
.y7_c00199{bottom:425.999830px;}
.y6_c00199{bottom:470.819812px;}
.y5_c00199{bottom:511.139796px;}
.y2_c00199{bottom:1156.979537px;}
.y1_c00199{bottom:1195.859522px;}
.h2_c00199{height:44.149201px;}
.h1_c00199{height:58.651148px;}
.h4_c00199{height:65.010911px;}
.h3_c00199{height:70.664034px;}
.h0_c00199{height:1263.000000px;}
.w0_c00199{width:892.500000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:127.799949px;}
.x4_c00199{left:168.839932px;}
.x5_c00199{left:180.899928px;}
.x2_c00199{left:434.159514px;}
.x3_c00199{left:718.379713px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls2_c00199{letter-spacing:0.000000pt;}
.ls0_c00199{letter-spacing:3.851732pt;}
.ls1_c00199{letter-spacing:12.176635pt;}
.ws0_c00199{word-spacing:-15.999994pt;}
.ws1_c00199{word-spacing:0.000000pt;}
._1_c00199{margin-left:-0.982555pt;}
._0_c00199{width:1.062723pt;}
._2_c00199{width:3.829679pt;}
._9_c00199{width:5.371922pt;}
._5_c00199{width:6.394266pt;}
._4_c00199{width:7.590185pt;}
._3_c00199{width:8.520209pt;}
._8_c00199{width:10.261503pt;}
._7_c00199{width:11.480600pt;}
._6_c00199{width:12.529421pt;}
.fs0_c00199{font-size:53.119979pt;}
.fs1_c00199{font-size:58.879976pt;}
.fs2_c00199{font-size:63.999974pt;}
.y0_c00199{bottom:0.000000pt;}
.y4_c00199{bottom:67.306640pt;}
.y3_c00199{bottom:101.226626pt;}
.yf_c00199{bottom:131.146614pt;}
.ye_c00199{bottom:158.826603pt;}
.yd_c00199{bottom:186.346592pt;}
.yc_c00199{bottom:214.026581pt;}
.yb_c00199{bottom:241.546570pt;}
.ya_c00199{bottom:282.506554pt;}
.y9_c00199{bottom:310.026543pt;}
.y8_c00199{bottom:337.706532pt;}
.y7_c00199{bottom:378.666515pt;}
.y6_c00199{bottom:418.506499pt;}
.y5_c00199{bottom:454.346485pt;}
.y2_c00199{bottom:1028.426255pt;}
.y1_c00199{bottom:1062.986241pt;}
.h2_c00199{height:39.243734pt;}
.h1_c00199{height:52.134354pt;}
.h4_c00199{height:57.787477pt;}
.h3_c00199{height:62.812475pt;}
.h0_c00199{height:1122.666667pt;}
.w0_c00199{width:793.333333pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:113.599955pt;}
.x4_c00199{left:150.079940pt;}
.x5_c00199{left:160.799936pt;}
.x2_c00199{left:385.919568pt;}
.x3_c00199{left:638.559745pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da23f49cbcd3d93ab8638dbf.woff2')format("woff");}.ff1_c00200{font-family:ff1_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:ff2_c00200;src:url('chunks/assets/font_2b3c152adcdab3c7895274ea.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:0.675781;font-style:normal;font-weight:normal;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_6be39c3177fdcffe6086d4c5.woff2')format("woff");}.ff3_c00200{font-family:ff3_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;}
.m0_c00200{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00200{word-spacing:-17.999993px;}
.ws1_c00200{word-spacing:0.000000px;}
._1_c00200{margin-left:-1.105374px;}
._0_c00200{width:1.478351px;}
._3_c00200{width:5.436133px;}
._2_c00200{width:6.469662px;}
._4_c00200{width:9.082116px;}
._5_c00200{width:10.186416px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs0_c00200{font-size:59.759976px;}
.fs1_c00200{font-size:66.239974px;}
.fs2_c00200{font-size:71.999971px;}
.y0_c00200{bottom:0.000000px;}
.y4_c00200{bottom:75.719970px;}
.y3_c00200{bottom:113.879954px;}
.yc_c00200{bottom:171.839931px;}
.yb_c00200{bottom:217.919913px;}
.ya_c00200{bottom:262.739895px;}
.y9_c00200{bottom:303.059879px;}
.y8_c00200{bottom:1025.759590px;}
.y7_c00200{bottom:1056.719577px;}
.y6_c00200{bottom:1087.859565px;}
.y5_c00200{bottom:1118.819552px;}
.y2_c00200{bottom:1176.059530px;}
.y1_c00200{bottom:1196.039522px;}
.h2_c00200{height:44.149201px;}
.h1_c00200{height:58.651148px;}
.h4_c00200{height:65.010911px;}
.h3_c00200{height:70.664034px;}
.h0_c00200{height:1263.000000px;}
.w0_c00200{width:892.500000px;}
.x0_c00200{left:0.000000px;}
.x5_c00200{left:127.800545px;}
.x6_c00200{left:180.899928px;}
.x1_c00200{left:181.979927px;}
.x8_c00200{left:288.359885px;}
.x2_c00200{left:329.219408px;}
.x4_c00200{left:434.160110px;}
.x7_c00200{left:710.457892px;}
.x3_c00200{left:765.539694px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:-15.999994pt;}
.ws1_c00200{word-spacing:0.000000pt;}
._1_c00200{margin-left:-0.982555pt;}
._0_c00200{width:1.314090pt;}
._3_c00200{width:4.832118pt;}
._2_c00200{width:5.750811pt;}
._4_c00200{width:8.072992pt;}
._5_c00200{width:9.054592pt;}
.fs0_c00200{font-size:53.119979pt;}
.fs1_c00200{font-size:58.879976pt;}
.fs2_c00200{font-size:63.999974pt;}
.y0_c00200{bottom:0.000000pt;}
.y4_c00200{bottom:67.306640pt;}
.y3_c00200{bottom:101.226626pt;}
.yc_c00200{bottom:152.746606pt;}
.yb_c00200{bottom:193.706589pt;}
.ya_c00200{bottom:233.546573pt;}
.y9_c00200{bottom:269.386559pt;}
.y8_c00200{bottom:911.786302pt;}
.y7_c00200{bottom:939.306291pt;}
.y6_c00200{bottom:966.986280pt;}
.y5_c00200{bottom:994.506269pt;}
.y2_c00200{bottom:1045.386249pt;}
.y1_c00200{bottom:1063.146241pt;}
.h2_c00200{height:39.243734pt;}
.h1_c00200{height:52.134354pt;}
.h4_c00200{height:57.787477pt;}
.h3_c00200{height:62.812475pt;}
.h0_c00200{height:1122.666667pt;}
.w0_c00200{width:793.333333pt;}
.x0_c00200{left:0.000000pt;}
.x5_c00200{left:113.600485pt;}
.x6_c00200{left:160.799936pt;}
.x1_c00200{left:161.759935pt;}
.x8_c00200{left:256.319897pt;}
.x2_c00200{left:292.639474pt;}
.x4_c00200{left:385.920098pt;}
.x7_c00200{left:631.518126pt;}
.x3_c00200{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7fbdb3987f1e6eaf84a327b.woff2')format("woff");}.ff1_c00201{font-family:ff1_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:ff2_c00201;src:url('chunks/assets/font_0e347aa6de445d4725b3eb6f.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:0.675781;font-style:normal;font-weight:normal;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_fad4d92024f9aa5311b5dc61.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_a09cf0a10ce72b611e08d531.woff2')format("woff");}.ff4_c00201{font-family:ff4_c00201;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls5_c00201{letter-spacing:0.000000px;}
.ls3_c00201{letter-spacing:0.011169px;}
.ls2_c00201{letter-spacing:0.153901px;}
.ls4_c00201{letter-spacing:0.189300px;}
.ls1_c00201{letter-spacing:0.374281px;}
.ls0_c00201{letter-spacing:11.537395px;}
.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:-17.999993px;}
.ws1_c00201{word-spacing:-12.434276px;}
.ws2_c00201{word-spacing:-9.731165px;}
.ws3_c00201{word-spacing:0.000000px;}
._13_c00201{margin-left:-12.716934px;}
._1_c00201{margin-left:-1.105374px;}
._0_c00201{width:1.195563px;}
._f_c00201{width:3.364722px;}
._10_c00201{width:4.440035px;}
._14_c00201{width:5.689843px;}
._6_c00201{width:6.795186px;}
._3_c00201{width:8.197445px;}
._a_c00201{width:11.161773px;}
._c_c00201{width:12.259829px;}
._b_c00201{width:13.366671px;}
._2_c00201{width:15.835210px;}
._d_c00201{width:20.467204px;}
._e_c00201{width:21.630331px;}
._8_c00201{width:24.336098px;}
._7_c00201{width:25.640127px;}
._9_c00201{width:26.722427px;}
._11_c00201{width:31.728249px;}
._12_c00201{width:32.902151px;}
._4_c00201{width:34.282740px;}
._5_c00201{width:35.541899px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs4_c00201{font-size:38.879984px;}
.fs3_c00201{font-size:48.239981px;}
.fs0_c00201{font-size:59.759976px;}
.fs1_c00201{font-size:66.239974px;}
.fs2_c00201{font-size:71.999971px;}
.y0_c00201{bottom:0.000000px;}
.y4_c00201{bottom:75.719970px;}
.y3_c00201{bottom:113.879954px;}
.y22_c00201{bottom:135.659946px;}
.y21_c00201{bottom:155.459938px;}
.y20_c00201{bottom:162.299935px;}
.y1f_c00201{bottom:173.819930px;}
.y1d_c00201{bottom:232.139907px;}
.y1e_c00201{bottom:240.419904px;}
.y1c_c00201{bottom:263.099895px;}
.y1b_c00201{bottom:309.179876px;}
.y1a_c00201{bottom:340.319864px;}
.y19_c00201{bottom:386.219846px;}
.y18_c00201{bottom:417.359833px;}
.y17_c00201{bottom:448.319821px;}
.y16_c00201{bottom:479.459808px;}
.y15_c00201{bottom:508.979796px;}
.y14_c00201{bottom:546.779781px;}
.y13_c00201{bottom:575.579770px;}
.y12_c00201{bottom:612.839755px;}
.y11_c00201{bottom:652.979739px;}
.y10_c00201{bottom:761.519695px;}
.yf_c00201{bottom:792.479683px;}
.ye_c00201{bottom:823.619671px;}
.yd_c00201{bottom:854.579658px;}
.yc_c00201{bottom:885.719646px;}
.yb_c00201{bottom:916.679633px;}
.ya_c00201{bottom:947.819621px;}
.y9_c00201{bottom:993.899602px;}
.y8_c00201{bottom:1024.859590px;}
.y7_c00201{bottom:1055.999578px;}
.y6_c00201{bottom:1086.959565px;}
.y5_c00201{bottom:1118.099553px;}
.y2_c00201{bottom:1156.979537px;}
.y1_c00201{bottom:1195.859522px;}
.h8_c00201{height:38.158578px;}
.h2_c00201{height:44.149201px;}
.h7_c00201{height:47.344903px;}
.h1_c00201{height:58.651148px;}
.h4_c00201{height:65.010911px;}
.h5_c00201{height:66.757473px;}
.h6_c00201{height:70.628878px;}
.h3_c00201{height:70.664034px;}
.h0_c00201{height:1263.000000px;}
.w0_c00201{width:892.500000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:127.799949px;}
.x8_c00201{left:142.379943px;}
.x3_c00201{left:180.899928px;}
.x5_c00201{left:251.279899px;}
.x6_c00201{left:272.699891px;}
.x7_c00201{left:291.059884px;}
.x2_c00201{left:434.159514px;}
.x4_c00201{left:765.538833px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls5_c00201{letter-spacing:0.000000pt;}
.ls3_c00201{letter-spacing:0.009928pt;}
.ls2_c00201{letter-spacing:0.136801pt;}
.ls4_c00201{letter-spacing:0.168267pt;}
.ls1_c00201{letter-spacing:0.332694pt;}
.ls0_c00201{letter-spacing:10.255463pt;}
.ws0_c00201{word-spacing:-15.999994pt;}
.ws1_c00201{word-spacing:-11.052689pt;}
.ws2_c00201{word-spacing:-8.649924pt;}
.ws3_c00201{word-spacing:0.000000pt;}
._13_c00201{margin-left:-11.303941pt;}
._1_c00201{margin-left:-0.982555pt;}
._0_c00201{width:1.062723pt;}
._f_c00201{width:2.990864pt;}
._10_c00201{width:3.946698pt;}
._14_c00201{width:5.057638pt;}
._6_c00201{width:6.040165pt;}
._3_c00201{width:7.286618pt;}
._a_c00201{width:9.921576pt;}
._c_c00201{width:10.897626pt;}
._b_c00201{width:11.881485pt;}
._2_c00201{width:14.075742pt;}
._d_c00201{width:18.193070pt;}
._e_c00201{width:19.226961pt;}
._8_c00201{width:21.632087pt;}
._7_c00201{width:22.791224pt;}
._9_c00201{width:23.753268pt;}
._11_c00201{width:28.202888pt;}
._12_c00201{width:29.246356pt;}
._4_c00201{width:30.473546pt;}
._5_c00201{width:31.592799pt;}
.fs4_c00201{font-size:34.559986pt;}
.fs3_c00201{font-size:42.879983pt;}
.fs0_c00201{font-size:53.119979pt;}
.fs1_c00201{font-size:58.879976pt;}
.fs2_c00201{font-size:63.999974pt;}
.y0_c00201{bottom:0.000000pt;}
.y4_c00201{bottom:67.306640pt;}
.y3_c00201{bottom:101.226626pt;}
.y22_c00201{bottom:120.586618pt;}
.y21_c00201{bottom:138.186611pt;}
.y20_c00201{bottom:144.266609pt;}
.y1f_c00201{bottom:154.506605pt;}
.y1d_c00201{bottom:206.346584pt;}
.y1e_c00201{bottom:213.706581pt;}
.y1c_c00201{bottom:233.866573pt;}
.y1b_c00201{bottom:274.826557pt;}
.y1a_c00201{bottom:302.506546pt;}
.y19_c00201{bottom:343.306529pt;}
.y18_c00201{bottom:370.986518pt;}
.y17_c00201{bottom:398.506507pt;}
.y16_c00201{bottom:426.186496pt;}
.y15_c00201{bottom:452.426486pt;}
.y14_c00201{bottom:486.026472pt;}
.y13_c00201{bottom:511.626462pt;}
.y12_c00201{bottom:544.746449pt;}
.y11_c00201{bottom:580.426434pt;}
.y10_c00201{bottom:676.906396pt;}
.yf_c00201{bottom:704.426385pt;}
.ye_c00201{bottom:732.106374pt;}
.yd_c00201{bottom:759.626363pt;}
.yc_c00201{bottom:787.306352pt;}
.yb_c00201{bottom:814.826341pt;}
.ya_c00201{bottom:842.506330pt;}
.y9_c00201{bottom:883.466313pt;}
.y8_c00201{bottom:910.986302pt;}
.y7_c00201{bottom:938.666291pt;}
.y6_c00201{bottom:966.186280pt;}
.y5_c00201{bottom:993.866269pt;}
.y2_c00201{bottom:1028.426255pt;}
.y1_c00201{bottom:1062.986241pt;}
.h8_c00201{height:33.918736pt;}
.h2_c00201{height:39.243734pt;}
.h7_c00201{height:42.084358pt;}
.h1_c00201{height:52.134354pt;}
.h4_c00201{height:57.787477pt;}
.h5_c00201{height:59.339976pt;}
.h6_c00201{height:62.781225pt;}
.h3_c00201{height:62.812475pt;}
.h0_c00201{height:1122.666667pt;}
.w0_c00201{width:793.333333pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:113.599955pt;}
.x8_c00201{left:126.559949pt;}
.x3_c00201{left:160.799936pt;}
.x5_c00201{left:223.359911pt;}
.x6_c00201{left:242.399903pt;}
.x7_c00201{left:258.719897pt;}
.x2_c00201{left:385.919568pt;}
.x4_c00201{left:680.478963pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b015d36566d54d154d61e9f6.woff2')format("woff");}.ff1_c00202{font-family:ff1_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:ff2_c00202;src:url('chunks/assets/font_56e2eb5be5303440185d8e30.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:0.675781;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.311035;font-style:normal;font-weight:normal;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_82cc869abb34b8ad538c569a.woff2')format("woff");}.ff4_c00202{font-family:ff4_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;}
.m0_c00202{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls3_c00202{letter-spacing:0.000000px;}
.ls2_c00202{letter-spacing:0.011169px;}
.ls1_c00202{letter-spacing:0.153901px;}
.ls0_c00202{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00202{word-spacing:-17.999993px;}
.ws1_c00202{word-spacing:-12.434276px;}
.ws2_c00202{word-spacing:-9.731165px;}
.ws3_c00202{word-spacing:0.000000px;}
._5_c00202{margin-left:-12.716934px;}
._1_c00202{margin-left:-1.105374px;}
._0_c00202{width:1.478351px;}
._6_c00202{width:3.000055px;}
._2_c00202{width:13.877024px;}
._3_c00202{width:14.891574px;}
._4_c00202{width:176.525050px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs4_c00202{font-size:38.879984px;}
.fs3_c00202{font-size:48.239981px;}
.fs0_c00202{font-size:59.759976px;}
.fs1_c00202{font-size:66.239974px;}
.fs2_c00202{font-size:71.999971px;}
.y0_c00202{bottom:0.000000px;}
.y4_c00202{bottom:75.719970px;}
.y3_c00202{bottom:113.879954px;}
.yf_c00202{bottom:135.659946px;}
.ye_c00202{bottom:155.459938px;}
.yd_c00202{bottom:162.299935px;}
.yc_c00202{bottom:173.819930px;}
.yb_c00202{bottom:242.039903px;}
.ya_c00202{bottom:279.479888px;}
.y9_c00202{bottom:319.799872px;}
.y8_c00202{bottom:1056.719577px;}
.y6_c00202{bottom:1087.859565px;}
.y7_c00202{bottom:1096.139562px;}
.y5_c00202{bottom:1118.819552px;}
.y2_c00202{bottom:1176.059530px;}
.y1_c00202{bottom:1196.039522px;}
.h7_c00202{height:38.158578px;}
.h2_c00202{height:44.149201px;}
.h4_c00202{height:47.344903px;}
.h1_c00202{height:58.651148px;}
.h6_c00202{height:65.010911px;}
.h3_c00202{height:70.664034px;}
.h5_c00202{height:72.562471px;}
.h0_c00202{height:1263.000000px;}
.w0_c00202{width:892.500000px;}
.x0_c00202{left:0.000000px;}
.x5_c00202{left:127.800545px;}
.xa_c00202{left:142.379943px;}
.x1_c00202{left:181.979927px;}
.x9_c00202{left:204.659918px;}
.x6_c00202{left:223.199911px;}
.x7_c00202{left:241.559903px;}
.x2_c00202{left:329.219408px;}
.x4_c00202{left:434.160110px;}
.x8_c00202{left:734.220165px;}
.x3_c00202{left:765.539694px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls3_c00202{letter-spacing:0.000000pt;}
.ls2_c00202{letter-spacing:0.009928pt;}
.ls1_c00202{letter-spacing:0.136801pt;}
.ls0_c00202{letter-spacing:0.332694pt;}
.ws0_c00202{word-spacing:-15.999994pt;}
.ws1_c00202{word-spacing:-11.052689pt;}
.ws2_c00202{word-spacing:-8.649924pt;}
.ws3_c00202{word-spacing:0.000000pt;}
._5_c00202{margin-left:-11.303941pt;}
._1_c00202{margin-left:-0.982555pt;}
._0_c00202{width:1.314090pt;}
._6_c00202{width:2.666716pt;}
._2_c00202{width:12.335133pt;}
._3_c00202{width:13.236955pt;}
._4_c00202{width:156.911156pt;}
.fs4_c00202{font-size:34.559986pt;}
.fs3_c00202{font-size:42.879983pt;}
.fs0_c00202{font-size:53.119979pt;}
.fs1_c00202{font-size:58.879976pt;}
.fs2_c00202{font-size:63.999974pt;}
.y0_c00202{bottom:0.000000pt;}
.y4_c00202{bottom:67.306640pt;}
.y3_c00202{bottom:101.226626pt;}
.yf_c00202{bottom:120.586618pt;}
.ye_c00202{bottom:138.186611pt;}
.yd_c00202{bottom:144.266609pt;}
.yc_c00202{bottom:154.506605pt;}
.yb_c00202{bottom:215.146581pt;}
.ya_c00202{bottom:248.426567pt;}
.y9_c00202{bottom:284.266553pt;}
.y8_c00202{bottom:939.306291pt;}
.y6_c00202{bottom:966.986280pt;}
.y7_c00202{bottom:974.346277pt;}
.y5_c00202{bottom:994.506269pt;}
.y2_c00202{bottom:1045.386249pt;}
.y1_c00202{bottom:1063.146241pt;}
.h7_c00202{height:33.918736pt;}
.h2_c00202{height:39.243734pt;}
.h4_c00202{height:42.084358pt;}
.h1_c00202{height:52.134354pt;}
.h6_c00202{height:57.787477pt;}
.h3_c00202{height:62.812475pt;}
.h5_c00202{height:64.499974pt;}
.h0_c00202{height:1122.666667pt;}
.w0_c00202{width:793.333333pt;}
.x0_c00202{left:0.000000pt;}
.x5_c00202{left:113.600485pt;}
.xa_c00202{left:126.559949pt;}
.x1_c00202{left:161.759935pt;}
.x9_c00202{left:181.919927pt;}
.x6_c00202{left:198.399921pt;}
.x7_c00202{left:214.719914pt;}
.x2_c00202{left:292.639474pt;}
.x4_c00202{left:385.920098pt;}
.x8_c00202{left:652.640147pt;}
.x3_c00202{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b68964b65fdfafe4ddbd711.woff2')format("woff");}.ff1_c00203{font-family:ff1_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:ff2_c00203;src:url('chunks/assets/font_0e347aa6de445d4725b3eb6f.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:0.675781;font-style:normal;font-weight:normal;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_1d425d2fb0a9787c9189b649.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_537f97a42529c7fa04d4efa3.woff2')format("woff");}.ff4_c00203{font-family:ff4_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:ff5_c00203;src:url('chunks/assets/font_6d86d35c6b686600de9b7241.woff2')format("woff");}.ff5_c00203{font-family:ff5_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;}
.m0_c00203{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls2_c00203{letter-spacing:0.000000px;}
.ls1_c00203{letter-spacing:0.011169px;}
.ls0_c00203{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00203{word-spacing:-17.999993px;}
.ws1_c00203{word-spacing:-12.434276px;}
.ws2_c00203{word-spacing:-9.731165px;}
.ws3_c00203{word-spacing:0.000000px;}
._f_c00203{margin-left:-9.810187px;}
._6_c00203{margin-left:-2.599737px;}
._1_c00203{margin-left:-1.105374px;}
._0_c00203{width:1.195563px;}
._4_c00203{width:2.673803px;}
._3_c00203{width:3.984848px;}
._e_c00203{width:5.768058px;}
._a_c00203{width:6.900710px;}
._9_c00203{width:7.954290px;}
._c_c00203{width:10.263012px;}
._5_c00203{width:11.601178px;}
._b_c00203{width:13.017197px;}
._2_c00203{width:16.127009px;}
._7_c00203{width:19.341614px;}
._8_c00203{width:20.375123px;}
._d_c00203{width:21.657680px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs4_c00203{font-size:38.879984px;}
.fs3_c00203{font-size:48.239981px;}
.fs0_c00203{font-size:59.759976px;}
.fs1_c00203{font-size:66.239974px;}
.fs2_c00203{font-size:71.999971px;}
.y0_c00203{bottom:0.000000px;}
.y4_c00203{bottom:75.899970px;}
.y3_c00203{bottom:114.059954px;}
.y28_c00203{bottom:133.679947px;}
.y27_c00203{bottom:169.139932px;}
.y26_c00203{bottom:175.979930px;}
.y25_c00203{bottom:188.939924px;}
.y24_c00203{bottom:208.739917px;}
.y23_c00203{bottom:215.579914px;}
.y22_c00203{bottom:227.099909px;}
.y21_c00203{bottom:251.759899px;}
.y20_c00203{bottom:282.719887px;}
.y1f_c00203{bottom:328.799868px;}
.y1e_c00203{bottom:359.939856px;}
.y1d_c00203{bottom:390.899844px;}
.y1c_c00203{bottom:422.039831px;}
.y1b_c00203{bottom:452.999819px;}
.y1a_c00203{bottom:484.139806px;}
.y19_c00203{bottom:515.099794px;}
.y18_c00203{bottom:546.239782px;}
.y17_c00203{bottom:592.139763px;}
.y16_c00203{bottom:623.279751px;}
.y15_c00203{bottom:654.239738px;}
.y14_c00203{bottom:685.379726px;}
.y13_c00203{bottom:716.339713px;}
.y12_c00203{bottom:747.479701px;}
.y11_c00203{bottom:778.439689px;}
.y10_c00203{bottom:809.579676px;}
.yf_c00203{bottom:855.299658px;}
.ye_c00203{bottom:886.259645px;}
.yd_c00203{bottom:925.499630px;}
.yc_c00203{bottom:963.659615px;}
.ya_c00203{bottom:994.079602px;}
.yb_c00203{bottom:1002.359599px;}
.y9_c00203{bottom:1025.039590px;}
.y8_c00203{bottom:1056.179578px;}
.y6_c00203{bottom:1087.139565px;}
.y7_c00203{bottom:1095.419562px;}
.y5_c00203{bottom:1118.279553px;}
.y2_c00203{bottom:1157.159537px;}
.y1_c00203{bottom:1196.039522px;}
.h6_c00203{height:38.158578px;}
.h7_c00203{height:39.830258px;}
.h2_c00203{height:44.149201px;}
.h4_c00203{height:47.344903px;}
.h1_c00203{height:58.651148px;}
.h3_c00203{height:70.664034px;}
.h5_c00203{height:72.562471px;}
.h0_c00203{height:1263.000000px;}
.w0_c00203{width:892.500000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:127.619949px;}
.x8_c00203{left:142.199943px;}
.x3_c00203{left:180.719928px;}
.x6_c00203{left:189.179924px;}
.x7_c00203{left:207.539917px;}
.x2_c00203{left:433.979514px;}
.x4_c00203{left:733.139707px;}
.x5_c00203{left:751.499699px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls2_c00203{letter-spacing:0.000000pt;}
.ls1_c00203{letter-spacing:0.009928pt;}
.ls0_c00203{letter-spacing:0.332694pt;}
.ws0_c00203{word-spacing:-15.999994pt;}
.ws1_c00203{word-spacing:-11.052689pt;}
.ws2_c00203{word-spacing:-8.649924pt;}
.ws3_c00203{word-spacing:0.000000pt;}
._f_c00203{margin-left:-8.720166pt;}
._6_c00203{margin-left:-2.310877pt;}
._1_c00203{margin-left:-0.982555pt;}
._0_c00203{width:1.062723pt;}
._4_c00203{width:2.376714pt;}
._3_c00203{width:3.542087pt;}
._e_c00203{width:5.127163pt;}
._a_c00203{width:6.133964pt;}
._9_c00203{width:7.070480pt;}
._c_c00203{width:9.122677pt;}
._5_c00203{width:10.312158pt;}
._b_c00203{width:11.570842pt;}
._2_c00203{width:14.335119pt;}
._7_c00203{width:17.192546pt;}
._8_c00203{width:18.111220pt;}
._d_c00203{width:19.251272pt;}
.fs4_c00203{font-size:34.559986pt;}
.fs3_c00203{font-size:42.879983pt;}
.fs0_c00203{font-size:53.119979pt;}
.fs1_c00203{font-size:58.879976pt;}
.fs2_c00203{font-size:63.999974pt;}
.y0_c00203{bottom:0.000000pt;}
.y4_c00203{bottom:67.466640pt;}
.y3_c00203{bottom:101.386626pt;}
.y28_c00203{bottom:118.826619pt;}
.y27_c00203{bottom:150.346607pt;}
.y26_c00203{bottom:156.426604pt;}
.y25_c00203{bottom:167.946599pt;}
.y24_c00203{bottom:185.546592pt;}
.y23_c00203{bottom:191.626590pt;}
.y22_c00203{bottom:201.866586pt;}
.y21_c00203{bottom:223.786577pt;}
.y20_c00203{bottom:251.306566pt;}
.y1f_c00203{bottom:292.266550pt;}
.y1e_c00203{bottom:319.946539pt;}
.y1d_c00203{bottom:347.466528pt;}
.y1c_c00203{bottom:375.146517pt;}
.y1b_c00203{bottom:402.666506pt;}
.y1a_c00203{bottom:430.346495pt;}
.y19_c00203{bottom:457.866484pt;}
.y18_c00203{bottom:485.546472pt;}
.y17_c00203{bottom:526.346456pt;}
.y16_c00203{bottom:554.026445pt;}
.y15_c00203{bottom:581.546434pt;}
.y14_c00203{bottom:609.226423pt;}
.y13_c00203{bottom:636.746412pt;}
.y12_c00203{bottom:664.426401pt;}
.y11_c00203{bottom:691.946390pt;}
.y10_c00203{bottom:719.626379pt;}
.yf_c00203{bottom:760.266363pt;}
.ye_c00203{bottom:787.786352pt;}
.yd_c00203{bottom:822.666338pt;}
.yc_c00203{bottom:856.586324pt;}
.ya_c00203{bottom:883.626313pt;}
.yb_c00203{bottom:890.986310pt;}
.y9_c00203{bottom:911.146302pt;}
.y8_c00203{bottom:938.826291pt;}
.y6_c00203{bottom:966.346280pt;}
.y7_c00203{bottom:973.706277pt;}
.y5_c00203{bottom:994.026269pt;}
.y2_c00203{bottom:1028.586255pt;}
.y1_c00203{bottom:1063.146241pt;}
.h6_c00203{height:33.918736pt;}
.h7_c00203{height:35.404673pt;}
.h2_c00203{height:39.243734pt;}
.h4_c00203{height:42.084358pt;}
.h1_c00203{height:52.134354pt;}
.h3_c00203{height:62.812475pt;}
.h5_c00203{height:64.499974pt;}
.h0_c00203{height:1122.666667pt;}
.w0_c00203{width:793.333333pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:113.439955pt;}
.x8_c00203{left:126.399949pt;}
.x3_c00203{left:160.639936pt;}
.x6_c00203{left:168.159933pt;}
.x7_c00203{left:184.479926pt;}
.x2_c00203{left:385.759568pt;}
.x4_c00203{left:651.679739pt;}
.x5_c00203{left:667.999733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_933c96bbe675e04c25c5bf29.woff2')format("woff");}.ff1_c00204{font-family:ff1_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:ff2_c00204;src:url('chunks/assets/font_3b957c826154ba37b56ed808.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:0.675781;font-style:normal;font-weight:normal;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_524e18b5a51115d063e300bd.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_294e94d2e9dd961c37504f7c.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00204{word-spacing:0.000000px;}
._7_c00204{margin-left:-2.209802px;}
._1_c00204{margin-left:-1.105374px;}
._0_c00204{width:1.478351px;}
._5_c00204{width:3.161585px;}
._6_c00204{width:5.144589px;}
._3_c00204{width:6.228743px;}
._4_c00204{width:7.467437px;}
._d_c00204{width:9.401214px;}
._9_c00204{width:10.409462px;}
._a_c00204{width:11.803358px;}
._b_c00204{width:13.550889px;}
._c_c00204{width:21.441070px;}
._2_c00204{width:22.532774px;}
._e_c00204{width:24.278315px;}
._8_c00204{width:46.671897px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:59.759976px;}
.fs1_c00204{font-size:66.239974px;}
.fs2_c00204{font-size:71.999971px;}
.y0_c00204{bottom:0.000000px;}
.y4_c00204{bottom:75.899970px;}
.y3_c00204{bottom:114.059954px;}
.y20_c00204{bottom:205.679918px;}
.y1f_c00204{bottom:236.819905px;}
.y1e_c00204{bottom:267.779893px;}
.y1d_c00204{bottom:298.919880px;}
.y1c_c00204{bottom:329.879868px;}
.y1b_c00204{bottom:361.019856px;}
.y1a_c00204{bottom:407.099837px;}
.y19_c00204{bottom:438.059825px;}
.y18_c00204{bottom:469.199812px;}
.y17_c00204{bottom:500.159800px;}
.y16_c00204{bottom:531.299787px;}
.y15_c00204{bottom:577.199769px;}
.y14_c00204{bottom:608.339757px;}
.y13_c00204{bottom:639.299744px;}
.y12_c00204{bottom:670.439732px;}
.y11_c00204{bottom:701.399719px;}
.y10_c00204{bottom:732.539707px;}
.yf_c00204{bottom:763.499695px;}
.ye_c00204{bottom:794.639682px;}
.yd_c00204{bottom:825.599670px;}
.yc_c00204{bottom:871.319651px;}
.yb_c00204{bottom:917.759633px;}
.ya_c00204{bottom:963.839614px;}
.y9_c00204{bottom:994.799602px;}
.y8_c00204{bottom:1025.939590px;}
.y7_c00204{bottom:1056.899577px;}
.y6_c00204{bottom:1088.039565px;}
.y5_c00204{bottom:1118.999552px;}
.y2_c00204{bottom:1176.239530px;}
.y1_c00204{bottom:1196.219522px;}
.h2_c00204{height:44.149201px;}
.h1_c00204{height:58.651148px;}
.h3_c00204{height:70.664034px;}
.h4_c00204{height:72.562471px;}
.h0_c00204{height:1263.000000px;}
.w0_c00204{width:892.500000px;}
.x0_c00204{left:0.000000px;}
.x5_c00204{left:127.620545px;}
.x6_c00204{left:180.719331px;}
.x1_c00204{left:181.799927px;}
.x2_c00204{left:329.039408px;}
.x4_c00204{left:433.980110px;}
.x3_c00204{left:765.359694px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws0_c00204{word-spacing:0.000000pt;}
._7_c00204{margin-left:-1.964268pt;}
._1_c00204{margin-left:-0.982555pt;}
._0_c00204{width:1.314090pt;}
._5_c00204{width:2.810297pt;}
._6_c00204{width:4.572968pt;}
._3_c00204{width:5.536661pt;}
._4_c00204{width:6.637721pt;}
._d_c00204{width:8.356634pt;}
._9_c00204{width:9.252855pt;}
._a_c00204{width:10.491873pt;}
._b_c00204{width:12.045235pt;}
._c_c00204{width:19.058729pt;}
._2_c00204{width:20.029132pt;}
._e_c00204{width:21.580724pt;}
._8_c00204{width:41.486131pt;}
.fs0_c00204{font-size:53.119979pt;}
.fs1_c00204{font-size:58.879976pt;}
.fs2_c00204{font-size:63.999974pt;}
.y0_c00204{bottom:0.000000pt;}
.y4_c00204{bottom:67.466640pt;}
.y3_c00204{bottom:101.386626pt;}
.y20_c00204{bottom:182.826594pt;}
.y1f_c00204{bottom:210.506582pt;}
.y1e_c00204{bottom:238.026571pt;}
.y1d_c00204{bottom:265.706560pt;}
.y1c_c00204{bottom:293.226549pt;}
.y1b_c00204{bottom:320.906538pt;}
.y1a_c00204{bottom:361.866522pt;}
.y19_c00204{bottom:389.386511pt;}
.y18_c00204{bottom:417.066500pt;}
.y17_c00204{bottom:444.586489pt;}
.y16_c00204{bottom:472.266478pt;}
.y15_c00204{bottom:513.066461pt;}
.y14_c00204{bottom:540.746450pt;}
.y13_c00204{bottom:568.266439pt;}
.y12_c00204{bottom:595.946428pt;}
.y11_c00204{bottom:623.466417pt;}
.y10_c00204{bottom:651.146406pt;}
.yf_c00204{bottom:678.666395pt;}
.ye_c00204{bottom:706.346384pt;}
.yd_c00204{bottom:733.866373pt;}
.yc_c00204{bottom:774.506357pt;}
.yb_c00204{bottom:815.786340pt;}
.ya_c00204{bottom:856.746324pt;}
.y9_c00204{bottom:884.266313pt;}
.y8_c00204{bottom:911.946302pt;}
.y7_c00204{bottom:939.466291pt;}
.y6_c00204{bottom:967.146280pt;}
.y5_c00204{bottom:994.666269pt;}
.y2_c00204{bottom:1045.546248pt;}
.y1_c00204{bottom:1063.306241pt;}
.h2_c00204{height:39.243734pt;}
.h1_c00204{height:52.134354pt;}
.h3_c00204{height:62.812475pt;}
.h4_c00204{height:64.499974pt;}
.h0_c00204{height:1122.666667pt;}
.w0_c00204{width:793.333333pt;}
.x0_c00204{left:0.000000pt;}
.x5_c00204{left:113.440485pt;}
.x6_c00204{left:160.639405pt;}
.x1_c00204{left:161.599935pt;}
.x2_c00204{left:292.479474pt;}
.x4_c00204{left:385.760098pt;}
.x3_c00204{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f5e5c27a8418c99f2a80d83.woff2')format("woff");}.ff1_c00205{font-family:ff1_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:ff2_c00205;src:url('chunks/assets/font_5e3ffa67d96f3cb427871564.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:0.675781;font-style:normal;font-weight:normal;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_cf99bf2716f4052f674447d9.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_61197d0b56ba82fa01b6be37.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.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:0.000000px;}
._c_c00205{margin-left:-2.214572px;}
._1_c00205{margin-left:-1.105374px;}
._0_c00205{width:1.195563px;}
._9_c00205{width:3.145041px;}
._4_c00205{width:4.145501px;}
._2_c00205{width:5.433876px;}
._3_c00205{width:6.620923px;}
._e_c00205{width:7.843213px;}
._5_c00205{width:9.848514px;}
._6_c00205{width:10.895073px;}
._7_c00205{width:12.546002px;}
._8_c00205{width:14.479386px;}
._12_c00205{width:15.637799px;}
._11_c00205{width:16.757601px;}
._b_c00205{width:22.868357px;}
._a_c00205{width:24.050404px;}
._d_c00205{width:25.096797px;}
._f_c00205{width:32.100202px;}
._10_c00205{width:33.426645px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:59.759976px;}
.fs1_c00205{font-size:66.239974px;}
.fs2_c00205{font-size:71.999971px;}
.y0_c00205{bottom:0.000000px;}
.y4_c00205{bottom:75.899970px;}
.y3_c00205{bottom:114.059954px;}
.y22_c00205{bottom:142.859943px;}
.y21_c00205{bottom:173.819930px;}
.y20_c00205{bottom:204.959918px;}
.y1f_c00205{bottom:235.919906px;}
.y1e_c00205{bottom:267.059893px;}
.y1d_c00205{bottom:313.139875px;}
.y1c_c00205{bottom:344.099862px;}
.y1b_c00205{bottom:375.239850px;}
.y1a_c00205{bottom:406.199838px;}
.y19_c00205{bottom:437.159825px;}
.y18_c00205{bottom:468.299813px;}
.y17_c00205{bottom:499.259800px;}
.y16_c00205{bottom:530.399788px;}
.y15_c00205{bottom:576.479769px;}
.y14_c00205{bottom:607.439757px;}
.y13_c00205{bottom:638.579745px;}
.y12_c00205{bottom:669.539732px;}
.y11_c00205{bottom:700.679720px;}
.y10_c00205{bottom:731.639707px;}
.yf_c00205{bottom:777.359689px;}
.ye_c00205{bottom:823.439671px;}
.yd_c00205{bottom:869.879652px;}
.yc_c00205{bottom:900.839640px;}
.yb_c00205{bottom:931.979627px;}
.ya_c00205{bottom:962.939615px;}
.y9_c00205{bottom:994.079602px;}
.y8_c00205{bottom:1025.039590px;}
.y7_c00205{bottom:1056.179578px;}
.y6_c00205{bottom:1087.139565px;}
.y5_c00205{bottom:1118.279553px;}
.y2_c00205{bottom:1157.159537px;}
.y1_c00205{bottom:1196.039522px;}
.h2_c00205{height:44.149201px;}
.h1_c00205{height:58.651148px;}
.h3_c00205{height:70.664034px;}
.h4_c00205{height:72.562471px;}
.h0_c00205{height:1263.000000px;}
.w0_c00205{width:892.500000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:127.619949px;}
.x3_c00205{left:180.719928px;}
.x2_c00205{left:433.979514px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
._c_c00205{margin-left:-1.968509pt;}
._1_c00205{margin-left:-0.982555pt;}
._0_c00205{width:1.062723pt;}
._9_c00205{width:2.795592pt;}
._4_c00205{width:3.684890pt;}
._2_c00205{width:4.830112pt;}
._3_c00205{width:5.885265pt;}
._e_c00205{width:6.971745pt;}
._5_c00205{width:8.754235pt;}
._6_c00205{width:9.684510pt;}
._7_c00205{width:11.152002pt;}
._8_c00205{width:12.870565pt;}
._12_c00205{width:13.900266pt;}
._11_c00205{width:14.895645pt;}
._b_c00205{width:20.327429pt;}
._a_c00205{width:21.378137pt;}
._d_c00205{width:22.308264pt;}
._f_c00205{width:28.533513pt;}
._10_c00205{width:29.712574pt;}
.fs0_c00205{font-size:53.119979pt;}
.fs1_c00205{font-size:58.879976pt;}
.fs2_c00205{font-size:63.999974pt;}
.y0_c00205{bottom:0.000000pt;}
.y4_c00205{bottom:67.466640pt;}
.y3_c00205{bottom:101.386626pt;}
.y22_c00205{bottom:126.986616pt;}
.y21_c00205{bottom:154.506605pt;}
.y20_c00205{bottom:182.186594pt;}
.y1f_c00205{bottom:209.706583pt;}
.y1e_c00205{bottom:237.386572pt;}
.y1d_c00205{bottom:278.346555pt;}
.y1c_c00205{bottom:305.866544pt;}
.y1b_c00205{bottom:333.546533pt;}
.y1a_c00205{bottom:361.066522pt;}
.y19_c00205{bottom:388.586511pt;}
.y18_c00205{bottom:416.266500pt;}
.y17_c00205{bottom:443.786489pt;}
.y16_c00205{bottom:471.466478pt;}
.y15_c00205{bottom:512.426462pt;}
.y14_c00205{bottom:539.946451pt;}
.y13_c00205{bottom:567.626440pt;}
.y12_c00205{bottom:595.146429pt;}
.y11_c00205{bottom:622.826418pt;}
.y10_c00205{bottom:650.346407pt;}
.yf_c00205{bottom:690.986390pt;}
.ye_c00205{bottom:731.946374pt;}
.yd_c00205{bottom:773.226357pt;}
.yc_c00205{bottom:800.746346pt;}
.yb_c00205{bottom:828.426335pt;}
.ya_c00205{bottom:855.946324pt;}
.y9_c00205{bottom:883.626313pt;}
.y8_c00205{bottom:911.146302pt;}
.y7_c00205{bottom:938.826291pt;}
.y6_c00205{bottom:966.346280pt;}
.y5_c00205{bottom:994.026269pt;}
.y2_c00205{bottom:1028.586255pt;}
.y1_c00205{bottom:1063.146241pt;}
.h2_c00205{height:39.243734pt;}
.h1_c00205{height:52.134354pt;}
.h3_c00205{height:62.812475pt;}
.h4_c00205{height:64.499974pt;}
.h0_c00205{height:1122.666667pt;}
.w0_c00205{width:793.333333pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:113.439955pt;}
.x3_c00205{left:160.639936pt;}
.x2_c00205{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c91b7212c1e201722c07b6a.woff2')format("woff");}.ff1_c00206{font-family:ff1_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:ff2_c00206;src:url('chunks/assets/font_a44fef16e32f209eec01e88e.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.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;}
}
.ws0_c00206{word-spacing:0.000000px;}
._1_c00206{margin-left:-1.105374px;}
._0_c00206{width:1.478351px;}
._2_c00206{width:2.775518px;}
._5_c00206{width:5.775181px;}
._6_c00206{width:6.941122px;}
._4_c00206{width:8.341573px;}
._3_c00206{width:9.842664px;}
._7_c00206{width:14.412100px;}
._8_c00206{width:16.304122px;}
._9_c00206{width:30.540073px;}
._a_c00206{width:31.817085px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:59.759976px;}
.fs1_c00206{font-size:66.239974px;}
.fs2_c00206{font-size:71.999971px;}
.y0_c00206{bottom:0.000000px;}
.y4_c00206{bottom:75.899970px;}
.y3_c00206{bottom:114.059954px;}
.y1f_c00206{bottom:168.599933px;}
.y1e_c00206{bottom:206.759917px;}
.y1d_c00206{bottom:245.099902px;}
.y1c_c00206{bottom:283.259887px;}
.y1b_c00206{bottom:321.419871px;}
.y1a_c00206{bottom:359.579856px;}
.y19_c00206{bottom:397.739841px;}
.y18_c00206{bottom:435.899826px;}
.y17_c00206{bottom:474.059810px;}
.y16_c00206{bottom:512.219795px;}
.y15_c00206{bottom:550.379780px;}
.y14_c00206{bottom:588.539765px;}
.y13_c00206{bottom:626.699749px;}
.y12_c00206{bottom:664.859734px;}
.y11_c00206{bottom:703.019719px;}
.y10_c00206{bottom:741.179704px;}
.yf_c00206{bottom:779.339688px;}
.ye_c00206{bottom:824.699670px;}
.yd_c00206{bottom:870.599652px;}
.yc_c00206{bottom:901.739639px;}
.yb_c00206{bottom:932.699627px;}
.ya_c00206{bottom:963.839614px;}
.y9_c00206{bottom:994.799602px;}
.y8_c00206{bottom:1025.939590px;}
.y7_c00206{bottom:1056.899577px;}
.y6_c00206{bottom:1088.039565px;}
.y5_c00206{bottom:1118.999552px;}
.y2_c00206{bottom:1176.239530px;}
.y1_c00206{bottom:1196.219522px;}
.h2_c00206{height:44.149201px;}
.h1_c00206{height:58.651148px;}
.h3_c00206{height:70.664034px;}
.h0_c00206{height:1263.000000px;}
.w0_c00206{width:892.500000px;}
.x0_c00206{left:0.000000px;}
.x5_c00206{left:127.620545px;}
.x6_c00206{left:180.719928px;}
.x1_c00206{left:181.799927px;}
.x2_c00206{left:329.039408px;}
.x4_c00206{left:433.980110px;}
.x3_c00206{left:765.359694px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
._1_c00206{margin-left:-0.982555pt;}
._0_c00206{width:1.314090pt;}
._2_c00206{width:2.467127pt;}
._5_c00206{width:5.133494pt;}
._6_c00206{width:6.169886pt;}
._4_c00206{width:7.414732pt;}
._3_c00206{width:8.749035pt;}
._7_c00206{width:12.810755pt;}
._8_c00206{width:14.492553pt;}
._9_c00206{width:27.146731pt;}
._a_c00206{width:28.281853pt;}
.fs0_c00206{font-size:53.119979pt;}
.fs1_c00206{font-size:58.879976pt;}
.fs2_c00206{font-size:63.999974pt;}
.y0_c00206{bottom:0.000000pt;}
.y4_c00206{bottom:67.466640pt;}
.y3_c00206{bottom:101.386626pt;}
.y1f_c00206{bottom:149.866607pt;}
.y1e_c00206{bottom:183.786593pt;}
.y1d_c00206{bottom:217.866580pt;}
.y1c_c00206{bottom:251.786566pt;}
.y1b_c00206{bottom:285.706552pt;}
.y1a_c00206{bottom:319.626539pt;}
.y19_c00206{bottom:353.546525pt;}
.y18_c00206{bottom:387.466512pt;}
.y17_c00206{bottom:421.386498pt;}
.y16_c00206{bottom:455.306485pt;}
.y15_c00206{bottom:489.226471pt;}
.y14_c00206{bottom:523.146457pt;}
.y13_c00206{bottom:557.066444pt;}
.y12_c00206{bottom:590.986430pt;}
.y11_c00206{bottom:624.906417pt;}
.y10_c00206{bottom:658.826403pt;}
.yf_c00206{bottom:692.746390pt;}
.ye_c00206{bottom:733.066373pt;}
.yd_c00206{bottom:773.866357pt;}
.yc_c00206{bottom:801.546346pt;}
.yb_c00206{bottom:829.066335pt;}
.ya_c00206{bottom:856.746324pt;}
.y9_c00206{bottom:884.266313pt;}
.y8_c00206{bottom:911.946302pt;}
.y7_c00206{bottom:939.466291pt;}
.y6_c00206{bottom:967.146280pt;}
.y5_c00206{bottom:994.666269pt;}
.y2_c00206{bottom:1045.546248pt;}
.y1_c00206{bottom:1063.306241pt;}
.h2_c00206{height:39.243734pt;}
.h1_c00206{height:52.134354pt;}
.h3_c00206{height:62.812475pt;}
.h0_c00206{height:1122.666667pt;}
.w0_c00206{width:793.333333pt;}
.x0_c00206{left:0.000000pt;}
.x5_c00206{left:113.440485pt;}
.x6_c00206{left:160.639936pt;}
.x1_c00206{left:161.599935pt;}
.x2_c00206{left:292.479474pt;}
.x4_c00206{left:385.760098pt;}
.x3_c00206{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00207{font-family:ff1_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:ff2_c00207;src:url('chunks/assets/font_2d8f687c42a5eadbe218ed4f.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00207{margin-left:-1.105374px;}
._0_c00207{width:1.195563px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:59.759976px;}
.fs1_c00207{font-size:66.239974px;}
.y0_c00207{bottom:0.000000px;}
.y4_c00207{bottom:75.899970px;}
.y3_c00207{bottom:114.059954px;}
.yb_c00207{bottom:889.859644px;}
.ya_c00207{bottom:928.019629px;}
.y9_c00207{bottom:966.179614px;}
.y8_c00207{bottom:1004.339598px;}
.y7_c00207{bottom:1042.679583px;}
.y6_c00207{bottom:1080.839568px;}
.y5_c00207{bottom:1118.999552px;}
.y2_c00207{bottom:1157.159537px;}
.y1_c00207{bottom:1196.039522px;}
.h2_c00207{height:44.149201px;}
.h1_c00207{height:58.651148px;}
.h0_c00207{height:1263.000000px;}
.w0_c00207{width:892.500000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:127.619949px;}
.x2_c00207{left:433.979514px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
._1_c00207{margin-left:-0.982555pt;}
._0_c00207{width:1.062723pt;}
.fs0_c00207{font-size:53.119979pt;}
.fs1_c00207{font-size:58.879976pt;}
.y0_c00207{bottom:0.000000pt;}
.y4_c00207{bottom:67.466640pt;}
.y3_c00207{bottom:101.386626pt;}
.yb_c00207{bottom:790.986350pt;}
.ya_c00207{bottom:824.906337pt;}
.y9_c00207{bottom:858.826323pt;}
.y8_c00207{bottom:892.746310pt;}
.y7_c00207{bottom:926.826296pt;}
.y6_c00207{bottom:960.746282pt;}
.y5_c00207{bottom:994.666269pt;}
.y2_c00207{bottom:1028.586255pt;}
.y1_c00207{bottom:1063.146241pt;}
.h2_c00207{height:39.243734pt;}
.h1_c00207{height:52.134354pt;}
.h0_c00207{height:1122.666667pt;}
.w0_c00207{width:793.333333pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:113.439955pt;}
.x2_c00207{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00208{font-family:ff1_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:ff2_c00208;src:url('chunks/assets/font_11310daab8fdc3757355497b.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:0.675781;font-style:normal;font-weight:normal;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_1fe3f9ed39ef575108d9f552.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.666504;font-style:normal;font-weight:normal;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_d850a01989a8ae52bb01d26f.woff2')format("woff");}.ff4_c00208{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls0_c00208{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00208{word-spacing:-26.999989px;}
.ws1_c00208{word-spacing:0.000000px;}
._1_c00208{margin-left:-1.105374px;}
._0_c00208{width:1.478351px;}
.fc1_c00208{color:rgb(79,129,189);}
.fc0_c00208{color:rgb(0,0,0);}
.fs0_c00208{font-size:59.759976px;}
.fs1_c00208{font-size:66.239974px;}
.fs2_c00208{font-size:71.999971px;}
.fs5_c00208{font-size:84.239966px;}
.fs3_c00208{font-size:95.759962px;}
.fs4_c00208{font-size:107.999957px;}
.y0_c00208{bottom:0.000000px;}
.y5_c00208{bottom:57.899977px;}
.y4_c00208{bottom:78.059969px;}
.y22_c00208{bottom:131.159948px;}
.y21_c00208{bottom:169.319932px;}
.y20_c00208{bottom:207.479917px;}
.y1f_c00208{bottom:245.639902px;}
.y1e_c00208{bottom:283.799886px;}
.y1d_c00208{bottom:321.959871px;}
.y1c_c00208{bottom:351.839859px;}
.y1b_c00208{bottom:382.979847px;}
.y1a_c00208{bottom:413.939834px;}
.y19_c00208{bottom:445.079822px;}
.y18_c00208{bottom:476.039810px;}
.y17_c00208{bottom:507.179797px;}
.y16_c00208{bottom:538.139785px;}
.y15_c00208{bottom:569.279772px;}
.y14_c00208{bottom:600.239760px;}
.y13_c00208{bottom:631.379747px;}
.y12_c00208{bottom:662.339735px;}
.y11_c00208{bottom:693.299723px;}
.y10_c00208{bottom:731.639707px;}
.yf_c00208{bottom:778.259689px;}
.ye_c00208{bottom:822.539671px;}
.yd_c00208{bottom:863.939654px;}
.yc_c00208{bottom:905.339638px;}
.yb_c00208{bottom:946.739621px;}
.ya_c00208{bottom:988.139605px;}
.y9_c00208{bottom:1029.539588px;}
.y8_c00208{bottom:1065.899574px;}
.y7_c00208{bottom:1097.039561px;}
.y6_c00208{bottom:1135.919546px;}
.y3_c00208{bottom:1157.699537px;}
.y2_c00208{bottom:1178.939528px;}
.y1_c00208{bottom:1196.399521px;}
.h2_c00208{height:44.149201px;}
.h3_c00208{height:47.988262px;}
.h1_c00208{height:58.651148px;}
.h4_c00208{height:72.562471px;}
.h7_c00208{height:84.898091px;}
.h5_c00208{height:96.508086px;}
.h6_c00208{height:108.843706px;}
.h0_c00208{height:1263.000000px;}
.w0_c00208{width:892.500000px;}
.x0_c00208{left:0.000000px;}
.x3_c00208{left:127.619949px;}
.x1_c00208{left:181.799927px;}
.x5_c00208{left:222.119911px;}
.x2_c00208{left:329.039408px;}
.x6_c00208{left:335.339904px;}
.x4_c00208{left:433.979514px;}
.x7_c00208{left:557.459777px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:-23.999990pt;}
.ws1_c00208{word-spacing:0.000000pt;}
._1_c00208{margin-left:-0.982555pt;}
._0_c00208{width:1.314090pt;}
.fs0_c00208{font-size:53.119979pt;}
.fs1_c00208{font-size:58.879976pt;}
.fs2_c00208{font-size:63.999974pt;}
.fs5_c00208{font-size:74.879970pt;}
.fs3_c00208{font-size:85.119966pt;}
.fs4_c00208{font-size:95.999962pt;}
.y0_c00208{bottom:0.000000pt;}
.y5_c00208{bottom:51.466646pt;}
.y4_c00208{bottom:69.386639pt;}
.y22_c00208{bottom:116.586620pt;}
.y21_c00208{bottom:150.506606pt;}
.y20_c00208{bottom:184.426593pt;}
.y1f_c00208{bottom:218.346579pt;}
.y1e_c00208{bottom:252.266566pt;}
.y1d_c00208{bottom:286.186552pt;}
.y1c_c00208{bottom:312.746542pt;}
.y1b_c00208{bottom:340.426530pt;}
.y1a_c00208{bottom:367.946519pt;}
.y19_c00208{bottom:395.626508pt;}
.y18_c00208{bottom:423.146497pt;}
.y17_c00208{bottom:450.826486pt;}
.y16_c00208{bottom:478.346475pt;}
.y15_c00208{bottom:506.026464pt;}
.y14_c00208{bottom:533.546453pt;}
.y13_c00208{bottom:561.226442pt;}
.y12_c00208{bottom:588.746431pt;}
.y11_c00208{bottom:616.266420pt;}
.y10_c00208{bottom:650.346407pt;}
.yf_c00208{bottom:691.786390pt;}
.ye_c00208{bottom:731.146374pt;}
.yd_c00208{bottom:767.946359pt;}
.yc_c00208{bottom:804.746345pt;}
.yb_c00208{bottom:841.546330pt;}
.ya_c00208{bottom:878.346315pt;}
.y9_c00208{bottom:915.146301pt;}
.y8_c00208{bottom:947.466288pt;}
.y7_c00208{bottom:975.146277pt;}
.y6_c00208{bottom:1009.706263pt;}
.y3_c00208{bottom:1029.066255pt;}
.y2_c00208{bottom:1047.946247pt;}
.y1_c00208{bottom:1063.466241pt;}
.h2_c00208{height:39.243734pt;}
.h3_c00208{height:42.656233pt;}
.h1_c00208{height:52.134354pt;}
.h4_c00208{height:64.499974pt;}
.h7_c00208{height:75.464970pt;}
.h5_c00208{height:85.784966pt;}
.h6_c00208{height:96.749961pt;}
.h0_c00208{height:1122.666667pt;}
.w0_c00208{width:793.333333pt;}
.x0_c00208{left:0.000000pt;}
.x3_c00208{left:113.439955pt;}
.x1_c00208{left:161.599935pt;}
.x5_c00208{left:197.439921pt;}
.x2_c00208{left:292.479474pt;}
.x6_c00208{left:298.079914pt;}
.x4_c00208{left:385.759568pt;}
.x7_c00208{left:495.519802pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00209{font-family:ff1_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:ff2_c00209;src:url('chunks/assets/font_300c35eec85b95728f8157d7.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:0.675781;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00209{word-spacing:0.000000px;}
._1_c00209{margin-left:-1.105374px;}
._0_c00209{width:1.195563px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:59.759976px;}
.fs1_c00209{font-size:66.239974px;}
.y0_c00209{bottom:0.000000px;}
.y4_c00209{bottom:57.899977px;}
.y3_c00209{bottom:78.059969px;}
.yb_c00209{bottom:911.999635px;}
.ya_c00209{bottom:950.339620px;}
.y9_c00209{bottom:988.499605px;}
.y8_c00209{bottom:1026.659589px;}
.y7_c00209{bottom:1064.819574px;}
.y6_c00209{bottom:1102.979559px;}
.y5_c00209{bottom:1141.139544px;}
.y2_c00209{bottom:1174.979530px;}
.y1_c00209{bottom:1196.219522px;}
.h2_c00209{height:44.149201px;}
.h1_c00209{height:58.651148px;}
.h0_c00209{height:1263.000000px;}
.w0_c00209{width:892.500000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:127.619949px;}
.x2_c00209{left:433.979514px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
._1_c00209{margin-left:-0.982555pt;}
._0_c00209{width:1.062723pt;}
.fs0_c00209{font-size:53.119979pt;}
.fs1_c00209{font-size:58.879976pt;}
.y0_c00209{bottom:0.000000pt;}
.y4_c00209{bottom:51.466646pt;}
.y3_c00209{bottom:69.386639pt;}
.yb_c00209{bottom:810.666342pt;}
.ya_c00209{bottom:844.746329pt;}
.y9_c00209{bottom:878.666315pt;}
.y8_c00209{bottom:912.586302pt;}
.y7_c00209{bottom:946.506288pt;}
.y6_c00209{bottom:980.426274pt;}
.y5_c00209{bottom:1014.346261pt;}
.y2_c00209{bottom:1044.426249pt;}
.y1_c00209{bottom:1063.306241pt;}
.h2_c00209{height:39.243734pt;}
.h1_c00209{height:52.134354pt;}
.h0_c00209{height:1122.666667pt;}
.w0_c00209{width:793.333333pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:113.439955pt;}
.x2_c00209{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4f390aa91717b2ca9693b56.woff2')format("woff");}.ff1_c00210{font-family:ff1_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:ff2_c00210;src:url('chunks/assets/font_f8ae263935cdd627de77a446.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_e037a199776314f6b21c9bd8.woff2')format("woff");}.ff3_c00210{font-family:ff3_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:ff4_c00210;src:url('chunks/assets/font_96975ae7dd91522dd421794f.woff2')format("woff");}.ff4_c00210{font-family:ff4_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:ff5_c00210;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls1_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:28.252489px;}
.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;}
}
.ws0_c00210{word-spacing:-17.999993px;}
.ws1_c00210{word-spacing:0.000000px;}
._5_c00210{margin-left:-2.236534px;}
._1_c00210{margin-left:-1.105374px;}
._0_c00210{width:1.478392px;}
._a_c00210{width:2.659606px;}
._b_c00210{width:4.191512px;}
._6_c00210{width:8.404168px;}
._7_c00210{width:9.503887px;}
._8_c00210{width:10.582197px;}
._9_c00210{width:12.293997px;}
._3_c00210{width:13.401117px;}
._4_c00210{width:14.734429px;}
._2_c00210{width:16.265081px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs0_c00210{font-size:59.759976px;}
.fs1_c00210{font-size:66.239974px;}
.fs2_c00210{font-size:71.999971px;}
.fs3_c00210{font-size:84.239966px;}
.y0_c00210{bottom:0.000000px;}
.y4_c00210{bottom:75.900270px;}
.y3_c00210{bottom:114.060254px;}
.y23_c00210{bottom:176.699929px;}
.y22_c00210{bottom:207.659917px;}
.y21_c00210{bottom:238.799904px;}
.y20_c00210{bottom:277.499889px;}
.y1f_c00210{bottom:308.639877px;}
.y1e_c00210{bottom:339.599864px;}
.y1d_c00210{bottom:378.479849px;}
.y1c_c00210{bottom:409.439836px;}
.y1b_c00210{bottom:440.579824px;}
.y1a_c00210{bottom:471.539811px;}
.y19_c00210{bottom:510.419796px;}
.y18_c00210{bottom:541.379783px;}
.y17_c00210{bottom:572.519771px;}
.y16_c00210{bottom:603.479759px;}
.y15_c00210{bottom:634.619746px;}
.y14_c00210{bottom:665.579734px;}
.y13_c00210{bottom:696.719721px;}
.y12_c00210{bottom:727.679709px;}
.y11_c00210{bottom:758.819696px;}
.y10_c00210{bottom:789.779684px;}
.yf_c00210{bottom:820.919672px;}
.ye_c00210{bottom:851.879659px;}
.yd_c00210{bottom:883.019647px;}
.yc_c00210{bottom:913.979634px;}
.yb_c00210{bottom:945.119622px;}
.ya_c00210{bottom:975.719610px;}
.y9_c00210{bottom:1009.199596px;}
.y8_c00210{bottom:1043.039583px;}
.y7_c00210{bottom:1073.999570px;}
.y6_c00210{bottom:1105.139558px;}
.y5_c00210{bottom:1136.099546px;}
.y2_c00210{bottom:1176.059530px;}
.y1_c00210{bottom:1196.219522px;}
.h2_c00210{height:54.628572px;}
.h1_c00210{height:58.651148px;}
.h5_c00210{height:70.664034px;}
.h3_c00210{height:72.562471px;}
.h6_c00210{height:75.093720px;}
.h4_c00210{height:84.898091px;}
.h0_c00210{height:1263.000000px;}
.w0_c00210{width:892.500000px;}
.x0_c00210{left:0.000000px;}
.x5_c00210{left:127.620262px;}
.x8_c00210{left:154.620528px;}
.x7_c00210{left:170.100534px;}
.x6_c00210{left:180.719930px;}
.x1_c00210{left:181.799927px;}
.x2_c00210{left:329.039408px;}
.x4_c00210{left:433.979826px;}
.x3_c00210{left:765.359694px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls1_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:25.113323pt;}
.ws0_c00210{word-spacing:-15.999994pt;}
.ws1_c00210{word-spacing:0.000000pt;}
._5_c00210{margin-left:-1.988030pt;}
._1_c00210{margin-left:-0.982555pt;}
._0_c00210{width:1.314126pt;}
._a_c00210{width:2.364095pt;}
._b_c00210{width:3.725788pt;}
._6_c00210{width:7.470371pt;}
._7_c00210{width:8.447900pt;}
._8_c00210{width:9.406398pt;}
._9_c00210{width:10.927997pt;}
._3_c00210{width:11.912104pt;}
._4_c00210{width:13.097270pt;}
._2_c00210{width:14.457850pt;}
.fs0_c00210{font-size:53.119979pt;}
.fs1_c00210{font-size:58.879976pt;}
.fs2_c00210{font-size:63.999974pt;}
.fs3_c00210{font-size:74.879970pt;}
.y0_c00210{bottom:0.000000pt;}
.y4_c00210{bottom:67.466906pt;}
.y3_c00210{bottom:101.386893pt;}
.y23_c00210{bottom:157.066604pt;}
.y22_c00210{bottom:184.586593pt;}
.y21_c00210{bottom:212.266582pt;}
.y20_c00210{bottom:246.666568pt;}
.y1f_c00210{bottom:274.346557pt;}
.y1e_c00210{bottom:301.866546pt;}
.y1d_c00210{bottom:336.426532pt;}
.y1c_c00210{bottom:363.946521pt;}
.y1b_c00210{bottom:391.626510pt;}
.y1a_c00210{bottom:419.146499pt;}
.y19_c00210{bottom:453.706485pt;}
.y18_c00210{bottom:481.226474pt;}
.y17_c00210{bottom:508.906463pt;}
.y16_c00210{bottom:536.426452pt;}
.y15_c00210{bottom:564.106441pt;}
.y14_c00210{bottom:591.626430pt;}
.y13_c00210{bottom:619.306419pt;}
.y12_c00210{bottom:646.826408pt;}
.y11_c00210{bottom:674.506397pt;}
.y10_c00210{bottom:702.026386pt;}
.yf_c00210{bottom:729.706375pt;}
.ye_c00210{bottom:757.226364pt;}
.yd_c00210{bottom:784.906353pt;}
.yc_c00210{bottom:812.426342pt;}
.yb_c00210{bottom:840.106331pt;}
.ya_c00210{bottom:867.306320pt;}
.y9_c00210{bottom:897.066308pt;}
.y8_c00210{bottom:927.146296pt;}
.y7_c00210{bottom:954.666285pt;}
.y6_c00210{bottom:982.346274pt;}
.y5_c00210{bottom:1009.866263pt;}
.y2_c00210{bottom:1045.386249pt;}
.y1_c00210{bottom:1063.306241pt;}
.h2_c00210{height:48.558731pt;}
.h1_c00210{height:52.134354pt;}
.h5_c00210{height:62.812475pt;}
.h3_c00210{height:64.499974pt;}
.h6_c00210{height:66.749973pt;}
.h4_c00210{height:75.464970pt;}
.h0_c00210{height:1122.666667pt;}
.w0_c00210{width:793.333333pt;}
.x0_c00210{left:0.000000pt;}
.x5_c00210{left:113.440233pt;}
.x8_c00210{left:137.440470pt;}
.x7_c00210{left:151.200474pt;}
.x6_c00210{left:160.639938pt;}
.x1_c00210{left:161.599935pt;}
.x2_c00210{left:292.479474pt;}
.x4_c00210{left:385.759846pt;}
.x3_c00210{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79495e9f444cdf8b0b90df20.woff2')format("woff");}.ff1_c00211{font-family:ff1_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:ff2_c00211;src:url('chunks/assets/font_81ad20584b63f37e0ccda425.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.239258;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_632148b609969aeae8435fcb.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6_c00211{font-family:ff6_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:ff7_c00211;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff7_c00211{font-family:ff7_c00211;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls2_c00211{letter-spacing:0.000000px;}
.ls0_c00211{letter-spacing:0.019560px;}
.ls1_c00211{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00211{word-spacing:0.000000px;}
._1_c00211{margin-left:-1.105374px;}
._0_c00211{width:1.195563px;}
._8_c00211{width:2.307991px;}
._4_c00211{width:4.106385px;}
._5_c00211{width:5.144767px;}
._2_c00211{width:6.766130px;}
._3_c00211{width:7.977891px;}
._d_c00211{width:9.117557px;}
._9_c00211{width:10.792144px;}
._a_c00211{width:13.202674px;}
._7_c00211{width:14.528986px;}
._6_c00211{width:15.969850px;}
._b_c00211{width:19.007382px;}
._c_c00211{width:20.073234px;}
._e_c00211{width:29.853898px;}
._f_c00211{width:30.924865px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:59.759976px;}
.fs1_c00211{font-size:66.239974px;}
.fs2_c00211{font-size:71.999971px;}
.y0_c00211{bottom:0.000000px;}
.y4_c00211{bottom:75.899970px;}
.y3_c00211{bottom:114.059954px;}
.y23_c00211{bottom:153.839938px;}
.y22_c00211{bottom:184.799926px;}
.y21_c00211{bottom:215.939914px;}
.y20_c00211{bottom:246.899901px;}
.y1f_c00211{bottom:293.339883px;}
.y1e_c00211{bottom:324.479870px;}
.y1d_c00211{bottom:355.439858px;}
.y1c_c00211{bottom:386.579845px;}
.y1b_c00211{bottom:417.539833px;}
.y1a_c00211{bottom:448.679821px;}
.y19_c00211{bottom:494.579802px;}
.y18_c00211{bottom:525.719790px;}
.y17_c00211{bottom:556.679777px;}
.y16_c00211{bottom:587.819765px;}
.y15_c00211{bottom:618.779752px;}
.y14_c00211{bottom:649.919740px;}
.y13_c00211{bottom:680.879728px;}
.y12_c00211{bottom:712.019715px;}
.y11_c00211{bottom:742.979703px;}
.y10_c00211{bottom:774.119690px;}
.yf_c00211{bottom:805.079678px;}
.ye_c00211{bottom:836.219666px;}
.yd_c00211{bottom:868.439653px;}
.yc_c00211{bottom:899.579640px;}
.yb_c00211{bottom:930.539628px;}
.ya_c00211{bottom:961.679615px;}
.y9_c00211{bottom:994.079602px;}
.y8_c00211{bottom:1025.039590px;}
.y7_c00211{bottom:1056.179578px;}
.y6_c00211{bottom:1087.139565px;}
.y5_c00211{bottom:1118.279553px;}
.y2_c00211{bottom:1157.159537px;}
.y1_c00211{bottom:1196.039522px;}
.h2_c00211{height:54.628572px;}
.h1_c00211{height:58.651148px;}
.h3_c00211{height:70.664034px;}
.h5_c00211{height:72.562471px;}
.h4_c00211{height:75.093720px;}
.h0_c00211{height:1263.000000px;}
.w0_c00211{width:892.500000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:127.619949px;}
.x4_c00211{left:154.622115px;}
.x3_c00211{left:170.099932px;}
.x2_c00211{left:433.979514px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls2_c00211{letter-spacing:0.000000pt;}
.ls0_c00211{letter-spacing:0.017387pt;}
.ls1_c00211{letter-spacing:48.807447pt;}
.ws0_c00211{word-spacing:0.000000pt;}
._1_c00211{margin-left:-0.982555pt;}
._0_c00211{width:1.062723pt;}
._8_c00211{width:2.051547pt;}
._4_c00211{width:3.650120pt;}
._5_c00211{width:4.573126pt;}
._2_c00211{width:6.014337pt;}
._3_c00211{width:7.091459pt;}
._d_c00211{width:8.104495pt;}
._9_c00211{width:9.593017pt;}
._a_c00211{width:11.735711pt;}
._7_c00211{width:12.914654pt;}
._6_c00211{width:14.195422pt;}
._b_c00211{width:16.895451pt;}
._c_c00211{width:17.842875pt;}
._e_c00211{width:26.536798pt;}
._f_c00211{width:27.488769pt;}
.fs0_c00211{font-size:53.119979pt;}
.fs1_c00211{font-size:58.879976pt;}
.fs2_c00211{font-size:63.999974pt;}
.y0_c00211{bottom:0.000000pt;}
.y4_c00211{bottom:67.466640pt;}
.y3_c00211{bottom:101.386626pt;}
.y23_c00211{bottom:136.746612pt;}
.y22_c00211{bottom:164.266601pt;}
.y21_c00211{bottom:191.946590pt;}
.y20_c00211{bottom:219.466579pt;}
.y1f_c00211{bottom:260.746562pt;}
.y1e_c00211{bottom:288.426551pt;}
.y1d_c00211{bottom:315.946540pt;}
.y1c_c00211{bottom:343.626529pt;}
.y1b_c00211{bottom:371.146518pt;}
.y1a_c00211{bottom:398.826507pt;}
.y19_c00211{bottom:439.626491pt;}
.y18_c00211{bottom:467.306480pt;}
.y17_c00211{bottom:494.826469pt;}
.y16_c00211{bottom:522.506458pt;}
.y15_c00211{bottom:550.026447pt;}
.y14_c00211{bottom:577.706436pt;}
.y13_c00211{bottom:605.226425pt;}
.y12_c00211{bottom:632.906414pt;}
.y11_c00211{bottom:660.426402pt;}
.y10_c00211{bottom:688.106391pt;}
.yf_c00211{bottom:715.626380pt;}
.ye_c00211{bottom:743.306369pt;}
.yd_c00211{bottom:771.946358pt;}
.yc_c00211{bottom:799.626347pt;}
.yb_c00211{bottom:827.146336pt;}
.ya_c00211{bottom:854.826325pt;}
.y9_c00211{bottom:883.626313pt;}
.y8_c00211{bottom:911.146302pt;}
.y7_c00211{bottom:938.826291pt;}
.y6_c00211{bottom:966.346280pt;}
.y5_c00211{bottom:994.026269pt;}
.y2_c00211{bottom:1028.586255pt;}
.y1_c00211{bottom:1063.146241pt;}
.h2_c00211{height:48.558731pt;}
.h1_c00211{height:52.134354pt;}
.h3_c00211{height:62.812475pt;}
.h5_c00211{height:64.499974pt;}
.h4_c00211{height:66.749973pt;}
.h0_c00211{height:1122.666667pt;}
.w0_c00211{width:793.333333pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:113.439955pt;}
.x4_c00211{left:137.441880pt;}
.x3_c00211{left:151.199940pt;}
.x2_c00211{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_efa85c4b88937d0c29a5f530.woff2')format("woff");}.ff1_c00212{font-family:ff1_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:ff2_c00212;src:url('chunks/assets/font_d8620ca393e894fd0c926177.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_fda9a9cf85125bb36e54ce36.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.311035;font-style:normal;font-weight:normal;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_bf4429d3de288bc2e44aa5a7.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;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.163552px;}
.ls1_c00212{letter-spacing:54.908378px;}
.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:0.000000px;}
._8_c00212{margin-left:-2.727279px;}
._1_c00212{margin-left:-1.105374px;}
._0_c00212{width:1.478392px;}
._4_c00212{width:3.169886px;}
._a_c00212{width:7.201041px;}
._3_c00212{width:8.254015px;}
._2_c00212{width:9.659721px;}
._c_c00212{width:14.188824px;}
._6_c00212{width:15.629687px;}
._7_c00212{width:16.693548px;}
._9_c00212{width:19.157509px;}
._b_c00212{width:28.390729px;}
._5_c00212{width:29.831593px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:59.759976px;}
.fs1_c00212{font-size:66.239974px;}
.fs2_c00212{font-size:71.999971px;}
.y0_c00212{bottom:0.000000px;}
.y4_c00212{bottom:75.900270px;}
.y3_c00212{bottom:114.060254px;}
.y25_c00212{bottom:142.679943px;}
.y24_c00212{bottom:173.999930px;}
.y23_c00212{bottom:205.139918px;}
.y22_c00212{bottom:236.099906px;}
.y21_c00212{bottom:267.239893px;}
.y20_c00212{bottom:298.199881px;}
.y1f_c00212{bottom:329.339868px;}
.y1e_c00212{bottom:360.299856px;}
.y1d_c00212{bottom:391.439843px;}
.y1c_c00212{bottom:422.399831px;}
.y1b_c00212{bottom:453.539819px;}
.y1a_c00212{bottom:484.499806px;}
.y19_c00212{bottom:515.639794px;}
.y18_c00212{bottom:546.599781px;}
.y17_c00212{bottom:577.739769px;}
.y16_c00212{bottom:608.699757px;}
.y15_c00212{bottom:639.839744px;}
.y14_c00212{bottom:670.799732px;}
.y13_c00212{bottom:701.939719px;}
.y12_c00212{bottom:732.899707px;}
.y11_c00212{bottom:764.039694px;}
.y10_c00212{bottom:794.999682px;}
.yf_c00212{bottom:825.959670px;}
.ye_c00212{bottom:857.099657px;}
.yd_c00212{bottom:888.059645px;}
.yc_c00212{bottom:919.199632px;}
.yb_c00212{bottom:950.159620px;}
.ya_c00212{bottom:981.299607px;}
.y9_c00212{bottom:1012.259595px;}
.y8_c00212{bottom:1043.399583px;}
.y7_c00212{bottom:1074.359570px;}
.y6_c00212{bottom:1105.139558px;}
.y5_c00212{bottom:1136.099546px;}
.y2_c00212{bottom:1176.059530px;}
.y1_c00212{bottom:1196.219522px;}
.h2_c00212{height:54.628572px;}
.h1_c00212{height:58.651148px;}
.h6_c00212{height:70.628878px;}
.h4_c00212{height:70.664034px;}
.h3_c00212{height:72.562471px;}
.h5_c00212{height:75.093720px;}
.h0_c00212{height:1263.000000px;}
.w0_c00212{width:892.500000px;}
.x0_c00212{left:0.000000px;}
.x5_c00212{left:127.620262px;}
.x6_c00212{left:148.860001px;}
.x9_c00212{left:168.120990px;}
.x7_c00212{left:175.859930px;}
.x1_c00212{left:181.799927px;}
.x8_c00212{left:202.860417px;}
.x2_c00212{left:329.039408px;}
.x4_c00212{left:433.979826px;}
.x3_c00212{left:765.359694px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.145380pt;}
.ls1_c00212{letter-spacing:48.807447pt;}
.ws0_c00212{word-spacing:0.000000pt;}
._8_c00212{margin-left:-2.424248pt;}
._1_c00212{margin-left:-0.982555pt;}
._0_c00212{width:1.314126pt;}
._4_c00212{width:2.817676pt;}
._a_c00212{width:6.400926pt;}
._3_c00212{width:7.336902pt;}
._2_c00212{width:8.586419pt;}
._c_c00212{width:12.612288pt;}
._6_c00212{width:13.893055pt;}
._7_c00212{width:14.838709pt;}
._9_c00212{width:17.028897pt;}
._b_c00212{width:25.236204pt;}
._5_c00212{width:26.516971pt;}
.fs0_c00212{font-size:53.119979pt;}
.fs1_c00212{font-size:58.879976pt;}
.fs2_c00212{font-size:63.999974pt;}
.y0_c00212{bottom:0.000000pt;}
.y4_c00212{bottom:67.466906pt;}
.y3_c00212{bottom:101.386893pt;}
.y25_c00212{bottom:126.826616pt;}
.y24_c00212{bottom:154.666605pt;}
.y23_c00212{bottom:182.346594pt;}
.y22_c00212{bottom:209.866583pt;}
.y21_c00212{bottom:237.546572pt;}
.y20_c00212{bottom:265.066561pt;}
.y1f_c00212{bottom:292.746550pt;}
.y1e_c00212{bottom:320.266539pt;}
.y1d_c00212{bottom:347.946527pt;}
.y1c_c00212{bottom:375.466516pt;}
.y1b_c00212{bottom:403.146505pt;}
.y1a_c00212{bottom:430.666494pt;}
.y19_c00212{bottom:458.346483pt;}
.y18_c00212{bottom:485.866472pt;}
.y17_c00212{bottom:513.546461pt;}
.y16_c00212{bottom:541.066450pt;}
.y15_c00212{bottom:568.746439pt;}
.y14_c00212{bottom:596.266428pt;}
.y13_c00212{bottom:623.946417pt;}
.y12_c00212{bottom:651.466406pt;}
.y11_c00212{bottom:679.146395pt;}
.y10_c00212{bottom:706.666384pt;}
.yf_c00212{bottom:734.186373pt;}
.ye_c00212{bottom:761.866362pt;}
.yd_c00212{bottom:789.386351pt;}
.yc_c00212{bottom:817.066340pt;}
.yb_c00212{bottom:844.586329pt;}
.ya_c00212{bottom:872.266318pt;}
.y9_c00212{bottom:899.786307pt;}
.y8_c00212{bottom:927.466296pt;}
.y7_c00212{bottom:954.986285pt;}
.y6_c00212{bottom:982.346274pt;}
.y5_c00212{bottom:1009.866263pt;}
.y2_c00212{bottom:1045.386249pt;}
.y1_c00212{bottom:1063.306241pt;}
.h2_c00212{height:48.558731pt;}
.h1_c00212{height:52.134354pt;}
.h6_c00212{height:62.781225pt;}
.h4_c00212{height:62.812475pt;}
.h3_c00212{height:64.499974pt;}
.h5_c00212{height:66.749973pt;}
.h0_c00212{height:1122.666667pt;}
.w0_c00212{width:793.333333pt;}
.x0_c00212{left:0.000000pt;}
.x5_c00212{left:113.440233pt;}
.x6_c00212{left:132.320001pt;}
.x9_c00212{left:149.440880pt;}
.x7_c00212{left:156.319937pt;}
.x1_c00212{left:161.599935pt;}
.x8_c00212{left:180.320371pt;}
.x2_c00212{left:292.479474pt;}
.x4_c00212{left:385.759846pt;}
.x3_c00212{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_757fbacd63feff5d80d3c3d1.woff2')format("woff");}.ff1_c00213{font-family:ff1_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:ff2_c00213;src:url('chunks/assets/font_d8620ca393e894fd0c926177.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_5c4d995691531888b81ade1b.woff2')format("woff");}.ff3_c00213{font-family:ff3_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:ff4_c00213;src:url('chunks/assets/font_4e923557ecd55a0fbf5ac538.woff2')format("woff");}.ff4_c00213{font-family:ff4_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:ff5_c00213;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls4_c00213{letter-spacing:0.000000px;}
.ls2_c00213{letter-spacing:4.505278px;}
.ls3_c00213{letter-spacing:4.511938px;}
.ls1_c00213{letter-spacing:28.252489px;}
.ls0_c00213{letter-spacing:31.854587px;}
.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;}
}
.ws0_c00213{word-spacing:-17.999993px;}
.ws1_c00213{word-spacing:-14.939994px;}
.ws2_c00213{word-spacing:0.000000px;}
._b_c00213{margin-left:-9.261061px;}
._2_c00213{margin-left:-2.122791px;}
._1_c00213{margin-left:-1.105374px;}
._0_c00213{width:1.195563px;}
._4_c00213{width:2.235014px;}
._8_c00213{width:4.126610px;}
._a_c00213{width:5.218933px;}
._3_c00213{width:6.423580px;}
._7_c00213{width:7.800736px;}
._c_c00213{width:13.054911px;}
._9_c00213{width:15.810366px;}
._6_c00213{width:24.910190px;}
._5_c00213{width:28.302080px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs4_c00213{font-size:38.879984px;}
.fs5_c00213{font-size:41.759983px;}
.fs3_c00213{font-size:48.239981px;}
.fs0_c00213{font-size:59.759976px;}
.fs1_c00213{font-size:66.239974px;}
.fs2_c00213{font-size:71.999971px;}
.y0_c00213{bottom:0.000000px;}
.y4_c00213{bottom:75.899970px;}
.y3_c00213{bottom:114.059954px;}
.y2d_c00213{bottom:150.779940px;}
.y2c_c00213{bottom:170.579932px;}
.y2b_c00213{bottom:177.419929px;}
.y2a_c00213{bottom:205.679918px;}
.y29_c00213{bottom:213.239915px;}
.y28_c00213{bottom:242.039903px;}
.y27_c00213{bottom:262.379895px;}
.y26_c00213{bottom:269.939892px;}
.y25_c00213{bottom:281.099888px;}
.y24_c00213{bottom:298.199881px;}
.y23_c00213{bottom:315.839874px;}
.y22_c00213{bottom:323.399871px;}
.y21_c00213{bottom:334.739866px;}
.y20_c00213{bottom:359.039856px;}
.y1f_c00213{bottom:390.179844px;}
.y1e_c00213{bottom:421.139832px;}
.y1d_c00213{bottom:452.279819px;}
.y1b_c00213{bottom:498.359801px;}
.y1c_c00213{bottom:506.639797px;}
.y19_c00213{bottom:544.259782px;}
.y1a_c00213{bottom:552.539779px;}
.y18_c00213{bottom:575.399770px;}
.y17_c00213{bottom:606.359757px;}
.y15_c00213{bottom:637.499745px;}
.y16_c00213{bottom:645.779742px;}
.y14_c00213{bottom:668.459733px;}
.y13_c00213{bottom:699.599720px;}
.y11_c00213{bottom:730.559708px;}
.y12_c00213{bottom:738.839704px;}
.y10_c00213{bottom:761.699695px;}
.yf_c00213{bottom:792.659683px;}
.ye_c00213{bottom:838.739665px;}
.yd_c00213{bottom:869.879652px;}
.yc_c00213{bottom:900.479640px;}
.yb_c00213{bottom:931.619627px;}
.ya_c00213{bottom:962.579615px;}
.y9_c00213{bottom:993.719603px;}
.y8_c00213{bottom:1025.039590px;}
.y7_c00213{bottom:1056.179578px;}
.y6_c00213{bottom:1087.139565px;}
.y5_c00213{bottom:1117.919553px;}
.y2_c00213{bottom:1157.159537px;}
.y1_c00213{bottom:1196.039522px;}
.h7_c00213{height:32.064597px;}
.ha_c00213{height:38.158578px;}
.h8_c00213{height:40.985140px;}
.h5_c00213{height:47.344903px;}
.h2_c00213{height:54.628572px;}
.h1_c00213{height:58.651148px;}
.h9_c00213{height:65.010911px;}
.h4_c00213{height:70.664034px;}
.h3_c00213{height:72.562471px;}
.h6_c00213{height:75.093720px;}
.h0_c00213{height:1263.000000px;}
.w0_c00213{width:892.500000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:127.619949px;}
.xd_c00213{left:132.479947px;}
.xf_c00213{left:136.979945px;}
.xe_c00213{left:140.219944px;}
.x4_c00213{left:154.619749px;}
.x3_c00213{left:180.719930px;}
.x9_c00213{left:231.659907px;}
.xa_c00213{left:237.779905px;}
.x2_c00213{left:433.979514px;}
.x7_c00213{left:464.759814px;}
.x8_c00213{left:470.879812px;}
.x5_c00213{left:604.619758px;}
.x6_c00213{left:610.739756px;}
.xb_c00213{left:644.219742px;}
.xc_c00213{left:650.339740px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls4_c00213{letter-spacing:0.000000pt;}
.ls2_c00213{letter-spacing:4.004692pt;}
.ls3_c00213{letter-spacing:4.010612pt;}
.ls1_c00213{letter-spacing:25.113323pt;}
.ls0_c00213{letter-spacing:28.315189pt;}
.ws0_c00213{word-spacing:-15.999994pt;}
.ws1_c00213{word-spacing:-13.279995pt;}
.ws2_c00213{word-spacing:0.000000pt;}
._b_c00213{margin-left:-8.232055pt;}
._2_c00213{margin-left:-1.886925pt;}
._1_c00213{margin-left:-0.982555pt;}
._0_c00213{width:1.062723pt;}
._4_c00213{width:1.986679pt;}
._8_c00213{width:3.668098pt;}
._a_c00213{width:4.639051pt;}
._3_c00213{width:5.709849pt;}
._7_c00213{width:6.933988pt;}
._c_c00213{width:11.604365pt;}
._9_c00213{width:14.053659pt;}
._6_c00213{width:22.142391pt;}
._5_c00213{width:25.157404pt;}
.fs4_c00213{font-size:34.559986pt;}
.fs5_c00213{font-size:37.119985pt;}
.fs3_c00213{font-size:42.879983pt;}
.fs0_c00213{font-size:53.119979pt;}
.fs1_c00213{font-size:58.879976pt;}
.fs2_c00213{font-size:63.999974pt;}
.y0_c00213{bottom:0.000000pt;}
.y4_c00213{bottom:67.466640pt;}
.y3_c00213{bottom:101.386626pt;}
.y2d_c00213{bottom:134.026613pt;}
.y2c_c00213{bottom:151.626606pt;}
.y2b_c00213{bottom:157.706604pt;}
.y2a_c00213{bottom:182.826594pt;}
.y29_c00213{bottom:189.546591pt;}
.y28_c00213{bottom:215.146581pt;}
.y27_c00213{bottom:233.226573pt;}
.y26_c00213{bottom:239.946571pt;}
.y25_c00213{bottom:249.866567pt;}
.y24_c00213{bottom:265.066561pt;}
.y23_c00213{bottom:280.746554pt;}
.y22_c00213{bottom:287.466552pt;}
.y21_c00213{bottom:297.546548pt;}
.y20_c00213{bottom:319.146539pt;}
.y1f_c00213{bottom:346.826528pt;}
.y1e_c00213{bottom:374.346517pt;}
.y1d_c00213{bottom:402.026506pt;}
.y1b_c00213{bottom:442.986489pt;}
.y1c_c00213{bottom:450.346487pt;}
.y19_c00213{bottom:483.786473pt;}
.y1a_c00213{bottom:491.146470pt;}
.y18_c00213{bottom:511.466462pt;}
.y17_c00213{bottom:538.986451pt;}
.y15_c00213{bottom:566.666440pt;}
.y16_c00213{bottom:574.026437pt;}
.y14_c00213{bottom:594.186429pt;}
.y13_c00213{bottom:621.866418pt;}
.y11_c00213{bottom:649.386407pt;}
.y12_c00213{bottom:656.746404pt;}
.y10_c00213{bottom:677.066396pt;}
.yf_c00213{bottom:704.586385pt;}
.ye_c00213{bottom:745.546368pt;}
.yd_c00213{bottom:773.226357pt;}
.yc_c00213{bottom:800.426346pt;}
.yb_c00213{bottom:828.106335pt;}
.ya_c00213{bottom:855.626324pt;}
.y9_c00213{bottom:883.306313pt;}
.y8_c00213{bottom:911.146302pt;}
.y7_c00213{bottom:938.826291pt;}
.y6_c00213{bottom:966.346280pt;}
.y5_c00213{bottom:993.706269pt;}
.y2_c00213{bottom:1028.586255pt;}
.y1_c00213{bottom:1063.146241pt;}
.h7_c00213{height:28.501864pt;}
.ha_c00213{height:33.918736pt;}
.h8_c00213{height:36.431235pt;}
.h5_c00213{height:42.084358pt;}
.h2_c00213{height:48.558731pt;}
.h1_c00213{height:52.134354pt;}
.h9_c00213{height:57.787477pt;}
.h4_c00213{height:62.812475pt;}
.h3_c00213{height:64.499974pt;}
.h6_c00213{height:66.749973pt;}
.h0_c00213{height:1122.666667pt;}
.w0_c00213{width:793.333333pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:113.439955pt;}
.xd_c00213{left:117.759953pt;}
.xf_c00213{left:121.759951pt;}
.xe_c00213{left:124.639950pt;}
.x4_c00213{left:137.439777pt;}
.x3_c00213{left:160.639938pt;}
.x9_c00213{left:205.919918pt;}
.xa_c00213{left:211.359915pt;}
.x2_c00213{left:385.759568pt;}
.x7_c00213{left:413.119835pt;}
.x8_c00213{left:418.559833pt;}
.x5_c00213{left:537.439785pt;}
.x6_c00213{left:542.879783pt;}
.xb_c00213{left:572.639771pt;}
.xc_c00213{left:578.079769pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbb86bfa5791be6c8e31d308.woff2')format("woff");}.ff1_c00214{font-family:ff1_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:ff2_c00214;src:url('chunks/assets/font_220ed813de634ee471f71ea9.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.239258;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_8251fa19626377da60ce02e9.woff2')format("woff");}.ff5_c00214{font-family:ff5_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:ff6_c00214;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00214{font-family:ff6_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;}
.m0_c00214{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls4_c00214{letter-spacing:0.000000px;}
.ls3_c00214{letter-spacing:0.010641px;}
.ls1_c00214{letter-spacing:0.019560px;}
.ls0_c00214{letter-spacing:0.021238px;}
.ls2_c00214{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00214{word-spacing:-18.021231px;}
.ws1_c00214{word-spacing:-17.999993px;}
.ws2_c00214{word-spacing:0.000000px;}
._e_c00214{margin-left:-10.131226px;}
._1_c00214{margin-left:-1.105374px;}
._0_c00214{width:1.478392px;}
._9_c00214{width:2.613834px;}
._c_c00214{width:3.619621px;}
._5_c00214{width:4.646175px;}
._6_c00214{width:6.089098px;}
._d_c00214{width:9.607595px;}
._3_c00214{width:11.535051px;}
._2_c00214{width:13.019564px;}
._8_c00214{width:14.577294px;}
._7_c00214{width:16.172916px;}
._4_c00214{width:19.504792px;}
._a_c00214{width:21.510033px;}
._b_c00214{width:23.019316px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs5_c00214{font-size:38.879984px;}
.fs4_c00214{font-size:41.759983px;}
.fs3_c00214{font-size:48.239981px;}
.fs0_c00214{font-size:59.759976px;}
.fs1_c00214{font-size:66.239974px;}
.fs2_c00214{font-size:71.999971px;}
.y0_c00214{bottom:0.000000px;}
.y4_c00214{bottom:75.900270px;}
.y3_c00214{bottom:114.060254px;}
.y27_c00214{bottom:133.319947px;}
.y26_c00214{bottom:150.599940px;}
.y25_c00214{bottom:157.439937px;}
.y24_c00214{bottom:185.519926px;}
.y23_c00214{bottom:193.079923px;}
.y22_c00214{bottom:205.319918px;}
.y21_c00214{bottom:236.639905px;}
.y20_c00214{bottom:267.599893px;}
.y1f_c00214{bottom:298.739881px;}
.y1e_c00214{bottom:329.699868px;}
.y1d_c00214{bottom:359.939856px;}
.y1c_c00214{bottom:389.639844px;}
.y1b_c00214{bottom:420.599832px;}
.y1a_c00214{bottom:451.739819px;}
.y19_c00214{bottom:482.699807px;}
.y18_c00214{bottom:513.839794px;}
.y17_c00214{bottom:544.799782px;}
.y16_c00214{bottom:590.879764px;}
.y15_c00214{bottom:622.019751px;}
.y14_c00214{bottom:652.979739px;}
.y13_c00214{bottom:699.059720px;}
.y12_c00214{bottom:730.019708px;}
.y11_c00214{bottom:761.159696px;}
.y10_c00214{bottom:792.119683px;}
.yf_c00214{bottom:838.199665px;}
.ye_c00214{bottom:869.339652px;}
.yd_c00214{bottom:901.559639px;}
.yc_c00214{bottom:932.699627px;}
.yb_c00214{bottom:963.659615px;}
.ya_c00214{bottom:994.799602px;}
.y9_c00214{bottom:1027.019589px;}
.y8_c00214{bottom:1058.159577px;}
.y6_c00214{bottom:1105.499558px;}
.y7_c00214{bottom:1113.779554px;}
.y5_c00214{bottom:1136.459545px;}
.y2_c00214{bottom:1176.059530px;}
.y1_c00214{bottom:1196.219522px;}
.h9_c00214{height:38.158578px;}
.h8_c00214{height:40.985140px;}
.h4_c00214{height:47.344903px;}
.h2_c00214{height:54.628572px;}
.h1_c00214{height:58.651148px;}
.h6_c00214{height:65.010911px;}
.h3_c00214{height:70.664034px;}
.h7_c00214{height:72.562471px;}
.h5_c00214{height:75.093720px;}
.h0_c00214{height:1263.000000px;}
.w0_c00214{width:892.500000px;}
.x0_c00214{left:0.000000px;}
.x5_c00214{left:127.620262px;}
.xe_c00214{left:132.839947px;}
.xf_c00214{left:136.979945px;}
.x6_c00214{left:154.619938px;}
.x7_c00214{left:163.619935px;}
.xd_c00214{left:168.119933px;}
.x8_c00214{left:169.739932px;}
.xc_c00214{left:180.719520px;}
.x1_c00214{left:181.799927px;}
.xb_c00214{left:200.159920px;}
.x2_c00214{left:329.039408px;}
.x9_c00214{left:346.139862px;}
.xa_c00214{left:352.259859px;}
.x4_c00214{left:433.979826px;}
.x3_c00214{left:765.359694px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls4_c00214{letter-spacing:0.000000pt;}
.ls3_c00214{letter-spacing:0.009459pt;}
.ls1_c00214{letter-spacing:0.017387pt;}
.ls0_c00214{letter-spacing:0.018878pt;}
.ls2_c00214{letter-spacing:48.807447pt;}
.ws0_c00214{word-spacing:-16.018872pt;}
.ws1_c00214{word-spacing:-15.999994pt;}
.ws2_c00214{word-spacing:0.000000pt;}
._e_c00214{margin-left:-9.005535pt;}
._1_c00214{margin-left:-0.982555pt;}
._0_c00214{width:1.314126pt;}
._9_c00214{width:2.323408pt;}
._c_c00214{width:3.217441pt;}
._5_c00214{width:4.129934pt;}
._6_c00214{width:5.412531pt;}
._d_c00214{width:8.540085pt;}
._3_c00214{width:10.253379pt;}
._2_c00214{width:11.572946pt;}
._8_c00214{width:12.957595pt;}
._7_c00214{width:14.375925pt;}
._4_c00214{width:17.337593pt;}
._a_c00214{width:19.120029pt;}
._b_c00214{width:20.461614pt;}
.fs5_c00214{font-size:34.559986pt;}
.fs4_c00214{font-size:37.119985pt;}
.fs3_c00214{font-size:42.879983pt;}
.fs0_c00214{font-size:53.119979pt;}
.fs1_c00214{font-size:58.879976pt;}
.fs2_c00214{font-size:63.999974pt;}
.y0_c00214{bottom:0.000000pt;}
.y4_c00214{bottom:67.466906pt;}
.y3_c00214{bottom:101.386893pt;}
.y27_c00214{bottom:118.506619pt;}
.y26_c00214{bottom:133.866613pt;}
.y25_c00214{bottom:139.946611pt;}
.y24_c00214{bottom:164.906601pt;}
.y23_c00214{bottom:171.626598pt;}
.y22_c00214{bottom:182.506594pt;}
.y21_c00214{bottom:210.346583pt;}
.y20_c00214{bottom:237.866572pt;}
.y1f_c00214{bottom:265.546560pt;}
.y1e_c00214{bottom:293.066549pt;}
.y1d_c00214{bottom:319.946539pt;}
.y1c_c00214{bottom:346.346528pt;}
.y1b_c00214{bottom:373.866517pt;}
.y1a_c00214{bottom:401.546506pt;}
.y19_c00214{bottom:429.066495pt;}
.y18_c00214{bottom:456.746484pt;}
.y17_c00214{bottom:484.266473pt;}
.y16_c00214{bottom:525.226457pt;}
.y15_c00214{bottom:552.906446pt;}
.y14_c00214{bottom:580.426434pt;}
.y13_c00214{bottom:621.386418pt;}
.y12_c00214{bottom:648.906407pt;}
.y11_c00214{bottom:676.586396pt;}
.y10_c00214{bottom:704.106385pt;}
.yf_c00214{bottom:745.066369pt;}
.ye_c00214{bottom:772.746358pt;}
.yd_c00214{bottom:801.386346pt;}
.yc_c00214{bottom:829.066335pt;}
.yb_c00214{bottom:856.586324pt;}
.ya_c00214{bottom:884.266313pt;}
.y9_c00214{bottom:912.906302pt;}
.y8_c00214{bottom:940.586290pt;}
.y6_c00214{bottom:982.666274pt;}
.y7_c00214{bottom:990.026271pt;}
.y5_c00214{bottom:1010.186263pt;}
.y2_c00214{bottom:1045.386249pt;}
.y1_c00214{bottom:1063.306241pt;}
.h9_c00214{height:33.918736pt;}
.h8_c00214{height:36.431235pt;}
.h4_c00214{height:42.084358pt;}
.h2_c00214{height:48.558731pt;}
.h1_c00214{height:52.134354pt;}
.h6_c00214{height:57.787477pt;}
.h3_c00214{height:62.812475pt;}
.h7_c00214{height:64.499974pt;}
.h5_c00214{height:66.749973pt;}
.h0_c00214{height:1122.666667pt;}
.w0_c00214{width:793.333333pt;}
.x0_c00214{left:0.000000pt;}
.x5_c00214{left:113.440233pt;}
.xe_c00214{left:118.079953pt;}
.xf_c00214{left:121.759951pt;}
.x6_c00214{left:137.439945pt;}
.x7_c00214{left:145.439942pt;}
.xd_c00214{left:149.439940pt;}
.x8_c00214{left:150.879940pt;}
.xc_c00214{left:160.639573pt;}
.x1_c00214{left:161.599935pt;}
.xb_c00214{left:177.919929pt;}
.x2_c00214{left:292.479474pt;}
.x9_c00214{left:307.679877pt;}
.xa_c00214{left:313.119875pt;}
.x4_c00214{left:385.759846pt;}
.x3_c00214{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e6f58f2b18abe4fc16020f04.woff2')format("woff");}.ff1_c00215{font-family:ff1_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:ff2_c00215;src:url('chunks/assets/font_e7b9a9499461d7efeb403c1d.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_ffd9bb778edbaa6872e7bd36.woff2')format("woff");}.ff3_c00215{font-family:ff3_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:ff4_c00215;src:url('chunks/assets/font_b58962ec9fc1bec9add6d273.woff2')format("woff");}.ff4_c00215{font-family:ff4_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:ff5_c00215;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.239258;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00215;src:url('chunks/assets/font_ff1d15299ea9894e899d225d.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;line-height:0.666504;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls2_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.019560px;}
.ls1_c00215{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00215{word-spacing:-17.999993px;}
.ws1_c00215{word-spacing:0.000000px;}
._e_c00215{margin-left:-10.197710px;}
._5_c00215{margin-left:-2.139990px;}
._1_c00215{margin-left:-1.105374px;}
._0_c00215{width:1.195563px;}
._b_c00215{width:2.606190px;}
._d_c00215{width:6.155581px;}
._6_c00215{width:7.807728px;}
._7_c00215{width:8.855474px;}
._3_c00215{width:10.586622px;}
._4_c00215{width:11.866136px;}
._c_c00215{width:13.852554px;}
._2_c00215{width:14.866776px;}
._9_c00215{width:15.908385px;}
._a_c00215{width:16.946690px;}
._8_c00215{width:39.792116px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs4_c00215{font-size:38.879984px;}
.fs3_c00215{font-size:48.239981px;}
.fs0_c00215{font-size:59.759976px;}
.fs1_c00215{font-size:66.239974px;}
.fs2_c00215{font-size:71.999971px;}
.y0_c00215{bottom:0.000000px;}
.y4_c00215{bottom:75.899970px;}
.y3_c00215{bottom:114.059954px;}
.y28_c00215{bottom:133.679947px;}
.y27_c00215{bottom:169.139932px;}
.y26_c00215{bottom:188.939924px;}
.y25_c00215{bottom:195.779922px;}
.y24_c00215{bottom:223.859910px;}
.y23_c00215{bottom:230.699908px;}
.y22_c00215{bottom:242.219903px;}
.y21_c00215{bottom:282.539887px;}
.y20_c00215{bottom:313.679875px;}
.y1f_c00215{bottom:344.639862px;}
.y1e_c00215{bottom:375.779850px;}
.y1d_c00215{bottom:405.299838px;}
.y1c_c00215{bottom:434.819826px;}
.y1b_c00215{bottom:465.779814px;}
.y1a_c00215{bottom:496.919801px;}
.y19_c00215{bottom:528.239789px;}
.y18_c00215{bottom:559.379776px;}
.y17_c00215{bottom:589.259764px;}
.y16_c00215{bottom:618.779752px;}
.y15_c00215{bottom:649.919740px;}
.y14_c00215{bottom:682.319727px;}
.y13_c00215{bottom:713.279715px;}
.y12_c00215{bottom:745.679702px;}
.y11_c00215{bottom:776.639689px;}
.y10_c00215{bottom:807.779677px;}
.ye_c00215{bottom:838.739665px;}
.yf_c00215{bottom:847.019661px;}
.yd_c00215{bottom:869.879652px;}
.yc_c00215{bottom:900.839640px;}
.yb_c00215{bottom:931.979627px;}
.ya_c00215{bottom:962.939615px;}
.y9_c00215{bottom:994.079602px;}
.y8_c00215{bottom:1025.039590px;}
.y7_c00215{bottom:1056.179578px;}
.y6_c00215{bottom:1087.139565px;}
.y5_c00215{bottom:1117.919553px;}
.y2_c00215{bottom:1157.159537px;}
.y1_c00215{bottom:1196.039522px;}
.ha_c00215{height:38.158578px;}
.h9_c00215{height:44.149201px;}
.h6_c00215{height:47.344903px;}
.hb_c00215{height:49.284472px;}
.h2_c00215{height:54.628572px;}
.h1_c00215{height:58.651148px;}
.h8_c00215{height:65.010911px;}
.h5_c00215{height:70.628878px;}
.h4_c00215{height:70.664034px;}
.h3_c00215{height:72.562471px;}
.h7_c00215{height:75.093720px;}
.h0_c00215{height:1263.000000px;}
.w0_c00215{width:892.500000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:127.619949px;}
.x9_c00215{left:132.479947px;}
.x3_c00215{left:148.860001px;}
.x8_c00215{left:154.621534px;}
.x4_c00215{left:303.119879px;}
.x5_c00215{left:309.239876px;}
.x2_c00215{left:433.979514px;}
.x6_c00215{left:602.819759px;}
.x7_c00215{left:608.939756px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls2_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.017387pt;}
.ls1_c00215{letter-spacing:48.807447pt;}
.ws0_c00215{word-spacing:-15.999994pt;}
.ws1_c00215{word-spacing:0.000000pt;}
._e_c00215{margin-left:-9.064631pt;}
._5_c00215{margin-left:-1.902214pt;}
._1_c00215{margin-left:-0.982555pt;}
._0_c00215{width:1.062723pt;}
._b_c00215{width:2.316613pt;}
._d_c00215{width:5.471628pt;}
._6_c00215{width:6.940203pt;}
._7_c00215{width:7.871533pt;}
._3_c00215{width:9.410331pt;}
._4_c00215{width:10.547677pt;}
._c_c00215{width:12.313382pt;}
._2_c00215{width:13.214912pt;}
._9_c00215{width:14.140786pt;}
._a_c00215{width:15.063725pt;}
._8_c00215{width:35.370770pt;}
.fs4_c00215{font-size:34.559986pt;}
.fs3_c00215{font-size:42.879983pt;}
.fs0_c00215{font-size:53.119979pt;}
.fs1_c00215{font-size:58.879976pt;}
.fs2_c00215{font-size:63.999974pt;}
.y0_c00215{bottom:0.000000pt;}
.y4_c00215{bottom:67.466640pt;}
.y3_c00215{bottom:101.386626pt;}
.y28_c00215{bottom:118.826619pt;}
.y27_c00215{bottom:150.346607pt;}
.y26_c00215{bottom:167.946599pt;}
.y25_c00215{bottom:174.026597pt;}
.y24_c00215{bottom:198.986587pt;}
.y23_c00215{bottom:205.066585pt;}
.y22_c00215{bottom:215.306581pt;}
.y21_c00215{bottom:251.146566pt;}
.y20_c00215{bottom:278.826555pt;}
.y1f_c00215{bottom:306.346544pt;}
.y1e_c00215{bottom:334.026533pt;}
.y1d_c00215{bottom:360.266523pt;}
.y1c_c00215{bottom:386.506512pt;}
.y1b_c00215{bottom:414.026501pt;}
.y1a_c00215{bottom:441.706490pt;}
.y19_c00215{bottom:469.546479pt;}
.y18_c00215{bottom:497.226468pt;}
.y17_c00215{bottom:523.786457pt;}
.y16_c00215{bottom:550.026447pt;}
.y15_c00215{bottom:577.706436pt;}
.y14_c00215{bottom:606.506424pt;}
.y13_c00215{bottom:634.026413pt;}
.y12_c00215{bottom:662.826402pt;}
.y11_c00215{bottom:690.346391pt;}
.y10_c00215{bottom:718.026379pt;}
.ye_c00215{bottom:745.546368pt;}
.yf_c00215{bottom:752.906366pt;}
.yd_c00215{bottom:773.226357pt;}
.yc_c00215{bottom:800.746346pt;}
.yb_c00215{bottom:828.426335pt;}
.ya_c00215{bottom:855.946324pt;}
.y9_c00215{bottom:883.626313pt;}
.y8_c00215{bottom:911.146302pt;}
.y7_c00215{bottom:938.826291pt;}
.y6_c00215{bottom:966.346280pt;}
.y5_c00215{bottom:993.706269pt;}
.y2_c00215{bottom:1028.586255pt;}
.y1_c00215{bottom:1063.146241pt;}
.ha_c00215{height:33.918736pt;}
.h9_c00215{height:39.243734pt;}
.h6_c00215{height:42.084358pt;}
.hb_c00215{height:43.808420pt;}
.h2_c00215{height:48.558731pt;}
.h1_c00215{height:52.134354pt;}
.h8_c00215{height:57.787477pt;}
.h5_c00215{height:62.781225pt;}
.h4_c00215{height:62.812475pt;}
.h3_c00215{height:64.499974pt;}
.h7_c00215{height:66.749973pt;}
.h0_c00215{height:1122.666667pt;}
.w0_c00215{width:793.333333pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:113.439955pt;}
.x9_c00215{left:117.759953pt;}
.x3_c00215{left:132.320001pt;}
.x8_c00215{left:137.441364pt;}
.x4_c00215{left:269.439892pt;}
.x5_c00215{left:274.879890pt;}
.x2_c00215{left:385.759568pt;}
.x6_c00215{left:535.839786pt;}
.x7_c00215{left:541.279783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32769d89c41e39a8cc6e8562.woff2')format("woff");}.ff1_c00216{font-family:ff1_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:ff2_c00216;src:url('chunks/assets/font_8d4a760936260b763be99bef.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_f1642858b8c7ae55152be45a.woff2')format("woff");}.ff5_c00216{font-family:ff5_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:ff6_c00216;src:url('chunks/assets/font_d532018f6cde4d3d776e9f8f.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:1.311035;font-style:normal;font-weight: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_c00216;src:url('chunks/assets/font_ff8c271ff80ac4ab19d8fdc1.woff2')format("woff");}.ff7_c00216{font-family:ff7_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;}
.m0_c00216{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls2_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.163552px;}
.ls1_c00216{letter-spacing:54.908378px;}
.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:0.000000px;}
._1_c00216{margin-left:-1.105374px;}
._0_c00216{width:1.478392px;}
._5_c00216{width:3.161304px;}
._4_c00216{width:5.143079px;}
._3_c00216{width:6.513471px;}
._2_c00216{width:7.523139px;}
._f_c00216{width:9.305155px;}
._6_c00216{width:10.568946px;}
._c_c00216{width:12.009809px;}
._d_c00216{width:13.442386px;}
._a_c00216{width:15.717351px;}
._9_c00216{width:16.986566px;}
._7_c00216{width:20.069170px;}
._8_c00216{width:21.235320px;}
._b_c00216{width:22.527007px;}
._e_c00216{width:24.675155px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs0_c00216{font-size:59.759976px;}
.fs1_c00216{font-size:66.239974px;}
.fs2_c00216{font-size:71.999971px;}
.y0_c00216{bottom:0.000000px;}
.y4_c00216{bottom:75.900270px;}
.y3_c00216{bottom:114.060254px;}
.y25_c00216{bottom:143.039943px;}
.y24_c00216{bottom:173.999930px;}
.y23_c00216{bottom:205.139918px;}
.y22_c00216{bottom:236.099906px;}
.y21_c00216{bottom:267.239893px;}
.y20_c00216{bottom:298.199881px;}
.y1f_c00216{bottom:329.339868px;}
.y1e_c00216{bottom:360.299856px;}
.y1d_c00216{bottom:391.439843px;}
.y1c_c00216{bottom:422.039831px;}
.y1b_c00216{bottom:453.179819px;}
.y1a_c00216{bottom:484.139806px;}
.y19_c00216{bottom:515.279794px;}
.y18_c00216{bottom:546.599781px;}
.y17_c00216{bottom:577.739769px;}
.y16_c00216{bottom:608.699757px;}
.y15_c00216{bottom:639.839744px;}
.y14_c00216{bottom:670.799732px;}
.y13_c00216{bottom:701.939719px;}
.y12_c00216{bottom:732.899707px;}
.y11_c00216{bottom:764.039694px;}
.y10_c00216{bottom:794.999682px;}
.yf_c00216{bottom:825.959670px;}
.ye_c00216{bottom:857.099657px;}
.yd_c00216{bottom:888.059645px;}
.yc_c00216{bottom:919.199632px;}
.yb_c00216{bottom:950.159620px;}
.ya_c00216{bottom:981.299607px;}
.y9_c00216{bottom:1012.259595px;}
.y8_c00216{bottom:1043.399583px;}
.y7_c00216{bottom:1074.359570px;}
.y6_c00216{bottom:1105.499558px;}
.y5_c00216{bottom:1136.459545px;}
.y2_c00216{bottom:1176.059530px;}
.y1_c00216{bottom:1196.219522px;}
.h2_c00216{height:54.628572px;}
.h1_c00216{height:58.651148px;}
.h4_c00216{height:70.628878px;}
.h5_c00216{height:70.664034px;}
.h6_c00216{height:72.562471px;}
.h3_c00216{height:75.093720px;}
.h0_c00216{height:1263.000000px;}
.w0_c00216{width:892.500000px;}
.x0_c00216{left:0.000000px;}
.x5_c00216{left:127.620262px;}
.x7_c00216{left:154.619965px;}
.x6_c00216{left:175.859930px;}
.x1_c00216{left:181.799927px;}
.x2_c00216{left:329.039408px;}
.x4_c00216{left:433.979826px;}
.x3_c00216{left:765.359694px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls2_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.145380pt;}
.ls1_c00216{letter-spacing:48.807447pt;}
.ws0_c00216{word-spacing:0.000000pt;}
._1_c00216{margin-left:-0.982555pt;}
._0_c00216{width:1.314126pt;}
._5_c00216{width:2.810048pt;}
._4_c00216{width:4.571626pt;}
._3_c00216{width:5.789752pt;}
._2_c00216{width:6.687234pt;}
._f_c00216{width:8.271249pt;}
._6_c00216{width:9.394619pt;}
._c_c00216{width:10.675386pt;}
._d_c00216{width:11.948787pt;}
._a_c00216{width:13.970979pt;}
._9_c00216{width:15.099170pt;}
._7_c00216{width:17.839262pt;}
._8_c00216{width:18.875840pt;}
._b_c00216{width:20.024006pt;}
._e_c00216{width:21.933471pt;}
.fs0_c00216{font-size:53.119979pt;}
.fs1_c00216{font-size:58.879976pt;}
.fs2_c00216{font-size:63.999974pt;}
.y0_c00216{bottom:0.000000pt;}
.y4_c00216{bottom:67.466906pt;}
.y3_c00216{bottom:101.386893pt;}
.y25_c00216{bottom:127.146616pt;}
.y24_c00216{bottom:154.666605pt;}
.y23_c00216{bottom:182.346594pt;}
.y22_c00216{bottom:209.866583pt;}
.y21_c00216{bottom:237.546572pt;}
.y20_c00216{bottom:265.066561pt;}
.y1f_c00216{bottom:292.746550pt;}
.y1e_c00216{bottom:320.266539pt;}
.y1d_c00216{bottom:347.946527pt;}
.y1c_c00216{bottom:375.146517pt;}
.y1b_c00216{bottom:402.826506pt;}
.y1a_c00216{bottom:430.346495pt;}
.y19_c00216{bottom:458.026483pt;}
.y18_c00216{bottom:485.866472pt;}
.y17_c00216{bottom:513.546461pt;}
.y16_c00216{bottom:541.066450pt;}
.y15_c00216{bottom:568.746439pt;}
.y14_c00216{bottom:596.266428pt;}
.y13_c00216{bottom:623.946417pt;}
.y12_c00216{bottom:651.466406pt;}
.y11_c00216{bottom:679.146395pt;}
.y10_c00216{bottom:706.666384pt;}
.yf_c00216{bottom:734.186373pt;}
.ye_c00216{bottom:761.866362pt;}
.yd_c00216{bottom:789.386351pt;}
.yc_c00216{bottom:817.066340pt;}
.yb_c00216{bottom:844.586329pt;}
.ya_c00216{bottom:872.266318pt;}
.y9_c00216{bottom:899.786307pt;}
.y8_c00216{bottom:927.466296pt;}
.y7_c00216{bottom:954.986285pt;}
.y6_c00216{bottom:982.666274pt;}
.y5_c00216{bottom:1010.186263pt;}
.y2_c00216{bottom:1045.386249pt;}
.y1_c00216{bottom:1063.306241pt;}
.h2_c00216{height:48.558731pt;}
.h1_c00216{height:52.134354pt;}
.h4_c00216{height:62.781225pt;}
.h5_c00216{height:62.812475pt;}
.h6_c00216{height:64.499974pt;}
.h3_c00216{height:66.749973pt;}
.h0_c00216{height:1122.666667pt;}
.w0_c00216{width:793.333333pt;}
.x0_c00216{left:0.000000pt;}
.x5_c00216{left:113.440233pt;}
.x7_c00216{left:137.439969pt;}
.x6_c00216{left:156.319937pt;}
.x1_c00216{left:161.599935pt;}
.x2_c00216{left:292.479474pt;}
.x4_c00216{left:385.759846pt;}
.x3_c00216{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e0ea29c6a09827416d335b4.woff2')format("woff");}.ff1_c00217{font-family:ff1_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:ff2_c00217;src:url('chunks/assets/font_1cf072afb1f98edecd015c0a.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_2f48c4c65f55e71f880d0581.woff2')format("woff");}.ff5_c00217{font-family:ff5_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;}
.m0_c00217{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls3_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:0.163552px;}
.ls2_c00217{letter-spacing:34.015846px;}
.ls1_c00217{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00217{word-spacing:-17.999993px;}
.ws1_c00217{word-spacing:0.000000px;}
._1_c00217{margin-left:-1.105374px;}
._0_c00217{width:1.195563px;}
._c_c00217{width:2.796613px;}
._b_c00217{width:5.637007px;}
._8_c00217{width:6.900710px;}
._7_c00217{width:8.224671px;}
._4_c00217{width:9.467797px;}
._3_c00217{width:10.800468px;}
._d_c00217{width:12.119934px;}
._e_c00217{width:13.384480px;}
._f_c00217{width:14.784340px;}
._9_c00217{width:21.056469px;}
._a_c00217{width:22.199364px;}
._6_c00217{width:23.355967px;}
._5_c00217{width:25.786426px;}
._2_c00217{width:35.307932px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:59.759976px;}
.fs1_c00217{font-size:66.239974px;}
.fs2_c00217{font-size:71.999971px;}
.y0_c00217{bottom:0.000000px;}
.y4_c00217{bottom:75.899970px;}
.y3_c00217{bottom:114.059954px;}
.y24_c00217{bottom:155.639938px;}
.y23_c00217{bottom:186.779925px;}
.y22_c00217{bottom:217.739913px;}
.y21_c00217{bottom:248.879900px;}
.y20_c00217{bottom:279.839888px;}
.y1f_c00217{bottom:310.979876px;}
.y1e_c00217{bottom:341.939863px;}
.y1d_c00217{bottom:373.079851px;}
.y1c_c00217{bottom:404.039838px;}
.y1b_c00217{bottom:435.179826px;}
.y1a_c00217{bottom:466.139814px;}
.y19_c00217{bottom:497.279801px;}
.y18_c00217{bottom:528.239789px;}
.y17_c00217{bottom:559.379776px;}
.y16_c00217{bottom:590.339764px;}
.y15_c00217{bottom:621.479751px;}
.y14_c00217{bottom:652.439739px;}
.y13_c00217{bottom:683.579727px;}
.y12_c00217{bottom:714.539714px;}
.y11_c00217{bottom:745.679702px;}
.y10_c00217{bottom:776.639689px;}
.yf_c00217{bottom:807.779677px;}
.ye_c00217{bottom:838.739665px;}
.yd_c00217{bottom:869.879652px;}
.yc_c00217{bottom:900.839640px;}
.yb_c00217{bottom:931.979627px;}
.ya_c00217{bottom:962.939615px;}
.y9_c00217{bottom:994.079602px;}
.y8_c00217{bottom:1025.039590px;}
.y7_c00217{bottom:1056.179578px;}
.y6_c00217{bottom:1087.139565px;}
.y5_c00217{bottom:1118.279553px;}
.y2_c00217{bottom:1157.159537px;}
.y1_c00217{bottom:1196.039522px;}
.h2_c00217{height:54.628572px;}
.h1_c00217{height:58.651148px;}
.h5_c00217{height:70.628878px;}
.h4_c00217{height:70.664034px;}
.h3_c00217{height:75.093720px;}
.h0_c00217{height:1263.000000px;}
.w0_c00217{width:892.500000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:127.619949px;}
.x4_c00217{left:154.621936px;}
.x3_c00217{left:180.720018px;}
.x2_c00217{left:433.979514px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls3_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:0.145380pt;}
.ls2_c00217{letter-spacing:30.236308pt;}
.ls1_c00217{letter-spacing:48.807447pt;}
.ws0_c00217{word-spacing:-15.999994pt;}
.ws1_c00217{word-spacing:0.000000pt;}
._1_c00217{margin-left:-0.982555pt;}
._0_c00217{width:1.062723pt;}
._c_c00217{width:2.485879pt;}
._b_c00217{width:5.010673pt;}
._8_c00217{width:6.133964pt;}
._7_c00217{width:7.310819pt;}
._4_c00217{width:8.415819pt;}
._3_c00217{width:9.600416pt;}
._d_c00217{width:10.773274pt;}
._e_c00217{width:11.897315pt;}
._f_c00217{width:13.141636pt;}
._9_c00217{width:18.716862pt;}
._a_c00217{width:19.732768pt;}
._6_c00217{width:20.760860pt;}
._5_c00217{width:22.921268pt;}
._2_c00217{width:31.384828pt;}
.fs0_c00217{font-size:53.119979pt;}
.fs1_c00217{font-size:58.879976pt;}
.fs2_c00217{font-size:63.999974pt;}
.y0_c00217{bottom:0.000000pt;}
.y4_c00217{bottom:67.466640pt;}
.y3_c00217{bottom:101.386626pt;}
.y24_c00217{bottom:138.346611pt;}
.y23_c00217{bottom:166.026600pt;}
.y22_c00217{bottom:193.546589pt;}
.y21_c00217{bottom:221.226578pt;}
.y20_c00217{bottom:248.746567pt;}
.y1f_c00217{bottom:276.426556pt;}
.y1e_c00217{bottom:303.946545pt;}
.y1d_c00217{bottom:331.626534pt;}
.y1c_c00217{bottom:359.146523pt;}
.y1b_c00217{bottom:386.826512pt;}
.y1a_c00217{bottom:414.346501pt;}
.y19_c00217{bottom:442.026490pt;}
.y18_c00217{bottom:469.546479pt;}
.y17_c00217{bottom:497.226468pt;}
.y16_c00217{bottom:524.746457pt;}
.y15_c00217{bottom:552.426446pt;}
.y14_c00217{bottom:579.946435pt;}
.y13_c00217{bottom:607.626424pt;}
.y12_c00217{bottom:635.146413pt;}
.y11_c00217{bottom:662.826402pt;}
.y10_c00217{bottom:690.346391pt;}
.yf_c00217{bottom:718.026379pt;}
.ye_c00217{bottom:745.546368pt;}
.yd_c00217{bottom:773.226357pt;}
.yc_c00217{bottom:800.746346pt;}
.yb_c00217{bottom:828.426335pt;}
.ya_c00217{bottom:855.946324pt;}
.y9_c00217{bottom:883.626313pt;}
.y8_c00217{bottom:911.146302pt;}
.y7_c00217{bottom:938.826291pt;}
.y6_c00217{bottom:966.346280pt;}
.y5_c00217{bottom:994.026269pt;}
.y2_c00217{bottom:1028.586255pt;}
.y1_c00217{bottom:1063.146241pt;}
.h2_c00217{height:48.558731pt;}
.h1_c00217{height:52.134354pt;}
.h5_c00217{height:62.781225pt;}
.h4_c00217{height:62.812475pt;}
.h3_c00217{height:66.749973pt;}
.h0_c00217{height:1122.666667pt;}
.w0_c00217{width:793.333333pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:113.439955pt;}
.x4_c00217{left:137.441721pt;}
.x3_c00217{left:160.640016pt;}
.x2_c00217{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6fd21d8b14946a3c286f0e0.woff2')format("woff");}.ff1_c00218{font-family:ff1_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:ff2_c00218;src:url('chunks/assets/font_ef784542a67a4987474fdfaa.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_c561a6b63ffb6086625b501e.woff2')format("woff");}.ff5_c00218{font-family:ff5_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls3_c00218{letter-spacing:0.000000px;}
.ls1_c00218{letter-spacing:0.163552px;}
.ls0_c00218{letter-spacing:34.015846px;}
.ls2_c00218{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00218{word-spacing:-17.999993px;}
.ws1_c00218{word-spacing:0.000000px;}
._1_c00218{margin-left:-1.105374px;}
._0_c00218{width:1.478392px;}
._c_c00218{width:2.514722px;}
._4_c00218{width:6.218190px;}
._a_c00218{width:7.406269px;}
._b_c00218{width:9.308930px;}
._e_c00218{width:11.559866px;}
._d_c00218{width:12.616927px;}
._5_c00218{width:13.976180px;}
._6_c00218{width:15.972154px;}
._f_c00218{width:16.979689px;}
._7_c00218{width:24.072792px;}
._2_c00218{width:25.630550px;}
._3_c00218{width:27.098272px;}
._8_c00218{width:32.723768px;}
._9_c00218{width:33.900312px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:59.759976px;}
.fs1_c00218{font-size:66.239974px;}
.fs2_c00218{font-size:71.999971px;}
.y0_c00218{bottom:0.000000px;}
.y4_c00218{bottom:75.900270px;}
.y3_c00218{bottom:114.060254px;}
.y23_c00218{bottom:175.079930px;}
.y22_c00218{bottom:206.219918px;}
.y21_c00218{bottom:237.179905px;}
.y20_c00218{bottom:268.319893px;}
.y1f_c00218{bottom:299.279880px;}
.y1e_c00218{bottom:345.359862px;}
.y1d_c00218{bottom:376.319849px;}
.y1c_c00218{bottom:422.399831px;}
.y1b_c00218{bottom:453.539819px;}
.y1a_c00218{bottom:484.499806px;}
.y19_c00218{bottom:515.639794px;}
.y18_c00218{bottom:546.599781px;}
.y17_c00218{bottom:577.739769px;}
.y16_c00218{bottom:608.699757px;}
.y15_c00218{bottom:639.839744px;}
.y14_c00218{bottom:670.799732px;}
.y13_c00218{bottom:701.939719px;}
.y12_c00218{bottom:732.899707px;}
.y11_c00218{bottom:764.039694px;}
.y10_c00218{bottom:794.999682px;}
.yf_c00218{bottom:825.959670px;}
.ye_c00218{bottom:857.099657px;}
.yd_c00218{bottom:888.059645px;}
.yc_c00218{bottom:919.199632px;}
.yb_c00218{bottom:950.159620px;}
.ya_c00218{bottom:981.299607px;}
.y9_c00218{bottom:1012.259595px;}
.y8_c00218{bottom:1043.399583px;}
.y7_c00218{bottom:1074.359570px;}
.y6_c00218{bottom:1105.499558px;}
.y5_c00218{bottom:1136.459545px;}
.y2_c00218{bottom:1176.059530px;}
.y1_c00218{bottom:1196.219522px;}
.h2_c00218{height:54.628572px;}
.h1_c00218{height:58.651148px;}
.h4_c00218{height:70.664034px;}
.h3_c00218{height:75.093720px;}
.h0_c00218{height:1263.000000px;}
.w0_c00218{width:892.500000px;}
.x0_c00218{left:0.000000px;}
.x5_c00218{left:127.620262px;}
.x6_c00218{left:154.619938px;}
.x7_c00218{left:180.720018px;}
.x1_c00218{left:181.799927px;}
.x2_c00218{left:329.039408px;}
.x4_c00218{left:433.979826px;}
.x3_c00218{left:765.359694px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls3_c00218{letter-spacing:0.000000pt;}
.ls1_c00218{letter-spacing:0.145380pt;}
.ls0_c00218{letter-spacing:30.236308pt;}
.ls2_c00218{letter-spacing:48.807447pt;}
.ws0_c00218{word-spacing:-15.999994pt;}
.ws1_c00218{word-spacing:0.000000pt;}
._1_c00218{margin-left:-0.982555pt;}
._0_c00218{width:1.314126pt;}
._c_c00218{width:2.235308pt;}
._4_c00218{width:5.527280pt;}
._a_c00218{width:6.583350pt;}
._b_c00218{width:8.274604pt;}
._e_c00218{width:10.275436pt;}
._d_c00218{width:11.215046pt;}
._5_c00218{width:12.423271pt;}
._6_c00218{width:14.197471pt;}
._f_c00218{width:15.093057pt;}
._7_c00218{width:21.398038pt;}
._2_c00218{width:22.782711pt;}
._3_c00218{width:24.087353pt;}
._8_c00218{width:29.087794pt;}
._9_c00218{width:30.133611pt;}
.fs0_c00218{font-size:53.119979pt;}
.fs1_c00218{font-size:58.879976pt;}
.fs2_c00218{font-size:63.999974pt;}
.y0_c00218{bottom:0.000000pt;}
.y4_c00218{bottom:67.466906pt;}
.y3_c00218{bottom:101.386893pt;}
.y23_c00218{bottom:155.626604pt;}
.y22_c00218{bottom:183.306593pt;}
.y21_c00218{bottom:210.826582pt;}
.y20_c00218{bottom:238.506571pt;}
.y1f_c00218{bottom:266.026560pt;}
.y1e_c00218{bottom:306.986544pt;}
.y1d_c00218{bottom:334.506533pt;}
.y1c_c00218{bottom:375.466516pt;}
.y1b_c00218{bottom:403.146505pt;}
.y1a_c00218{bottom:430.666494pt;}
.y19_c00218{bottom:458.346483pt;}
.y18_c00218{bottom:485.866472pt;}
.y17_c00218{bottom:513.546461pt;}
.y16_c00218{bottom:541.066450pt;}
.y15_c00218{bottom:568.746439pt;}
.y14_c00218{bottom:596.266428pt;}
.y13_c00218{bottom:623.946417pt;}
.y12_c00218{bottom:651.466406pt;}
.y11_c00218{bottom:679.146395pt;}
.y10_c00218{bottom:706.666384pt;}
.yf_c00218{bottom:734.186373pt;}
.ye_c00218{bottom:761.866362pt;}
.yd_c00218{bottom:789.386351pt;}
.yc_c00218{bottom:817.066340pt;}
.yb_c00218{bottom:844.586329pt;}
.ya_c00218{bottom:872.266318pt;}
.y9_c00218{bottom:899.786307pt;}
.y8_c00218{bottom:927.466296pt;}
.y7_c00218{bottom:954.986285pt;}
.y6_c00218{bottom:982.666274pt;}
.y5_c00218{bottom:1010.186263pt;}
.y2_c00218{bottom:1045.386249pt;}
.y1_c00218{bottom:1063.306241pt;}
.h2_c00218{height:48.558731pt;}
.h1_c00218{height:52.134354pt;}
.h4_c00218{height:62.812475pt;}
.h3_c00218{height:66.749973pt;}
.h0_c00218{height:1122.666667pt;}
.w0_c00218{width:793.333333pt;}
.x0_c00218{left:0.000000pt;}
.x5_c00218{left:113.440233pt;}
.x6_c00218{left:137.439945pt;}
.x7_c00218{left:160.640016pt;}
.x1_c00218{left:161.599935pt;}
.x2_c00218{left:292.479474pt;}
.x4_c00218{left:385.759846pt;}
.x3_c00218{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3673f2501981fcb4e7b2e47.woff2')format("woff");}.ff1_c00219{font-family:ff1_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:ff2_c00219;src:url('chunks/assets/font_fc69823ba63c1a7d62a7ed5d.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_9c7916152c57f88151f68c12.woff2')format("woff");}.ff5_c00219{font-family:ff5_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;}
.m0_c00219{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls3_c00219{letter-spacing:0.000000px;}
.ls1_c00219{letter-spacing:0.163552px;}
.ls0_c00219{letter-spacing:34.015846px;}
.ls2_c00219{letter-spacing:54.908378px;}
.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:-17.999993px;}
.ws1_c00219{word-spacing:0.000000px;}
._1_c00219{margin-left:-1.105374px;}
._0_c00219{width:1.195563px;}
._8_c00219{width:2.387405px;}
._4_c00219{width:4.308389px;}
._7_c00219{width:8.958074px;}
._5_c00219{width:10.768538px;}
._6_c00219{width:11.917771px;}
._c_c00219{width:15.626126px;}
._b_c00219{width:16.939445px;}
._d_c00219{width:19.822315px;}
._9_c00219{width:21.968220px;}
._a_c00219{width:23.097409px;}
._2_c00219{width:31.348007px;}
._3_c00219{width:32.480914px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:59.759976px;}
.fs1_c00219{font-size:66.239974px;}
.fs2_c00219{font-size:71.999971px;}
.y0_c00219{bottom:0.000000px;}
.y4_c00219{bottom:75.899970px;}
.y3_c00219{bottom:114.059954px;}
.y21_c00219{bottom:158.879936px;}
.y20_c00219{bottom:189.839924px;}
.y1f_c00219{bottom:220.979912px;}
.y1e_c00219{bottom:251.939899px;}
.y1d_c00219{bottom:298.019881px;}
.y1c_c00219{bottom:344.099862px;}
.y1b_c00219{bottom:375.239850px;}
.y1a_c00219{bottom:406.199838px;}
.y19_c00219{bottom:437.159825px;}
.y18_c00219{bottom:483.239807px;}
.y17_c00219{bottom:514.379794px;}
.y16_c00219{bottom:545.339782px;}
.y15_c00219{bottom:576.479769px;}
.y14_c00219{bottom:607.439757px;}
.y13_c00219{bottom:638.579745px;}
.y12_c00219{bottom:669.539732px;}
.y11_c00219{bottom:700.679720px;}
.y10_c00219{bottom:731.639707px;}
.yf_c00219{bottom:777.719689px;}
.ye_c00219{bottom:823.799670px;}
.yd_c00219{bottom:854.759658px;}
.yc_c00219{bottom:900.839640px;}
.yb_c00219{bottom:931.979627px;}
.ya_c00219{bottom:962.939615px;}
.y9_c00219{bottom:994.079602px;}
.y8_c00219{bottom:1025.039590px;}
.y7_c00219{bottom:1056.179578px;}
.y6_c00219{bottom:1087.139565px;}
.y5_c00219{bottom:1118.279553px;}
.y2_c00219{bottom:1157.159537px;}
.y1_c00219{bottom:1196.039522px;}
.h2_c00219{height:54.628572px;}
.h1_c00219{height:58.651148px;}
.h4_c00219{height:70.664034px;}
.h3_c00219{height:75.093720px;}
.h0_c00219{height:1263.000000px;}
.w0_c00219{width:892.500000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:127.619949px;}
.x3_c00219{left:154.619938px;}
.x4_c00219{left:180.719460px;}
.x2_c00219{left:433.979514px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls3_c00219{letter-spacing:0.000000pt;}
.ls1_c00219{letter-spacing:0.145380pt;}
.ls0_c00219{letter-spacing:30.236308pt;}
.ls2_c00219{letter-spacing:48.807447pt;}
.ws0_c00219{word-spacing:-15.999994pt;}
.ws1_c00219{word-spacing:0.000000pt;}
._1_c00219{margin-left:-0.982555pt;}
._0_c00219{width:1.062723pt;}
._8_c00219{width:2.122137pt;}
._4_c00219{width:3.829679pt;}
._7_c00219{width:7.962732pt;}
._5_c00219{width:9.572033pt;}
._6_c00219{width:10.593574pt;}
._c_c00219{width:13.889890pt;}
._b_c00219{width:15.057285pt;}
._d_c00219{width:17.619835pt;}
._9_c00219{width:19.527307pt;}
._a_c00219{width:20.531031pt;}
._2_c00219{width:27.864895pt;}
._3_c00219{width:28.871923pt;}
.fs0_c00219{font-size:53.119979pt;}
.fs1_c00219{font-size:58.879976pt;}
.fs2_c00219{font-size:63.999974pt;}
.y0_c00219{bottom:0.000000pt;}
.y4_c00219{bottom:67.466640pt;}
.y3_c00219{bottom:101.386626pt;}
.y21_c00219{bottom:141.226610pt;}
.y20_c00219{bottom:168.746599pt;}
.y1f_c00219{bottom:196.426588pt;}
.y1e_c00219{bottom:223.946577pt;}
.y1d_c00219{bottom:264.906561pt;}
.y1c_c00219{bottom:305.866544pt;}
.y1b_c00219{bottom:333.546533pt;}
.y1a_c00219{bottom:361.066522pt;}
.y19_c00219{bottom:388.586511pt;}
.y18_c00219{bottom:429.546495pt;}
.y17_c00219{bottom:457.226484pt;}
.y16_c00219{bottom:484.746473pt;}
.y15_c00219{bottom:512.426462pt;}
.y14_c00219{bottom:539.946451pt;}
.y13_c00219{bottom:567.626440pt;}
.y12_c00219{bottom:595.146429pt;}
.y11_c00219{bottom:622.826418pt;}
.y10_c00219{bottom:650.346407pt;}
.yf_c00219{bottom:691.306390pt;}
.ye_c00219{bottom:732.266374pt;}
.yd_c00219{bottom:759.786363pt;}
.yc_c00219{bottom:800.746346pt;}
.yb_c00219{bottom:828.426335pt;}
.ya_c00219{bottom:855.946324pt;}
.y9_c00219{bottom:883.626313pt;}
.y8_c00219{bottom:911.146302pt;}
.y7_c00219{bottom:938.826291pt;}
.y6_c00219{bottom:966.346280pt;}
.y5_c00219{bottom:994.026269pt;}
.y2_c00219{bottom:1028.586255pt;}
.y1_c00219{bottom:1063.146241pt;}
.h2_c00219{height:48.558731pt;}
.h1_c00219{height:52.134354pt;}
.h4_c00219{height:62.812475pt;}
.h3_c00219{height:66.749973pt;}
.h0_c00219{height:1122.666667pt;}
.w0_c00219{width:793.333333pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:113.439955pt;}
.x3_c00219{left:137.439945pt;}
.x4_c00219{left:160.639520pt;}
.x2_c00219{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8385b039dd5644d178284248.woff2')format("woff");}.ff1_c00220{font-family:ff1_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:ff2_c00220;src:url('chunks/assets/font_f60427c70728d713f00c2d7a.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_740721ceb38393f984fe50f9.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;}
.m0_c00220{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls3_c00220{letter-spacing:0.000000px;}
.ls1_c00220{letter-spacing:0.163552px;}
.ls0_c00220{letter-spacing:34.015846px;}
.ls2_c00220{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00220{word-spacing:-17.999993px;}
.ws1_c00220{word-spacing:0.000000px;}
._1_c00220{margin-left:-1.105374px;}
._0_c00220{width:1.478392px;}
._a_c00220{width:2.797890px;}
._9_c00220{width:4.151322px;}
._f_c00220{width:5.592132px;}
._2_c00220{width:8.340405px;}
._3_c00220{width:9.482577px;}
._4_c00220{width:10.717831px;}
._b_c00220{width:11.988848px;}
._6_c00220{width:13.039629px;}
._7_c00220{width:14.171142px;}
._c_c00220{width:20.875785px;}
._d_c00220{width:22.027311px;}
._e_c00220{width:23.333745px;}
._8_c00220{width:25.697868px;}
._5_c00220{width:31.546361px;}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:59.759976px;}
.fs1_c00220{font-size:66.239974px;}
.fs2_c00220{font-size:71.999971px;}
.y0_c00220{bottom:0.000000px;}
.y4_c00220{bottom:75.900270px;}
.y3_c00220{bottom:114.060254px;}
.y20_c00220{bottom:163.199935px;}
.y1f_c00220{bottom:209.279916px;}
.y1e_c00220{bottom:255.359898px;}
.y1d_c00220{bottom:301.439879px;}
.y1c_c00220{bottom:347.519861px;}
.y1b_c00220{bottom:378.479849px;}
.y1a_c00220{bottom:409.439836px;}
.y19_c00220{bottom:440.579824px;}
.y18_c00220{bottom:486.659805px;}
.y17_c00220{bottom:532.739787px;}
.y16_c00220{bottom:563.699775px;}
.y15_c00220{bottom:594.839762px;}
.y14_c00220{bottom:625.799750px;}
.y13_c00220{bottom:656.939737px;}
.y12_c00220{bottom:702.839719px;}
.y11_c00220{bottom:733.979706px;}
.y10_c00220{bottom:764.939694px;}
.yf_c00220{bottom:796.079682px;}
.ye_c00220{bottom:842.159663px;}
.yd_c00220{bottom:873.119651px;}
.yc_c00220{bottom:904.259638px;}
.yb_c00220{bottom:935.219626px;}
.ya_c00220{bottom:966.359613px;}
.y9_c00220{bottom:997.319601px;}
.y8_c00220{bottom:1028.459589px;}
.y7_c00220{bottom:1074.359570px;}
.y6_c00220{bottom:1105.499558px;}
.y5_c00220{bottom:1136.459545px;}
.y2_c00220{bottom:1176.059530px;}
.y1_c00220{bottom:1196.219522px;}
.h2_c00220{height:54.628572px;}
.h1_c00220{height:58.651148px;}
.h4_c00220{height:70.664034px;}
.h3_c00220{height:75.093720px;}
.h0_c00220{height:1263.000000px;}
.w0_c00220{width:892.500000px;}
.x0_c00220{left:0.000000px;}
.x5_c00220{left:127.620262px;}
.x6_c00220{left:154.619938px;}
.x7_c00220{left:180.720018px;}
.x1_c00220{left:181.799927px;}
.x2_c00220{left:329.039408px;}
.x4_c00220{left:433.979826px;}
.x3_c00220{left:765.359694px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls3_c00220{letter-spacing:0.000000pt;}
.ls1_c00220{letter-spacing:0.145380pt;}
.ls0_c00220{letter-spacing:30.236308pt;}
.ls2_c00220{letter-spacing:48.807447pt;}
.ws0_c00220{word-spacing:-15.999994pt;}
.ws1_c00220{word-spacing:0.000000pt;}
._1_c00220{margin-left:-0.982555pt;}
._0_c00220{width:1.314126pt;}
._a_c00220{width:2.487013pt;}
._9_c00220{width:3.690064pt;}
._f_c00220{width:4.970784pt;}
._2_c00220{width:7.413693pt;}
._3_c00220{width:8.428958pt;}
._4_c00220{width:9.526961pt;}
._b_c00220{width:10.656754pt;}
._6_c00220{width:11.590781pt;}
._7_c00220{width:12.596571pt;}
._c_c00220{width:18.556254pt;}
._d_c00220{width:19.579832pt;}
._e_c00220{width:20.741107pt;}
._8_c00220{width:22.842549pt;}
._5_c00220{width:28.041210pt;}
.fs0_c00220{font-size:53.119979pt;}
.fs1_c00220{font-size:58.879976pt;}
.fs2_c00220{font-size:63.999974pt;}
.y0_c00220{bottom:0.000000pt;}
.y4_c00220{bottom:67.466906pt;}
.y3_c00220{bottom:101.386893pt;}
.y20_c00220{bottom:145.066609pt;}
.y1f_c00220{bottom:186.026592pt;}
.y1e_c00220{bottom:226.986576pt;}
.y1d_c00220{bottom:267.946559pt;}
.y1c_c00220{bottom:308.906543pt;}
.y1b_c00220{bottom:336.426532pt;}
.y1a_c00220{bottom:363.946521pt;}
.y19_c00220{bottom:391.626510pt;}
.y18_c00220{bottom:432.586494pt;}
.y17_c00220{bottom:473.546477pt;}
.y16_c00220{bottom:501.066466pt;}
.y15_c00220{bottom:528.746455pt;}
.y14_c00220{bottom:556.266444pt;}
.y13_c00220{bottom:583.946433pt;}
.y12_c00220{bottom:624.746417pt;}
.y11_c00220{bottom:652.426406pt;}
.y10_c00220{bottom:679.946395pt;}
.yf_c00220{bottom:707.626384pt;}
.ye_c00220{bottom:748.586367pt;}
.yd_c00220{bottom:776.106356pt;}
.yc_c00220{bottom:803.786345pt;}
.yb_c00220{bottom:831.306334pt;}
.ya_c00220{bottom:858.986323pt;}
.y9_c00220{bottom:886.506312pt;}
.y8_c00220{bottom:914.186301pt;}
.y7_c00220{bottom:954.986285pt;}
.y6_c00220{bottom:982.666274pt;}
.y5_c00220{bottom:1010.186263pt;}
.y2_c00220{bottom:1045.386249pt;}
.y1_c00220{bottom:1063.306241pt;}
.h2_c00220{height:48.558731pt;}
.h1_c00220{height:52.134354pt;}
.h4_c00220{height:62.812475pt;}
.h3_c00220{height:66.749973pt;}
.h0_c00220{height:1122.666667pt;}
.w0_c00220{width:793.333333pt;}
.x0_c00220{left:0.000000pt;}
.x5_c00220{left:113.440233pt;}
.x6_c00220{left:137.439945pt;}
.x7_c00220{left:160.640016pt;}
.x1_c00220{left:161.599935pt;}
.x2_c00220{left:292.479474pt;}
.x4_c00220{left:385.759846pt;}
.x3_c00220{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95519dda61b2e41050547810.woff2')format("woff");}.ff1_c00221{font-family:ff1_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:ff2_c00221;src:url('chunks/assets/font_b152629cc5fafef9e41f06ae.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_e5e9110c5bf5441b2efddbc2.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00221{word-spacing:0.000000px;}
._5_c00221{margin-left:-2.142119px;}
._1_c00221{margin-left:-1.105374px;}
._0_c00221{width:1.195563px;}
._3_c00221{width:3.010065px;}
._7_c00221{width:4.062811px;}
._2_c00221{width:5.384232px;}
._a_c00221{width:9.664213px;}
._b_c00221{width:10.702641px;}
._c_c00221{width:16.350032px;}
._8_c00221{width:19.348738px;}
._9_c00221{width:20.382822px;}
._4_c00221{width:27.069167px;}
._6_c00221{width:28.504909px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs0_c00221{font-size:59.759976px;}
.fs1_c00221{font-size:66.239974px;}
.fs2_c00221{font-size:71.999971px;}
.y0_c00221{bottom:0.000000px;}
.y4_c00221{bottom:75.899970px;}
.y3_c00221{bottom:114.059954px;}
.y24_c00221{bottom:155.639938px;}
.y23_c00221{bottom:186.779925px;}
.y22_c00221{bottom:217.739913px;}
.y21_c00221{bottom:248.879900px;}
.y20_c00221{bottom:279.839888px;}
.y1f_c00221{bottom:310.979876px;}
.y1e_c00221{bottom:341.939863px;}
.y1d_c00221{bottom:373.079851px;}
.y1c_c00221{bottom:404.039838px;}
.y1b_c00221{bottom:435.179826px;}
.y1a_c00221{bottom:466.139814px;}
.y19_c00221{bottom:497.279801px;}
.y18_c00221{bottom:528.239789px;}
.y17_c00221{bottom:559.379776px;}
.y16_c00221{bottom:590.339764px;}
.y15_c00221{bottom:621.479751px;}
.y14_c00221{bottom:652.439739px;}
.y13_c00221{bottom:683.579727px;}
.y12_c00221{bottom:714.539714px;}
.y11_c00221{bottom:745.679702px;}
.y10_c00221{bottom:776.639689px;}
.yf_c00221{bottom:807.779677px;}
.ye_c00221{bottom:838.739665px;}
.yd_c00221{bottom:869.879652px;}
.yc_c00221{bottom:900.839640px;}
.yb_c00221{bottom:931.979627px;}
.ya_c00221{bottom:962.939615px;}
.y9_c00221{bottom:994.079602px;}
.y8_c00221{bottom:1025.039590px;}
.y7_c00221{bottom:1056.179578px;}
.y6_c00221{bottom:1087.139565px;}
.y5_c00221{bottom:1117.919553px;}
.y2_c00221{bottom:1157.159537px;}
.y1_c00221{bottom:1196.039522px;}
.h2_c00221{height:54.628572px;}
.h1_c00221{height:58.651148px;}
.h4_c00221{height:70.664034px;}
.h3_c00221{height:72.562471px;}
.h0_c00221{height:1263.000000px;}
.w0_c00221{width:892.500000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:127.619949px;}
.x3_c00221{left:180.719930px;}
.x2_c00221{left:433.979514px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
._5_c00221{margin-left:-1.904106pt;}
._1_c00221{margin-left:-0.982555pt;}
._0_c00221{width:1.062723pt;}
._3_c00221{width:2.675614pt;}
._7_c00221{width:3.611388pt;}
._2_c00221{width:4.785984pt;}
._a_c00221{width:8.590411pt;}
._b_c00221{width:9.513459pt;}
._c_c00221{width:14.533361pt;}
._8_c00221{width:17.198878pt;}
._9_c00221{width:18.118064pt;}
._4_c00221{width:24.061482pt;}
._6_c00221{width:25.337697pt;}
.fs0_c00221{font-size:53.119979pt;}
.fs1_c00221{font-size:58.879976pt;}
.fs2_c00221{font-size:63.999974pt;}
.y0_c00221{bottom:0.000000pt;}
.y4_c00221{bottom:67.466640pt;}
.y3_c00221{bottom:101.386626pt;}
.y24_c00221{bottom:138.346611pt;}
.y23_c00221{bottom:166.026600pt;}
.y22_c00221{bottom:193.546589pt;}
.y21_c00221{bottom:221.226578pt;}
.y20_c00221{bottom:248.746567pt;}
.y1f_c00221{bottom:276.426556pt;}
.y1e_c00221{bottom:303.946545pt;}
.y1d_c00221{bottom:331.626534pt;}
.y1c_c00221{bottom:359.146523pt;}
.y1b_c00221{bottom:386.826512pt;}
.y1a_c00221{bottom:414.346501pt;}
.y19_c00221{bottom:442.026490pt;}
.y18_c00221{bottom:469.546479pt;}
.y17_c00221{bottom:497.226468pt;}
.y16_c00221{bottom:524.746457pt;}
.y15_c00221{bottom:552.426446pt;}
.y14_c00221{bottom:579.946435pt;}
.y13_c00221{bottom:607.626424pt;}
.y12_c00221{bottom:635.146413pt;}
.y11_c00221{bottom:662.826402pt;}
.y10_c00221{bottom:690.346391pt;}
.yf_c00221{bottom:718.026379pt;}
.ye_c00221{bottom:745.546368pt;}
.yd_c00221{bottom:773.226357pt;}
.yc_c00221{bottom:800.746346pt;}
.yb_c00221{bottom:828.426335pt;}
.ya_c00221{bottom:855.946324pt;}
.y9_c00221{bottom:883.626313pt;}
.y8_c00221{bottom:911.146302pt;}
.y7_c00221{bottom:938.826291pt;}
.y6_c00221{bottom:966.346280pt;}
.y5_c00221{bottom:993.706269pt;}
.y2_c00221{bottom:1028.586255pt;}
.y1_c00221{bottom:1063.146241pt;}
.h2_c00221{height:48.558731pt;}
.h1_c00221{height:52.134354pt;}
.h4_c00221{height:62.812475pt;}
.h3_c00221{height:64.499974pt;}
.h0_c00221{height:1122.666667pt;}
.w0_c00221{width:793.333333pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:113.439955pt;}
.x3_c00221{left:160.639938pt;}
.x2_c00221{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f0e9ef35052c9d50b634227.woff2')format("woff");}.ff1_c00222{font-family:ff1_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:ff2_c00222;src:url('chunks/assets/font_d8620ca393e894fd0c926177.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_2311e4f2bf484b69424a98ce.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.311035;font-style:normal;font-weight:normal;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_c66a1d5ab6131ffe3e36a3f0.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_e2c50bc567e4781c9afd2a42.woff2')format("woff");}.ff5_c00222{font-family:ff5_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;}
.m0_c00222{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00222{word-spacing:0.000000px;}
._c_c00222{margin-left:-2.199383px;}
._1_c00222{margin-left:-1.105374px;}
._0_c00222{width:1.478392px;}
._4_c00222{width:3.157605px;}
._3_c00222{width:4.161162px;}
._2_c00222{width:5.758691px;}
._8_c00222{width:6.872225px;}
._7_c00222{width:8.016932px;}
._9_c00222{width:11.576333px;}
._a_c00222{width:12.769322px;}
._6_c00222{width:15.114778px;}
._5_c00222{width:16.467039px;}
._b_c00222{width:194.525202px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs0_c00222{font-size:59.759976px;}
.fs1_c00222{font-size:66.239974px;}
.fs2_c00222{font-size:71.999971px;}
.y0_c00222{bottom:0.000000px;}
.y4_c00222{bottom:75.900270px;}
.y3_c00222{bottom:114.060254px;}
.y23_c00222{bottom:159.779936px;}
.y22_c00222{bottom:191.099924px;}
.y21_c00222{bottom:222.239911px;}
.y20_c00222{bottom:253.199899px;}
.y1f_c00222{bottom:284.339886px;}
.y1e_c00222{bottom:315.299874px;}
.y1d_c00222{bottom:346.079862px;}
.y1c_c00222{bottom:377.039849px;}
.y1b_c00222{bottom:423.479831px;}
.y1a_c00222{bottom:454.439818px;}
.y19_c00222{bottom:485.579806px;}
.y18_c00222{bottom:531.659787px;}
.y17_c00222{bottom:562.619775px;}
.y16_c00222{bottom:593.759762px;}
.y15_c00222{bottom:624.719750px;}
.y14_c00222{bottom:670.799732px;}
.y13_c00222{bottom:701.939719px;}
.y12_c00222{bottom:732.899707px;}
.y11_c00222{bottom:764.039694px;}
.y10_c00222{bottom:794.999682px;}
.yf_c00222{bottom:825.599670px;}
.ye_c00222{bottom:856.739657px;}
.yd_c00222{bottom:887.699645px;}
.yc_c00222{bottom:918.839632px;}
.yb_c00222{bottom:949.799620px;}
.ya_c00222{bottom:980.939608px;}
.y9_c00222{bottom:1011.899595px;}
.y8_c00222{bottom:1043.039583px;}
.y7_c00222{bottom:1073.999570px;}
.y6_c00222{bottom:1105.139558px;}
.y5_c00222{bottom:1136.459545px;}
.y2_c00222{bottom:1176.059530px;}
.y1_c00222{bottom:1196.219522px;}
.h2_c00222{height:54.628572px;}
.h1_c00222{height:58.651148px;}
.h3_c00222{height:70.664034px;}
.h4_c00222{height:72.562471px;}
.h0_c00222{height:1263.000000px;}
.w0_c00222{width:892.500000px;}
.x0_c00222{left:0.000000px;}
.x5_c00222{left:127.620262px;}
.x6_c00222{left:132.658442px;}
.x7_c00222{left:180.718401px;}
.x1_c00222{left:181.799927px;}
.x2_c00222{left:329.039408px;}
.x4_c00222{left:433.979826px;}
.x3_c00222{left:765.359694px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
._c_c00222{margin-left:-1.955007pt;}
._1_c00222{margin-left:-0.982555pt;}
._0_c00222{width:1.314126pt;}
._4_c00222{width:2.806760pt;}
._3_c00222{width:3.698810pt;}
._2_c00222{width:5.118836pt;}
._8_c00222{width:6.108644pt;}
._7_c00222{width:7.126161pt;}
._9_c00222{width:10.290074pt;}
._a_c00222{width:11.350509pt;}
._6_c00222{width:13.435358pt;}
._5_c00222{width:14.637368pt;}
._b_c00222{width:172.911291pt;}
.fs0_c00222{font-size:53.119979pt;}
.fs1_c00222{font-size:58.879976pt;}
.fs2_c00222{font-size:63.999974pt;}
.y0_c00222{bottom:0.000000pt;}
.y4_c00222{bottom:67.466906pt;}
.y3_c00222{bottom:101.386893pt;}
.y23_c00222{bottom:142.026610pt;}
.y22_c00222{bottom:169.866599pt;}
.y21_c00222{bottom:197.546588pt;}
.y20_c00222{bottom:225.066577pt;}
.y1f_c00222{bottom:252.746566pt;}
.y1e_c00222{bottom:280.266555pt;}
.y1d_c00222{bottom:307.626544pt;}
.y1c_c00222{bottom:335.146533pt;}
.y1b_c00222{bottom:376.426516pt;}
.y1a_c00222{bottom:403.946505pt;}
.y19_c00222{bottom:431.626494pt;}
.y18_c00222{bottom:472.586478pt;}
.y17_c00222{bottom:500.106467pt;}
.y16_c00222{bottom:527.786456pt;}
.y15_c00222{bottom:555.306445pt;}
.y14_c00222{bottom:596.266428pt;}
.y13_c00222{bottom:623.946417pt;}
.y12_c00222{bottom:651.466406pt;}
.y11_c00222{bottom:679.146395pt;}
.y10_c00222{bottom:706.666384pt;}
.yf_c00222{bottom:733.866373pt;}
.ye_c00222{bottom:761.546362pt;}
.yd_c00222{bottom:789.066351pt;}
.yc_c00222{bottom:816.746340pt;}
.yb_c00222{bottom:844.266329pt;}
.ya_c00222{bottom:871.946318pt;}
.y9_c00222{bottom:899.466307pt;}
.y8_c00222{bottom:927.146296pt;}
.y7_c00222{bottom:954.666285pt;}
.y6_c00222{bottom:982.346274pt;}
.y5_c00222{bottom:1010.186263pt;}
.y2_c00222{bottom:1045.386249pt;}
.y1_c00222{bottom:1063.306241pt;}
.h2_c00222{height:48.558731pt;}
.h1_c00222{height:52.134354pt;}
.h3_c00222{height:62.812475pt;}
.h4_c00222{height:64.499974pt;}
.h0_c00222{height:1122.666667pt;}
.w0_c00222{width:793.333333pt;}
.x0_c00222{left:0.000000pt;}
.x5_c00222{left:113.440233pt;}
.x6_c00222{left:117.918616pt;}
.x7_c00222{left:160.638579pt;}
.x1_c00222{left:161.599935pt;}
.x2_c00222{left:292.479474pt;}
.x4_c00222{left:385.759846pt;}
.x3_c00222{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19e43e56b1ffa5910e19a860.woff2')format("woff");}.ff1_c00223{font-family:ff1_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:ff2_c00223;src:url('chunks/assets/font_cfd49f12e9ebe761c9556d4e.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_289ccfb7d3ba46b03ea82183.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.311035;font-style:normal;font-weight:normal;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_bcf1a1c47ca69a1e35e5113c.woff2')format("woff");}.ff4_c00223{font-family:ff4_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:ff5_c00223;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00223;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00223;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7_c00223{font-family:ff7_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;}
.m0_c00223{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls4_c00223{letter-spacing:0.000000px;}
.ls3_c00223{letter-spacing:0.010620px;}
.ls0_c00223{letter-spacing:0.019560px;}
.ls2_c00223{letter-spacing:0.021282px;}
.ls1_c00223{letter-spacing:54.908378px;}
.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;}
}
.ws0_c00223{word-spacing:0.000000px;}
._6_c00223{margin-left:-3.541417px;}
._2_c00223{margin-left:-2.249012px;}
._1_c00223{margin-left:-1.105374px;}
._0_c00223{width:1.195563px;}
._5_c00223{width:3.009452px;}
._8_c00223{width:5.024298px;}
._7_c00223{width:6.564052px;}
._a_c00223{width:15.693577px;}
._d_c00223{width:20.580473px;}
._4_c00223{width:22.116201px;}
._b_c00223{width:24.072880px;}
._c_c00223{width:25.125618px;}
._9_c00223{width:28.629282px;}
._3_c00223{width:194.525202px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs0_c00223{font-size:59.759976px;}
.fs1_c00223{font-size:66.239974px;}
.fs2_c00223{font-size:71.999971px;}
.y0_c00223{bottom:0.000000px;}
.y4_c00223{bottom:75.899970px;}
.y3_c00223{bottom:114.059954px;}
.y23_c00223{bottom:160.139936px;}
.y22_c00223{bottom:192.539923px;}
.y21_c00223{bottom:224.939910px;}
.y20_c00223{bottom:257.159897px;}
.y1f_c00223{bottom:289.559884px;}
.y1e_c00223{bottom:321.959871px;}
.y1d_c00223{bottom:354.179858px;}
.y1c_c00223{bottom:385.319846px;}
.y1b_c00223{bottom:417.539833px;}
.y1a_c00223{bottom:448.679821px;}
.y19_c00223{bottom:480.899808px;}
.y18_c00223{bottom:528.239789px;}
.y17_c00223{bottom:559.379776px;}
.y16_c00223{bottom:590.339764px;}
.y15_c00223{bottom:621.479751px;}
.y14_c00223{bottom:652.439739px;}
.y13_c00223{bottom:683.579727px;}
.y12_c00223{bottom:714.539714px;}
.y11_c00223{bottom:745.679702px;}
.y10_c00223{bottom:776.639689px;}
.yf_c00223{bottom:807.779677px;}
.ye_c00223{bottom:838.739665px;}
.yd_c00223{bottom:869.879652px;}
.yc_c00223{bottom:900.479640px;}
.yb_c00223{bottom:931.619627px;}
.ya_c00223{bottom:962.939615px;}
.y9_c00223{bottom:994.079602px;}
.y8_c00223{bottom:1025.039590px;}
.y7_c00223{bottom:1055.819578px;}
.y6_c00223{bottom:1086.779565px;}
.y5_c00223{bottom:1117.919553px;}
.y2_c00223{bottom:1157.159537px;}
.y1_c00223{bottom:1196.039522px;}
.h2_c00223{height:54.628572px;}
.h1_c00223{height:58.651148px;}
.h4_c00223{height:70.664034px;}
.h3_c00223{height:72.562471px;}
.h5_c00223{height:75.093720px;}
.h0_c00223{height:1263.000000px;}
.w0_c00223{width:892.500000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:127.619949px;}
.x3_c00223{left:148.860001px;}
.x4_c00223{left:154.619749px;}
.x5_c00223{left:181.619879px;}
.x2_c00223{left:433.979514px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls4_c00223{letter-spacing:0.000000pt;}
.ls3_c00223{letter-spacing:0.009440pt;}
.ls0_c00223{letter-spacing:0.017387pt;}
.ls2_c00223{letter-spacing:0.018917pt;}
.ls1_c00223{letter-spacing:48.807447pt;}
.ws0_c00223{word-spacing:0.000000pt;}
._6_c00223{margin-left:-3.147926pt;}
._2_c00223{margin-left:-1.999121pt;}
._1_c00223{margin-left:-0.982555pt;}
._0_c00223{width:1.062723pt;}
._5_c00223{width:2.675068pt;}
._8_c00223{width:4.466042pt;}
._7_c00223{width:5.834713pt;}
._a_c00223{width:13.949846pt;}
._d_c00223{width:18.293754pt;}
._4_c00223{width:19.658846pt;}
._b_c00223{width:21.398116pt;}
._c_c00223{width:22.333883pt;}
._9_c00223{width:25.448251pt;}
._3_c00223{width:172.911291pt;}
.fs0_c00223{font-size:53.119979pt;}
.fs1_c00223{font-size:58.879976pt;}
.fs2_c00223{font-size:63.999974pt;}
.y0_c00223{bottom:0.000000pt;}
.y4_c00223{bottom:67.466640pt;}
.y3_c00223{bottom:101.386626pt;}
.y23_c00223{bottom:142.346610pt;}
.y22_c00223{bottom:171.146598pt;}
.y21_c00223{bottom:199.946587pt;}
.y20_c00223{bottom:228.586575pt;}
.y1f_c00223{bottom:257.386564pt;}
.y1e_c00223{bottom:286.186552pt;}
.y1d_c00223{bottom:314.826541pt;}
.y1c_c00223{bottom:342.506530pt;}
.y1b_c00223{bottom:371.146518pt;}
.y1a_c00223{bottom:398.826507pt;}
.y19_c00223{bottom:427.466496pt;}
.y18_c00223{bottom:469.546479pt;}
.y17_c00223{bottom:497.226468pt;}
.y16_c00223{bottom:524.746457pt;}
.y15_c00223{bottom:552.426446pt;}
.y14_c00223{bottom:579.946435pt;}
.y13_c00223{bottom:607.626424pt;}
.y12_c00223{bottom:635.146413pt;}
.y11_c00223{bottom:662.826402pt;}
.y10_c00223{bottom:690.346391pt;}
.yf_c00223{bottom:718.026379pt;}
.ye_c00223{bottom:745.546368pt;}
.yd_c00223{bottom:773.226357pt;}
.yc_c00223{bottom:800.426346pt;}
.yb_c00223{bottom:828.106335pt;}
.ya_c00223{bottom:855.946324pt;}
.y9_c00223{bottom:883.626313pt;}
.y8_c00223{bottom:911.146302pt;}
.y7_c00223{bottom:938.506291pt;}
.y6_c00223{bottom:966.026280pt;}
.y5_c00223{bottom:993.706269pt;}
.y2_c00223{bottom:1028.586255pt;}
.y1_c00223{bottom:1063.146241pt;}
.h2_c00223{height:48.558731pt;}
.h1_c00223{height:52.134354pt;}
.h4_c00223{height:62.812475pt;}
.h3_c00223{height:64.499974pt;}
.h5_c00223{height:66.749973pt;}
.h0_c00223{height:1122.666667pt;}
.w0_c00223{width:793.333333pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:113.439955pt;}
.x3_c00223{left:132.320001pt;}
.x4_c00223{left:137.439777pt;}
.x5_c00223{left:161.439892pt;}
.x2_c00223{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3aea97d6fc03f9d9407841bd.woff2')format("woff");}.ff1_c00224{font-family:ff1_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:ff2_c00224;src:url('chunks/assets/font_e93bd31560f9ffcdfba87114.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.239258;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_67e835313337ffeaa146f7fb.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_d41cdf2f70f2ccf5fb9fbaa9.woff2')format("woff");}.ff6_c00224{font-family:ff6_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls5_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.019560px;}
.ls4_c00224{letter-spacing:0.021238px;}
.ls2_c00224{letter-spacing:0.021282px;}
.ls3_c00224{letter-spacing:34.015846px;}
.ls1_c00224{letter-spacing:54.908378px;}
.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;}
}
.ws1_c00224{word-spacing:-18.021231px;}
.ws0_c00224{word-spacing:-17.999993px;}
.ws2_c00224{word-spacing:0.000000px;}
._1_c00224{margin-left:-1.105374px;}
._0_c00224{width:1.478392px;}
._6_c00224{width:2.879596px;}
._7_c00224{width:4.017829px;}
._8_c00224{width:5.177697px;}
._2_c00224{width:6.715387px;}
._3_c00224{width:7.780835px;}
._4_c00224{width:24.207520px;}
._5_c00224{width:25.433402px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs0_c00224{font-size:59.759976px;}
.fs1_c00224{font-size:66.239974px;}
.fs2_c00224{font-size:71.999971px;}
.y0_c00224{bottom:0.000000px;}
.y4_c00224{bottom:75.900270px;}
.y3_c00224{bottom:114.060254px;}
.y24_c00224{bottom:140.879944px;}
.y23_c00224{bottom:172.019931px;}
.y22_c00224{bottom:202.979919px;}
.y21_c00224{bottom:234.119906px;}
.y20_c00224{bottom:265.079894px;}
.y1f_c00224{bottom:296.219882px;}
.y1e_c00224{bottom:327.179869px;}
.y1d_c00224{bottom:358.319857px;}
.y1c_c00224{bottom:389.279844px;}
.y1b_c00224{bottom:420.419832px;}
.y1a_c00224{bottom:451.379819px;}
.y19_c00224{bottom:482.519807px;}
.y18_c00224{bottom:513.479795px;}
.y17_c00224{bottom:544.259782px;}
.y16_c00224{bottom:590.699764px;}
.y15_c00224{bottom:621.659751px;}
.y14_c00224{bottom:654.059738px;}
.y13_c00224{bottom:686.459725px;}
.y12_c00224{bottom:718.679713px;}
.y11_c00224{bottom:751.079700px;}
.y10_c00224{bottom:782.039687px;}
.yf_c00224{bottom:814.439674px;}
.ye_c00224{bottom:846.839661px;}
.yd_c00224{bottom:879.059648px;}
.yc_c00224{bottom:910.199636px;}
.yb_c00224{bottom:942.599623px;}
.ya_c00224{bottom:974.819610px;}
.y9_c00224{bottom:1007.219597px;}
.y8_c00224{bottom:1039.439584px;}
.y7_c00224{bottom:1070.579572px;}
.y6_c00224{bottom:1102.979559px;}
.y5_c00224{bottom:1135.199546px;}
.y2_c00224{bottom:1176.059530px;}
.y1_c00224{bottom:1196.219522px;}
.h2_c00224{height:54.628572px;}
.h1_c00224{height:58.651148px;}
.h4_c00224{height:70.664034px;}
.h5_c00224{height:72.562471px;}
.h3_c00224{height:75.093720px;}
.h0_c00224{height:1263.000000px;}
.w0_c00224{width:892.500000px;}
.x0_c00224{left:0.000000px;}
.x5_c00224{left:127.620262px;}
.x6_c00224{left:154.619938px;}
.x1_c00224{left:181.799927px;}
.x2_c00224{left:329.039408px;}
.x4_c00224{left:433.979826px;}
.x3_c00224{left:765.359694px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls5_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.017387pt;}
.ls4_c00224{letter-spacing:0.018878pt;}
.ls2_c00224{letter-spacing:0.018917pt;}
.ls3_c00224{letter-spacing:30.236308pt;}
.ls1_c00224{letter-spacing:48.807447pt;}
.ws1_c00224{word-spacing:-16.018872pt;}
.ws0_c00224{word-spacing:-15.999994pt;}
.ws2_c00224{word-spacing:0.000000pt;}
._1_c00224{margin-left:-0.982555pt;}
._0_c00224{width:1.314126pt;}
._6_c00224{width:2.559641pt;}
._7_c00224{width:3.571403pt;}
._8_c00224{width:4.602398pt;}
._2_c00224{width:5.969233pt;}
._3_c00224{width:6.916298pt;}
._4_c00224{width:21.517796pt;}
._5_c00224{width:22.607469pt;}
.fs0_c00224{font-size:53.119979pt;}
.fs1_c00224{font-size:58.879976pt;}
.fs2_c00224{font-size:63.999974pt;}
.y0_c00224{bottom:0.000000pt;}
.y4_c00224{bottom:67.466906pt;}
.y3_c00224{bottom:101.386893pt;}
.y24_c00224{bottom:125.226617pt;}
.y23_c00224{bottom:152.906606pt;}
.y22_c00224{bottom:180.426594pt;}
.y21_c00224{bottom:208.106583pt;}
.y20_c00224{bottom:235.626572pt;}
.y1f_c00224{bottom:263.306561pt;}
.y1e_c00224{bottom:290.826550pt;}
.y1d_c00224{bottom:318.506539pt;}
.y1c_c00224{bottom:346.026528pt;}
.y1b_c00224{bottom:373.706517pt;}
.y1a_c00224{bottom:401.226506pt;}
.y19_c00224{bottom:428.906495pt;}
.y18_c00224{bottom:456.426484pt;}
.y17_c00224{bottom:483.786473pt;}
.y16_c00224{bottom:525.066457pt;}
.y15_c00224{bottom:552.586446pt;}
.y14_c00224{bottom:581.386434pt;}
.y13_c00224{bottom:610.186423pt;}
.y12_c00224{bottom:638.826411pt;}
.y11_c00224{bottom:667.626400pt;}
.y10_c00224{bottom:695.146389pt;}
.yf_c00224{bottom:723.946377pt;}
.ye_c00224{bottom:752.746366pt;}
.yd_c00224{bottom:781.386354pt;}
.yc_c00224{bottom:809.066343pt;}
.yb_c00224{bottom:837.866332pt;}
.ya_c00224{bottom:866.506320pt;}
.y9_c00224{bottom:895.306309pt;}
.y8_c00224{bottom:923.946297pt;}
.y7_c00224{bottom:951.626286pt;}
.y6_c00224{bottom:980.426274pt;}
.y5_c00224{bottom:1009.066263pt;}
.y2_c00224{bottom:1045.386249pt;}
.y1_c00224{bottom:1063.306241pt;}
.h2_c00224{height:48.558731pt;}
.h1_c00224{height:52.134354pt;}
.h4_c00224{height:62.812475pt;}
.h5_c00224{height:64.499974pt;}
.h3_c00224{height:66.749973pt;}
.h0_c00224{height:1122.666667pt;}
.w0_c00224{width:793.333333pt;}
.x0_c00224{left:0.000000pt;}
.x5_c00224{left:113.440233pt;}
.x6_c00224{left:137.439945pt;}
.x1_c00224{left:161.599935pt;}
.x2_c00224{left:292.479474pt;}
.x4_c00224{left:385.759846pt;}
.x3_c00224{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a765d5113c42761293bdcc04.woff2')format("woff");}.ff1_c00225{font-family:ff1_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:ff2_c00225;src:url('chunks/assets/font_376a8e43d74d542497db30db.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_e84ee5adf082b25243e69b33.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.311035;font-style:normal;font-weight:normal;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_e3d9b907fc1645fadfb4aad8.woff2')format("woff");}.ff5_c00225{font-family:ff5_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;}
.m0_c00225{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls2_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:0.021238px;}
.ls1_c00225{letter-spacing:34.015846px;}
.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;}
}
.ws0_c00225{word-spacing:-18.021231px;}
.ws1_c00225{word-spacing:-17.999993px;}
.ws2_c00225{word-spacing:0.000000px;}
._7_c00225{margin-left:-2.139990px;}
._1_c00225{margin-left:-1.105374px;}
._0_c00225{width:1.195563px;}
._4_c00225{width:2.362392px;}
._5_c00225{width:8.825801px;}
._6_c00225{width:10.068237px;}
._3_c00225{width:25.012817px;}
._2_c00225{width:26.055749px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs0_c00225{font-size:59.759976px;}
.fs1_c00225{font-size:66.239974px;}
.fs2_c00225{font-size:71.999971px;}
.y0_c00225{bottom:0.000000px;}
.y4_c00225{bottom:75.899970px;}
.y3_c00225{bottom:114.059954px;}
.y22_c00225{bottom:144.299942px;}
.y21_c00225{bottom:172.739931px;}
.y20_c00225{bottom:206.939917px;}
.y1f_c00225{bottom:242.759903px;}
.y1e_c00225{bottom:278.399889px;}
.y1d_c00225{bottom:314.039874px;}
.y1c_c00225{bottom:349.859860px;}
.y1b_c00225{bottom:385.499846px;}
.y1a_c00225{bottom:421.139832px;}
.y19_c00225{bottom:467.219813px;}
.y18_c00225{bottom:498.359801px;}
.y17_c00225{bottom:529.319788px;}
.y16_c00225{bottom:560.099776px;}
.y15_c00225{bottom:606.359757px;}
.y14_c00225{bottom:637.499745px;}
.y13_c00225{bottom:668.099733px;}
.y12_c00225{bottom:699.239720px;}
.y11_c00225{bottom:745.679702px;}
.y10_c00225{bottom:776.639689px;}
.yf_c00225{bottom:807.779677px;}
.ye_c00225{bottom:838.739665px;}
.yd_c00225{bottom:869.879652px;}
.yc_c00225{bottom:900.839640px;}
.yb_c00225{bottom:931.979627px;}
.ya_c00225{bottom:962.939615px;}
.y9_c00225{bottom:994.079602px;}
.y8_c00225{bottom:1025.039590px;}
.y7_c00225{bottom:1056.179578px;}
.y6_c00225{bottom:1087.139565px;}
.y5_c00225{bottom:1118.279553px;}
.y2_c00225{bottom:1157.159537px;}
.y1_c00225{bottom:1196.039522px;}
.h2_c00225{height:54.628572px;}
.h1_c00225{height:58.651148px;}
.h6_c00225{height:65.010911px;}
.h5_c00225{height:70.664034px;}
.h4_c00225{height:72.562471px;}
.h3_c00225{height:75.093720px;}
.h0_c00225{height:1263.000000px;}
.w0_c00225{width:892.500000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:127.619949px;}
.x3_c00225{left:154.619938px;}
.x4_c00225{left:180.719928px;}
.x2_c00225{left:433.979514px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls2_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:0.018878pt;}
.ls1_c00225{letter-spacing:30.236308pt;}
.ws0_c00225{word-spacing:-16.018872pt;}
.ws1_c00225{word-spacing:-15.999994pt;}
.ws2_c00225{word-spacing:0.000000pt;}
._7_c00225{margin-left:-1.902214pt;}
._1_c00225{margin-left:-0.982555pt;}
._0_c00225{width:1.062723pt;}
._4_c00225{width:2.099904pt;}
._5_c00225{width:7.845157pt;}
._6_c00225{width:8.949544pt;}
._3_c00225{width:22.233615pt;}
._2_c00225{width:23.160666pt;}
.fs0_c00225{font-size:53.119979pt;}
.fs1_c00225{font-size:58.879976pt;}
.fs2_c00225{font-size:63.999974pt;}
.y0_c00225{bottom:0.000000pt;}
.y4_c00225{bottom:67.466640pt;}
.y3_c00225{bottom:101.386626pt;}
.y22_c00225{bottom:128.266615pt;}
.y21_c00225{bottom:153.546605pt;}
.y20_c00225{bottom:183.946593pt;}
.y1f_c00225{bottom:215.786580pt;}
.y1e_c00225{bottom:247.466568pt;}
.y1d_c00225{bottom:279.146555pt;}
.y1c_c00225{bottom:310.986542pt;}
.y1b_c00225{bottom:342.666530pt;}
.y1a_c00225{bottom:374.346517pt;}
.y19_c00225{bottom:415.306501pt;}
.y18_c00225{bottom:442.986489pt;}
.y17_c00225{bottom:470.506478pt;}
.y16_c00225{bottom:497.866468pt;}
.y15_c00225{bottom:538.986451pt;}
.y14_c00225{bottom:566.666440pt;}
.y13_c00225{bottom:593.866429pt;}
.y12_c00225{bottom:621.546418pt;}
.y11_c00225{bottom:662.826402pt;}
.y10_c00225{bottom:690.346391pt;}
.yf_c00225{bottom:718.026379pt;}
.ye_c00225{bottom:745.546368pt;}
.yd_c00225{bottom:773.226357pt;}
.yc_c00225{bottom:800.746346pt;}
.yb_c00225{bottom:828.426335pt;}
.ya_c00225{bottom:855.946324pt;}
.y9_c00225{bottom:883.626313pt;}
.y8_c00225{bottom:911.146302pt;}
.y7_c00225{bottom:938.826291pt;}
.y6_c00225{bottom:966.346280pt;}
.y5_c00225{bottom:994.026269pt;}
.y2_c00225{bottom:1028.586255pt;}
.y1_c00225{bottom:1063.146241pt;}
.h2_c00225{height:48.558731pt;}
.h1_c00225{height:52.134354pt;}
.h6_c00225{height:57.787477pt;}
.h5_c00225{height:62.812475pt;}
.h4_c00225{height:64.499974pt;}
.h3_c00225{height:66.749973pt;}
.h0_c00225{height:1122.666667pt;}
.w0_c00225{width:793.333333pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:113.439955pt;}
.x3_c00225{left:137.439945pt;}
.x4_c00225{left:160.639936pt;}
.x2_c00225{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a45d82fd901523c086cdb85.woff2')format("woff");}.ff1_c00226{font-family:ff1_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:ff2_c00226;src:url('chunks/assets/font_71b70e3f422047315661effa.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_b9fad13c20ce4a2cdb5f36dd.woff2')format("woff");}.ff3_c00226{font-family:ff3_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;}
.m0_c00226{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00226{word-spacing:0.000000px;}
._1_c00226{margin-left:-1.105374px;}
._0_c00226{width:1.478392px;}
._f_c00226{width:2.530984px;}
._e_c00226{width:3.538303px;}
._a_c00226{width:5.028813px;}
._4_c00226{width:6.065743px;}
._5_c00226{width:7.409853px;}
._9_c00226{width:8.459553px;}
._8_c00226{width:10.130841px;}
._10_c00226{width:12.031047px;}
._b_c00226{width:13.742428px;}
._c_c00226{width:14.798246px;}
._d_c00226{width:15.853190px;}
._7_c00226{width:25.037764px;}
._2_c00226{width:26.237622px;}
._3_c00226{width:27.421307px;}
._6_c00226{width:29.523268px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs0_c00226{font-size:59.759976px;}
.fs1_c00226{font-size:66.239974px;}
.fs2_c00226{font-size:71.999971px;}
.y0_c00226{bottom:0.000000px;}
.y4_c00226{bottom:75.900270px;}
.y3_c00226{bottom:114.060254px;}
.y21_c00226{bottom:161.759935px;}
.y20_c00226{bottom:207.839917px;}
.y1f_c00226{bottom:254.279898px;}
.y1e_c00226{bottom:285.419886px;}
.y1d_c00226{bottom:316.379873px;}
.y1c_c00226{bottom:347.519861px;}
.y1b_c00226{bottom:378.479849px;}
.y1a_c00226{bottom:424.199830px;}
.y19_c00226{bottom:470.639812px;}
.y18_c00226{bottom:516.539793px;}
.y17_c00226{bottom:547.679781px;}
.y16_c00226{bottom:578.639769px;}
.y15_c00226{bottom:609.779756px;}
.y14_c00226{bottom:640.739744px;}
.y13_c00226{bottom:671.879731px;}
.y12_c00226{bottom:702.839719px;}
.y11_c00226{bottom:733.979706px;}
.y10_c00226{bottom:764.939694px;}
.yf_c00226{bottom:796.079682px;}
.ye_c00226{bottom:842.159663px;}
.yd_c00226{bottom:873.119651px;}
.yc_c00226{bottom:918.839632px;}
.yb_c00226{bottom:949.799620px;}
.ya_c00226{bottom:980.939608px;}
.y9_c00226{bottom:1011.899595px;}
.y8_c00226{bottom:1043.399583px;}
.y7_c00226{bottom:1074.359570px;}
.y6_c00226{bottom:1105.499558px;}
.y5_c00226{bottom:1136.099546px;}
.y2_c00226{bottom:1176.059530px;}
.y1_c00226{bottom:1196.219522px;}
.h2_c00226{height:54.628572px;}
.h1_c00226{height:58.651148px;}
.h4_c00226{height:70.664034px;}
.h3_c00226{height:72.562471px;}
.h0_c00226{height:1263.000000px;}
.w0_c00226{width:892.500000px;}
.x0_c00226{left:0.000000px;}
.x5_c00226{left:127.620262px;}
.x6_c00226{left:180.719930px;}
.x1_c00226{left:181.799927px;}
.x2_c00226{left:329.039408px;}
.x4_c00226{left:433.979826px;}
.x3_c00226{left:765.359694px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.000000pt;}
._1_c00226{margin-left:-0.982555pt;}
._0_c00226{width:1.314126pt;}
._f_c00226{width:2.249763pt;}
._e_c00226{width:3.145158pt;}
._a_c00226{width:4.470056pt;}
._4_c00226{width:5.391771pt;}
._5_c00226{width:6.586536pt;}
._9_c00226{width:7.519603pt;}
._8_c00226{width:9.005192pt;}
._10_c00226{width:10.694264pt;}
._b_c00226{width:12.215492pt;}
._c_c00226{width:13.153997pt;}
._d_c00226{width:14.091725pt;}
._7_c00226{width:22.255790pt;}
._2_c00226{width:23.322331pt;}
._3_c00226{width:24.374495pt;}
._6_c00226{width:26.242905pt;}
.fs0_c00226{font-size:53.119979pt;}
.fs1_c00226{font-size:58.879976pt;}
.fs2_c00226{font-size:63.999974pt;}
.y0_c00226{bottom:0.000000pt;}
.y4_c00226{bottom:67.466906pt;}
.y3_c00226{bottom:101.386893pt;}
.y21_c00226{bottom:143.786609pt;}
.y20_c00226{bottom:184.746593pt;}
.y1f_c00226{bottom:226.026576pt;}
.y1e_c00226{bottom:253.706565pt;}
.y1d_c00226{bottom:281.226554pt;}
.y1c_c00226{bottom:308.906543pt;}
.y1b_c00226{bottom:336.426532pt;}
.y1a_c00226{bottom:377.066516pt;}
.y19_c00226{bottom:418.346499pt;}
.y18_c00226{bottom:459.146483pt;}
.y17_c00226{bottom:486.826472pt;}
.y16_c00226{bottom:514.346461pt;}
.y15_c00226{bottom:542.026450pt;}
.y14_c00226{bottom:569.546439pt;}
.y13_c00226{bottom:597.226428pt;}
.y12_c00226{bottom:624.746417pt;}
.y11_c00226{bottom:652.426406pt;}
.y10_c00226{bottom:679.946395pt;}
.yf_c00226{bottom:707.626384pt;}
.ye_c00226{bottom:748.586367pt;}
.yd_c00226{bottom:776.106356pt;}
.yc_c00226{bottom:816.746340pt;}
.yb_c00226{bottom:844.266329pt;}
.ya_c00226{bottom:871.946318pt;}
.y9_c00226{bottom:899.466307pt;}
.y8_c00226{bottom:927.466296pt;}
.y7_c00226{bottom:954.986285pt;}
.y6_c00226{bottom:982.666274pt;}
.y5_c00226{bottom:1009.866263pt;}
.y2_c00226{bottom:1045.386249pt;}
.y1_c00226{bottom:1063.306241pt;}
.h2_c00226{height:48.558731pt;}
.h1_c00226{height:52.134354pt;}
.h4_c00226{height:62.812475pt;}
.h3_c00226{height:64.499974pt;}
.h0_c00226{height:1122.666667pt;}
.w0_c00226{width:793.333333pt;}
.x0_c00226{left:0.000000pt;}
.x5_c00226{left:113.440233pt;}
.x6_c00226{left:160.639938pt;}
.x1_c00226{left:161.599935pt;}
.x2_c00226{left:292.479474pt;}
.x4_c00226{left:385.759846pt;}
.x3_c00226{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00227{font-family:ff1_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:ff2_c00227;src:url('chunks/assets/font_e2ada0b70b1ce27019249ed8.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_c500848d014b0446de22aee5.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:1.311035;font-style:normal;font-weight:normal;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_e51948465bf5ecf93a0801d7.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_829a4c5024d29cb896d4c39d.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1_c00227{vertical-align:-10.079996px;}
.v0_c00227{vertical-align:0.000000px;}
.v2_c00227{vertical-align:10.079996px;}
.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:-15.011994px;}
.ws1_c00227{word-spacing:0.000000px;}
._1_c00227{margin-left:-1.105374px;}
._0_c00227{width:1.195563px;}
._7_c00227{width:45.015582px;}
._a_c00227{width:52.219707px;}
._5_c00227{width:67.348369px;}
._4_c00227{width:199.280127px;}
._1a_c00227{width:214.175452px;}
._e_c00227{width:249.633041px;}
._16_c00227{width:258.861428px;}
._14_c00227{width:275.545467px;}
._13_c00227{width:276.903030px;}
._9_c00227{width:279.873029px;}
._10_c00227{width:294.723023px;}
._12_c00227{width:306.927018px;}
._b_c00227{width:333.765008px;}
._11_c00227{width:408.824977px;}
._f_c00227{width:423.836971px;}
._1b_c00227{width:464.707392px;}
._d_c00227{width:474.920951px;}
._6_c00227{width:540.908925px;}
._19_c00227{width:750.806841px;}
._18_c00227{width:753.938839px;}
._8_c00227{width:777.968830px;}
._17_c00227{width:830.618809px;}
._c_c00227{width:864.962795px;}
._15_c00227{width:1056.932718px;}
._2_c00227{width:1227.742993px;}
._3_c00227{width:1341.944604px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs3_c00227{font-size:53.999978px;}
.fs0_c00227{font-size:59.759976px;}
.fs1_c00227{font-size:66.239974px;}
.fs2_c00227{font-size:71.999971px;}
.y0_c00227{bottom:0.000000px;}
.y10_c00227{bottom:2.879028px;}
.y12_c00227{bottom:2.879041px;}
.y15_c00227{bottom:2.879054px;}
.y18_c00227{bottom:2.879067px;}
.y1e_c00227{bottom:2.879080px;}
.y1b_c00227{bottom:2.879081px;}
.y21_c00227{bottom:2.879096px;}
.y28_c00227{bottom:2.879111px;}
.y25_c00227{bottom:2.879112px;}
.y2b_c00227{bottom:2.879127px;}
.y2f_c00227{bottom:2.879141px;}
.y32_c00227{bottom:2.879154px;}
.y35_c00227{bottom:2.879167px;}
.y3b_c00227{bottom:2.879180px;}
.y38_c00227{bottom:2.879181px;}
.y3e_c00227{bottom:2.879195px;}
.y41_c00227{bottom:2.879209px;}
.y45_c00227{bottom:2.879224px;}
.y48_c00227{bottom:2.879238px;}
.y4c_c00227{bottom:2.879252px;}
.y4f_c00227{bottom:2.879265px;}
.y52_c00227{bottom:2.879278px;}
.y55_c00227{bottom:2.879291px;}
.y58_c00227{bottom:2.879305px;}
.y5f_c00227{bottom:2.879320px;}
.y5c_c00227{bottom:2.879321px;}
.y65_c00227{bottom:2.879695px;}
.y62_c00227{bottom:2.879696px;}
.yc_c00227{bottom:3.239001px;}
.ya_c00227{bottom:3.239014px;}
.y4_c00227{bottom:75.899970px;}
.y3_c00227{bottom:114.059954px;}
.y61_c00227{bottom:157.980240px;}
.y64_c00227{bottom:160.500240px;}
.y63_c00227{bottom:160.859936px;}
.y60_c00227{bottom:163.379935px;}
.y5b_c00227{bottom:195.780600px;}
.y5e_c00227{bottom:198.300600px;}
.y5d_c00227{bottom:198.659921px;}
.y5a_c00227{bottom:201.179920px;}
.y57_c00227{bottom:233.580600px;}
.y59_c00227{bottom:236.459905px;}
.y56_c00227{bottom:238.979904px;}
.y54_c00227{bottom:268.860600px;}
.y53_c00227{bottom:271.739891px;}
.y51_c00227{bottom:301.800600px;}
.y50_c00227{bottom:304.679878px;}
.y4e_c00227{bottom:334.560600px;}
.y4d_c00227{bottom:337.439865px;}
.y4b_c00227{bottom:367.500600px;}
.y4a_c00227{bottom:370.379852px;}
.y47_c00227{bottom:402.780600px;}
.y49_c00227{bottom:405.659838px;}
.y46_c00227{bottom:408.179837px;}
.y44_c00227{bottom:438.240600px;}
.y43_c00227{bottom:441.119824px;}
.y40_c00227{bottom:473.520600px;}
.y42_c00227{bottom:476.399809px;}
.y3f_c00227{bottom:478.919808px;}
.y3d_c00227{bottom:508.800600px;}
.y3c_c00227{bottom:511.679795px;}
.y37_c00227{bottom:544.080600px;}
.y3a_c00227{bottom:546.600600px;}
.y39_c00227{bottom:546.959781px;}
.y36_c00227{bottom:549.479780px;}
.y34_c00227{bottom:579.540600px;}
.y33_c00227{bottom:582.419767px;}
.y31_c00227{bottom:612.300600px;}
.y30_c00227{bottom:615.179754px;}
.y2e_c00227{bottom:645.240600px;}
.y2d_c00227{bottom:648.119741px;}
.y2a_c00227{bottom:680.520600px;}
.y2c_c00227{bottom:683.399727px;}
.y29_c00227{bottom:685.919726px;}
.y24_c00227{bottom:718.320600px;}
.y27_c00227{bottom:720.840600px;}
.y26_c00227{bottom:721.199712px;}
.y23_c00227{bottom:723.719711px;}
.y20_c00227{bottom:756.120600px;}
.y22_c00227{bottom:758.999696px;}
.y1f_c00227{bottom:761.519695px;}
.y1a_c00227{bottom:793.920600px;}
.y1d_c00227{bottom:796.440600px;}
.y1c_c00227{bottom:796.799681px;}
.y19_c00227{bottom:799.319680px;}
.y17_c00227{bottom:829.200600px;}
.y16_c00227{bottom:832.079667px;}
.y14_c00227{bottom:862.140600px;}
.y13_c00227{bottom:865.019654px;}
.y11_c00227{bottom:894.900600px;}
.ye_c00227{bottom:897.779641px;}
.yf_c00227{bottom:927.840600px;}
.yd_c00227{bottom:930.719628px;}
.y9_c00227{bottom:961.320600px;}
.y8_c00227{bottom:964.559614px;}
.yb_c00227{bottom:994.260600px;}
.y7_c00227{bottom:1037.999585px;}
.y6_c00227{bottom:1076.339569px;}
.y5_c00227{bottom:1117.919553px;}
.y2_c00227{bottom:1157.159537px;}
.y1_c00227{bottom:1196.039522px;}
.h7_c00227{height:14.940000px;}
.h6_c00227{height:15.480000px;}
.h5_c00227{height:15.840000px;}
.h2_c00227{height:54.628572px;}
.h4_c00227{height:56.320290px;}
.h1_c00227{height:58.651148px;}
.h8_c00227{height:66.400286px;}
.h3_c00227{height:72.562471px;}
.h0_c00227{height:1263.000000px;}
.w1_c00227{width:6.840000px;}
.w2_c00227{width:7.020000px;}
.w3_c00227{width:7.560000px;}
.w0_c00227{width:892.500000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:127.619949px;}
.x5_c00227{left:131.039948px;}
.x3_c00227{left:199.619920px;}
.x4_c00227{left:290.519884px;}
.x2_c00227{left:433.979514px;}
.x15_c00227{left:509.220000px;}
.xd_c00227{left:535.319786px;}
.x6_c00227{left:561.600000px;}
.x7_c00227{left:575.459770px;}
.xf_c00227{left:613.619755px;}
.x16_c00227{left:617.399753px;}
.x14_c00227{left:628.739749px;}
.xe_c00227{left:630.539748px;}
.x8_c00227{left:685.800000px;}
.x9_c00227{left:699.839720px;}
.x11_c00227{left:700.919720px;}
.x10_c00227{left:704.699718px;}
.xa_c00227{left:709.560000px;}
.x12_c00227{left:728.999708px;}
.xc_c00227{left:736.559705px;}
.xb_c00227{left:742.500000px;}
.x13_c00227{left:761.760000px;}
@media print{
.v1_c00227{vertical-align:-8.959996pt;}
.v0_c00227{vertical-align:0.000000pt;}
.v2_c00227{vertical-align:8.959996pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:-13.343995pt;}
.ws1_c00227{word-spacing:0.000000pt;}
._1_c00227{margin-left:-0.982555pt;}
._0_c00227{width:1.062723pt;}
._7_c00227{width:40.013850pt;}
._a_c00227{width:46.417517pt;}
._5_c00227{width:59.865217pt;}
._4_c00227{width:177.137890pt;}
._1a_c00227{width:190.378179pt;}
._e_c00227{width:221.896037pt;}
._16_c00227{width:230.099047pt;}
._14_c00227{width:244.929304pt;}
._13_c00227{width:246.136027pt;}
._9_c00227{width:248.776026pt;}
._10_c00227{width:261.976021pt;}
._12_c00227{width:272.824016pt;}
._b_c00227{width:296.680007pt;}
._11_c00227{width:363.399980pt;}
._f_c00227{width:376.743975pt;}
._1b_c00227{width:413.073237pt;}
._d_c00227{width:422.151956pt;}
._6_c00227{width:480.807933pt;}
._19_c00227{width:667.383858pt;}
._18_c00227{width:670.167857pt;}
._8_c00227{width:691.527849pt;}
._17_c00227{width:738.327830pt;}
._c_c00227{width:768.855818pt;}
._15_c00227{width:939.495750pt;}
._2_c00227{width:1091.327104pt;}
._3_c00227{width:1192.839648pt;}
.fs3_c00227{font-size:47.999981pt;}
.fs0_c00227{font-size:53.119979pt;}
.fs1_c00227{font-size:58.879976pt;}
.fs2_c00227{font-size:63.999974pt;}
.y0_c00227{bottom:0.000000pt;}
.y10_c00227{bottom:2.559136pt;}
.y12_c00227{bottom:2.559147pt;}
.y15_c00227{bottom:2.559159pt;}
.y18_c00227{bottom:2.559171pt;}
.y1e_c00227{bottom:2.559182pt;}
.y1b_c00227{bottom:2.559183pt;}
.y21_c00227{bottom:2.559197pt;}
.y28_c00227{bottom:2.559209pt;}
.y25_c00227{bottom:2.559210pt;}
.y2b_c00227{bottom:2.559224pt;}
.y2f_c00227{bottom:2.559236pt;}
.y32_c00227{bottom:2.559248pt;}
.y35_c00227{bottom:2.559260pt;}
.y3b_c00227{bottom:2.559271pt;}
.y38_c00227{bottom:2.559272pt;}
.y3e_c00227{bottom:2.559285pt;}
.y41_c00227{bottom:2.559297pt;}
.y45_c00227{bottom:2.559310pt;}
.y48_c00227{bottom:2.559322pt;}
.y4c_c00227{bottom:2.559335pt;}
.y4f_c00227{bottom:2.559347pt;}
.y52_c00227{bottom:2.559358pt;}
.y55_c00227{bottom:2.559370pt;}
.y58_c00227{bottom:2.559383pt;}
.y5f_c00227{bottom:2.559395pt;}
.y5c_c00227{bottom:2.559396pt;}
.y65_c00227{bottom:2.559729pt;}
.y62_c00227{bottom:2.559729pt;}
.yc_c00227{bottom:2.879112pt;}
.ya_c00227{bottom:2.879124pt;}
.y4_c00227{bottom:67.466640pt;}
.y3_c00227{bottom:101.386626pt;}
.y61_c00227{bottom:140.426880pt;}
.y64_c00227{bottom:142.666880pt;}
.y63_c00227{bottom:142.986609pt;}
.y60_c00227{bottom:145.226609pt;}
.y5b_c00227{bottom:174.027200pt;}
.y5e_c00227{bottom:176.267200pt;}
.y5d_c00227{bottom:176.586596pt;}
.y5a_c00227{bottom:178.826595pt;}
.y57_c00227{bottom:207.627200pt;}
.y59_c00227{bottom:210.186583pt;}
.y56_c00227{bottom:212.426582pt;}
.y54_c00227{bottom:238.987200pt;}
.y53_c00227{bottom:241.546570pt;}
.y51_c00227{bottom:268.267200pt;}
.y50_c00227{bottom:270.826558pt;}
.y4e_c00227{bottom:297.387200pt;}
.y4d_c00227{bottom:299.946547pt;}
.y4b_c00227{bottom:326.667200pt;}
.y4a_c00227{bottom:329.226535pt;}
.y47_c00227{bottom:358.027200pt;}
.y49_c00227{bottom:360.586522pt;}
.y46_c00227{bottom:362.826522pt;}
.y44_c00227{bottom:389.547200pt;}
.y43_c00227{bottom:392.106510pt;}
.y40_c00227{bottom:420.907200pt;}
.y42_c00227{bottom:423.466497pt;}
.y3f_c00227{bottom:425.706496pt;}
.y3d_c00227{bottom:452.267200pt;}
.y3c_c00227{bottom:454.826485pt;}
.y37_c00227{bottom:483.627200pt;}
.y3a_c00227{bottom:485.867200pt;}
.y39_c00227{bottom:486.186472pt;}
.y36_c00227{bottom:488.426471pt;}
.y34_c00227{bottom:515.147200pt;}
.y33_c00227{bottom:517.706460pt;}
.y31_c00227{bottom:544.267200pt;}
.y30_c00227{bottom:546.826448pt;}
.y2e_c00227{bottom:573.547200pt;}
.y2d_c00227{bottom:576.106436pt;}
.y2a_c00227{bottom:604.907200pt;}
.y2c_c00227{bottom:607.466424pt;}
.y29_c00227{bottom:609.706423pt;}
.y24_c00227{bottom:638.507200pt;}
.y27_c00227{bottom:640.747200pt;}
.y26_c00227{bottom:641.066410pt;}
.y23_c00227{bottom:643.306409pt;}
.y20_c00227{bottom:672.107200pt;}
.y22_c00227{bottom:674.666397pt;}
.y1f_c00227{bottom:676.906396pt;}
.y1a_c00227{bottom:705.707200pt;}
.y1d_c00227{bottom:707.947200pt;}
.y1c_c00227{bottom:708.266383pt;}
.y19_c00227{bottom:710.506382pt;}
.y17_c00227{bottom:737.067200pt;}
.y16_c00227{bottom:739.626371pt;}
.y14_c00227{bottom:766.347200pt;}
.y13_c00227{bottom:768.906359pt;}
.y11_c00227{bottom:795.467200pt;}
.ye_c00227{bottom:798.026347pt;}
.yf_c00227{bottom:824.747200pt;}
.yd_c00227{bottom:827.306336pt;}
.y9_c00227{bottom:854.507200pt;}
.y8_c00227{bottom:857.386324pt;}
.yb_c00227{bottom:883.787200pt;}
.y7_c00227{bottom:922.666298pt;}
.y6_c00227{bottom:956.746284pt;}
.y5_c00227{bottom:993.706269pt;}
.y2_c00227{bottom:1028.586255pt;}
.y1_c00227{bottom:1063.146241pt;}
.h7_c00227{height:13.280000pt;}
.h6_c00227{height:13.760000pt;}
.h5_c00227{height:14.080000pt;}
.h2_c00227{height:48.558731pt;}
.h4_c00227{height:50.062480pt;}
.h1_c00227{height:52.134354pt;}
.h8_c00227{height:59.022476pt;}
.h3_c00227{height:64.499974pt;}
.h0_c00227{height:1122.666667pt;}
.w1_c00227{width:6.080000pt;}
.w2_c00227{width:6.240000pt;}
.w3_c00227{width:6.720000pt;}
.w0_c00227{width:793.333333pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:113.439955pt;}
.x5_c00227{left:116.479953pt;}
.x3_c00227{left:177.439929pt;}
.x4_c00227{left:258.239897pt;}
.x2_c00227{left:385.759568pt;}
.x15_c00227{left:452.640000pt;}
.xd_c00227{left:475.839810pt;}
.x6_c00227{left:499.200000pt;}
.x7_c00227{left:511.519795pt;}
.xf_c00227{left:545.439782pt;}
.x16_c00227{left:548.799780pt;}
.x14_c00227{left:558.879776pt;}
.xe_c00227{left:560.479776pt;}
.x8_c00227{left:609.600000pt;}
.x9_c00227{left:622.079751pt;}
.x11_c00227{left:623.039751pt;}
.x10_c00227{left:626.399749pt;}
.xa_c00227{left:630.720000pt;}
.x12_c00227{left:647.999741pt;}
.xc_c00227{left:654.719738pt;}
.xb_c00227{left:660.000000pt;}
.x13_c00227{left:677.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_d5cc239a797abfd9674f9579.woff2')format("woff");}.ff1_c00228{font-family:ff1_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:ff2_c00228;src:url('chunks/assets/font_a07d9096bdef70556d0061e1.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_5a00fb764b6be8542fca52af.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_1764166de4f7be128808292a.woff2')format("woff");}.ff4_c00228{font-family:ff4_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:ff5_c00228;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:0.696777;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4_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);}
.v2_c00228{vertical-align:-18.719993px;}
.v1_c00228{vertical-align:-9.359996px;}
.v3_c00228{vertical-align:-4.319998px;}
.v0_c00228{vertical-align:0.000000px;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.267188px;}
.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:-16.559993px;}
.ws2_c00228{word-spacing:-15.237422px;}
.ws1_c00228{word-spacing:-13.505755px;}
.ws6_c00228{word-spacing:0.000000px;}
.ws4_c00228{word-spacing:119.937922px;}
.ws5_c00228{word-spacing:133.617917px;}
.ws3_c00228{word-spacing:143.697913px;}
._1_c00228{margin-left:-1.105374px;}
._0_c00228{width:1.478392px;}
._5_c00228{width:2.593785px;}
._6_c00228{width:4.396946px;}
._8_c00228{width:7.704967px;}
._9_c00228{width:8.875657px;}
._a_c00228{width:11.349661px;}
._b_c00228{width:12.601709px;}
._c_c00228{width:13.649071px;}
._7_c00228{width:15.629659px;}
._4_c00228{width:67.348369px;}
._3_c00228{width:199.280127px;}
._2_c00228{width:1053.908719px;}
.fc1_c00228{color:rgb(37,64,97);}
.fc0_c00228{color:rgb(0,0,0);}
.fs2_c00228{font-size:53.999978px;}
.fs0_c00228{font-size:59.759976px;}
.fs1_c00228{font-size:66.239974px;}
.fs3_c00228{font-size:71.999971px;}
.y0_c00228{bottom:0.000000px;}
.y7_c00228{bottom:2.878945px;}
.y4_c00228{bottom:75.720270px;}
.y3_c00228{bottom:113.880254px;}
.y18_c00228{bottom:204.239918px;}
.y17_c00228{bottom:232.679907px;}
.y16_c00228{bottom:257.879897px;}
.y23_c00228{bottom:315.659874px;}
.y22_c00228{bottom:334.019866px;}
.y21_c00228{bottom:352.379859px;}
.y20_c00228{bottom:370.559852px;}
.y1f_c00228{bottom:388.919844px;}
.y19_c00228{bottom:407.819837px;}
.y1a_c00228{bottom:443.459823px;}
.y1b_c00228{bottom:479.099808px;}
.y1c_c00228{bottom:514.919794px;}
.y26_c00228{bottom:529.499788px;}
.y1d_c00228{bottom:550.559780px;}
.y25_c00228{bottom:553.799778px;}
.y24_c00228{bottom:573.599771px;}
.y1e_c00228{bottom:586.379765px;}
.y15_c00228{bottom:695.459722px;}
.y14_c00228{bottom:726.419709px;}
.y13_c00228{bottom:757.559697px;}
.y12_c00228{bottom:788.519685px;}
.y11_c00228{bottom:819.479672px;}
.y10_c00228{bottom:850.619660px;}
.yf_c00228{bottom:881.579647px;}
.ye_c00228{bottom:912.719635px;}
.yd_c00228{bottom:943.679623px;}
.yc_c00228{bottom:974.819610px;}
.yb_c00228{bottom:1005.779598px;}
.ya_c00228{bottom:1036.919585px;}
.y9_c00228{bottom:1067.879573px;}
.y8_c00228{bottom:1099.019560px;}
.y6_c00228{bottom:1135.020600px;}
.y5_c00228{bottom:1137.899545px;}
.y2_c00228{bottom:1175.879530px;}
.y1_c00228{bottom:1196.039522px;}
.h4_c00228{height:14.940000px;}
.h6_c00228{height:45.410607px;}
.h8_c00228{height:49.284472px;}
.h2_c00228{height:54.628572px;}
.h3_c00228{height:56.320290px;}
.h1_c00228{height:58.651148px;}
.h7_c00228{height:65.010911px;}
.h5_c00228{height:70.664034px;}
.h0_c00228{height:1263.000000px;}
.w1_c00228{width:6.840000px;}
.w0_c00228{width:892.500000px;}
.x0_c00228{left:0.000000px;}
.x5_c00228{left:127.800262px;}
.x6_c00228{left:131.219948px;}
.x10_c00228{left:135.899946px;}
.xb_c00228{left:137.700279px;}
.xf_c00228{left:143.459943px;}
.xe_c00228{left:151.019940px;}
.x9_c00228{left:180.899930px;}
.x1_c00228{left:181.979927px;}
.x12_c00228{left:193.859922px;}
.x11_c00228{left:207.899917px;}
.x13_c00228{left:209.699916px;}
.x25_c00228{left:219.239912px;}
.x15_c00228{left:282.779887px;}
.x17_c00228{left:291.599883px;}
.x14_c00228{left:296.819881px;}
.x16_c00228{left:298.619881px;}
.x26_c00228{left:311.039876px;}
.x2_c00228{left:329.219408px;}
.x19_c00228{left:366.299853px;}
.x1a_c00228{left:367.739853px;}
.x18_c00228{left:380.879848px;}
.x27_c00228{left:406.259837px;}
.xc_c00228{left:420.660054px;}
.x4_c00228{left:434.159826px;}
.x1d_c00228{left:458.999816px;}
.x1c_c00228{left:464.579814px;}
.x1b_c00228{left:470.519812px;}
.xd_c00228{left:472.499811px;}
.x1e_c00228{left:476.459809px;}
.x21_c00228{left:553.319779px;}
.x20_c00228{left:558.179777px;}
.x7_c00228{left:561.780000px;}
.x1f_c00228{left:569.339772px;}
.x8_c00228{left:613.799754px;}
.x23_c00228{left:633.239747px;}
.x22_c00228{left:649.259740px;}
.x24_c00228{left:654.119738px;}
.xa_c00228{left:759.959696px;}
.x3_c00228{left:765.539694px;}
@media print{
.v2_c00228{vertical-align:-16.639993pt;}
.v1_c00228{vertical-align:-8.319997pt;}
.v3_c00228{vertical-align:-3.839998pt;}
.v0_c00228{vertical-align:0.000000pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.237500pt;}
.ws0_c00228{word-spacing:-14.719994pt;}
.ws2_c00228{word-spacing:-13.544375pt;}
.ws1_c00228{word-spacing:-12.005115pt;}
.ws6_c00228{word-spacing:0.000000pt;}
.ws4_c00228{word-spacing:106.611487pt;}
.ws5_c00228{word-spacing:118.771482pt;}
.ws3_c00228{word-spacing:127.731478pt;}
._1_c00228{margin-left:-0.982555pt;}
._0_c00228{width:1.314126pt;}
._5_c00228{width:2.305587pt;}
._6_c00228{width:3.908397pt;}
._8_c00228{width:6.848859pt;}
._9_c00228{width:7.889473pt;}
._a_c00228{width:10.088588pt;}
._b_c00228{width:11.201519pt;}
._c_c00228{width:12.132507pt;}
._7_c00228{width:13.893030pt;}
._4_c00228{width:59.865217pt;}
._3_c00228{width:177.137890pt;}
._2_c00228{width:936.807751pt;}
.fs2_c00228{font-size:47.999981pt;}
.fs0_c00228{font-size:53.119979pt;}
.fs1_c00228{font-size:58.879976pt;}
.fs3_c00228{font-size:63.999974pt;}
.y0_c00228{bottom:0.000000pt;}
.y7_c00228{bottom:2.559062pt;}
.y4_c00228{bottom:67.306906pt;}
.y3_c00228{bottom:101.226893pt;}
.y18_c00228{bottom:181.546594pt;}
.y17_c00228{bottom:206.826584pt;}
.y16_c00228{bottom:229.226575pt;}
.y23_c00228{bottom:280.586554pt;}
.y22_c00228{bottom:296.906548pt;}
.y21_c00228{bottom:313.226541pt;}
.y20_c00228{bottom:329.386535pt;}
.y1f_c00228{bottom:345.706528pt;}
.y19_c00228{bottom:362.506522pt;}
.y1a_c00228{bottom:394.186509pt;}
.y1b_c00228{bottom:425.866496pt;}
.y1c_c00228{bottom:457.706484pt;}
.y26_c00228{bottom:470.666478pt;}
.y1d_c00228{bottom:489.386471pt;}
.y25_c00228{bottom:492.266470pt;}
.y24_c00228{bottom:509.866463pt;}
.y1e_c00228{bottom:521.226458pt;}
.y15_c00228{bottom:618.186419pt;}
.y14_c00228{bottom:645.706408pt;}
.y13_c00228{bottom:673.386397pt;}
.y12_c00228{bottom:700.906386pt;}
.y11_c00228{bottom:728.426375pt;}
.y10_c00228{bottom:756.106364pt;}
.yf_c00228{bottom:783.626353pt;}
.ye_c00228{bottom:811.306342pt;}
.yd_c00228{bottom:838.826331pt;}
.yc_c00228{bottom:866.506320pt;}
.yb_c00228{bottom:894.026309pt;}
.ya_c00228{bottom:921.706298pt;}
.y9_c00228{bottom:949.226287pt;}
.y8_c00228{bottom:976.906276pt;}
.y6_c00228{bottom:1008.907200pt;}
.y5_c00228{bottom:1011.466262pt;}
.y2_c00228{bottom:1045.226249pt;}
.y1_c00228{bottom:1063.146241pt;}
.h4_c00228{height:13.280000pt;}
.h6_c00228{height:40.364984pt;}
.h8_c00228{height:43.808420pt;}
.h2_c00228{height:48.558731pt;}
.h3_c00228{height:50.062480pt;}
.h1_c00228{height:52.134354pt;}
.h7_c00228{height:57.787477pt;}
.h5_c00228{height:62.812475pt;}
.h0_c00228{height:1122.666667pt;}
.w1_c00228{width:6.080000pt;}
.w0_c00228{width:793.333333pt;}
.x0_c00228{left:0.000000pt;}
.x5_c00228{left:113.600233pt;}
.x6_c00228{left:116.639953pt;}
.x10_c00228{left:120.799952pt;}
.xb_c00228{left:122.400248pt;}
.xf_c00228{left:127.519949pt;}
.xe_c00228{left:134.239946pt;}
.x9_c00228{left:160.799938pt;}
.x1_c00228{left:161.759935pt;}
.x12_c00228{left:172.319931pt;}
.x11_c00228{left:184.799926pt;}
.x13_c00228{left:186.399925pt;}
.x25_c00228{left:194.879922pt;}
.x15_c00228{left:251.359899pt;}
.x17_c00228{left:259.199896pt;}
.x14_c00228{left:263.839894pt;}
.x16_c00228{left:265.439894pt;}
.x26_c00228{left:276.479889pt;}
.x2_c00228{left:292.639474pt;}
.x19_c00228{left:325.599870pt;}
.x1a_c00228{left:326.879869pt;}
.x18_c00228{left:338.559865pt;}
.x27_c00228{left:361.119856pt;}
.xc_c00228{left:373.920048pt;}
.x4_c00228{left:385.919846pt;}
.x1d_c00228{left:407.999837pt;}
.x1c_c00228{left:412.959835pt;}
.x1b_c00228{left:418.239833pt;}
.xd_c00228{left:419.999832pt;}
.x1e_c00228{left:423.519831pt;}
.x21_c00228{left:491.839803pt;}
.x20_c00228{left:496.159802pt;}
.x7_c00228{left:499.360000pt;}
.x1f_c00228{left:506.079798pt;}
.x8_c00228{left:545.599782pt;}
.x23_c00228{left:562.879775pt;}
.x22_c00228{left:577.119769pt;}
.x24_c00228{left:581.439767pt;}
.xa_c00228{left:675.519730pt;}
.x3_c00228{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_915b9ede41385152e1f51d44.woff2')format("woff");}.ff1_c00229{font-family:ff1_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:ff2_c00229;src:url('chunks/assets/font_74fb978e24737038214f07a6.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_0053dea147bb612860ad16ea.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_2821e3f9dd84ecc57e20a051.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.v2_c00229{vertical-align:35.279986px;}
.v1_c00229{vertical-align:71.279971px;}
.ls1_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00229{word-spacing:-15.245389px;}
.ws0_c00229{word-spacing:-15.011994px;}
.ws2_c00229{word-spacing:0.000000px;}
._1_c00229{margin-left:-1.105374px;}
._0_c00229{width:1.195563px;}
._2_c00229{width:7.101543px;}
._3_c00229{width:10.206396px;}
._4_c00229{width:12.912113px;}
._5_c00229{width:14.710808px;}
._7_c00229{width:75.228717px;}
._f_c00229{width:78.799820px;}
._8_c00229{width:97.880551px;}
._a_c00229{width:114.817805px;}
._9_c00229{width:182.533941px;}
._c_c00229{width:374.634318px;}
._b_c00229{width:392.562310px;}
._12_c00229{width:603.871789px;}
._d_c00229{width:666.889764px;}
._10_c00229{width:714.949745px;}
._e_c00229{width:789.955715px;}
._6_c00229{width:946.855373px;}
._11_c00229{width:1096.851443px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs3_c00229{font-size:53.999978px;}
.fs0_c00229{font-size:59.759976px;}
.fs1_c00229{font-size:66.239974px;}
.fs2_c00229{font-size:71.999971px;}
.y0_c00229{bottom:0.000000px;}
.y10_c00229{bottom:2.879077px;}
.y15_c00229{bottom:2.879098px;}
.y1b_c00229{bottom:2.879121px;}
.y1e_c00229{bottom:2.879142px;}
.y21_c00229{bottom:2.879155px;}
.y24_c00229{bottom:2.879168px;}
.y2d_c00229{bottom:2.879260px;}
.y32_c00229{bottom:2.879281px;}
.y37_c00229{bottom:2.879301px;}
.y3b_c00229{bottom:2.879317px;}
.y3e_c00229{bottom:2.879691px;}
.y4_c00229{bottom:75.899970px;}
.y3_c00229{bottom:114.059954px;}
.y3d_c00229{bottom:170.580240px;}
.y3c_c00229{bottom:173.459931px;}
.y3a_c00229{bottom:203.520600px;}
.y39_c00229{bottom:206.399917px;}
.y35_c00229{bottom:239.159904px;}
.y36_c00229{bottom:245.280600px;}
.y38_c00229{bottom:248.159901px;}
.y34_c00229{bottom:256.979897px;}
.y30_c00229{bottom:289.919884px;}
.y31_c00229{bottom:295.860600px;}
.y33_c00229{bottom:298.739881px;}
.y2f_c00229{bottom:307.739877px;}
.y2b_c00229{bottom:340.499864px;}
.y2c_c00229{bottom:346.620600px;}
.y2e_c00229{bottom:349.499860px;}
.y2a_c00229{bottom:358.499857px;}
.y29_c00229{bottom:393.599843px;}
.y28_c00229{bottom:446.879821px;}
.y27_c00229{bottom:479.639808px;}
.y26_c00229{bottom:512.579795px;}
.y25_c00229{bottom:545.339782px;}
.y23_c00229{bottom:577.200600px;}
.y22_c00229{bottom:580.079768px;}
.y20_c00229{bottom:610.140600px;}
.y1f_c00229{bottom:613.019755px;}
.y1d_c00229{bottom:642.900600px;}
.y1c_c00229{bottom:645.779742px;}
.y19_c00229{bottom:678.719729px;}
.y1a_c00229{bottom:693.660600px;}
.y18_c00229{bottom:696.539721px;}
.y17_c00229{bottom:714.359714px;}
.y13_c00229{bottom:747.299701px;}
.y14_c00229{bottom:753.240600px;}
.y16_c00229{bottom:756.119698px;}
.y12_c00229{bottom:765.119694px;}
.ye_c00229{bottom:798.059681px;}
.yf_c00229{bottom:804.000600px;}
.y11_c00229{bottom:806.879677px;}
.yd_c00229{bottom:815.879674px;}
.yc_c00229{bottom:850.979660px;}
.yb_c00229{bottom:904.259638px;}
.ya_c00229{bottom:937.019625px;}
.y9_c00229{bottom:978.959608px;}
.y8_c00229{bottom:1010.099596px;}
.y7_c00229{bottom:1041.059584px;}
.y6_c00229{bottom:1087.139565px;}
.y5_c00229{bottom:1118.279553px;}
.y2_c00229{bottom:1157.159537px;}
.y1_c00229{bottom:1196.039522px;}
.h7_c00229{height:14.940000px;}
.h9_c00229{height:14.940360px;}
.h2_c00229{height:54.628572px;}
.h4_c00229{height:56.320290px;}
.h1_c00229{height:58.651148px;}
.h3_c00229{height:70.664034px;}
.h6_c00229{height:91.600276px;}
.h8_c00229{height:92.320276px;}
.h5_c00229{height:127.600261px;}
.h0_c00229{height:1263.000000px;}
.w3_c00229{width:3.240000px;}
.w2_c00229{width:6.840000px;}
.w1_c00229{width:7.020000px;}
.w0_c00229{width:892.500000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:127.619949px;}
.x4_c00229{left:134.459946px;}
.x3_c00229{left:180.719928px;}
.x7_c00229{left:211.139916px;}
.x2_c00229{left:433.979514px;}
.x8_c00229{left:449.820000px;}
.x13_c00229{left:502.559799px;}
.x9_c00229{left:510.119796px;}
.xa_c00229{left:536.400000px;}
.x5_c00229{left:575.279770px;}
.x10_c00229{left:601.739759px;}
.xb_c00229{left:609.299756px;}
.xc_c00229{left:635.580000px;}
.x12_c00229{left:639.360000px;}
.x6_c00229{left:659.159736px;}
.xf_c00229{left:701.099720px;}
.xd_c00229{left:708.659717px;}
.xe_c00229{left:734.940000px;}
.x11_c00229{left:738.720000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.v2_c00229{vertical-align:31.359987pt;}
.v1_c00229{vertical-align:63.359975pt;}
.ls1_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.207463pt;}
.ws1_c00229{word-spacing:-13.551457pt;}
.ws0_c00229{word-spacing:-13.343995pt;}
.ws2_c00229{word-spacing:0.000000pt;}
._1_c00229{margin-left:-0.982555pt;}
._0_c00229{width:1.062723pt;}
._2_c00229{width:6.312483pt;}
._3_c00229{width:9.072352pt;}
._4_c00229{width:11.477434pt;}
._5_c00229{width:13.076274pt;}
._7_c00229{width:66.869971pt;}
._f_c00229{width:70.044284pt;}
._8_c00229{width:87.004934pt;}
._a_c00229{width:102.060271pt;}
._9_c00229{width:162.252392pt;}
._c_c00229{width:333.008282pt;}
._b_c00229{width:348.944276pt;}
._12_c00229{width:536.774924pt;}
._d_c00229{width:592.790901pt;}
._10_c00229{width:635.510884pt;}
._e_c00229{width:702.182858pt;}
._6_c00229{width:841.649221pt;}
._11_c00229{width:974.979061pt;}
.fs3_c00229{font-size:47.999981pt;}
.fs0_c00229{font-size:53.119979pt;}
.fs1_c00229{font-size:58.879976pt;}
.fs2_c00229{font-size:63.999974pt;}
.y0_c00229{bottom:0.000000pt;}
.y10_c00229{bottom:2.559180pt;}
.y15_c00229{bottom:2.559198pt;}
.y1b_c00229{bottom:2.559219pt;}
.y1e_c00229{bottom:2.559237pt;}
.y21_c00229{bottom:2.559249pt;}
.y24_c00229{bottom:2.559260pt;}
.y2d_c00229{bottom:2.559342pt;}
.y32_c00229{bottom:2.559360pt;}
.y37_c00229{bottom:2.559378pt;}
.y3b_c00229{bottom:2.559393pt;}
.y3e_c00229{bottom:2.559725pt;}
.y4_c00229{bottom:67.466640pt;}
.y3_c00229{bottom:101.386626pt;}
.y3d_c00229{bottom:151.626880pt;}
.y3c_c00229{bottom:154.186605pt;}
.y3a_c00229{bottom:180.907200pt;}
.y39_c00229{bottom:183.466593pt;}
.y35_c00229{bottom:212.586582pt;}
.y36_c00229{bottom:218.027200pt;}
.y38_c00229{bottom:220.586578pt;}
.y34_c00229{bottom:228.426575pt;}
.y30_c00229{bottom:257.706564pt;}
.y31_c00229{bottom:262.987200pt;}
.y33_c00229{bottom:265.546560pt;}
.y2f_c00229{bottom:273.546557pt;}
.y2b_c00229{bottom:302.666546pt;}
.y2c_c00229{bottom:308.107200pt;}
.y2e_c00229{bottom:310.666542pt;}
.y2a_c00229{bottom:318.666539pt;}
.y29_c00229{bottom:349.866527pt;}
.y28_c00229{bottom:397.226508pt;}
.y27_c00229{bottom:426.346496pt;}
.y26_c00229{bottom:455.626484pt;}
.y25_c00229{bottom:484.746473pt;}
.y23_c00229{bottom:513.067200pt;}
.y22_c00229{bottom:515.626460pt;}
.y20_c00229{bottom:542.347200pt;}
.y1f_c00229{bottom:544.906449pt;}
.y1d_c00229{bottom:571.467200pt;}
.y1c_c00229{bottom:574.026437pt;}
.y19_c00229{bottom:603.306425pt;}
.y1a_c00229{bottom:616.587200pt;}
.y18_c00229{bottom:619.146419pt;}
.y17_c00229{bottom:634.986413pt;}
.y13_c00229{bottom:664.266401pt;}
.y14_c00229{bottom:669.547200pt;}
.y16_c00229{bottom:672.106398pt;}
.y12_c00229{bottom:680.106395pt;}
.ye_c00229{bottom:709.386383pt;}
.yf_c00229{bottom:714.667200pt;}
.y11_c00229{bottom:717.226380pt;}
.yd_c00229{bottom:725.226377pt;}
.yc_c00229{bottom:756.426364pt;}
.yb_c00229{bottom:803.786345pt;}
.ya_c00229{bottom:832.906334pt;}
.y9_c00229{bottom:870.186319pt;}
.y8_c00229{bottom:897.866308pt;}
.y7_c00229{bottom:925.386297pt;}
.y6_c00229{bottom:966.346280pt;}
.y5_c00229{bottom:994.026269pt;}
.y2_c00229{bottom:1028.586255pt;}
.y1_c00229{bottom:1063.146241pt;}
.h7_c00229{height:13.280000pt;}
.h9_c00229{height:13.280320pt;}
.h2_c00229{height:48.558731pt;}
.h4_c00229{height:50.062480pt;}
.h1_c00229{height:52.134354pt;}
.h3_c00229{height:62.812475pt;}
.h6_c00229{height:81.422467pt;}
.h8_c00229{height:82.062467pt;}
.h5_c00229{height:113.422455pt;}
.h0_c00229{height:1122.666667pt;}
.w3_c00229{width:2.880000pt;}
.w2_c00229{width:6.080000pt;}
.w1_c00229{width:6.240000pt;}
.w0_c00229{width:793.333333pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:113.439955pt;}
.x4_c00229{left:119.519952pt;}
.x3_c00229{left:160.639936pt;}
.x7_c00229{left:187.679925pt;}
.x2_c00229{left:385.759568pt;}
.x8_c00229{left:399.840000pt;}
.x13_c00229{left:446.719821pt;}
.x9_c00229{left:453.439819pt;}
.xa_c00229{left:476.800000pt;}
.x5_c00229{left:511.359795pt;}
.x10_c00229{left:534.879786pt;}
.xb_c00229{left:541.599783pt;}
.xc_c00229{left:564.960000pt;}
.x12_c00229{left:568.320000pt;}
.x6_c00229{left:585.919766pt;}
.xf_c00229{left:623.199751pt;}
.xd_c00229{left:629.919748pt;}
.xe_c00229{left:653.280000pt;}
.x11_c00229{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00230{font-family:ff1_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:ff2_c00230;src:url('chunks/assets/font_a58cd3e99d62e08f2c8317c5.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_0d7bafe66b6558a465a9a1fb.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_5f3a6ae01d8870fbeeb06ac1.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.v2_c00230{vertical-align:35.999986px;}
.v1_c00230{vertical-align:71.279971px;}
.ls1_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:0.233395px;}
.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;}
}
.ws0_c00230{word-spacing:-15.245389px;}
.ws1_c00230{word-spacing:-15.011994px;}
.ws2_c00230{word-spacing:0.000000px;}
._1_c00230{margin-left:-1.105374px;}
._0_c00230{width:1.478392px;}
._4_c00230{width:75.228717px;}
._d_c00230{width:78.799820px;}
._5_c00230{width:97.880551px;}
._7_c00230{width:114.817805px;}
._6_c00230{width:182.533941px;}
._9_c00230{width:375.456863px;}
._8_c00230{width:393.384856px;}
._a_c00230{width:603.871789px;}
._b_c00230{width:666.889764px;}
._e_c00230{width:714.949745px;}
._c_c00230{width:789.955715px;}
._3_c00230{width:946.855373px;}
._2_c00230{width:1096.851443px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs2_c00230{font-size:53.999978px;}
.fs0_c00230{font-size:59.759976px;}
.fs1_c00230{font-size:66.239974px;}
.y0_c00230{bottom:0.000000px;}
.y7_c00230{bottom:2.878944px;}
.y10_c00230{bottom:2.879036px;}
.y15_c00230{bottom:2.879056px;}
.y1a_c00230{bottom:2.879077px;}
.y20_c00230{bottom:2.879101px;}
.y23_c00230{bottom:2.879121px;}
.y26_c00230{bottom:2.879134px;}
.y29_c00230{bottom:2.879147px;}
.y32_c00230{bottom:2.879239px;}
.y37_c00230{bottom:2.879260px;}
.y3c_c00230{bottom:2.879280px;}
.y42_c00230{bottom:2.879304px;}
.y45_c00230{bottom:2.879324px;}
.y48_c00230{bottom:2.879697px;}
.y4_c00230{bottom:75.900270px;}
.y3_c00230{bottom:114.060254px;}
.y47_c00230{bottom:154.020240px;}
.y46_c00230{bottom:156.899937px;}
.y44_c00230{bottom:186.960600px;}
.y43_c00230{bottom:189.839924px;}
.y40_c00230{bottom:222.599911px;}
.y41_c00230{bottom:237.720600px;}
.y3f_c00230{bottom:240.599904px;}
.y3e_c00230{bottom:258.419897px;}
.y3a_c00230{bottom:291.179884px;}
.y3b_c00230{bottom:297.300600px;}
.y3d_c00230{bottom:300.179880px;}
.y39_c00230{bottom:308.999876px;}
.y35_c00230{bottom:341.939863px;}
.y36_c00230{bottom:348.060600px;}
.y38_c00230{bottom:350.939860px;}
.y34_c00230{bottom:359.759856px;}
.y30_c00230{bottom:392.699843px;}
.y31_c00230{bottom:398.640600px;}
.y33_c00230{bottom:401.519839px;}
.y2f_c00230{bottom:410.519836px;}
.y2e_c00230{bottom:445.619822px;}
.y2d_c00230{bottom:498.899800px;}
.y2c_c00230{bottom:531.839787px;}
.y2b_c00230{bottom:564.599774px;}
.y2a_c00230{bottom:597.179761px;}
.y28_c00230{bottom:629.400600px;}
.y27_c00230{bottom:632.279747px;}
.y25_c00230{bottom:662.160600px;}
.y24_c00230{bottom:665.039734px;}
.y22_c00230{bottom:695.100600px;}
.y21_c00230{bottom:697.979721px;}
.y1e_c00230{bottom:730.739708px;}
.y1f_c00230{bottom:745.680600px;}
.y1d_c00230{bottom:748.559701px;}
.y1c_c00230{bottom:766.559693px;}
.y18_c00230{bottom:799.319680px;}
.y19_c00230{bottom:805.440600px;}
.y1b_c00230{bottom:808.319677px;}
.y17_c00230{bottom:817.139673px;}
.y13_c00230{bottom:850.079660px;}
.y14_c00230{bottom:856.020600px;}
.y16_c00230{bottom:858.899656px;}
.y12_c00230{bottom:867.899653px;}
.ye_c00230{bottom:900.659640px;}
.yf_c00230{bottom:906.780600px;}
.y11_c00230{bottom:909.659636px;}
.yd_c00230{bottom:918.659633px;}
.yc_c00230{bottom:953.759618px;}
.yb_c00230{bottom:1007.039597px;}
.ya_c00230{bottom:1039.799584px;}
.y9_c00230{bottom:1072.739571px;}
.y8_c00230{bottom:1105.139558px;}
.y6_c00230{bottom:1137.360600px;}
.y5_c00230{bottom:1140.239544px;}
.y2_c00230{bottom:1176.059530px;}
.y1_c00230{bottom:1196.219522px;}
.h4_c00230{height:14.940000px;}
.h2_c00230{height:54.628572px;}
.h3_c00230{height:56.320290px;}
.h1_c00230{height:58.651148px;}
.h7_c00230{height:91.600276px;}
.h6_c00230{height:92.320276px;}
.h5_c00230{height:127.600261px;}
.h8_c00230{height:128.320261px;}
.h0_c00230{height:1263.000000px;}
.w3_c00230{width:3.240000px;}
.w2_c00230{width:6.840000px;}
.w1_c00230{width:7.020000px;}
.w0_c00230{width:892.500000px;}
.x0_c00230{left:0.000000px;}
.x5_c00230{left:127.620262px;}
.x6_c00230{left:134.459946px;}
.x1_c00230{left:181.799927px;}
.x10_c00230{left:211.139916px;}
.x2_c00230{left:329.039408px;}
.x4_c00230{left:433.979826px;}
.x7_c00230{left:449.820000px;}
.x8_c00230{left:502.559799px;}
.x11_c00230{left:510.119796px;}
.x9_c00230{left:536.400000px;}
.xe_c00230{left:575.279770px;}
.x15_c00230{left:601.739759px;}
.x12_c00230{left:609.299756px;}
.xa_c00230{left:635.579746px;}
.xb_c00230{left:639.360000px;}
.xf_c00230{left:659.159736px;}
.x14_c00230{left:701.099720px;}
.x13_c00230{left:708.659717px;}
.xc_c00230{left:734.939706px;}
.xd_c00230{left:738.720000px;}
.x3_c00230{left:765.359694px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.v2_c00230{vertical-align:31.999987pt;}
.v1_c00230{vertical-align:63.359975pt;}
.ls1_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:0.207463pt;}
.ws0_c00230{word-spacing:-13.551457pt;}
.ws1_c00230{word-spacing:-13.343995pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._1_c00230{margin-left:-0.982555pt;}
._0_c00230{width:1.314126pt;}
._4_c00230{width:66.869971pt;}
._d_c00230{width:70.044284pt;}
._5_c00230{width:87.004934pt;}
._7_c00230{width:102.060271pt;}
._6_c00230{width:162.252392pt;}
._9_c00230{width:333.739434pt;}
._8_c00230{width:349.675427pt;}
._a_c00230{width:536.774924pt;}
._b_c00230{width:592.790901pt;}
._e_c00230{width:635.510884pt;}
._c_c00230{width:702.182858pt;}
._3_c00230{width:841.649221pt;}
._2_c00230{width:974.979061pt;}
.fs2_c00230{font-size:47.999981pt;}
.fs0_c00230{font-size:53.119979pt;}
.fs1_c00230{font-size:58.879976pt;}
.y0_c00230{bottom:0.000000pt;}
.y7_c00230{bottom:2.559061pt;}
.y10_c00230{bottom:2.559143pt;}
.y15_c00230{bottom:2.559161pt;}
.y1a_c00230{bottom:2.559179pt;}
.y20_c00230{bottom:2.559201pt;}
.y23_c00230{bottom:2.559218pt;}
.y26_c00230{bottom:2.559230pt;}
.y29_c00230{bottom:2.559242pt;}
.y32_c00230{bottom:2.559324pt;}
.y37_c00230{bottom:2.559342pt;}
.y3c_c00230{bottom:2.559360pt;}
.y42_c00230{bottom:2.559381pt;}
.y45_c00230{bottom:2.559399pt;}
.y48_c00230{bottom:2.559731pt;}
.y4_c00230{bottom:67.466906pt;}
.y3_c00230{bottom:101.386893pt;}
.y47_c00230{bottom:136.906880pt;}
.y46_c00230{bottom:139.466611pt;}
.y44_c00230{bottom:166.187200pt;}
.y43_c00230{bottom:168.746599pt;}
.y40_c00230{bottom:197.866588pt;}
.y41_c00230{bottom:211.307200pt;}
.y3f_c00230{bottom:213.866581pt;}
.y3e_c00230{bottom:229.706575pt;}
.y3a_c00230{bottom:258.826563pt;}
.y3b_c00230{bottom:264.267200pt;}
.y3d_c00230{bottom:266.826560pt;}
.y39_c00230{bottom:274.666557pt;}
.y35_c00230{bottom:303.946545pt;}
.y36_c00230{bottom:309.387200pt;}
.y38_c00230{bottom:311.946542pt;}
.y34_c00230{bottom:319.786539pt;}
.y30_c00230{bottom:349.066527pt;}
.y31_c00230{bottom:354.347200pt;}
.y33_c00230{bottom:356.906524pt;}
.y2f_c00230{bottom:364.906521pt;}
.y2e_c00230{bottom:396.106508pt;}
.y2d_c00230{bottom:443.466489pt;}
.y2c_c00230{bottom:472.746478pt;}
.y2b_c00230{bottom:501.866466pt;}
.y2a_c00230{bottom:530.826454pt;}
.y28_c00230{bottom:559.467200pt;}
.y27_c00230{bottom:562.026442pt;}
.y25_c00230{bottom:588.587200pt;}
.y24_c00230{bottom:591.146430pt;}
.y22_c00230{bottom:617.867200pt;}
.y21_c00230{bottom:620.426418pt;}
.y1e_c00230{bottom:649.546407pt;}
.y1f_c00230{bottom:662.827200pt;}
.y1d_c00230{bottom:665.386401pt;}
.y1c_c00230{bottom:681.386394pt;}
.y18_c00230{bottom:710.506382pt;}
.y19_c00230{bottom:715.947200pt;}
.y1b_c00230{bottom:718.506379pt;}
.y17_c00230{bottom:726.346376pt;}
.y13_c00230{bottom:755.626364pt;}
.y14_c00230{bottom:760.907200pt;}
.y16_c00230{bottom:763.466361pt;}
.y12_c00230{bottom:771.466358pt;}
.ye_c00230{bottom:800.586346pt;}
.yf_c00230{bottom:806.027200pt;}
.y11_c00230{bottom:808.586343pt;}
.yd_c00230{bottom:816.586340pt;}
.yc_c00230{bottom:847.786328pt;}
.yb_c00230{bottom:895.146309pt;}
.ya_c00230{bottom:924.266297pt;}
.y9_c00230{bottom:953.546285pt;}
.y8_c00230{bottom:982.346274pt;}
.y6_c00230{bottom:1010.987200pt;}
.y5_c00230{bottom:1013.546261pt;}
.y2_c00230{bottom:1045.386249pt;}
.y1_c00230{bottom:1063.306241pt;}
.h4_c00230{height:13.280000pt;}
.h2_c00230{height:48.558731pt;}
.h3_c00230{height:50.062480pt;}
.h1_c00230{height:52.134354pt;}
.h7_c00230{height:81.422467pt;}
.h6_c00230{height:82.062467pt;}
.h5_c00230{height:113.422455pt;}
.h8_c00230{height:114.062454pt;}
.h0_c00230{height:1122.666667pt;}
.w3_c00230{width:2.880000pt;}
.w2_c00230{width:6.080000pt;}
.w1_c00230{width:6.240000pt;}
.w0_c00230{width:793.333333pt;}
.x0_c00230{left:0.000000pt;}
.x5_c00230{left:113.440233pt;}
.x6_c00230{left:119.519952pt;}
.x1_c00230{left:161.599935pt;}
.x10_c00230{left:187.679925pt;}
.x2_c00230{left:292.479474pt;}
.x4_c00230{left:385.759846pt;}
.x7_c00230{left:399.840000pt;}
.x8_c00230{left:446.719821pt;}
.x11_c00230{left:453.439819pt;}
.x9_c00230{left:476.800000pt;}
.xe_c00230{left:511.359795pt;}
.x15_c00230{left:534.879786pt;}
.x12_c00230{left:541.599783pt;}
.xa_c00230{left:564.959774pt;}
.xb_c00230{left:568.320000pt;}
.xf_c00230{left:585.919766pt;}
.x14_c00230{left:623.199751pt;}
.x13_c00230{left:629.919748pt;}
.xc_c00230{left:653.279739pt;}
.xd_c00230{left:656.640000pt;}
.x3_c00230{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00231{font-family:ff1_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:ff2_c00231;src:url('chunks/assets/font_2d9890cc5406fb0cc2da8c37.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_c74abe3305483f1343ed5a2e.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.696777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_67a52cead7f20f676e7cb571.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.v3_c00231{vertical-align:27.359989px;}
.v2_c00231{vertical-align:35.999986px;}
.v1_c00231{vertical-align:71.279971px;}
.ls1_c00231{letter-spacing:0.000000px;}
.ls0_c00231{letter-spacing:0.233395px;}
.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.245389px;}
.ws1_c00231{word-spacing:-15.011994px;}
.ws2_c00231{word-spacing:0.000000px;}
._1_c00231{margin-left:-1.105374px;}
._0_c00231{width:1.195563px;}
._4_c00231{width:75.228717px;}
._5_c00231{width:97.880551px;}
._f_c00231{width:114.817805px;}
._6_c00231{width:182.533941px;}
._b_c00231{width:314.679970px;}
._a_c00231{width:438.797295px;}
._8_c00231{width:518.853888px;}
._7_c00231{width:536.781881px;}
._9_c00231{width:748.001171px;}
._c_c00231{width:769.043352px;}
._d_c00231{width:859.115316px;}
._3_c00231{width:977.112699px;}
._e_c00231{width:1016.014974px;}
._2_c00231{width:1096.851443px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs2_c00231{font-size:53.999978px;}
.fs0_c00231{font-size:59.759976px;}
.fs1_c00231{font-size:66.239974px;}
.y0_c00231{bottom:0.000000px;}
.y7_c00231{bottom:2.878951px;}
.y10_c00231{bottom:2.879046px;}
.y15_c00231{bottom:2.879066px;}
.y1a_c00231{bottom:2.879086px;}
.y1f_c00231{bottom:2.879106px;}
.y24_c00231{bottom:2.879128px;}
.y29_c00231{bottom:2.879149px;}
.y2d_c00231{bottom:2.879165px;}
.y36_c00231{bottom:2.879258px;}
.y3b_c00231{bottom:2.879278px;}
.y40_c00231{bottom:2.879298px;}
.y45_c00231{bottom:2.879319px;}
.y4_c00231{bottom:75.899970px;}
.y3_c00231{bottom:114.059954px;}
.y43_c00231{bottom:194.699922px;}
.y44_c00231{bottom:200.820600px;}
.y46_c00231{bottom:203.699919px;}
.y42_c00231{bottom:212.519915px;}
.y3e_c00231{bottom:245.459902px;}
.y3f_c00231{bottom:251.400600px;}
.y41_c00231{bottom:254.279898px;}
.y3d_c00231{bottom:263.279895px;}
.y39_c00231{bottom:296.039882px;}
.y3a_c00231{bottom:302.160600px;}
.y3c_c00231{bottom:305.039878px;}
.y38_c00231{bottom:314.039874px;}
.y34_c00231{bottom:346.799861px;}
.y35_c00231{bottom:352.920600px;}
.y37_c00231{bottom:355.799858px;}
.y33_c00231{bottom:364.619854px;}
.y32_c00231{bottom:399.719840px;}
.y31_c00231{bottom:452.999819px;}
.y30_c00231{bottom:485.939806px;}
.y2f_c00231{bottom:518.699793px;}
.y2e_c00231{bottom:551.639779px;}
.y2c_c00231{bottom:583.500600px;}
.y2b_c00231{bottom:586.379765px;}
.y27_c00231{bottom:619.139752px;}
.y28_c00231{bottom:625.260600px;}
.y2a_c00231{bottom:628.139749px;}
.y26_c00231{bottom:637.139745px;}
.y22_c00231{bottom:674.219730px;}
.y23_c00231{bottom:678.180600px;}
.y25_c00231{bottom:681.059728px;}
.y21_c00231{bottom:692.039723px;}
.y1d_c00231{bottom:724.979710px;}
.y1e_c00231{bottom:731.100600px;}
.y20_c00231{bottom:733.979706px;}
.y1c_c00231{bottom:742.799703px;}
.y18_c00231{bottom:775.739690px;}
.y19_c00231{bottom:781.680600px;}
.y1b_c00231{bottom:784.559686px;}
.y17_c00231{bottom:793.559683px;}
.y13_c00231{bottom:826.319669px;}
.y14_c00231{bottom:832.440600px;}
.y16_c00231{bottom:835.319666px;}
.y12_c00231{bottom:844.319662px;}
.ye_c00231{bottom:877.079649px;}
.yf_c00231{bottom:883.200600px;}
.y11_c00231{bottom:886.079646px;}
.yd_c00231{bottom:894.899642px;}
.yc_c00231{bottom:929.999628px;}
.yb_c00231{bottom:983.279607px;}
.ya_c00231{bottom:1016.219594px;}
.y9_c00231{bottom:1050.959580px;}
.y8_c00231{bottom:1086.959565px;}
.y6_c00231{bottom:1119.180600px;}
.y5_c00231{bottom:1122.059551px;}
.y2_c00231{bottom:1157.159537px;}
.y1_c00231{bottom:1196.039522px;}
.h4_c00231{height:14.940000px;}
.h5_c00231{height:45.410607px;}
.h2_c00231{height:54.628572px;}
.h3_c00231{height:56.320290px;}
.h1_c00231{height:58.651148px;}
.h9_c00231{height:83.680279px;}
.h8_c00231{height:91.600276px;}
.h7_c00231{height:92.320276px;}
.h6_c00231{height:127.600261px;}
.h0_c00231{height:1263.000000px;}
.w3_c00231{width:3.240000px;}
.w2_c00231{width:6.840000px;}
.w1_c00231{width:7.020000px;}
.w4_c00231{width:7.200000px;}
.w0_c00231{width:892.500000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:127.619949px;}
.x3_c00231{left:134.459946px;}
.xd_c00231{left:201.419919px;}
.x1b_c00231{left:211.139916px;}
.x2_c00231{left:433.979514px;}
.x4_c00231{left:449.820000px;}
.xe_c00231{left:457.380000px;}
.x1c_c00231{left:467.100000px;}
.x5_c00231{left:502.559799px;}
.x16_c00231{left:510.119796px;}
.xf_c00231{left:517.679793px;}
.x1d_c00231{left:527.399789px;}
.x6_c00231{left:536.400000px;}
.x10_c00231{left:543.960000px;}
.x1e_c00231{left:553.680000px;}
.xb_c00231{left:582.839767px;}
.x19_c00231{left:592.559763px;}
.x17_c00231{left:609.299756px;}
.x11_c00231{left:616.859753px;}
.x1f_c00231{left:626.579749px;}
.x7_c00231{left:635.579746px;}
.x8_c00231{left:639.360000px;}
.x12_c00231{left:643.140000px;}
.x20_c00231{left:652.860000px;}
.xc_c00231{left:666.719733px;}
.x1a_c00231{left:676.439729px;}
.x15_c00231{left:708.659717px;}
.x13_c00231{left:716.219714px;}
.x21_c00231{left:725.939710px;}
.x9_c00231{left:734.939706px;}
.xa_c00231{left:738.720000px;}
.x14_c00231{left:742.500000px;}
.x18_c00231{left:746.280000px;}
.x22_c00231{left:752.220000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.v3_c00231{vertical-align:24.319990pt;}
.v2_c00231{vertical-align:31.999987pt;}
.v1_c00231{vertical-align:63.359975pt;}
.ls1_c00231{letter-spacing:0.000000pt;}
.ls0_c00231{letter-spacing:0.207463pt;}
.ws0_c00231{word-spacing:-13.551457pt;}
.ws1_c00231{word-spacing:-13.343995pt;}
.ws2_c00231{word-spacing:0.000000pt;}
._1_c00231{margin-left:-0.982555pt;}
._0_c00231{width:1.062723pt;}
._4_c00231{width:66.869971pt;}
._5_c00231{width:87.004934pt;}
._f_c00231{width:102.060271pt;}
._6_c00231{width:162.252392pt;}
._b_c00231{width:279.715529pt;}
._a_c00231{width:390.042040pt;}
._8_c00231{width:461.203456pt;}
._7_c00231{width:477.139450pt;}
._9_c00231{width:664.889930pt;}
._c_c00231{width:683.594090pt;}
._d_c00231{width:763.658058pt;}
._3_c00231{width:868.544621pt;}
._e_c00231{width:903.124421pt;}
._2_c00231{width:974.979061pt;}
.fs2_c00231{font-size:47.999981pt;}
.fs0_c00231{font-size:53.119979pt;}
.fs1_c00231{font-size:58.879976pt;}
.y0_c00231{bottom:0.000000pt;}
.y7_c00231{bottom:2.559068pt;}
.y10_c00231{bottom:2.559152pt;}
.y15_c00231{bottom:2.559170pt;}
.y1a_c00231{bottom:2.559188pt;}
.y1f_c00231{bottom:2.559206pt;}
.y24_c00231{bottom:2.559225pt;}
.y29_c00231{bottom:2.559243pt;}
.y2d_c00231{bottom:2.559258pt;}
.y36_c00231{bottom:2.559340pt;}
.y3b_c00231{bottom:2.559358pt;}
.y40_c00231{bottom:2.559376pt;}
.y45_c00231{bottom:2.559394pt;}
.y4_c00231{bottom:67.466640pt;}
.y3_c00231{bottom:101.386626pt;}
.y43_c00231{bottom:173.066597pt;}
.y44_c00231{bottom:178.507200pt;}
.y46_c00231{bottom:181.066594pt;}
.y42_c00231{bottom:188.906591pt;}
.y3e_c00231{bottom:218.186579pt;}
.y3f_c00231{bottom:223.467200pt;}
.y41_c00231{bottom:226.026576pt;}
.y3d_c00231{bottom:234.026573pt;}
.y39_c00231{bottom:263.146561pt;}
.y3a_c00231{bottom:268.587200pt;}
.y3c_c00231{bottom:271.146558pt;}
.y38_c00231{bottom:279.146555pt;}
.y34_c00231{bottom:308.266543pt;}
.y35_c00231{bottom:313.707200pt;}
.y37_c00231{bottom:316.266540pt;}
.y33_c00231{bottom:324.106537pt;}
.y32_c00231{bottom:355.306525pt;}
.y31_c00231{bottom:402.666506pt;}
.y30_c00231{bottom:431.946494pt;}
.y2f_c00231{bottom:461.066482pt;}
.y2e_c00231{bottom:490.346471pt;}
.y2c_c00231{bottom:518.667200pt;}
.y2b_c00231{bottom:521.226458pt;}
.y27_c00231{bottom:550.346447pt;}
.y28_c00231{bottom:555.787200pt;}
.y2a_c00231{bottom:558.346443pt;}
.y26_c00231{bottom:566.346440pt;}
.y22_c00231{bottom:599.306427pt;}
.y23_c00231{bottom:602.827200pt;}
.y25_c00231{bottom:605.386425pt;}
.y21_c00231{bottom:615.146421pt;}
.y1d_c00231{bottom:644.426409pt;}
.y1e_c00231{bottom:649.867200pt;}
.y20_c00231{bottom:652.426406pt;}
.y1c_c00231{bottom:660.266403pt;}
.y18_c00231{bottom:689.546391pt;}
.y19_c00231{bottom:694.827200pt;}
.y1b_c00231{bottom:697.386388pt;}
.y17_c00231{bottom:705.386385pt;}
.y13_c00231{bottom:734.506373pt;}
.y14_c00231{bottom:739.947200pt;}
.y16_c00231{bottom:742.506370pt;}
.y12_c00231{bottom:750.506366pt;}
.ye_c00231{bottom:779.626355pt;}
.yf_c00231{bottom:785.067200pt;}
.y11_c00231{bottom:787.626352pt;}
.yd_c00231{bottom:795.466348pt;}
.yc_c00231{bottom:826.666336pt;}
.yb_c00231{bottom:874.026317pt;}
.ya_c00231{bottom:903.306305pt;}
.y9_c00231{bottom:934.186293pt;}
.y8_c00231{bottom:966.186280pt;}
.y6_c00231{bottom:994.827200pt;}
.y5_c00231{bottom:997.386268pt;}
.y2_c00231{bottom:1028.586255pt;}
.y1_c00231{bottom:1063.146241pt;}
.h4_c00231{height:13.280000pt;}
.h5_c00231{height:40.364984pt;}
.h2_c00231{height:48.558731pt;}
.h3_c00231{height:50.062480pt;}
.h1_c00231{height:52.134354pt;}
.h9_c00231{height:74.382470pt;}
.h8_c00231{height:81.422467pt;}
.h7_c00231{height:82.062467pt;}
.h6_c00231{height:113.422455pt;}
.h0_c00231{height:1122.666667pt;}
.w3_c00231{width:2.880000pt;}
.w2_c00231{width:6.080000pt;}
.w1_c00231{width:6.240000pt;}
.w4_c00231{width:6.400000pt;}
.w0_c00231{width:793.333333pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:113.439955pt;}
.x3_c00231{left:119.519952pt;}
.xd_c00231{left:179.039928pt;}
.x1b_c00231{left:187.679925pt;}
.x2_c00231{left:385.759568pt;}
.x4_c00231{left:399.840000pt;}
.xe_c00231{left:406.560000pt;}
.x1c_c00231{left:415.200000pt;}
.x5_c00231{left:446.719821pt;}
.x16_c00231{left:453.439819pt;}
.xf_c00231{left:460.159816pt;}
.x1d_c00231{left:468.799812pt;}
.x6_c00231{left:476.800000pt;}
.x10_c00231{left:483.520000pt;}
.x1e_c00231{left:492.160000pt;}
.xb_c00231{left:518.079793pt;}
.x19_c00231{left:526.719789pt;}
.x17_c00231{left:541.599783pt;}
.x11_c00231{left:548.319781pt;}
.x1f_c00231{left:556.959777pt;}
.x7_c00231{left:564.959774pt;}
.x8_c00231{left:568.320000pt;}
.x12_c00231{left:571.680000pt;}
.x20_c00231{left:580.320000pt;}
.xc_c00231{left:592.639763pt;}
.x1a_c00231{left:601.279759pt;}
.x15_c00231{left:629.919748pt;}
.x13_c00231{left:636.639745pt;}
.x21_c00231{left:645.279742pt;}
.x9_c00231{left:653.279739pt;}
.xa_c00231{left:656.640000pt;}
.x14_c00231{left:660.000000pt;}
.x18_c00231{left:663.360000pt;}
.x22_c00231{left:668.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00232{font-family:ff1_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:ff2_c00232;src:url('chunks/assets/font_220ed813de634ee471f71ea9.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_218e36c0a33c48804fa6dee9.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_b56e7cc5fa4c1ef86a27468a.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:0.696777;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.v1_c00232{vertical-align:27.359989px;}
.v3_c00232{vertical-align:35.279986px;}
.v2_c00232{vertical-align:71.279971px;}
.ls1_c00232{letter-spacing:0.000000px;}
.ls0_c00232{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00232{word-spacing:-15.245389px;}
.ws0_c00232{word-spacing:-15.011994px;}
.ws2_c00232{word-spacing:0.000000px;}
._1_c00232{margin-left:-1.105374px;}
._0_c00232{width:1.478392px;}
._8_c00232{width:75.228717px;}
._4_c00232{width:78.799820px;}
._9_c00232{width:97.880551px;}
._b_c00232{width:114.817805px;}
._a_c00232{width:182.533941px;}
._2_c00232{width:315.502515px;}
._d_c00232{width:375.456863px;}
._c_c00232{width:393.384856px;}
._16_c00232{width:438.514466px;}
._14_c00232{width:519.676433px;}
._13_c00232{width:537.604426px;}
._e_c00232{width:666.889764px;}
._10_c00232{width:714.949745px;}
._15_c00232{width:747.718342px;}
._5_c00232{width:784.109346px;}
._f_c00232{width:789.955715px;}
._3_c00232{width:859.115316px;}
._7_c00232{width:946.855373px;}
._12_c00232{width:1016.014974px;}
._11_c00232{width:1096.851443px;}
._6_c00232{width:1166.011044px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs2_c00232{font-size:53.999978px;}
.fs0_c00232{font-size:59.759976px;}
.fs1_c00232{font-size:66.239974px;}
.y0_c00232{bottom:0.000000px;}
.y8_c00232{bottom:2.878948px;}
.yc_c00232{bottom:2.878966px;}
.yf_c00232{bottom:2.878979px;}
.y12_c00232{bottom:2.878992px;}
.y1b_c00232{bottom:2.879084px;}
.y20_c00232{bottom:2.879105px;}
.y26_c00232{bottom:2.879129px;}
.y29_c00232{bottom:2.879149px;}
.y2c_c00232{bottom:2.879162px;}
.y2f_c00232{bottom:2.879175px;}
.y38_c00232{bottom:2.879267px;}
.y3d_c00232{bottom:2.879288px;}
.y42_c00232{bottom:2.879308px;}
.y47_c00232{bottom:2.879688px;}
.y4_c00232{bottom:75.900270px;}
.y3_c00232{bottom:114.060254px;}
.y45_c00232{bottom:170.399932px;}
.y46_c00232{bottom:176.520240px;}
.y48_c00232{bottom:179.399928px;}
.y44_c00232{bottom:188.399925px;}
.y40_c00232{bottom:221.159912px;}
.y41_c00232{bottom:227.280600px;}
.y43_c00232{bottom:230.159908px;}
.y3f_c00232{bottom:238.979904px;}
.y3b_c00232{bottom:271.919891px;}
.y3c_c00232{bottom:277.860600px;}
.y3e_c00232{bottom:280.739888px;}
.y3a_c00232{bottom:289.739884px;}
.y36_c00232{bottom:322.679871px;}
.y37_c00232{bottom:328.620600px;}
.y39_c00232{bottom:331.499867px;}
.y35_c00232{bottom:340.499864px;}
.y34_c00232{bottom:375.599850px;}
.y33_c00232{bottom:428.879828px;}
.y32_c00232{bottom:461.639815px;}
.y31_c00232{bottom:494.579802px;}
.y30_c00232{bottom:526.979789px;}
.y2e_c00232{bottom:559.200600px;}
.y2d_c00232{bottom:562.079775px;}
.y2b_c00232{bottom:592.140600px;}
.y2a_c00232{bottom:595.019762px;}
.y28_c00232{bottom:624.900600px;}
.y27_c00232{bottom:627.779749px;}
.y24_c00232{bottom:660.719736px;}
.y25_c00232{bottom:675.660600px;}
.y23_c00232{bottom:678.539729px;}
.y22_c00232{bottom:696.359721px;}
.y1e_c00232{bottom:729.299708px;}
.y1f_c00232{bottom:735.240600px;}
.y21_c00232{bottom:738.119705px;}
.y1d_c00232{bottom:747.119701px;}
.y19_c00232{bottom:780.059688px;}
.y1a_c00232{bottom:786.000600px;}
.y1c_c00232{bottom:788.879684px;}
.y18_c00232{bottom:797.879681px;}
.y17_c00232{bottom:832.979667px;}
.y16_c00232{bottom:886.259645px;}
.y15_c00232{bottom:919.019632px;}
.y14_c00232{bottom:951.959619px;}
.y13_c00232{bottom:984.719606px;}
.y11_c00232{bottom:1016.580600px;}
.y10_c00232{bottom:1019.459592px;}
.ye_c00232{bottom:1049.520600px;}
.yd_c00232{bottom:1052.399579px;}
.yb_c00232{bottom:1082.460600px;}
.ya_c00232{bottom:1085.339566px;}
.y6_c00232{bottom:1122.419551px;}
.y7_c00232{bottom:1126.380600px;}
.y9_c00232{bottom:1129.259548px;}
.y5_c00232{bottom:1140.239544px;}
.y2_c00232{bottom:1176.059530px;}
.y1_c00232{bottom:1196.219522px;}
.h5_c00232{height:14.940000px;}
.ha_c00232{height:14.940360px;}
.h6_c00232{height:45.410607px;}
.h2_c00232{height:54.628572px;}
.h3_c00232{height:56.320290px;}
.h1_c00232{height:58.651148px;}
.h4_c00232{height:83.680279px;}
.h8_c00232{height:91.600276px;}
.h9_c00232{height:92.320276px;}
.h7_c00232{height:127.600261px;}
.h0_c00232{height:1263.000000px;}
.w3_c00232{width:3.240000px;}
.w4_c00232{width:6.840000px;}
.w2_c00232{width:7.020000px;}
.w1_c00232{width:7.200000px;}
.w0_c00232{width:892.500000px;}
.x0_c00232{left:0.000000px;}
.x5_c00232{left:127.620262px;}
.x10_c00232{left:134.459946px;}
.x1_c00232{left:181.799927px;}
.x6_c00232{left:211.139916px;}
.x13_c00232{left:312.839875px;}
.x2_c00232{left:329.039408px;}
.x4_c00232{left:433.979826px;}
.x16_c00232{left:449.820000px;}
.x7_c00232{left:467.100000px;}
.x21_c00232{left:502.559799px;}
.x17_c00232{left:510.119796px;}
.x12_c00232{left:519.839792px;}
.x8_c00232{left:527.399789px;}
.x18_c00232{left:536.400000px;}
.x9_c00232{left:553.680000px;}
.x14_c00232{left:575.279770px;}
.x22_c00232{left:592.559763px;}
.x1e_c00232{left:601.739759px;}
.x19_c00232{left:609.299756px;}
.xe_c00232{left:619.019752px;}
.xa_c00232{left:626.579749px;}
.x1a_c00232{left:635.580000px;}
.x20_c00232{left:639.360000px;}
.xb_c00232{left:652.860000px;}
.x11_c00232{left:656.640000px;}
.x15_c00232{left:659.159736px;}
.x23_c00232{left:676.439729px;}
.x1d_c00232{left:701.099720px;}
.x1b_c00232{left:708.659717px;}
.xc_c00232{left:718.379713px;}
.x24_c00232{left:725.939710px;}
.x1c_c00232{left:734.940000px;}
.x1f_c00232{left:738.720000px;}
.xd_c00232{left:752.220000px;}
.xf_c00232{left:756.000000px;}
.x3_c00232{left:765.359694px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.v1_c00232{vertical-align:24.319990pt;}
.v3_c00232{vertical-align:31.359987pt;}
.v2_c00232{vertical-align:63.359975pt;}
.ls1_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.207463pt;}
.ws1_c00232{word-spacing:-13.551457pt;}
.ws0_c00232{word-spacing:-13.343995pt;}
.ws2_c00232{word-spacing:0.000000pt;}
._1_c00232{margin-left:-0.982555pt;}
._0_c00232{width:1.314126pt;}
._8_c00232{width:66.869971pt;}
._4_c00232{width:70.044284pt;}
._9_c00232{width:87.004934pt;}
._b_c00232{width:102.060271pt;}
._a_c00232{width:162.252392pt;}
._2_c00232{width:280.446680pt;}
._d_c00232{width:333.739434pt;}
._c_c00232{width:349.675427pt;}
._16_c00232{width:389.790636pt;}
._14_c00232{width:461.934608pt;}
._13_c00232{width:477.870601pt;}
._e_c00232{width:592.790901pt;}
._10_c00232{width:635.510884pt;}
._15_c00232{width:664.638526pt;}
._5_c00232{width:696.986085pt;}
._f_c00232{width:702.182858pt;}
._3_c00232{width:763.658058pt;}
._7_c00232{width:841.649221pt;}
._12_c00232{width:903.124421pt;}
._11_c00232{width:974.979061pt;}
._6_c00232{width:1036.454261pt;}
.fs2_c00232{font-size:47.999981pt;}
.fs0_c00232{font-size:53.119979pt;}
.fs1_c00232{font-size:58.879976pt;}
.y0_c00232{bottom:0.000000pt;}
.y8_c00232{bottom:2.559065pt;}
.yc_c00232{bottom:2.559081pt;}
.yf_c00232{bottom:2.559092pt;}
.y12_c00232{bottom:2.559104pt;}
.y1b_c00232{bottom:2.559186pt;}
.y20_c00232{bottom:2.559204pt;}
.y26_c00232{bottom:2.559225pt;}
.y29_c00232{bottom:2.559243pt;}
.y2c_c00232{bottom:2.559255pt;}
.y2f_c00232{bottom:2.559267pt;}
.y38_c00232{bottom:2.559349pt;}
.y3d_c00232{bottom:2.559367pt;}
.y42_c00232{bottom:2.559385pt;}
.y47_c00232{bottom:2.559723pt;}
.y4_c00232{bottom:67.466906pt;}
.y3_c00232{bottom:101.386893pt;}
.y45_c00232{bottom:151.466606pt;}
.y46_c00232{bottom:156.906880pt;}
.y48_c00232{bottom:159.466603pt;}
.y44_c00232{bottom:167.466600pt;}
.y40_c00232{bottom:196.586588pt;}
.y41_c00232{bottom:202.027200pt;}
.y43_c00232{bottom:204.586585pt;}
.y3f_c00232{bottom:212.426582pt;}
.y3b_c00232{bottom:241.706570pt;}
.y3c_c00232{bottom:246.987200pt;}
.y3e_c00232{bottom:249.546567pt;}
.y3a_c00232{bottom:257.546564pt;}
.y36_c00232{bottom:286.826552pt;}
.y37_c00232{bottom:292.107200pt;}
.y39_c00232{bottom:294.666549pt;}
.y35_c00232{bottom:302.666546pt;}
.y34_c00232{bottom:333.866533pt;}
.y33_c00232{bottom:381.226514pt;}
.y32_c00232{bottom:410.346503pt;}
.y31_c00232{bottom:439.626491pt;}
.y30_c00232{bottom:468.426479pt;}
.y2e_c00232{bottom:497.067200pt;}
.y2d_c00232{bottom:499.626467pt;}
.y2b_c00232{bottom:526.347200pt;}
.y2a_c00232{bottom:528.906455pt;}
.y28_c00232{bottom:555.467200pt;}
.y27_c00232{bottom:558.026443pt;}
.y24_c00232{bottom:587.306432pt;}
.y25_c00232{bottom:600.587200pt;}
.y23_c00232{bottom:603.146425pt;}
.y22_c00232{bottom:618.986419pt;}
.y1e_c00232{bottom:648.266407pt;}
.y1f_c00232{bottom:653.547200pt;}
.y21_c00232{bottom:656.106404pt;}
.y1d_c00232{bottom:664.106401pt;}
.y19_c00232{bottom:693.386389pt;}
.y1a_c00232{bottom:698.667200pt;}
.y1c_c00232{bottom:701.226386pt;}
.y18_c00232{bottom:709.226383pt;}
.y17_c00232{bottom:740.426370pt;}
.y16_c00232{bottom:787.786352pt;}
.y15_c00232{bottom:816.906340pt;}
.y14_c00232{bottom:846.186328pt;}
.y13_c00232{bottom:875.306317pt;}
.y11_c00232{bottom:903.627200pt;}
.y10_c00232{bottom:906.186304pt;}
.ye_c00232{bottom:932.907200pt;}
.yd_c00232{bottom:935.466292pt;}
.yb_c00232{bottom:962.187200pt;}
.ya_c00232{bottom:964.746281pt;}
.y6_c00232{bottom:997.706268pt;}
.y7_c00232{bottom:1001.227200pt;}
.y9_c00232{bottom:1003.786265pt;}
.y5_c00232{bottom:1013.546261pt;}
.y2_c00232{bottom:1045.386249pt;}
.y1_c00232{bottom:1063.306241pt;}
.h5_c00232{height:13.280000pt;}
.ha_c00232{height:13.280320pt;}
.h6_c00232{height:40.364984pt;}
.h2_c00232{height:48.558731pt;}
.h3_c00232{height:50.062480pt;}
.h1_c00232{height:52.134354pt;}
.h4_c00232{height:74.382470pt;}
.h8_c00232{height:81.422467pt;}
.h9_c00232{height:82.062467pt;}
.h7_c00232{height:113.422455pt;}
.h0_c00232{height:1122.666667pt;}
.w3_c00232{width:2.880000pt;}
.w4_c00232{width:6.080000pt;}
.w2_c00232{width:6.240000pt;}
.w1_c00232{width:6.400000pt;}
.w0_c00232{width:793.333333pt;}
.x0_c00232{left:0.000000pt;}
.x5_c00232{left:113.440233pt;}
.x10_c00232{left:119.519952pt;}
.x1_c00232{left:161.599935pt;}
.x6_c00232{left:187.679925pt;}
.x13_c00232{left:278.079889pt;}
.x2_c00232{left:292.479474pt;}
.x4_c00232{left:385.759846pt;}
.x16_c00232{left:399.840000pt;}
.x7_c00232{left:415.200000pt;}
.x21_c00232{left:446.719821pt;}
.x17_c00232{left:453.439819pt;}
.x12_c00232{left:462.079815pt;}
.x8_c00232{left:468.799812pt;}
.x18_c00232{left:476.800000pt;}
.x9_c00232{left:492.160000pt;}
.x14_c00232{left:511.359795pt;}
.x22_c00232{left:526.719789pt;}
.x1e_c00232{left:534.879786pt;}
.x19_c00232{left:541.599783pt;}
.xe_c00232{left:550.239780pt;}
.xa_c00232{left:556.959777pt;}
.x1a_c00232{left:564.960000pt;}
.x20_c00232{left:568.320000pt;}
.xb_c00232{left:580.320000pt;}
.x11_c00232{left:583.680000pt;}
.x15_c00232{left:585.919766pt;}
.x23_c00232{left:601.279759pt;}
.x1d_c00232{left:623.199751pt;}
.x1b_c00232{left:629.919748pt;}
.xc_c00232{left:638.559745pt;}
.x24_c00232{left:645.279742pt;}
.x1c_c00232{left:653.280000pt;}
.x1f_c00232{left:656.640000pt;}
.xd_c00232{left:668.640000pt;}
.xf_c00232{left:672.000000pt;}
.x3_c00232{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00233{font-family:ff1_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:ff2_c00233;src:url('chunks/assets/font_e93bd31560f9ffcdfba87114.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_218e36c0a33c48804fa6dee9.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_67a61d2f9da9106bcc93d01d.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.v1_c00233{vertical-align:27.359989px;}
.v3_c00233{vertical-align:35.279986px;}
.v2_c00233{vertical-align:71.279971px;}
.ls1_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00233{word-spacing:-15.245389px;}
.ws0_c00233{word-spacing:-15.011994px;}
.ws2_c00233{word-spacing:0.000000px;}
._1_c00233{margin-left:-1.105374px;}
._0_c00233{width:1.195563px;}
._8_c00233{width:75.228717px;}
._4_c00233{width:78.799820px;}
._9_c00233{width:97.880551px;}
._b_c00233{width:114.817805px;}
._a_c00233{width:182.533941px;}
._2_c00233{width:314.679970px;}
._e_c00233{width:438.797295px;}
._f_c00233{width:518.853888px;}
._c_c00233{width:536.781881px;}
._d_c00233{width:748.001171px;}
._5_c00233{width:784.109346px;}
._3_c00233{width:859.115316px;}
._7_c00233{width:1016.014974px;}
._6_c00233{width:1166.011044px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs2_c00233{font-size:53.999978px;}
.fs0_c00233{font-size:59.759976px;}
.fs1_c00233{font-size:66.239974px;}
.y0_c00233{bottom:0.000000px;}
.y8_c00233{bottom:2.878956px;}
.yc_c00233{bottom:2.878973px;}
.yf_c00233{bottom:2.878986px;}
.y12_c00233{bottom:2.878999px;}
.y1b_c00233{bottom:2.879092px;}
.y20_c00233{bottom:2.879112px;}
.y25_c00233{bottom:2.879132px;}
.y2a_c00233{bottom:2.879153px;}
.y2e_c00233{bottom:2.879171px;}
.y31_c00233{bottom:2.879184px;}
.y34_c00233{bottom:2.879197px;}
.y3d_c00233{bottom:2.879290px;}
.y42_c00233{bottom:2.879310px;}
.y47_c00233{bottom:2.879690px;}
.y4_c00233{bottom:75.899970px;}
.y3_c00233{bottom:114.059954px;}
.y45_c00233{bottom:165.719934px;}
.y46_c00233{bottom:171.660240px;}
.y48_c00233{bottom:174.539930px;}
.y44_c00233{bottom:183.539927px;}
.y40_c00233{bottom:216.299913px;}
.y41_c00233{bottom:222.420600px;}
.y43_c00233{bottom:225.299910px;}
.y3f_c00233{bottom:234.299906px;}
.y3b_c00233{bottom:267.059893px;}
.y3c_c00233{bottom:273.180600px;}
.y3e_c00233{bottom:276.059890px;}
.y3a_c00233{bottom:284.879886px;}
.y39_c00233{bottom:319.979872px;}
.y38_c00233{bottom:373.259851px;}
.y37_c00233{bottom:406.199838px;}
.y36_c00233{bottom:438.959824px;}
.y35_c00233{bottom:471.539811px;}
.y33_c00233{bottom:503.760600px;}
.y32_c00233{bottom:506.639797px;}
.y30_c00233{bottom:536.520600px;}
.y2f_c00233{bottom:539.399784px;}
.y2d_c00233{bottom:569.460600px;}
.y2c_c00233{bottom:572.339771px;}
.y28_c00233{bottom:609.599756px;}
.y29_c00233{bottom:613.380600px;}
.y2b_c00233{bottom:616.259753px;}
.y27_c00233{bottom:627.419749px;}
.y23_c00233{bottom:660.179736px;}
.y24_c00233{bottom:666.300600px;}
.y26_c00233{bottom:669.179732px;}
.y22_c00233{bottom:678.179729px;}
.y1e_c00233{bottom:710.939716px;}
.y1f_c00233{bottom:717.060600px;}
.y21_c00233{bottom:719.939712px;}
.y1d_c00233{bottom:728.759708px;}
.y19_c00233{bottom:761.699695px;}
.y1a_c00233{bottom:767.640600px;}
.y1c_c00233{bottom:770.519692px;}
.y18_c00233{bottom:779.519688px;}
.y17_c00233{bottom:814.619674px;}
.y16_c00233{bottom:867.899653px;}
.y15_c00233{bottom:900.839640px;}
.y14_c00233{bottom:933.239627px;}
.y13_c00233{bottom:966.179614px;}
.y11_c00233{bottom:998.400600px;}
.y10_c00233{bottom:1001.279599px;}
.ye_c00233{bottom:1031.160600px;}
.yd_c00233{bottom:1034.039586px;}
.yb_c00233{bottom:1064.100600px;}
.ya_c00233{bottom:1066.979573px;}
.y6_c00233{bottom:1104.059558px;}
.y7_c00233{bottom:1108.020600px;}
.y9_c00233{bottom:1110.899556px;}
.y5_c00233{bottom:1122.059551px;}
.y2_c00233{bottom:1157.159537px;}
.y1_c00233{bottom:1196.039522px;}
.h5_c00233{height:14.940000px;}
.ha_c00233{height:14.940360px;}
.h2_c00233{height:54.628572px;}
.h3_c00233{height:56.320290px;}
.h1_c00233{height:58.651148px;}
.h9_c00233{height:82.960279px;}
.h4_c00233{height:83.680279px;}
.h7_c00233{height:91.600276px;}
.h8_c00233{height:92.320276px;}
.h6_c00233{height:127.600261px;}
.h0_c00233{height:1263.000000px;}
.w3_c00233{width:3.240000px;}
.w2_c00233{width:7.020000px;}
.w1_c00233{width:7.200000px;}
.w0_c00233{width:892.500000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:127.619949px;}
.xd_c00233{left:134.459946px;}
.x3_c00233{left:211.139916px;}
.x2_c00233{left:433.979514px;}
.x4_c00233{left:467.100000px;}
.xf_c00233{left:519.839792px;}
.x5_c00233{left:527.399789px;}
.x6_c00233{left:553.680000px;}
.x10_c00233{left:592.559763px;}
.xb_c00233{left:619.019752px;}
.x7_c00233{left:626.579749px;}
.x8_c00233{left:652.860000px;}
.xe_c00233{left:656.640000px;}
.x11_c00233{left:676.439729px;}
.x9_c00233{left:718.379713px;}
.x12_c00233{left:725.939710px;}
.xa_c00233{left:752.220000px;}
.xc_c00233{left:756.000000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.v1_c00233{vertical-align:24.319990pt;}
.v3_c00233{vertical-align:31.359987pt;}
.v2_c00233{vertical-align:63.359975pt;}
.ls1_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:0.207463pt;}
.ws1_c00233{word-spacing:-13.551457pt;}
.ws0_c00233{word-spacing:-13.343995pt;}
.ws2_c00233{word-spacing:0.000000pt;}
._1_c00233{margin-left:-0.982555pt;}
._0_c00233{width:1.062723pt;}
._8_c00233{width:66.869971pt;}
._4_c00233{width:70.044284pt;}
._9_c00233{width:87.004934pt;}
._b_c00233{width:102.060271pt;}
._a_c00233{width:162.252392pt;}
._2_c00233{width:279.715529pt;}
._e_c00233{width:390.042040pt;}
._f_c00233{width:461.203456pt;}
._c_c00233{width:477.139450pt;}
._d_c00233{width:664.889930pt;}
._5_c00233{width:696.986085pt;}
._3_c00233{width:763.658058pt;}
._7_c00233{width:903.124421pt;}
._6_c00233{width:1036.454261pt;}
.fs2_c00233{font-size:47.999981pt;}
.fs0_c00233{font-size:53.119979pt;}
.fs1_c00233{font-size:58.879976pt;}
.y0_c00233{bottom:0.000000pt;}
.y8_c00233{bottom:2.559072pt;}
.yc_c00233{bottom:2.559087pt;}
.yf_c00233{bottom:2.559099pt;}
.y12_c00233{bottom:2.559111pt;}
.y1b_c00233{bottom:2.559193pt;}
.y20_c00233{bottom:2.559211pt;}
.y25_c00233{bottom:2.559229pt;}
.y2a_c00233{bottom:2.559248pt;}
.y2e_c00233{bottom:2.559263pt;}
.y31_c00233{bottom:2.559275pt;}
.y34_c00233{bottom:2.559287pt;}
.y3d_c00233{bottom:2.559369pt;}
.y42_c00233{bottom:2.559387pt;}
.y47_c00233{bottom:2.559725pt;}
.y4_c00233{bottom:67.466640pt;}
.y3_c00233{bottom:101.386626pt;}
.y45_c00233{bottom:147.306608pt;}
.y46_c00233{bottom:152.586880pt;}
.y48_c00233{bottom:155.146605pt;}
.y44_c00233{bottom:163.146601pt;}
.y40_c00233{bottom:192.266590pt;}
.y41_c00233{bottom:197.707200pt;}
.y43_c00233{bottom:200.266587pt;}
.y3f_c00233{bottom:208.266583pt;}
.y3b_c00233{bottom:237.386572pt;}
.y3c_c00233{bottom:242.827200pt;}
.y3e_c00233{bottom:245.386569pt;}
.y3a_c00233{bottom:253.226565pt;}
.y39_c00233{bottom:284.426553pt;}
.y38_c00233{bottom:331.786534pt;}
.y37_c00233{bottom:361.066522pt;}
.y36_c00233{bottom:390.186511pt;}
.y35_c00233{bottom:419.146499pt;}
.y33_c00233{bottom:447.787200pt;}
.y32_c00233{bottom:450.346487pt;}
.y30_c00233{bottom:476.907200pt;}
.y2f_c00233{bottom:479.466475pt;}
.y2d_c00233{bottom:506.187200pt;}
.y2c_c00233{bottom:508.746463pt;}
.y28_c00233{bottom:541.866450pt;}
.y29_c00233{bottom:545.227200pt;}
.y2b_c00233{bottom:547.786448pt;}
.y27_c00233{bottom:557.706444pt;}
.y23_c00233{bottom:586.826432pt;}
.y24_c00233{bottom:592.267200pt;}
.y26_c00233{bottom:594.826429pt;}
.y22_c00233{bottom:602.826426pt;}
.y1e_c00233{bottom:631.946414pt;}
.y1f_c00233{bottom:637.387200pt;}
.y21_c00233{bottom:639.946411pt;}
.y1d_c00233{bottom:647.786408pt;}
.y19_c00233{bottom:677.066396pt;}
.y1a_c00233{bottom:682.347200pt;}
.y1c_c00233{bottom:684.906393pt;}
.y18_c00233{bottom:692.906390pt;}
.y17_c00233{bottom:724.106377pt;}
.y16_c00233{bottom:771.466358pt;}
.y15_c00233{bottom:800.746346pt;}
.y14_c00233{bottom:829.546335pt;}
.y13_c00233{bottom:858.826323pt;}
.y11_c00233{bottom:887.467200pt;}
.y10_c00233{bottom:890.026311pt;}
.ye_c00233{bottom:916.587200pt;}
.yd_c00233{bottom:919.146299pt;}
.yb_c00233{bottom:945.867200pt;}
.ya_c00233{bottom:948.426287pt;}
.y6_c00233{bottom:981.386274pt;}
.y7_c00233{bottom:984.907200pt;}
.y9_c00233{bottom:987.466272pt;}
.y5_c00233{bottom:997.386268pt;}
.y2_c00233{bottom:1028.586255pt;}
.y1_c00233{bottom:1063.146241pt;}
.h5_c00233{height:13.280000pt;}
.ha_c00233{height:13.280320pt;}
.h2_c00233{height:48.558731pt;}
.h3_c00233{height:50.062480pt;}
.h1_c00233{height:52.134354pt;}
.h9_c00233{height:73.742471pt;}
.h4_c00233{height:74.382470pt;}
.h7_c00233{height:81.422467pt;}
.h8_c00233{height:82.062467pt;}
.h6_c00233{height:113.422455pt;}
.h0_c00233{height:1122.666667pt;}
.w3_c00233{width:2.880000pt;}
.w2_c00233{width:6.240000pt;}
.w1_c00233{width:6.400000pt;}
.w0_c00233{width:793.333333pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:113.439955pt;}
.xd_c00233{left:119.519952pt;}
.x3_c00233{left:187.679925pt;}
.x2_c00233{left:385.759568pt;}
.x4_c00233{left:415.200000pt;}
.xf_c00233{left:462.079815pt;}
.x5_c00233{left:468.799812pt;}
.x6_c00233{left:492.160000pt;}
.x10_c00233{left:526.719789pt;}
.xb_c00233{left:550.239780pt;}
.x7_c00233{left:556.959777pt;}
.x8_c00233{left:580.320000pt;}
.xe_c00233{left:583.680000pt;}
.x11_c00233{left:601.279759pt;}
.x9_c00233{left:638.559745pt;}
.x12_c00233{left:645.279742pt;}
.xa_c00233{left:668.640000pt;}
.xc_c00233{left:672.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00234{font-family:ff1_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:ff2_c00234;src:url('chunks/assets/font_e93bd31560f9ffcdfba87114.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_c74abe3305483f1343ed5a2e.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_655d017fd386a916768300a4.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.v2_c00234{vertical-align:27.359989px;}
.v1_c00234{vertical-align:35.999986px;}
.v3_c00234{vertical-align:71.279971px;}
.ls1_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00234{word-spacing:-15.011994px;}
.ws2_c00234{word-spacing:0.000000px;}
._1_c00234{margin-left:-1.105374px;}
._0_c00234{width:1.478392px;}
._9_c00234{width:75.228717px;}
._5_c00234{width:78.799820px;}
._a_c00234{width:97.880551px;}
._c_c00234{width:114.817805px;}
._b_c00234{width:182.533941px;}
._3_c00234{width:315.502515px;}
._e_c00234{width:375.456863px;}
._d_c00234{width:393.384856px;}
._2_c00234{width:438.514466px;}
._f_c00234{width:603.871789px;}
._10_c00234{width:666.889764px;}
._11_c00234{width:699.883751px;}
._13_c00234{width:714.949745px;}
._6_c00234{width:784.109346px;}
._12_c00234{width:789.955715px;}
._4_c00234{width:859.115316px;}
._8_c00234{width:946.855373px;}
._15_c00234{width:961.867367px;}
._14_c00234{width:1096.851443px;}
._7_c00234{width:1166.011044px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs2_c00234{font-size:53.999978px;}
.fs0_c00234{font-size:59.759976px;}
.fs1_c00234{font-size:66.239974px;}
.y0_c00234{bottom:0.000000px;}
.y8_c00234{bottom:2.878947px;}
.yd_c00234{bottom:2.878969px;}
.y11_c00234{bottom:2.878986px;}
.y14_c00234{bottom:2.878999px;}
.y17_c00234{bottom:2.879012px;}
.y20_c00234{bottom:2.879105px;}
.y25_c00234{bottom:2.879125px;}
.y2a_c00234{bottom:2.879145px;}
.y30_c00234{bottom:2.879169px;}
.y34_c00234{bottom:2.879193px;}
.y38_c00234{bottom:2.879210px;}
.y3b_c00234{bottom:2.879223px;}
.y3e_c00234{bottom:2.879236px;}
.y47_c00234{bottom:2.879688px;}
.y4_c00234{bottom:75.900270px;}
.y3_c00234{bottom:114.060254px;}
.y45_c00234{bottom:170.399932px;}
.y46_c00234{bottom:176.520240px;}
.y48_c00234{bottom:179.399928px;}
.y44_c00234{bottom:188.399925px;}
.y43_c00234{bottom:223.499911px;}
.y42_c00234{bottom:276.779889px;}
.y41_c00234{bottom:309.539876px;}
.y40_c00234{bottom:342.479863px;}
.y3f_c00234{bottom:374.879850px;}
.y3d_c00234{bottom:407.100600px;}
.y3c_c00234{bottom:409.979836px;}
.y3a_c00234{bottom:440.040600px;}
.y39_c00234{bottom:442.919823px;}
.y37_c00234{bottom:472.800600px;}
.y36_c00234{bottom:475.679810px;}
.y32_c00234{bottom:508.619797px;}
.y33_c00234{bottom:514.560600px;}
.y35_c00234{bottom:517.439793px;}
.y31_c00234{bottom:526.439789px;}
.y2e_c00234{bottom:559.379776px;}
.y2f_c00234{bottom:574.320600px;}
.y2d_c00234{bottom:577.199769px;}
.y2c_c00234{bottom:595.019762px;}
.y28_c00234{bottom:627.779749px;}
.y29_c00234{bottom:633.900600px;}
.y2b_c00234{bottom:636.779745px;}
.y27_c00234{bottom:645.779742px;}
.y23_c00234{bottom:678.539729px;}
.y24_c00234{bottom:684.660600px;}
.y26_c00234{bottom:687.539725px;}
.y22_c00234{bottom:696.359721px;}
.y1e_c00234{bottom:729.299708px;}
.y1f_c00234{bottom:735.240600px;}
.y21_c00234{bottom:738.119705px;}
.y1d_c00234{bottom:747.119701px;}
.y1c_c00234{bottom:782.219687px;}
.y1b_c00234{bottom:835.499666px;}
.y1a_c00234{bottom:868.439653px;}
.y19_c00234{bottom:901.199640px;}
.y18_c00234{bottom:934.139626px;}
.y16_c00234{bottom:966.000600px;}
.y15_c00234{bottom:968.879612px;}
.y13_c00234{bottom:998.760600px;}
.y12_c00234{bottom:1001.639599px;}
.y10_c00234{bottom:1031.700600px;}
.yf_c00234{bottom:1034.579586px;}
.yb_c00234{bottom:1071.659571px;}
.yc_c00234{bottom:1075.620600px;}
.ye_c00234{bottom:1078.499569px;}
.ya_c00234{bottom:1089.659564px;}
.y6_c00234{bottom:1122.419551px;}
.y7_c00234{bottom:1128.540600px;}
.y9_c00234{bottom:1131.419547px;}
.y5_c00234{bottom:1140.239544px;}
.y2_c00234{bottom:1176.059530px;}
.y1_c00234{bottom:1196.219522px;}
.h5_c00234{height:14.940000px;}
.h9_c00234{height:14.940360px;}
.h2_c00234{height:54.628572px;}
.h3_c00234{height:56.320290px;}
.h1_c00234{height:58.651148px;}
.h6_c00234{height:83.680279px;}
.h8_c00234{height:91.600276px;}
.h4_c00234{height:92.320276px;}
.h7_c00234{height:127.600261px;}
.h0_c00234{height:1263.000000px;}
.w3_c00234{width:3.240000px;}
.w4_c00234{width:6.840000px;}
.w2_c00234{width:7.020000px;}
.w1_c00234{width:7.200000px;}
.w0_c00234{width:892.500000px;}
.x0_c00234{left:0.000000px;}
.x5_c00234{left:127.620262px;}
.x11_c00234{left:134.459946px;}
.x1_c00234{left:181.799927px;}
.x6_c00234{left:211.139916px;}
.x2_c00234{left:329.039408px;}
.x4_c00234{left:433.979826px;}
.x16_c00234{left:449.820000px;}
.x7_c00234{left:467.100000px;}
.x21_c00234{left:502.559799px;}
.x17_c00234{left:510.119796px;}
.x13_c00234{left:519.839792px;}
.x8_c00234{left:527.399789px;}
.x18_c00234{left:536.400000px;}
.x9_c00234{left:553.680000px;}
.x14_c00234{left:575.279770px;}
.x1e_c00234{left:601.739759px;}
.x19_c00234{left:609.299756px;}
.xf_c00234{left:619.019752px;}
.xa_c00234{left:626.579749px;}
.x1a_c00234{left:635.580000px;}
.x20_c00234{left:639.360000px;}
.xb_c00234{left:652.860000px;}
.x12_c00234{left:656.640000px;}
.x15_c00234{left:659.159736px;}
.x1d_c00234{left:701.099720px;}
.x1b_c00234{left:708.659717px;}
.xe_c00234{left:718.379713px;}
.xc_c00234{left:725.939710px;}
.x1c_c00234{left:734.940000px;}
.x1f_c00234{left:738.720000px;}
.xd_c00234{left:752.220000px;}
.x10_c00234{left:756.000000px;}
.x3_c00234{left:765.359694px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.v2_c00234{vertical-align:24.319990pt;}
.v1_c00234{vertical-align:31.999987pt;}
.v3_c00234{vertical-align:63.359975pt;}
.ls1_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.207463pt;}
.ws1_c00234{word-spacing:-13.551457pt;}
.ws0_c00234{word-spacing:-13.343995pt;}
.ws2_c00234{word-spacing:0.000000pt;}
._1_c00234{margin-left:-0.982555pt;}
._0_c00234{width:1.314126pt;}
._9_c00234{width:66.869971pt;}
._5_c00234{width:70.044284pt;}
._a_c00234{width:87.004934pt;}
._c_c00234{width:102.060271pt;}
._b_c00234{width:162.252392pt;}
._3_c00234{width:280.446680pt;}
._e_c00234{width:333.739434pt;}
._d_c00234{width:349.675427pt;}
._2_c00234{width:389.790636pt;}
._f_c00234{width:536.774924pt;}
._10_c00234{width:592.790901pt;}
._11_c00234{width:622.118890pt;}
._13_c00234{width:635.510884pt;}
._6_c00234{width:696.986085pt;}
._12_c00234{width:702.182858pt;}
._4_c00234{width:763.658058pt;}
._8_c00234{width:841.649221pt;}
._15_c00234{width:854.993215pt;}
._14_c00234{width:974.979061pt;}
._7_c00234{width:1036.454261pt;}
.fs2_c00234{font-size:47.999981pt;}
.fs0_c00234{font-size:53.119979pt;}
.fs1_c00234{font-size:58.879976pt;}
.y0_c00234{bottom:0.000000pt;}
.y8_c00234{bottom:2.559064pt;}
.yd_c00234{bottom:2.559083pt;}
.y11_c00234{bottom:2.559099pt;}
.y14_c00234{bottom:2.559111pt;}
.y17_c00234{bottom:2.559122pt;}
.y20_c00234{bottom:2.559204pt;}
.y25_c00234{bottom:2.559222pt;}
.y2a_c00234{bottom:2.559240pt;}
.y30_c00234{bottom:2.559261pt;}
.y34_c00234{bottom:2.559283pt;}
.y38_c00234{bottom:2.559298pt;}
.y3b_c00234{bottom:2.559309pt;}
.y3e_c00234{bottom:2.559321pt;}
.y47_c00234{bottom:2.559723pt;}
.y4_c00234{bottom:67.466906pt;}
.y3_c00234{bottom:101.386893pt;}
.y45_c00234{bottom:151.466606pt;}
.y46_c00234{bottom:156.906880pt;}
.y48_c00234{bottom:159.466603pt;}
.y44_c00234{bottom:167.466600pt;}
.y43_c00234{bottom:198.666587pt;}
.y42_c00234{bottom:246.026568pt;}
.y41_c00234{bottom:275.146557pt;}
.y40_c00234{bottom:304.426545pt;}
.y3f_c00234{bottom:333.226533pt;}
.y3d_c00234{bottom:361.867200pt;}
.y3c_c00234{bottom:364.426521pt;}
.y3a_c00234{bottom:391.147200pt;}
.y39_c00234{bottom:393.706509pt;}
.y37_c00234{bottom:420.267200pt;}
.y36_c00234{bottom:422.826498pt;}
.y32_c00234{bottom:452.106486pt;}
.y33_c00234{bottom:457.387200pt;}
.y35_c00234{bottom:459.946483pt;}
.y31_c00234{bottom:467.946479pt;}
.y2e_c00234{bottom:497.226468pt;}
.y2f_c00234{bottom:510.507200pt;}
.y2d_c00234{bottom:513.066461pt;}
.y2c_c00234{bottom:528.906455pt;}
.y28_c00234{bottom:558.026443pt;}
.y29_c00234{bottom:563.467200pt;}
.y2b_c00234{bottom:566.026440pt;}
.y27_c00234{bottom:574.026437pt;}
.y23_c00234{bottom:603.146425pt;}
.y24_c00234{bottom:608.587200pt;}
.y26_c00234{bottom:611.146422pt;}
.y22_c00234{bottom:618.986419pt;}
.y1e_c00234{bottom:648.266407pt;}
.y1f_c00234{bottom:653.547200pt;}
.y21_c00234{bottom:656.106404pt;}
.y1d_c00234{bottom:664.106401pt;}
.y1c_c00234{bottom:695.306389pt;}
.y1b_c00234{bottom:742.666370pt;}
.y1a_c00234{bottom:771.946358pt;}
.y19_c00234{bottom:801.066346pt;}
.y18_c00234{bottom:830.346335pt;}
.y16_c00234{bottom:858.667200pt;}
.y15_c00234{bottom:861.226322pt;}
.y13_c00234{bottom:887.787200pt;}
.y12_c00234{bottom:890.346311pt;}
.y10_c00234{bottom:917.067200pt;}
.yf_c00234{bottom:919.626299pt;}
.yb_c00234{bottom:952.586286pt;}
.yc_c00234{bottom:956.107200pt;}
.ye_c00234{bottom:958.666283pt;}
.ya_c00234{bottom:968.586279pt;}
.y6_c00234{bottom:997.706268pt;}
.y7_c00234{bottom:1003.147200pt;}
.y9_c00234{bottom:1005.706264pt;}
.y5_c00234{bottom:1013.546261pt;}
.y2_c00234{bottom:1045.386249pt;}
.y1_c00234{bottom:1063.306241pt;}
.h5_c00234{height:13.280000pt;}
.h9_c00234{height:13.280320pt;}
.h2_c00234{height:48.558731pt;}
.h3_c00234{height:50.062480pt;}
.h1_c00234{height:52.134354pt;}
.h6_c00234{height:74.382470pt;}
.h8_c00234{height:81.422467pt;}
.h4_c00234{height:82.062467pt;}
.h7_c00234{height:113.422455pt;}
.h0_c00234{height:1122.666667pt;}
.w3_c00234{width:2.880000pt;}
.w4_c00234{width:6.080000pt;}
.w2_c00234{width:6.240000pt;}
.w1_c00234{width:6.400000pt;}
.w0_c00234{width:793.333333pt;}
.x0_c00234{left:0.000000pt;}
.x5_c00234{left:113.440233pt;}
.x11_c00234{left:119.519952pt;}
.x1_c00234{left:161.599935pt;}
.x6_c00234{left:187.679925pt;}
.x2_c00234{left:292.479474pt;}
.x4_c00234{left:385.759846pt;}
.x16_c00234{left:399.840000pt;}
.x7_c00234{left:415.200000pt;}
.x21_c00234{left:446.719821pt;}
.x17_c00234{left:453.439819pt;}
.x13_c00234{left:462.079815pt;}
.x8_c00234{left:468.799812pt;}
.x18_c00234{left:476.800000pt;}
.x9_c00234{left:492.160000pt;}
.x14_c00234{left:511.359795pt;}
.x1e_c00234{left:534.879786pt;}
.x19_c00234{left:541.599783pt;}
.xf_c00234{left:550.239780pt;}
.xa_c00234{left:556.959777pt;}
.x1a_c00234{left:564.960000pt;}
.x20_c00234{left:568.320000pt;}
.xb_c00234{left:580.320000pt;}
.x12_c00234{left:583.680000pt;}
.x15_c00234{left:585.919766pt;}
.x1d_c00234{left:623.199751pt;}
.x1b_c00234{left:629.919748pt;}
.xe_c00234{left:638.559745pt;}
.xc_c00234{left:645.279742pt;}
.x1c_c00234{left:653.280000pt;}
.x1f_c00234{left:656.640000pt;}
.xd_c00234{left:668.640000pt;}
.x10_c00234{left:672.000000pt;}
.x3_c00234{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00235{font-family:ff1_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:ff2_c00235;src:url('chunks/assets/font_5983cad38ae0b4e23ed44d7b.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_bfa7791dfe7f4386d218775c.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_32802869afe83a4ecc3d2480.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.v3_c00235{vertical-align:27.359989px;}
.v1_c00235{vertical-align:35.999986px;}
.v2_c00235{vertical-align:71.999971px;}
.ls1_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00235{word-spacing:-15.245389px;}
.ws0_c00235{word-spacing:-15.011994px;}
.ws2_c00235{word-spacing:0.000000px;}
._1_c00235{margin-left:-1.105374px;}
._0_c00235{width:1.195563px;}
._9_c00235{width:75.228717px;}
._5_c00235{width:78.799820px;}
._a_c00235{width:97.880551px;}
._14_c00235{width:114.817805px;}
._b_c00235{width:182.533941px;}
._10_c00235{width:314.679970px;}
._2_c00235{width:374.634318px;}
._15_c00235{width:392.562310px;}
._f_c00235{width:438.797295px;}
._d_c00235{width:518.853888px;}
._c_c00235{width:536.781881px;}
._3_c00235{width:603.871789px;}
._6_c00235{width:714.949745px;}
._e_c00235{width:748.001171px;}
._11_c00235{width:769.043352px;}
._4_c00235{width:789.955715px;}
._12_c00235{width:859.115316px;}
._13_c00235{width:946.855373px;}
._8_c00235{width:977.112699px;}
._7_c00235{width:1096.851443px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs2_c00235{font-size:53.999978px;}
.fs0_c00235{font-size:59.759976px;}
.fs1_c00235{font-size:66.239974px;}
.y0_c00235{bottom:0.000000px;}
.y8_c00235{bottom:2.878955px;}
.yd_c00235{bottom:2.878975px;}
.y11_c00235{bottom:2.878992px;}
.y14_c00235{bottom:2.879005px;}
.y17_c00235{bottom:2.879018px;}
.y20_c00235{bottom:2.879110px;}
.y25_c00235{bottom:2.879131px;}
.y2a_c00235{bottom:2.879151px;}
.y2f_c00235{bottom:2.879171px;}
.y34_c00235{bottom:2.879192px;}
.y39_c00235{bottom:2.879213px;}
.y3d_c00235{bottom:2.879230px;}
.y46_c00235{bottom:2.879322px;}
.y4_c00235{bottom:75.899970px;}
.y3_c00235{bottom:114.059954px;}
.y44_c00235{bottom:184.979926px;}
.y45_c00235{bottom:191.100600px;}
.y47_c00235{bottom:193.979922px;}
.y43_c00235{bottom:202.799919px;}
.y42_c00235{bottom:237.899905px;}
.y41_c00235{bottom:291.359883px;}
.y40_c00235{bottom:324.119870px;}
.y3f_c00235{bottom:357.059857px;}
.y3e_c00235{bottom:389.459844px;}
.y3c_c00235{bottom:421.680600px;}
.y3b_c00235{bottom:424.559830px;}
.y37_c00235{bottom:457.499817px;}
.y38_c00235{bottom:463.440600px;}
.y3a_c00235{bottom:466.319813px;}
.y36_c00235{bottom:475.319810px;}
.y32_c00235{bottom:512.399795px;}
.y33_c00235{bottom:516.360600px;}
.y35_c00235{bottom:519.239792px;}
.y31_c00235{bottom:530.399788px;}
.y2d_c00235{bottom:563.159775px;}
.y2e_c00235{bottom:569.280600px;}
.y30_c00235{bottom:572.159771px;}
.y2c_c00235{bottom:580.979768px;}
.y28_c00235{bottom:613.919754px;}
.y29_c00235{bottom:619.860600px;}
.y2b_c00235{bottom:622.739751px;}
.y27_c00235{bottom:631.739747px;}
.y23_c00235{bottom:664.499734px;}
.y24_c00235{bottom:670.620600px;}
.y26_c00235{bottom:673.499731px;}
.y22_c00235{bottom:682.499727px;}
.y1e_c00235{bottom:715.259714px;}
.y1f_c00235{bottom:721.380600px;}
.y21_c00235{bottom:724.259710px;}
.y1d_c00235{bottom:733.079707px;}
.y1c_c00235{bottom:768.179693px;}
.y1b_c00235{bottom:821.639671px;}
.y1a_c00235{bottom:854.399658px;}
.y19_c00235{bottom:887.339645px;}
.y18_c00235{bottom:919.739632px;}
.y16_c00235{bottom:951.960600px;}
.y15_c00235{bottom:954.839618px;}
.y13_c00235{bottom:984.900600px;}
.y12_c00235{bottom:987.779605px;}
.y10_c00235{bottom:1017.660600px;}
.yf_c00235{bottom:1020.539592px;}
.yb_c00235{bottom:1053.479579px;}
.yc_c00235{bottom:1059.420600px;}
.ye_c00235{bottom:1062.299575px;}
.ya_c00235{bottom:1071.299571px;}
.y6_c00235{bottom:1104.059558px;}
.y7_c00235{bottom:1110.180600px;}
.y9_c00235{bottom:1113.059555px;}
.y5_c00235{bottom:1122.059551px;}
.y2_c00235{bottom:1157.159537px;}
.y1_c00235{bottom:1196.039522px;}
.h5_c00235{height:14.940000px;}
.h2_c00235{height:54.628572px;}
.h3_c00235{height:56.320290px;}
.h1_c00235{height:58.651148px;}
.h8_c00235{height:83.680279px;}
.h6_c00235{height:91.600276px;}
.h4_c00235{height:92.320276px;}
.h9_c00235{height:127.600261px;}
.h7_c00235{height:128.320261px;}
.h0_c00235{height:1263.000000px;}
.w3_c00235{width:3.240000px;}
.w2_c00235{width:6.840000px;}
.w1_c00235{width:7.020000px;}
.w0_c00235{width:892.500000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:127.619949px;}
.xe_c00235{left:134.459946px;}
.x13_c00235{left:201.419919px;}
.x3_c00235{left:211.139916px;}
.x2_c00235{left:433.979514px;}
.x4_c00235{left:449.820000px;}
.x14_c00235{left:457.380000px;}
.x10_c00235{left:502.559799px;}
.x5_c00235{left:510.119796px;}
.x15_c00235{left:517.679793px;}
.x6_c00235{left:536.400000px;}
.x16_c00235{left:543.960000px;}
.x1c_c00235{left:575.279770px;}
.x11_c00235{left:582.839767px;}
.xc_c00235{left:601.739759px;}
.x7_c00235{left:609.299756px;}
.x17_c00235{left:616.859753px;}
.x8_c00235{left:635.580000px;}
.xf_c00235{left:639.360000px;}
.x18_c00235{left:643.140000px;}
.x1d_c00235{left:659.159736px;}
.x12_c00235{left:666.719733px;}
.xb_c00235{left:701.099720px;}
.x9_c00235{left:708.659717px;}
.x19_c00235{left:716.219714px;}
.xa_c00235{left:734.940000px;}
.xd_c00235{left:738.720000px;}
.x1a_c00235{left:742.500000px;}
.x1b_c00235{left:746.280000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.v3_c00235{vertical-align:24.319990pt;}
.v1_c00235{vertical-align:31.999987pt;}
.v2_c00235{vertical-align:63.999974pt;}
.ls1_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:0.207463pt;}
.ws1_c00235{word-spacing:-13.551457pt;}
.ws0_c00235{word-spacing:-13.343995pt;}
.ws2_c00235{word-spacing:0.000000pt;}
._1_c00235{margin-left:-0.982555pt;}
._0_c00235{width:1.062723pt;}
._9_c00235{width:66.869971pt;}
._5_c00235{width:70.044284pt;}
._a_c00235{width:87.004934pt;}
._14_c00235{width:102.060271pt;}
._b_c00235{width:162.252392pt;}
._10_c00235{width:279.715529pt;}
._2_c00235{width:333.008282pt;}
._15_c00235{width:348.944276pt;}
._f_c00235{width:390.042040pt;}
._d_c00235{width:461.203456pt;}
._c_c00235{width:477.139450pt;}
._3_c00235{width:536.774924pt;}
._6_c00235{width:635.510884pt;}
._e_c00235{width:664.889930pt;}
._11_c00235{width:683.594090pt;}
._4_c00235{width:702.182858pt;}
._12_c00235{width:763.658058pt;}
._13_c00235{width:841.649221pt;}
._8_c00235{width:868.544621pt;}
._7_c00235{width:974.979061pt;}
.fs2_c00235{font-size:47.999981pt;}
.fs0_c00235{font-size:53.119979pt;}
.fs1_c00235{font-size:58.879976pt;}
.y0_c00235{bottom:0.000000pt;}
.y8_c00235{bottom:2.559071pt;}
.yd_c00235{bottom:2.559089pt;}
.y11_c00235{bottom:2.559104pt;}
.y14_c00235{bottom:2.559115pt;}
.y17_c00235{bottom:2.559127pt;}
.y20_c00235{bottom:2.559209pt;}
.y25_c00235{bottom:2.559227pt;}
.y2a_c00235{bottom:2.559245pt;}
.y2f_c00235{bottom:2.559263pt;}
.y34_c00235{bottom:2.559282pt;}
.y39_c00235{bottom:2.559301pt;}
.y3d_c00235{bottom:2.559316pt;}
.y46_c00235{bottom:2.559398pt;}
.y4_c00235{bottom:67.466640pt;}
.y3_c00235{bottom:101.386626pt;}
.y44_c00235{bottom:164.426601pt;}
.y45_c00235{bottom:169.867200pt;}
.y47_c00235{bottom:172.426598pt;}
.y43_c00235{bottom:180.266595pt;}
.y42_c00235{bottom:211.466582pt;}
.y41_c00235{bottom:258.986563pt;}
.y40_c00235{bottom:288.106551pt;}
.y3f_c00235{bottom:317.386540pt;}
.y3e_c00235{bottom:346.186528pt;}
.y3c_c00235{bottom:374.827200pt;}
.y3b_c00235{bottom:377.386516pt;}
.y37_c00235{bottom:406.666504pt;}
.y38_c00235{bottom:411.947200pt;}
.y3a_c00235{bottom:414.506501pt;}
.y36_c00235{bottom:422.506498pt;}
.y32_c00235{bottom:455.466484pt;}
.y33_c00235{bottom:458.987200pt;}
.y35_c00235{bottom:461.546482pt;}
.y31_c00235{bottom:471.466478pt;}
.y2d_c00235{bottom:500.586466pt;}
.y2e_c00235{bottom:506.027200pt;}
.y30_c00235{bottom:508.586463pt;}
.y2c_c00235{bottom:516.426460pt;}
.y28_c00235{bottom:545.706448pt;}
.y29_c00235{bottom:550.987200pt;}
.y2b_c00235{bottom:553.546445pt;}
.y27_c00235{bottom:561.546442pt;}
.y23_c00235{bottom:590.666430pt;}
.y24_c00235{bottom:596.107200pt;}
.y26_c00235{bottom:598.666427pt;}
.y22_c00235{bottom:606.666424pt;}
.y1e_c00235{bottom:635.786412pt;}
.y1f_c00235{bottom:641.227200pt;}
.y21_c00235{bottom:643.786409pt;}
.y1d_c00235{bottom:651.626406pt;}
.y1c_c00235{bottom:682.826394pt;}
.y1b_c00235{bottom:730.346375pt;}
.y1a_c00235{bottom:759.466363pt;}
.y19_c00235{bottom:788.746351pt;}
.y18_c00235{bottom:817.546340pt;}
.y16_c00235{bottom:846.187200pt;}
.y15_c00235{bottom:848.746327pt;}
.y13_c00235{bottom:875.467200pt;}
.y12_c00235{bottom:878.026315pt;}
.y10_c00235{bottom:904.587200pt;}
.yf_c00235{bottom:907.146304pt;}
.yb_c00235{bottom:936.426292pt;}
.yc_c00235{bottom:941.707200pt;}
.ye_c00235{bottom:944.266289pt;}
.ya_c00235{bottom:952.266286pt;}
.y6_c00235{bottom:981.386274pt;}
.y7_c00235{bottom:986.827200pt;}
.y9_c00235{bottom:989.386271pt;}
.y5_c00235{bottom:997.386268pt;}
.y2_c00235{bottom:1028.586255pt;}
.y1_c00235{bottom:1063.146241pt;}
.h5_c00235{height:13.280000pt;}
.h2_c00235{height:48.558731pt;}
.h3_c00235{height:50.062480pt;}
.h1_c00235{height:52.134354pt;}
.h8_c00235{height:74.382470pt;}
.h6_c00235{height:81.422467pt;}
.h4_c00235{height:82.062467pt;}
.h9_c00235{height:113.422455pt;}
.h7_c00235{height:114.062454pt;}
.h0_c00235{height:1122.666667pt;}
.w3_c00235{width:2.880000pt;}
.w2_c00235{width:6.080000pt;}
.w1_c00235{width:6.240000pt;}
.w0_c00235{width:793.333333pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:113.439955pt;}
.xe_c00235{left:119.519952pt;}
.x13_c00235{left:179.039928pt;}
.x3_c00235{left:187.679925pt;}
.x2_c00235{left:385.759568pt;}
.x4_c00235{left:399.840000pt;}
.x14_c00235{left:406.560000pt;}
.x10_c00235{left:446.719821pt;}
.x5_c00235{left:453.439819pt;}
.x15_c00235{left:460.159816pt;}
.x6_c00235{left:476.800000pt;}
.x16_c00235{left:483.520000pt;}
.x1c_c00235{left:511.359795pt;}
.x11_c00235{left:518.079793pt;}
.xc_c00235{left:534.879786pt;}
.x7_c00235{left:541.599783pt;}
.x17_c00235{left:548.319781pt;}
.x8_c00235{left:564.960000pt;}
.xf_c00235{left:568.320000pt;}
.x18_c00235{left:571.680000pt;}
.x1d_c00235{left:585.919766pt;}
.x12_c00235{left:592.639763pt;}
.xb_c00235{left:623.199751pt;}
.x9_c00235{left:629.919748pt;}
.x19_c00235{left:636.639745pt;}
.xa_c00235{left:653.280000pt;}
.xd_c00235{left:656.640000pt;}
.x1a_c00235{left:660.000000pt;}
.x1b_c00235{left:663.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00236{font-family:ff1_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:ff2_c00236;src:url('chunks/assets/font_8d5e0afbe0dbfa3039540a38.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_30b4fd0ea5fc4472eaf095d2.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_b8794dad71f9c231da839b78.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.v3_c00236{vertical-align:27.359989px;}
.v1_c00236{vertical-align:35.999986px;}
.v2_c00236{vertical-align:71.279971px;}
.ls1_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00236{word-spacing:-15.011994px;}
.ws2_c00236{word-spacing:0.000000px;}
._1_c00236{margin-left:-1.105374px;}
._0_c00236{width:1.478392px;}
._9_c00236{width:75.228717px;}
._5_c00236{width:78.799820px;}
._a_c00236{width:97.880551px;}
._c_c00236{width:114.817805px;}
._b_c00236{width:182.533941px;}
._f_c00236{width:315.502515px;}
._2_c00236{width:375.456863px;}
._14_c00236{width:393.384856px;}
._e_c00236{width:438.514466px;}
._15_c00236{width:603.871789px;}
._3_c00236{width:666.889764px;}
._6_c00236{width:714.949745px;}
._d_c00236{width:747.718342px;}
._11_c00236{width:784.109346px;}
._4_c00236{width:789.955715px;}
._10_c00236{width:859.115316px;}
._13_c00236{width:946.855373px;}
._8_c00236{width:1016.014974px;}
._7_c00236{width:1096.851443px;}
._12_c00236{width:1166.011044px;}
.fc0_c00236{color:rgb(0,0,0);}
.fs2_c00236{font-size:53.999978px;}
.fs0_c00236{font-size:59.759976px;}
.fs1_c00236{font-size:66.239974px;}
.y0_c00236{bottom:0.000000px;}
.y8_c00236{bottom:2.878947px;}
.ye_c00236{bottom:2.878971px;}
.y11_c00236{bottom:2.878992px;}
.y14_c00236{bottom:2.879005px;}
.y17_c00236{bottom:2.879018px;}
.y20_c00236{bottom:2.879110px;}
.y25_c00236{bottom:2.879130px;}
.y2a_c00236{bottom:2.879152px;}
.y2e_c00236{bottom:2.879169px;}
.y31_c00236{bottom:2.879182px;}
.y34_c00236{bottom:2.879195px;}
.y3d_c00236{bottom:2.879288px;}
.y42_c00236{bottom:2.879308px;}
.y47_c00236{bottom:2.879688px;}
.y4_c00236{bottom:75.900270px;}
.y3_c00236{bottom:114.060254px;}
.y45_c00236{bottom:170.399932px;}
.y46_c00236{bottom:176.520240px;}
.y48_c00236{bottom:179.399928px;}
.y44_c00236{bottom:188.399925px;}
.y40_c00236{bottom:221.159912px;}
.y41_c00236{bottom:227.280600px;}
.y43_c00236{bottom:230.159908px;}
.y3f_c00236{bottom:238.979904px;}
.y3b_c00236{bottom:271.919891px;}
.y3c_c00236{bottom:277.860600px;}
.y3e_c00236{bottom:280.739888px;}
.y3a_c00236{bottom:289.739884px;}
.y39_c00236{bottom:324.839870px;}
.y38_c00236{bottom:378.119849px;}
.y37_c00236{bottom:411.059836px;}
.y36_c00236{bottom:443.819822px;}
.y35_c00236{bottom:476.399809px;}
.y33_c00236{bottom:508.620600px;}
.y32_c00236{bottom:511.499795px;}
.y30_c00236{bottom:541.380600px;}
.y2f_c00236{bottom:544.259782px;}
.y2d_c00236{bottom:574.320600px;}
.y2c_c00236{bottom:577.199769px;}
.y28_c00236{bottom:614.279754px;}
.y29_c00236{bottom:618.240600px;}
.y2b_c00236{bottom:621.119752px;}
.y27_c00236{bottom:632.279747px;}
.y23_c00236{bottom:665.039734px;}
.y24_c00236{bottom:671.160600px;}
.y26_c00236{bottom:674.039730px;}
.y22_c00236{bottom:682.859727px;}
.y1e_c00236{bottom:715.799714px;}
.y1f_c00236{bottom:721.740600px;}
.y21_c00236{bottom:724.619710px;}
.y1d_c00236{bottom:733.619707px;}
.y1c_c00236{bottom:768.719693px;}
.y1b_c00236{bottom:821.999671px;}
.y1a_c00236{bottom:854.939658px;}
.y19_c00236{bottom:887.699645px;}
.y18_c00236{bottom:920.279632px;}
.y16_c00236{bottom:952.500600px;}
.y15_c00236{bottom:955.379618px;}
.y13_c00236{bottom:985.260600px;}
.y12_c00236{bottom:988.139605px;}
.y10_c00236{bottom:1018.200600px;}
.yf_c00236{bottom:1021.079592px;}
.yc_c00236{bottom:1053.839578px;}
.yd_c00236{bottom:1068.780600px;}
.yb_c00236{bottom:1071.659571px;}
.ya_c00236{bottom:1089.659564px;}
.y6_c00236{bottom:1122.419551px;}
.y7_c00236{bottom:1128.540600px;}
.y9_c00236{bottom:1131.419547px;}
.y5_c00236{bottom:1140.239544px;}
.y2_c00236{bottom:1176.059530px;}
.y1_c00236{bottom:1196.219522px;}
.h5_c00236{height:14.940000px;}
.h9_c00236{height:14.940360px;}
.h2_c00236{height:54.628572px;}
.h3_c00236{height:56.320290px;}
.h1_c00236{height:58.651148px;}
.h8_c00236{height:83.680279px;}
.h7_c00236{height:91.600276px;}
.h4_c00236{height:92.320276px;}
.h6_c00236{height:127.600261px;}
.h0_c00236{height:1263.000000px;}
.w3_c00236{width:3.240000px;}
.w2_c00236{width:6.840000px;}
.w1_c00236{width:7.020000px;}
.w4_c00236{width:7.200000px;}
.w0_c00236{width:892.500000px;}
.x0_c00236{left:0.000000px;}
.x5_c00236{left:127.620262px;}
.x11_c00236{left:134.459946px;}
.x1_c00236{left:181.799927px;}
.x6_c00236{left:211.139916px;}
.x2_c00236{left:329.039408px;}
.x4_c00236{left:433.979826px;}
.x7_c00236{left:449.820000px;}
.x16_c00236{left:467.100000px;}
.x13_c00236{left:502.559799px;}
.x8_c00236{left:510.119796px;}
.x21_c00236{left:519.839792px;}
.x17_c00236{left:527.399789px;}
.x9_c00236{left:536.400000px;}
.x18_c00236{left:553.680000px;}
.x22_c00236{left:575.279770px;}
.x14_c00236{left:592.559763px;}
.xf_c00236{left:601.739759px;}
.xa_c00236{left:609.299756px;}
.x1e_c00236{left:619.019752px;}
.x19_c00236{left:626.579749px;}
.xb_c00236{left:635.580000px;}
.x12_c00236{left:639.360000px;}
.x1a_c00236{left:652.860000px;}
.x20_c00236{left:656.640000px;}
.x23_c00236{left:659.159736px;}
.x15_c00236{left:676.439729px;}
.xe_c00236{left:701.099720px;}
.xc_c00236{left:708.659717px;}
.x1d_c00236{left:718.379713px;}
.x1b_c00236{left:725.939710px;}
.xd_c00236{left:734.940000px;}
.x10_c00236{left:738.720000px;}
.x1c_c00236{left:752.220000px;}
.x1f_c00236{left:756.000000px;}
.x3_c00236{left:765.359694px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.v3_c00236{vertical-align:24.319990pt;}
.v1_c00236{vertical-align:31.999987pt;}
.v2_c00236{vertical-align:63.359975pt;}
.ls1_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.207463pt;}
.ws1_c00236{word-spacing:-13.551457pt;}
.ws0_c00236{word-spacing:-13.343995pt;}
.ws2_c00236{word-spacing:0.000000pt;}
._1_c00236{margin-left:-0.982555pt;}
._0_c00236{width:1.314126pt;}
._9_c00236{width:66.869971pt;}
._5_c00236{width:70.044284pt;}
._a_c00236{width:87.004934pt;}
._c_c00236{width:102.060271pt;}
._b_c00236{width:162.252392pt;}
._f_c00236{width:280.446680pt;}
._2_c00236{width:333.739434pt;}
._14_c00236{width:349.675427pt;}
._e_c00236{width:389.790636pt;}
._15_c00236{width:536.774924pt;}
._3_c00236{width:592.790901pt;}
._6_c00236{width:635.510884pt;}
._d_c00236{width:664.638526pt;}
._11_c00236{width:696.986085pt;}
._4_c00236{width:702.182858pt;}
._10_c00236{width:763.658058pt;}
._13_c00236{width:841.649221pt;}
._8_c00236{width:903.124421pt;}
._7_c00236{width:974.979061pt;}
._12_c00236{width:1036.454261pt;}
.fs2_c00236{font-size:47.999981pt;}
.fs0_c00236{font-size:53.119979pt;}
.fs1_c00236{font-size:58.879976pt;}
.y0_c00236{bottom:0.000000pt;}
.y8_c00236{bottom:2.559064pt;}
.ye_c00236{bottom:2.559086pt;}
.y11_c00236{bottom:2.559104pt;}
.y14_c00236{bottom:2.559115pt;}
.y17_c00236{bottom:2.559127pt;}
.y20_c00236{bottom:2.559209pt;}
.y25_c00236{bottom:2.559227pt;}
.y2a_c00236{bottom:2.559246pt;}
.y2e_c00236{bottom:2.559261pt;}
.y31_c00236{bottom:2.559273pt;}
.y34_c00236{bottom:2.559285pt;}
.y3d_c00236{bottom:2.559367pt;}
.y42_c00236{bottom:2.559385pt;}
.y47_c00236{bottom:2.559723pt;}
.y4_c00236{bottom:67.466906pt;}
.y3_c00236{bottom:101.386893pt;}
.y45_c00236{bottom:151.466606pt;}
.y46_c00236{bottom:156.906880pt;}
.y48_c00236{bottom:159.466603pt;}
.y44_c00236{bottom:167.466600pt;}
.y40_c00236{bottom:196.586588pt;}
.y41_c00236{bottom:202.027200pt;}
.y43_c00236{bottom:204.586585pt;}
.y3f_c00236{bottom:212.426582pt;}
.y3b_c00236{bottom:241.706570pt;}
.y3c_c00236{bottom:246.987200pt;}
.y3e_c00236{bottom:249.546567pt;}
.y3a_c00236{bottom:257.546564pt;}
.y39_c00236{bottom:288.746551pt;}
.y38_c00236{bottom:336.106532pt;}
.y37_c00236{bottom:365.386521pt;}
.y36_c00236{bottom:394.506509pt;}
.y35_c00236{bottom:423.466497pt;}
.y33_c00236{bottom:452.107200pt;}
.y32_c00236{bottom:454.666485pt;}
.y30_c00236{bottom:481.227200pt;}
.y2f_c00236{bottom:483.786473pt;}
.y2d_c00236{bottom:510.507200pt;}
.y2c_c00236{bottom:513.066461pt;}
.y28_c00236{bottom:546.026448pt;}
.y29_c00236{bottom:549.547200pt;}
.y2b_c00236{bottom:552.106446pt;}
.y27_c00236{bottom:562.026442pt;}
.y23_c00236{bottom:591.146430pt;}
.y24_c00236{bottom:596.587200pt;}
.y26_c00236{bottom:599.146427pt;}
.y22_c00236{bottom:606.986424pt;}
.y1e_c00236{bottom:636.266412pt;}
.y1f_c00236{bottom:641.547200pt;}
.y21_c00236{bottom:644.106409pt;}
.y1d_c00236{bottom:652.106406pt;}
.y1c_c00236{bottom:683.306393pt;}
.y1b_c00236{bottom:730.666374pt;}
.y1a_c00236{bottom:759.946363pt;}
.y19_c00236{bottom:789.066351pt;}
.y18_c00236{bottom:818.026339pt;}
.y16_c00236{bottom:846.667200pt;}
.y15_c00236{bottom:849.226327pt;}
.y13_c00236{bottom:875.787200pt;}
.y12_c00236{bottom:878.346315pt;}
.y10_c00236{bottom:905.067200pt;}
.yf_c00236{bottom:907.626304pt;}
.yc_c00236{bottom:936.746292pt;}
.yd_c00236{bottom:950.027200pt;}
.yb_c00236{bottom:952.586286pt;}
.ya_c00236{bottom:968.586279pt;}
.y6_c00236{bottom:997.706268pt;}
.y7_c00236{bottom:1003.147200pt;}
.y9_c00236{bottom:1005.706264pt;}
.y5_c00236{bottom:1013.546261pt;}
.y2_c00236{bottom:1045.386249pt;}
.y1_c00236{bottom:1063.306241pt;}
.h5_c00236{height:13.280000pt;}
.h9_c00236{height:13.280320pt;}
.h2_c00236{height:48.558731pt;}
.h3_c00236{height:50.062480pt;}
.h1_c00236{height:52.134354pt;}
.h8_c00236{height:74.382470pt;}
.h7_c00236{height:81.422467pt;}
.h4_c00236{height:82.062467pt;}
.h6_c00236{height:113.422455pt;}
.h0_c00236{height:1122.666667pt;}
.w3_c00236{width:2.880000pt;}
.w2_c00236{width:6.080000pt;}
.w1_c00236{width:6.240000pt;}
.w4_c00236{width:6.400000pt;}
.w0_c00236{width:793.333333pt;}
.x0_c00236{left:0.000000pt;}
.x5_c00236{left:113.440233pt;}
.x11_c00236{left:119.519952pt;}
.x1_c00236{left:161.599935pt;}
.x6_c00236{left:187.679925pt;}
.x2_c00236{left:292.479474pt;}
.x4_c00236{left:385.759846pt;}
.x7_c00236{left:399.840000pt;}
.x16_c00236{left:415.200000pt;}
.x13_c00236{left:446.719821pt;}
.x8_c00236{left:453.439819pt;}
.x21_c00236{left:462.079815pt;}
.x17_c00236{left:468.799812pt;}
.x9_c00236{left:476.800000pt;}
.x18_c00236{left:492.160000pt;}
.x22_c00236{left:511.359795pt;}
.x14_c00236{left:526.719789pt;}
.xf_c00236{left:534.879786pt;}
.xa_c00236{left:541.599783pt;}
.x1e_c00236{left:550.239780pt;}
.x19_c00236{left:556.959777pt;}
.xb_c00236{left:564.960000pt;}
.x12_c00236{left:568.320000pt;}
.x1a_c00236{left:580.320000pt;}
.x20_c00236{left:583.680000pt;}
.x23_c00236{left:585.919766pt;}
.x15_c00236{left:601.279759pt;}
.xe_c00236{left:623.199751pt;}
.xc_c00236{left:629.919748pt;}
.x1d_c00236{left:638.559745pt;}
.x1b_c00236{left:645.279742pt;}
.xd_c00236{left:653.280000pt;}
.x10_c00236{left:656.640000pt;}
.x1c_c00236{left:668.640000pt;}
.x1f_c00236{left:672.000000pt;}
.x3_c00236{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00237{font-family:ff1_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:ff2_c00237;src:url('chunks/assets/font_0d4d5dfd2ac4b7dd69d3cae6.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_218e36c0a33c48804fa6dee9.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_d63f8c704b78bc4803ac20c1.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.v2_c00237{vertical-align:35.279986px;}
.v1_c00237{vertical-align:71.279971px;}
.ls1_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00237{word-spacing:-15.245389px;}
.ws0_c00237{word-spacing:-15.011994px;}
.ws2_c00237{word-spacing:0.000000px;}
._1_c00237{margin-left:-1.105374px;}
._0_c00237{width:1.195563px;}
._a_c00237{width:75.228717px;}
._5_c00237{width:78.799820px;}
._b_c00237{width:97.880551px;}
._d_c00237{width:114.817805px;}
._c_c00237{width:182.533941px;}
._13_c00237{width:374.634318px;}
._12_c00237{width:392.562310px;}
._e_c00237{width:438.797295px;}
._14_c00237{width:603.871789px;}
._3_c00237{width:666.889764px;}
._6_c00237{width:714.949745px;}
._2_c00237{width:729.907739px;}
._f_c00237{width:784.109346px;}
._4_c00237{width:789.955715px;}
._11_c00237{width:946.855373px;}
._9_c00237{width:1016.014974px;}
._7_c00237{width:1096.851443px;}
._10_c00237{width:1166.011044px;}
._8_c00237{width:1290.377484px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs2_c00237{font-size:53.999978px;}
.fs0_c00237{font-size:59.759976px;}
.fs1_c00237{font-size:66.239974px;}
.y0_c00237{bottom:0.000000px;}
.y9_c00237{bottom:2.878958px;}
.ye_c00237{bottom:2.878986px;}
.y11_c00237{bottom:2.879006px;}
.y14_c00237{bottom:2.879019px;}
.y17_c00237{bottom:2.879032px;}
.y20_c00237{bottom:2.879125px;}
.y24_c00237{bottom:2.879141px;}
.y27_c00237{bottom:2.879154px;}
.y30_c00237{bottom:2.879247px;}
.y35_c00237{bottom:2.879267px;}
.y3a_c00237{bottom:2.879287px;}
.y40_c00237{bottom:2.879311px;}
.y43_c00237{bottom:2.879691px;}
.y4_c00237{bottom:75.899970px;}
.y3_c00237{bottom:114.059954px;}
.y42_c00237{bottom:168.600240px;}
.y41_c00237{bottom:171.479931px;}
.y3e_c00237{bottom:204.419918px;}
.y3f_c00237{bottom:219.360600px;}
.y3d_c00237{bottom:222.239911px;}
.y3c_c00237{bottom:240.059904px;}
.y38_c00237{bottom:272.819891px;}
.y39_c00237{bottom:278.940600px;}
.y3b_c00237{bottom:281.819887px;}
.y37_c00237{bottom:290.819884px;}
.y33_c00237{bottom:323.579871px;}
.y34_c00237{bottom:329.700600px;}
.y36_c00237{bottom:332.579867px;}
.y32_c00237{bottom:341.399863px;}
.y2e_c00237{bottom:374.339850px;}
.y2f_c00237{bottom:380.280600px;}
.y31_c00237{bottom:383.159847px;}
.y2d_c00237{bottom:392.159843px;}
.y2c_c00237{bottom:427.259829px;}
.y2b_c00237{bottom:480.539808px;}
.y2a_c00237{bottom:513.479795px;}
.y29_c00237{bottom:546.239782px;}
.y28_c00237{bottom:579.179768px;}
.y26_c00237{bottom:611.040600px;}
.y25_c00237{bottom:613.919754px;}
.y23_c00237{bottom:643.800600px;}
.y22_c00237{bottom:646.679741px;}
.y1e_c00237{bottom:679.619728px;}
.y1f_c00237{bottom:685.560600px;}
.y21_c00237{bottom:688.439725px;}
.y1d_c00237{bottom:697.439721px;}
.y1c_c00237{bottom:732.539707px;}
.y1b_c00237{bottom:785.819686px;}
.y1a_c00237{bottom:818.759672px;}
.y19_c00237{bottom:851.519659px;}
.y18_c00237{bottom:884.099646px;}
.y16_c00237{bottom:916.320600px;}
.y15_c00237{bottom:919.199632px;}
.y13_c00237{bottom:949.080600px;}
.y12_c00237{bottom:951.959619px;}
.y10_c00237{bottom:982.020600px;}
.yf_c00237{bottom:984.899606px;}
.yc_c00237{bottom:1017.659593px;}
.yd_c00237{bottom:1032.600600px;}
.yb_c00237{bottom:1035.479586px;}
.ya_c00237{bottom:1053.479579px;}
.y7_c00237{bottom:1086.239566px;}
.y8_c00237{bottom:1101.180600px;}
.y6_c00237{bottom:1104.059558px;}
.y5_c00237{bottom:1122.059551px;}
.y2_c00237{bottom:1157.159537px;}
.y1_c00237{bottom:1196.039522px;}
.h5_c00237{height:14.940000px;}
.h8_c00237{height:14.940360px;}
.h2_c00237{height:54.628572px;}
.h3_c00237{height:56.320290px;}
.h1_c00237{height:58.651148px;}
.h6_c00237{height:91.600276px;}
.h7_c00237{height:92.320276px;}
.h4_c00237{height:127.600261px;}
.h0_c00237{height:1263.000000px;}
.w3_c00237{width:3.240000px;}
.w2_c00237{width:6.840000px;}
.w1_c00237{width:7.020000px;}
.w4_c00237{width:7.200000px;}
.w0_c00237{width:892.500000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:127.619949px;}
.xe_c00237{left:134.459946px;}
.x3_c00237{left:211.139916px;}
.x2_c00237{left:433.979514px;}
.x4_c00237{left:449.820000px;}
.x13_c00237{left:467.100000px;}
.x10_c00237{left:502.559799px;}
.x5_c00237{left:510.119796px;}
.x1c_c00237{left:519.839792px;}
.x14_c00237{left:527.399789px;}
.x6_c00237{left:536.400000px;}
.x15_c00237{left:553.680000px;}
.x1d_c00237{left:575.279770px;}
.x11_c00237{left:592.559763px;}
.xc_c00237{left:601.739759px;}
.x7_c00237{left:609.299756px;}
.x16_c00237{left:619.019752px;}
.x8_c00237{left:635.580000px;}
.xf_c00237{left:639.360000px;}
.x17_c00237{left:652.860000px;}
.x1a_c00237{left:656.640000px;}
.x1e_c00237{left:659.159736px;}
.x12_c00237{left:676.439729px;}
.xb_c00237{left:701.099720px;}
.x9_c00237{left:708.659717px;}
.x18_c00237{left:718.379713px;}
.xa_c00237{left:734.940000px;}
.xd_c00237{left:738.720000px;}
.x19_c00237{left:752.220000px;}
.x1b_c00237{left:756.000000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.v2_c00237{vertical-align:31.359987pt;}
.v1_c00237{vertical-align:63.359975pt;}
.ls1_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.207463pt;}
.ws1_c00237{word-spacing:-13.551457pt;}
.ws0_c00237{word-spacing:-13.343995pt;}
.ws2_c00237{word-spacing:0.000000pt;}
._1_c00237{margin-left:-0.982555pt;}
._0_c00237{width:1.062723pt;}
._a_c00237{width:66.869971pt;}
._5_c00237{width:70.044284pt;}
._b_c00237{width:87.004934pt;}
._d_c00237{width:102.060271pt;}
._c_c00237{width:162.252392pt;}
._13_c00237{width:333.008282pt;}
._12_c00237{width:348.944276pt;}
._e_c00237{width:390.042040pt;}
._14_c00237{width:536.774924pt;}
._3_c00237{width:592.790901pt;}
._6_c00237{width:635.510884pt;}
._2_c00237{width:648.806879pt;}
._f_c00237{width:696.986085pt;}
._4_c00237{width:702.182858pt;}
._11_c00237{width:841.649221pt;}
._9_c00237{width:903.124421pt;}
._7_c00237{width:974.979061pt;}
._10_c00237{width:1036.454261pt;}
._8_c00237{width:1147.002208pt;}
.fs2_c00237{font-size:47.999981pt;}
.fs0_c00237{font-size:53.119979pt;}
.fs1_c00237{font-size:58.879976pt;}
.y0_c00237{bottom:0.000000pt;}
.y9_c00237{bottom:2.559074pt;}
.ye_c00237{bottom:2.559098pt;}
.y11_c00237{bottom:2.559116pt;}
.y14_c00237{bottom:2.559128pt;}
.y17_c00237{bottom:2.559140pt;}
.y20_c00237{bottom:2.559222pt;}
.y24_c00237{bottom:2.559237pt;}
.y27_c00237{bottom:2.559248pt;}
.y30_c00237{bottom:2.559330pt;}
.y35_c00237{bottom:2.559348pt;}
.y3a_c00237{bottom:2.559366pt;}
.y40_c00237{bottom:2.559388pt;}
.y43_c00237{bottom:2.559726pt;}
.y4_c00237{bottom:67.466640pt;}
.y3_c00237{bottom:101.386626pt;}
.y42_c00237{bottom:149.866880pt;}
.y41_c00237{bottom:152.426606pt;}
.y3e_c00237{bottom:181.706594pt;}
.y3f_c00237{bottom:194.987200pt;}
.y3d_c00237{bottom:197.546588pt;}
.y3c_c00237{bottom:213.386581pt;}
.y38_c00237{bottom:242.506570pt;}
.y39_c00237{bottom:247.947200pt;}
.y3b_c00237{bottom:250.506566pt;}
.y37_c00237{bottom:258.506563pt;}
.y33_c00237{bottom:287.626552pt;}
.y34_c00237{bottom:293.067200pt;}
.y36_c00237{bottom:295.626548pt;}
.y32_c00237{bottom:303.466545pt;}
.y2e_c00237{bottom:332.746534pt;}
.y2f_c00237{bottom:338.027200pt;}
.y31_c00237{bottom:340.586530pt;}
.y2d_c00237{bottom:348.586527pt;}
.y2c_c00237{bottom:379.786515pt;}
.y2b_c00237{bottom:427.146496pt;}
.y2a_c00237{bottom:456.426484pt;}
.y29_c00237{bottom:485.546472pt;}
.y28_c00237{bottom:514.826461pt;}
.y26_c00237{bottom:543.147200pt;}
.y25_c00237{bottom:545.706448pt;}
.y23_c00237{bottom:572.267200pt;}
.y22_c00237{bottom:574.826437pt;}
.y1e_c00237{bottom:604.106425pt;}
.y1f_c00237{bottom:609.387200pt;}
.y21_c00237{bottom:611.946422pt;}
.y1d_c00237{bottom:619.946419pt;}
.y1c_c00237{bottom:651.146406pt;}
.y1b_c00237{bottom:698.506387pt;}
.y1a_c00237{bottom:727.786376pt;}
.y19_c00237{bottom:756.906364pt;}
.y18_c00237{bottom:785.866352pt;}
.y16_c00237{bottom:814.507200pt;}
.y15_c00237{bottom:817.066340pt;}
.y13_c00237{bottom:843.627200pt;}
.y12_c00237{bottom:846.186328pt;}
.y10_c00237{bottom:872.907200pt;}
.yf_c00237{bottom:875.466316pt;}
.yc_c00237{bottom:904.586305pt;}
.yd_c00237{bottom:917.867200pt;}
.yb_c00237{bottom:920.426298pt;}
.ya_c00237{bottom:936.426292pt;}
.y7_c00237{bottom:965.546280pt;}
.y8_c00237{bottom:978.827200pt;}
.y6_c00237{bottom:981.386274pt;}
.y5_c00237{bottom:997.386268pt;}
.y2_c00237{bottom:1028.586255pt;}
.y1_c00237{bottom:1063.146241pt;}
.h5_c00237{height:13.280000pt;}
.h8_c00237{height:13.280320pt;}
.h2_c00237{height:48.558731pt;}
.h3_c00237{height:50.062480pt;}
.h1_c00237{height:52.134354pt;}
.h6_c00237{height:81.422467pt;}
.h7_c00237{height:82.062467pt;}
.h4_c00237{height:113.422455pt;}
.h0_c00237{height:1122.666667pt;}
.w3_c00237{width:2.880000pt;}
.w2_c00237{width:6.080000pt;}
.w1_c00237{width:6.240000pt;}
.w4_c00237{width:6.400000pt;}
.w0_c00237{width:793.333333pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:113.439955pt;}
.xe_c00237{left:119.519952pt;}
.x3_c00237{left:187.679925pt;}
.x2_c00237{left:385.759568pt;}
.x4_c00237{left:399.840000pt;}
.x13_c00237{left:415.200000pt;}
.x10_c00237{left:446.719821pt;}
.x5_c00237{left:453.439819pt;}
.x1c_c00237{left:462.079815pt;}
.x14_c00237{left:468.799812pt;}
.x6_c00237{left:476.800000pt;}
.x15_c00237{left:492.160000pt;}
.x1d_c00237{left:511.359795pt;}
.x11_c00237{left:526.719789pt;}
.xc_c00237{left:534.879786pt;}
.x7_c00237{left:541.599783pt;}
.x16_c00237{left:550.239780pt;}
.x8_c00237{left:564.960000pt;}
.xf_c00237{left:568.320000pt;}
.x17_c00237{left:580.320000pt;}
.x1a_c00237{left:583.680000pt;}
.x1e_c00237{left:585.919766pt;}
.x12_c00237{left:601.279759pt;}
.xb_c00237{left:623.199751pt;}
.x9_c00237{left:629.919748pt;}
.x18_c00237{left:638.559745pt;}
.xa_c00237{left:653.280000pt;}
.xd_c00237{left:656.640000pt;}
.x19_c00237{left:668.640000pt;}
.x1b_c00237{left:672.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00238{font-family:ff1_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:ff2_c00238;src:url('chunks/assets/font_b8d7b5cb8bdb16d600108047.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_9e8db212c3bfb9d8a87f5e09.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_e3c6865dcae6a1f11fbce5db.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00238{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.v2_c00238{vertical-align:35.279986px;}
.v1_c00238{vertical-align:71.279971px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00238{word-spacing:-15.011994px;}
.ws2_c00238{word-spacing:0.000000px;}
._1_c00238{margin-left:-1.105374px;}
._0_c00238{width:1.478392px;}
._6_c00238{width:75.228717px;}
._2_c00238{width:78.799820px;}
._7_c00238{width:97.880551px;}
._9_c00238{width:114.817805px;}
._8_c00238{width:182.533941px;}
._f_c00238{width:375.456863px;}
._e_c00238{width:393.384856px;}
._a_c00238{width:645.277389px;}
._10_c00238{width:666.889764px;}
._b_c00238{width:693.337370px;}
._3_c00238{width:714.949745px;}
._11_c00238{width:789.955715px;}
._5_c00238{width:925.242998px;}
._d_c00238{width:946.855373px;}
._c_c00238{width:1075.239068px;}
._4_c00238{width:1096.851443px;}
.fc0_c00238{color:rgb(0,0,0);}
.fs2_c00238{font-size:53.999978px;}
.fs0_c00238{font-size:59.759976px;}
.fs1_c00238{font-size:66.239974px;}
.y0_c00238{bottom:0.000000px;}
.y7_c00238{bottom:2.878944px;}
.ya_c00238{bottom:2.878957px;}
.y14_c00238{bottom:2.879053px;}
.y17_c00238{bottom:2.879073px;}
.y1a_c00238{bottom:2.879086px;}
.y23_c00238{bottom:2.879179px;}
.y28_c00238{bottom:2.879199px;}
.y2e_c00238{bottom:2.879223px;}
.y31_c00238{bottom:2.879243px;}
.y34_c00238{bottom:2.879256px;}
.y37_c00238{bottom:2.879269px;}
.y4_c00238{bottom:75.900270px;}
.y3_c00238{bottom:114.060254px;}
.y3c_c00238{bottom:160.859936px;}
.y3b_c00238{bottom:193.619923px;}
.y3a_c00238{bottom:226.559909px;}
.y39_c00238{bottom:259.319896px;}
.y38_c00238{bottom:292.259883px;}
.y36_c00238{bottom:324.120600px;}
.y35_c00238{bottom:326.999869px;}
.y33_c00238{bottom:356.880600px;}
.y32_c00238{bottom:359.759856px;}
.y30_c00238{bottom:389.820600px;}
.y2f_c00238{bottom:392.699843px;}
.y2c_c00238{bottom:425.459830px;}
.y2d_c00238{bottom:440.400600px;}
.y2b_c00238{bottom:443.279823px;}
.y2a_c00238{bottom:461.279815px;}
.y26_c00238{bottom:494.039802px;}
.y27_c00238{bottom:500.160600px;}
.y29_c00238{bottom:503.039799px;}
.y25_c00238{bottom:511.859795px;}
.y21_c00238{bottom:544.799782px;}
.y22_c00238{bottom:550.740600px;}
.y24_c00238{bottom:553.619779px;}
.y20_c00238{bottom:562.619775px;}
.y1f_c00238{bottom:597.719761px;}
.y1e_c00238{bottom:650.999740px;}
.y1d_c00238{bottom:683.939726px;}
.y1c_c00238{bottom:716.699713px;}
.y1b_c00238{bottom:749.639700px;}
.y19_c00238{bottom:781.500600px;}
.y18_c00238{bottom:784.379686px;}
.y16_c00238{bottom:814.260600px;}
.y15_c00238{bottom:817.139673px;}
.y12_c00238{bottom:850.079660px;}
.y13_c00238{bottom:865.020600px;}
.y11_c00238{bottom:867.899653px;}
.y10_c00238{bottom:885.719646px;}
.yf_c00238{bottom:920.819632px;}
.ye_c00238{bottom:974.099610px;}
.yd_c00238{bottom:1007.039597px;}
.yc_c00238{bottom:1039.799584px;}
.yb_c00238{bottom:1072.739571px;}
.y9_c00238{bottom:1104.600600px;}
.y8_c00238{bottom:1107.479557px;}
.y6_c00238{bottom:1137.360600px;}
.y5_c00238{bottom:1140.239544px;}
.y2_c00238{bottom:1176.059530px;}
.y1_c00238{bottom:1196.219522px;}
.h4_c00238{height:14.940000px;}
.h2_c00238{height:54.628572px;}
.h3_c00238{height:56.320290px;}
.h1_c00238{height:58.651148px;}
.h6_c00238{height:91.600276px;}
.h7_c00238{height:92.320276px;}
.h5_c00238{height:127.600261px;}
.h0_c00238{height:1263.000000px;}
.w3_c00238{width:3.240000px;}
.w2_c00238{width:6.840000px;}
.w1_c00238{width:7.020000px;}
.w0_c00238{width:892.500000px;}
.x0_c00238{left:0.000000px;}
.x5_c00238{left:127.620262px;}
.x6_c00238{left:134.459946px;}
.x1_c00238{left:181.799927px;}
.x11_c00238{left:211.139916px;}
.x2_c00238{left:329.039408px;}
.x4_c00238{left:433.979826px;}
.x12_c00238{left:444.420000px;}
.x7_c00238{left:449.820000px;}
.x1b_c00238{left:497.159801px;}
.xe_c00238{left:502.559799px;}
.x13_c00238{left:504.719798px;}
.x8_c00238{left:510.119796px;}
.x14_c00238{left:531.000000px;}
.x9_c00238{left:536.400000px;}
.xf_c00238{left:569.879772px;}
.x1c_c00238{left:575.279770px;}
.x15_c00238{left:596.339761px;}
.x21_c00238{left:601.739759px;}
.x1e_c00238{left:609.299756px;}
.x16_c00238{left:630.180000px;}
.x19_c00238{left:633.960000px;}
.xa_c00238{left:635.579746px;}
.xb_c00238{left:639.360000px;}
.x10_c00238{left:653.759738px;}
.x1d_c00238{left:659.159736px;}
.x17_c00238{left:695.699722px;}
.x20_c00238{left:701.099720px;}
.x1f_c00238{left:708.659717px;}
.x18_c00238{left:729.540000px;}
.x1a_c00238{left:733.320000px;}
.xc_c00238{left:734.939706px;}
.xd_c00238{left:738.720000px;}
.x3_c00238{left:765.359694px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.v2_c00238{vertical-align:31.359987pt;}
.v1_c00238{vertical-align:63.359975pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.207463pt;}
.ws1_c00238{word-spacing:-13.551457pt;}
.ws0_c00238{word-spacing:-13.343995pt;}
.ws2_c00238{word-spacing:0.000000pt;}
._1_c00238{margin-left:-0.982555pt;}
._0_c00238{width:1.314126pt;}
._6_c00238{width:66.869971pt;}
._2_c00238{width:70.044284pt;}
._7_c00238{width:87.004934pt;}
._9_c00238{width:102.060271pt;}
._8_c00238{width:162.252392pt;}
._f_c00238{width:333.739434pt;}
._e_c00238{width:349.675427pt;}
._a_c00238{width:573.579901pt;}
._10_c00238{width:592.790901pt;}
._b_c00238{width:616.299884pt;}
._3_c00238{width:635.510884pt;}
._11_c00238{width:702.182858pt;}
._5_c00238{width:822.438221pt;}
._d_c00238{width:841.649221pt;}
._c_c00238{width:955.768061pt;}
._4_c00238{width:974.979061pt;}
.fs2_c00238{font-size:47.999981pt;}
.fs0_c00238{font-size:53.119979pt;}
.fs1_c00238{font-size:58.879976pt;}
.y0_c00238{bottom:0.000000pt;}
.y7_c00238{bottom:2.559061pt;}
.ya_c00238{bottom:2.559073pt;}
.y14_c00238{bottom:2.559158pt;}
.y17_c00238{bottom:2.559176pt;}
.y1a_c00238{bottom:2.559188pt;}
.y23_c00238{bottom:2.559270pt;}
.y28_c00238{bottom:2.559288pt;}
.y2e_c00238{bottom:2.559309pt;}
.y31_c00238{bottom:2.559327pt;}
.y34_c00238{bottom:2.559339pt;}
.y37_c00238{bottom:2.559350pt;}
.y4_c00238{bottom:67.466906pt;}
.y3_c00238{bottom:101.386893pt;}
.y3c_c00238{bottom:142.986609pt;}
.y3b_c00238{bottom:172.106598pt;}
.y3a_c00238{bottom:201.386586pt;}
.y39_c00238{bottom:230.506574pt;}
.y38_c00238{bottom:259.786563pt;}
.y36_c00238{bottom:288.107200pt;}
.y35_c00238{bottom:290.666550pt;}
.y33_c00238{bottom:317.227200pt;}
.y32_c00238{bottom:319.786539pt;}
.y30_c00238{bottom:346.507200pt;}
.y2f_c00238{bottom:349.066527pt;}
.y2c_c00238{bottom:378.186515pt;}
.y2d_c00238{bottom:391.467200pt;}
.y2b_c00238{bottom:394.026509pt;}
.y2a_c00238{bottom:410.026503pt;}
.y26_c00238{bottom:439.146491pt;}
.y27_c00238{bottom:444.587200pt;}
.y29_c00238{bottom:447.146488pt;}
.y25_c00238{bottom:454.986485pt;}
.y21_c00238{bottom:484.266473pt;}
.y22_c00238{bottom:489.547200pt;}
.y24_c00238{bottom:492.106470pt;}
.y20_c00238{bottom:500.106467pt;}
.y1f_c00238{bottom:531.306454pt;}
.y1e_c00238{bottom:578.666435pt;}
.y1d_c00238{bottom:607.946423pt;}
.y1c_c00238{bottom:637.066412pt;}
.y1b_c00238{bottom:666.346400pt;}
.y19_c00238{bottom:694.667200pt;}
.y18_c00238{bottom:697.226388pt;}
.y16_c00238{bottom:723.787200pt;}
.y15_c00238{bottom:726.346376pt;}
.y12_c00238{bottom:755.626364pt;}
.y13_c00238{bottom:768.907200pt;}
.y11_c00238{bottom:771.466358pt;}
.y10_c00238{bottom:787.306352pt;}
.yf_c00238{bottom:818.506339pt;}
.ye_c00238{bottom:865.866320pt;}
.yd_c00238{bottom:895.146309pt;}
.yc_c00238{bottom:924.266297pt;}
.yb_c00238{bottom:953.546285pt;}
.y9_c00238{bottom:981.867200pt;}
.y8_c00238{bottom:984.426273pt;}
.y6_c00238{bottom:1010.987200pt;}
.y5_c00238{bottom:1013.546261pt;}
.y2_c00238{bottom:1045.386249pt;}
.y1_c00238{bottom:1063.306241pt;}
.h4_c00238{height:13.280000pt;}
.h2_c00238{height:48.558731pt;}
.h3_c00238{height:50.062480pt;}
.h1_c00238{height:52.134354pt;}
.h6_c00238{height:81.422467pt;}
.h7_c00238{height:82.062467pt;}
.h5_c00238{height:113.422455pt;}
.h0_c00238{height:1122.666667pt;}
.w3_c00238{width:2.880000pt;}
.w2_c00238{width:6.080000pt;}
.w1_c00238{width:6.240000pt;}
.w0_c00238{width:793.333333pt;}
.x0_c00238{left:0.000000pt;}
.x5_c00238{left:113.440233pt;}
.x6_c00238{left:119.519952pt;}
.x1_c00238{left:161.599935pt;}
.x11_c00238{left:187.679925pt;}
.x2_c00238{left:292.479474pt;}
.x4_c00238{left:385.759846pt;}
.x12_c00238{left:395.040000pt;}
.x7_c00238{left:399.840000pt;}
.x1b_c00238{left:441.919823pt;}
.xe_c00238{left:446.719821pt;}
.x13_c00238{left:448.639821pt;}
.x8_c00238{left:453.439819pt;}
.x14_c00238{left:472.000000pt;}
.x9_c00238{left:476.800000pt;}
.xf_c00238{left:506.559797pt;}
.x1c_c00238{left:511.359795pt;}
.x15_c00238{left:530.079788pt;}
.x21_c00238{left:534.879786pt;}
.x1e_c00238{left:541.599783pt;}
.x16_c00238{left:560.160000pt;}
.x19_c00238{left:563.520000pt;}
.xa_c00238{left:564.959774pt;}
.xb_c00238{left:568.320000pt;}
.x10_c00238{left:581.119768pt;}
.x1d_c00238{left:585.919766pt;}
.x17_c00238{left:618.399753pt;}
.x20_c00238{left:623.199751pt;}
.x1f_c00238{left:629.919748pt;}
.x18_c00238{left:648.480000pt;}
.x1a_c00238{left:651.840000pt;}
.xc_c00238{left:653.279739pt;}
.xd_c00238{left:656.640000pt;}
.x3_c00238{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00239{font-family:ff1_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:ff2_c00239;src:url('chunks/assets/font_b19d5318ea21d1532753876f.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_8633300411b648f20895c25f.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_0d7bafe66b6558a465a9a1fb.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.v2_c00239{vertical-align:35.279986px;}
.v1_c00239{vertical-align:71.279971px;}
.ls1_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00239{word-spacing:-15.245389px;}
.ws0_c00239{word-spacing:-15.011994px;}
.ws2_c00239{word-spacing:0.000000px;}
._1_c00239{margin-left:-1.105374px;}
._0_c00239{width:1.195563px;}
._3_c00239{width:75.228717px;}
._a_c00239{width:78.799820px;}
._4_c00239{width:97.880551px;}
._6_c00239{width:114.817805px;}
._5_c00239{width:182.533941px;}
._8_c00239{width:374.634318px;}
._7_c00239{width:392.562310px;}
._d_c00239{width:603.871789px;}
._e_c00239{width:666.889764px;}
._b_c00239{width:714.949745px;}
._9_c00239{width:789.955715px;}
._2_c00239{width:946.855373px;}
._c_c00239{width:1096.851443px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs2_c00239{font-size:53.999978px;}
.fs0_c00239{font-size:59.759976px;}
.fs1_c00239{font-size:66.239974px;}
.y0_c00239{bottom:0.000000px;}
.yb_c00239{bottom:2.879003px;}
.y10_c00239{bottom:2.879023px;}
.y14_c00239{bottom:2.879040px;}
.y17_c00239{bottom:2.879053px;}
.y1a_c00239{bottom:2.879066px;}
.y23_c00239{bottom:2.879159px;}
.y28_c00239{bottom:2.879179px;}
.y2d_c00239{bottom:2.879199px;}
.y33_c00239{bottom:2.879223px;}
.y36_c00239{bottom:2.879243px;}
.y39_c00239{bottom:2.879257px;}
.y3c_c00239{bottom:2.879270px;}
.y4_c00239{bottom:75.899970px;}
.y3_c00239{bottom:114.059954px;}
.y41_c00239{bottom:159.779936px;}
.y40_c00239{bottom:192.539923px;}
.y3f_c00239{bottom:225.479910px;}
.y3e_c00239{bottom:258.239897px;}
.y3d_c00239{bottom:291.179884px;}
.y3b_c00239{bottom:323.040600px;}
.y3a_c00239{bottom:325.919870px;}
.y38_c00239{bottom:355.800600px;}
.y37_c00239{bottom:358.679857px;}
.y35_c00239{bottom:388.740600px;}
.y34_c00239{bottom:391.619843px;}
.y31_c00239{bottom:424.379830px;}
.y32_c00239{bottom:439.320600px;}
.y30_c00239{bottom:442.199823px;}
.y2f_c00239{bottom:460.199816px;}
.y2b_c00239{bottom:492.959803px;}
.y2c_c00239{bottom:499.080600px;}
.y2e_c00239{bottom:501.959799px;}
.y2a_c00239{bottom:510.779796px;}
.y26_c00239{bottom:543.719783px;}
.y27_c00239{bottom:549.660600px;}
.y29_c00239{bottom:552.539779px;}
.y25_c00239{bottom:561.539775px;}
.y21_c00239{bottom:594.299762px;}
.y22_c00239{bottom:600.420600px;}
.y24_c00239{bottom:603.299759px;}
.y20_c00239{bottom:612.299755px;}
.y1f_c00239{bottom:647.399741px;}
.y1e_c00239{bottom:700.679720px;}
.y1d_c00239{bottom:733.439707px;}
.y1c_c00239{bottom:766.379693px;}
.y1b_c00239{bottom:799.139680px;}
.y19_c00239{bottom:831.000600px;}
.y18_c00239{bottom:833.879666px;}
.y16_c00239{bottom:863.940600px;}
.y15_c00239{bottom:866.819653px;}
.y13_c00239{bottom:896.700600px;}
.y12_c00239{bottom:899.579640px;}
.ye_c00239{bottom:932.519627px;}
.yf_c00239{bottom:938.640600px;}
.y11_c00239{bottom:941.519623px;}
.yd_c00239{bottom:950.339620px;}
.y9_c00239{bottom:983.279607px;}
.ya_c00239{bottom:989.220600px;}
.yc_c00239{bottom:992.099603px;}
.y8_c00239{bottom:1001.099600px;}
.y7_c00239{bottom:1036.199586px;}
.y6_c00239{bottom:1089.479564px;}
.y5_c00239{bottom:1122.419551px;}
.y2_c00239{bottom:1157.159537px;}
.y1_c00239{bottom:1196.039522px;}
.h6_c00239{height:14.940000px;}
.h2_c00239{height:54.628572px;}
.h3_c00239{height:56.320290px;}
.h1_c00239{height:58.651148px;}
.h5_c00239{height:91.600276px;}
.h7_c00239{height:92.320276px;}
.h4_c00239{height:127.600261px;}
.h0_c00239{height:1263.000000px;}
.w3_c00239{width:3.240000px;}
.w2_c00239{width:6.840000px;}
.w1_c00239{width:7.020000px;}
.w0_c00239{width:892.500000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:127.619949px;}
.x3_c00239{left:134.459946px;}
.x6_c00239{left:211.139916px;}
.x2_c00239{left:433.979514px;}
.x7_c00239{left:449.820000px;}
.x12_c00239{left:502.559799px;}
.x8_c00239{left:510.119796px;}
.x9_c00239{left:536.400000px;}
.x4_c00239{left:575.279770px;}
.xf_c00239{left:601.739759px;}
.xa_c00239{left:609.299756px;}
.xb_c00239{left:635.580000px;}
.x11_c00239{left:639.360000px;}
.x5_c00239{left:659.159736px;}
.xe_c00239{left:701.099720px;}
.xc_c00239{left:708.659717px;}
.xd_c00239{left:734.940000px;}
.x10_c00239{left:738.720000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.v2_c00239{vertical-align:31.359987pt;}
.v1_c00239{vertical-align:63.359975pt;}
.ls1_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:0.207463pt;}
.ws1_c00239{word-spacing:-13.551457pt;}
.ws0_c00239{word-spacing:-13.343995pt;}
.ws2_c00239{word-spacing:0.000000pt;}
._1_c00239{margin-left:-0.982555pt;}
._0_c00239{width:1.062723pt;}
._3_c00239{width:66.869971pt;}
._a_c00239{width:70.044284pt;}
._4_c00239{width:87.004934pt;}
._6_c00239{width:102.060271pt;}
._5_c00239{width:162.252392pt;}
._8_c00239{width:333.008282pt;}
._7_c00239{width:348.944276pt;}
._d_c00239{width:536.774924pt;}
._e_c00239{width:592.790901pt;}
._b_c00239{width:635.510884pt;}
._9_c00239{width:702.182858pt;}
._2_c00239{width:841.649221pt;}
._c_c00239{width:974.979061pt;}
.fs2_c00239{font-size:47.999981pt;}
.fs0_c00239{font-size:53.119979pt;}
.fs1_c00239{font-size:58.879976pt;}
.y0_c00239{bottom:0.000000pt;}
.yb_c00239{bottom:2.559114pt;}
.y10_c00239{bottom:2.559132pt;}
.y14_c00239{bottom:2.559147pt;}
.y17_c00239{bottom:2.559158pt;}
.y1a_c00239{bottom:2.559170pt;}
.y23_c00239{bottom:2.559252pt;}
.y28_c00239{bottom:2.559270pt;}
.y2d_c00239{bottom:2.559288pt;}
.y33_c00239{bottom:2.559309pt;}
.y36_c00239{bottom:2.559327pt;}
.y39_c00239{bottom:2.559339pt;}
.y3c_c00239{bottom:2.559351pt;}
.y4_c00239{bottom:67.466640pt;}
.y3_c00239{bottom:101.386626pt;}
.y41_c00239{bottom:142.026610pt;}
.y40_c00239{bottom:171.146598pt;}
.y3f_c00239{bottom:200.426586pt;}
.y3e_c00239{bottom:229.546575pt;}
.y3d_c00239{bottom:258.826563pt;}
.y3b_c00239{bottom:287.147200pt;}
.y3a_c00239{bottom:289.706551pt;}
.y38_c00239{bottom:316.267200pt;}
.y37_c00239{bottom:318.826539pt;}
.y35_c00239{bottom:345.547200pt;}
.y34_c00239{bottom:348.106527pt;}
.y31_c00239{bottom:377.226516pt;}
.y32_c00239{bottom:390.507200pt;}
.y30_c00239{bottom:393.066509pt;}
.y2f_c00239{bottom:409.066503pt;}
.y2b_c00239{bottom:438.186491pt;}
.y2c_c00239{bottom:443.627200pt;}
.y2e_c00239{bottom:446.186488pt;}
.y2a_c00239{bottom:454.026485pt;}
.y26_c00239{bottom:483.306473pt;}
.y27_c00239{bottom:488.587200pt;}
.y29_c00239{bottom:491.146470pt;}
.y25_c00239{bottom:499.146467pt;}
.y21_c00239{bottom:528.266455pt;}
.y22_c00239{bottom:533.707200pt;}
.y24_c00239{bottom:536.266452pt;}
.y20_c00239{bottom:544.266449pt;}
.y1f_c00239{bottom:575.466436pt;}
.y1e_c00239{bottom:622.826418pt;}
.y1d_c00239{bottom:651.946406pt;}
.y1c_c00239{bottom:681.226394pt;}
.y1b_c00239{bottom:710.346383pt;}
.y19_c00239{bottom:738.667200pt;}
.y18_c00239{bottom:741.226370pt;}
.y16_c00239{bottom:767.947200pt;}
.y15_c00239{bottom:770.506358pt;}
.y13_c00239{bottom:797.067200pt;}
.y12_c00239{bottom:799.626347pt;}
.ye_c00239{bottom:828.906335pt;}
.yf_c00239{bottom:834.347200pt;}
.y11_c00239{bottom:836.906332pt;}
.yd_c00239{bottom:844.746329pt;}
.y9_c00239{bottom:874.026317pt;}
.ya_c00239{bottom:879.307200pt;}
.yc_c00239{bottom:881.866314pt;}
.y8_c00239{bottom:889.866311pt;}
.y7_c00239{bottom:921.066298pt;}
.y6_c00239{bottom:968.426279pt;}
.y5_c00239{bottom:997.706268pt;}
.y2_c00239{bottom:1028.586255pt;}
.y1_c00239{bottom:1063.146241pt;}
.h6_c00239{height:13.280000pt;}
.h2_c00239{height:48.558731pt;}
.h3_c00239{height:50.062480pt;}
.h1_c00239{height:52.134354pt;}
.h5_c00239{height:81.422467pt;}
.h7_c00239{height:82.062467pt;}
.h4_c00239{height:113.422455pt;}
.h0_c00239{height:1122.666667pt;}
.w3_c00239{width:2.880000pt;}
.w2_c00239{width:6.080000pt;}
.w1_c00239{width:6.240000pt;}
.w0_c00239{width:793.333333pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:113.439955pt;}
.x3_c00239{left:119.519952pt;}
.x6_c00239{left:187.679925pt;}
.x2_c00239{left:385.759568pt;}
.x7_c00239{left:399.840000pt;}
.x12_c00239{left:446.719821pt;}
.x8_c00239{left:453.439819pt;}
.x9_c00239{left:476.800000pt;}
.x4_c00239{left:511.359795pt;}
.xf_c00239{left:534.879786pt;}
.xa_c00239{left:541.599783pt;}
.xb_c00239{left:564.960000pt;}
.x11_c00239{left:568.320000pt;}
.x5_c00239{left:585.919766pt;}
.xe_c00239{left:623.199751pt;}
.xc_c00239{left:629.919748pt;}
.xd_c00239{left:653.280000pt;}
.x10_c00239{left:656.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_a2f1560d8eeb399a72dc46d9.woff2')format("woff");}.ff1_c00240{font-family:ff1_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:ff2_c00240;src:url('chunks/assets/font_2858248321c1e0b79730a4af.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_a08aa87068c19edd02d1d9b5.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_2821e3f9dd84ecc57e20a051.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.v2_c00240{vertical-align:35.999986px;}
.v1_c00240{vertical-align:71.279971px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00240{word-spacing:-15.011994px;}
.ws2_c00240{word-spacing:0.000000px;}
._13_c00240{margin-left:-2.202226px;}
._1_c00240{margin-left:-1.105374px;}
._0_c00240{width:1.478392px;}
._f_c00240{width:6.103455px;}
._e_c00240{width:7.190101px;}
._10_c00240{width:8.652203px;}
._11_c00240{width:10.916830px;}
._12_c00240{width:33.167831px;}
._3_c00240{width:75.228717px;}
._b_c00240{width:78.799820px;}
._4_c00240{width:97.880551px;}
._6_c00240{width:114.817805px;}
._5_c00240{width:182.533941px;}
._8_c00240{width:375.456863px;}
._7_c00240{width:393.384856px;}
._9_c00240{width:666.889764px;}
._c_c00240{width:714.949745px;}
._a_c00240{width:789.955715px;}
._2_c00240{width:946.855373px;}
._d_c00240{width:1096.851443px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs2_c00240{font-size:53.999978px;}
.fs0_c00240{font-size:59.759976px;}
.fs1_c00240{font-size:66.239974px;}
.fs3_c00240{font-size:71.999971px;}
.y0_c00240{bottom:0.000000px;}
.yb_c00240{bottom:2.878996px;}
.y10_c00240{bottom:2.879016px;}
.y16_c00240{bottom:2.879040px;}
.y19_c00240{bottom:2.879060px;}
.y1c_c00240{bottom:2.879073px;}
.y1f_c00240{bottom:2.879087px;}
.y4_c00240{bottom:75.900270px;}
.y3_c00240{bottom:114.060254px;}
.y28_c00240{bottom:506.819797px;}
.y27_c00240{bottom:537.059785px;}
.y26_c00240{bottom:567.119773px;}
.y25_c00240{bottom:598.259761px;}
.y24_c00240{bottom:629.219748px;}
.y23_c00240{bottom:660.359736px;}
.y22_c00240{bottom:691.319723px;}
.y21_c00240{bottom:722.459711px;}
.y20_c00240{bottom:748.559701px;}
.y1e_c00240{bottom:780.780600px;}
.y1d_c00240{bottom:783.659687px;}
.y1b_c00240{bottom:813.720600px;}
.y1a_c00240{bottom:816.599673px;}
.y18_c00240{bottom:846.480600px;}
.y17_c00240{bottom:849.359660px;}
.y14_c00240{bottom:882.299647px;}
.y15_c00240{bottom:897.240600px;}
.y13_c00240{bottom:900.119640px;}
.y12_c00240{bottom:917.939633px;}
.ye_c00240{bottom:950.879620px;}
.yf_c00240{bottom:956.820600px;}
.y11_c00240{bottom:959.699616px;}
.yd_c00240{bottom:968.699613px;}
.y9_c00240{bottom:1001.459599px;}
.ya_c00240{bottom:1007.580600px;}
.yc_c00240{bottom:1010.459596px;}
.y8_c00240{bottom:1019.459592px;}
.y7_c00240{bottom:1054.559578px;}
.y6_c00240{bottom:1107.839557px;}
.y5_c00240{bottom:1140.599544px;}
.y2_c00240{bottom:1176.059530px;}
.y1_c00240{bottom:1196.219522px;}
.h6_c00240{height:14.940000px;}
.h2_c00240{height:54.628572px;}
.h3_c00240{height:56.320290px;}
.h1_c00240{height:58.651148px;}
.h8_c00240{height:70.664034px;}
.h7_c00240{height:91.600276px;}
.h5_c00240{height:92.320276px;}
.h4_c00240{height:127.600261px;}
.h0_c00240{height:1263.000000px;}
.w3_c00240{width:3.240000px;}
.w2_c00240{width:6.840000px;}
.w1_c00240{width:7.020000px;}
.w0_c00240{width:892.500000px;}
.x0_c00240{left:0.000000px;}
.x5_c00240{left:127.620262px;}
.x6_c00240{left:134.459946px;}
.x16_c00240{left:180.719928px;}
.x1_c00240{left:181.799927px;}
.x9_c00240{left:211.139916px;}
.x2_c00240{left:329.039408px;}
.x4_c00240{left:433.979826px;}
.xa_c00240{left:449.820000px;}
.x15_c00240{left:502.559799px;}
.xb_c00240{left:510.119796px;}
.xc_c00240{left:536.400000px;}
.x7_c00240{left:575.279770px;}
.x12_c00240{left:601.739759px;}
.xd_c00240{left:609.299756px;}
.xe_c00240{left:635.580000px;}
.x14_c00240{left:639.360000px;}
.x8_c00240{left:659.159736px;}
.x11_c00240{left:701.099720px;}
.xf_c00240{left:708.659717px;}
.x10_c00240{left:734.940000px;}
.x13_c00240{left:738.720000px;}
.x3_c00240{left:765.359694px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.v2_c00240{vertical-align:31.999987pt;}
.v1_c00240{vertical-align:63.359975pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.207463pt;}
.ws1_c00240{word-spacing:-13.551457pt;}
.ws0_c00240{word-spacing:-13.343995pt;}
.ws2_c00240{word-spacing:0.000000pt;}
._13_c00240{margin-left:-1.957534pt;}
._1_c00240{margin-left:-0.982555pt;}
._0_c00240{width:1.314126pt;}
._f_c00240{width:5.425293pt;}
._e_c00240{width:6.391201pt;}
._10_c00240{width:7.690847pt;}
._11_c00240{width:9.703849pt;}
._12_c00240{width:29.482516pt;}
._3_c00240{width:66.869971pt;}
._b_c00240{width:70.044284pt;}
._4_c00240{width:87.004934pt;}
._6_c00240{width:102.060271pt;}
._5_c00240{width:162.252392pt;}
._8_c00240{width:333.739434pt;}
._7_c00240{width:349.675427pt;}
._9_c00240{width:592.790901pt;}
._c_c00240{width:635.510884pt;}
._a_c00240{width:702.182858pt;}
._2_c00240{width:841.649221pt;}
._d_c00240{width:974.979061pt;}
.fs2_c00240{font-size:47.999981pt;}
.fs0_c00240{font-size:53.119979pt;}
.fs1_c00240{font-size:58.879976pt;}
.fs3_c00240{font-size:63.999974pt;}
.y0_c00240{bottom:0.000000pt;}
.yb_c00240{bottom:2.559107pt;}
.y10_c00240{bottom:2.559125pt;}
.y16_c00240{bottom:2.559147pt;}
.y19_c00240{bottom:2.559165pt;}
.y1c_c00240{bottom:2.559176pt;}
.y1f_c00240{bottom:2.559188pt;}
.y4_c00240{bottom:67.466906pt;}
.y3_c00240{bottom:101.386893pt;}
.y28_c00240{bottom:450.506486pt;}
.y27_c00240{bottom:477.386476pt;}
.y26_c00240{bottom:504.106465pt;}
.y25_c00240{bottom:531.786454pt;}
.y24_c00240{bottom:559.306443pt;}
.y23_c00240{bottom:586.986432pt;}
.y22_c00240{bottom:614.506421pt;}
.y21_c00240{bottom:642.186410pt;}
.y20_c00240{bottom:665.386401pt;}
.y1e_c00240{bottom:694.027200pt;}
.y1d_c00240{bottom:696.586388pt;}
.y1b_c00240{bottom:723.307200pt;}
.y1a_c00240{bottom:725.866376pt;}
.y18_c00240{bottom:752.427200pt;}
.y17_c00240{bottom:754.986365pt;}
.y14_c00240{bottom:784.266353pt;}
.y15_c00240{bottom:797.547200pt;}
.y13_c00240{bottom:800.106347pt;}
.y12_c00240{bottom:815.946340pt;}
.ye_c00240{bottom:845.226329pt;}
.yf_c00240{bottom:850.507200pt;}
.y11_c00240{bottom:853.066325pt;}
.yd_c00240{bottom:861.066322pt;}
.y9_c00240{bottom:890.186311pt;}
.ya_c00240{bottom:895.627200pt;}
.yc_c00240{bottom:898.186307pt;}
.y8_c00240{bottom:906.186304pt;}
.y7_c00240{bottom:937.386292pt;}
.y6_c00240{bottom:984.746273pt;}
.y5_c00240{bottom:1013.866261pt;}
.y2_c00240{bottom:1045.386249pt;}
.y1_c00240{bottom:1063.306241pt;}
.h6_c00240{height:13.280000pt;}
.h2_c00240{height:48.558731pt;}
.h3_c00240{height:50.062480pt;}
.h1_c00240{height:52.134354pt;}
.h8_c00240{height:62.812475pt;}
.h7_c00240{height:81.422467pt;}
.h5_c00240{height:82.062467pt;}
.h4_c00240{height:113.422455pt;}
.h0_c00240{height:1122.666667pt;}
.w3_c00240{width:2.880000pt;}
.w2_c00240{width:6.080000pt;}
.w1_c00240{width:6.240000pt;}
.w0_c00240{width:793.333333pt;}
.x0_c00240{left:0.000000pt;}
.x5_c00240{left:113.440233pt;}
.x6_c00240{left:119.519952pt;}
.x16_c00240{left:160.639936pt;}
.x1_c00240{left:161.599935pt;}
.x9_c00240{left:187.679925pt;}
.x2_c00240{left:292.479474pt;}
.x4_c00240{left:385.759846pt;}
.xa_c00240{left:399.840000pt;}
.x15_c00240{left:446.719821pt;}
.xb_c00240{left:453.439819pt;}
.xc_c00240{left:476.800000pt;}
.x7_c00240{left:511.359795pt;}
.x12_c00240{left:534.879786pt;}
.xd_c00240{left:541.599783pt;}
.xe_c00240{left:564.960000pt;}
.x14_c00240{left:568.320000pt;}
.x8_c00240{left:585.919766pt;}
.x11_c00240{left:623.199751pt;}
.xf_c00240{left:629.919748pt;}
.x10_c00240{left:653.280000pt;}
.x13_c00240{left:656.640000pt;}
.x3_c00240{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f95151a3c8231e91fc3de1b.woff2')format("woff");}.ff1_c00241{font-family:ff1_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:ff2_c00241;src:url('chunks/assets/font_cd41f6e6c4f218a709a5b909.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_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;}
.ls1_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:0.267188px;}
.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;}
}
.ws1_c00241{word-spacing:-15.237422px;}
.ws0_c00241{word-spacing:-13.505755px;}
.ws2_c00241{word-spacing:0.000000px;}
._1_c00241{margin-left:-1.105374px;}
._0_c00241{width:1.195563px;}
._2_c00241{width:2.711333px;}
._a_c00241{width:4.127304px;}
._7_c00241{width:5.295586px;}
._8_c00241{width:6.469662px;}
._4_c00241{width:8.403224px;}
._3_c00241{width:10.254704px;}
._5_c00241{width:14.078984px;}
._6_c00241{width:15.266883px;}
._9_c00241{width:16.668888px;}
.fc1_c00241{color:rgb(37,64,97);}
.fc0_c00241{color:rgb(0,0,0);}
.fs0_c00241{font-size:59.759976px;}
.fs1_c00241{font-size:66.239974px;}
.fs2_c00241{font-size:71.999971px;}
.y0_c00241{bottom:0.000000px;}
.y4_c00241{bottom:75.719970px;}
.y3_c00241{bottom:113.879954px;}
.y15_c00241{bottom:136.739945px;}
.y14_c00241{bottom:182.819927px;}
.y13_c00241{bottom:228.719909px;}
.y12_c00241{bottom:260.219896px;}
.y11_c00241{bottom:291.179884px;}
.y10_c00241{bottom:322.319871px;}
.yf_c00241{bottom:353.279859px;}
.ye_c00241{bottom:384.419846px;}
.yd_c00241{bottom:415.379834px;}
.yc_c00241{bottom:446.519821px;}
.yb_c00241{bottom:477.479809px;}
.ya_c00241{bottom:508.619797px;}
.y9_c00241{bottom:539.579784px;}
.y8_c00241{bottom:570.719772px;}
.y7_c00241{bottom:601.679759px;}
.y6_c00241{bottom:646.679741px;}
.y5_c00241{bottom:675.119730px;}
.y20_c00241{bottom:762.599695px;}
.y1f_c00241{bottom:780.959688px;}
.y1e_c00241{bottom:799.319680px;}
.y1d_c00241{bottom:817.499673px;}
.y1c_c00241{bottom:835.859666px;}
.y16_c00241{bottom:854.759658px;}
.y17_c00241{bottom:892.199643px;}
.y26_c00241{bottom:915.059634px;}
.y18_c00241{bottom:929.819628px;}
.y24_c00241{bottom:937.199625px;}
.y19_c00241{bottom:967.439613px;}
.y23_c00241{bottom:973.019611px;}
.y25_c00241{bottom:984.539606px;}
.y22_c00241{bottom:999.659600px;}
.y1a_c00241{bottom:1004.879598px;}
.y21_c00241{bottom:1023.959590px;}
.y1b_c00241{bottom:1042.499583px;}
.y2_c00241{bottom:1156.979537px;}
.y1_c00241{bottom:1195.859522px;}
.h6_c00241{height:49.284472px;}
.h2_c00241{height:54.628572px;}
.h1_c00241{height:58.651148px;}
.h3_c00241{height:65.010911px;}
.h4_c00241{height:70.664034px;}
.h5_c00241{height:72.562471px;}
.h0_c00241{height:1263.000000px;}
.w0_c00241{width:892.500000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:127.799949px;}
.x9_c00241{left:135.899946px;}
.x8_c00241{left:143.459943px;}
.x7_c00241{left:151.019940px;}
.x3_c00241{left:157.499866px;}
.x6_c00241{left:180.899449px;}
.xb_c00241{left:192.239923px;}
.xa_c00241{left:194.939922px;}
.xd_c00241{left:199.079920px;}
.xc_c00241{left:208.439917px;}
.x20_c00241{left:228.419909px;}
.xf_c00241{left:283.859886px;}
.xe_c00241{left:286.559885px;}
.x11_c00241{left:288.539885px;}
.x10_c00241{left:300.059880px;}
.x21_c00241{left:323.459871px;}
.x4_c00241{left:329.580331px;}
.x13_c00241{left:379.079848px;}
.x12_c00241{left:381.779847px;}
.x14_c00241{left:386.819845px;}
.x22_c00241{left:419.759832px;}
.x2_c00241{left:434.159514px;}
.x18_c00241{left:469.439812px;}
.x16_c00241{left:472.499811px;}
.x15_c00241{left:475.739810px;}
.x17_c00241{left:484.019806px;}
.x23_c00241{left:512.639795px;}
.x1c_c00241{left:561.959775px;}
.x5_c00241{left:563.759774px;}
.x19_c00241{left:567.719773px;}
.x1a_c00241{left:573.839770px;}
.x1b_c00241{left:581.579767px;}
.x24_c00241{left:601.019760px;}
.x1d_c00241{left:658.439737px;}
.x1f_c00241{left:671.399731px;}
.x1e_c00241{left:678.239729px;}
.x25_c00241{left:692.639723px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls1_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:0.237500pt;}
.ws1_c00241{word-spacing:-13.544375pt;}
.ws0_c00241{word-spacing:-12.005115pt;}
.ws2_c00241{word-spacing:0.000000pt;}
._1_c00241{margin-left:-0.982555pt;}
._0_c00241{width:1.062723pt;}
._2_c00241{width:2.410074pt;}
._a_c00241{width:3.668715pt;}
._7_c00241{width:4.707188pt;}
._8_c00241{width:5.750810pt;}
._4_c00241{width:7.469533pt;}
._3_c00241{width:9.115292pt;}
._5_c00241{width:12.514653pt;}
._6_c00241{width:13.570562pt;}
._9_c00241{width:14.816790pt;}
.fs0_c00241{font-size:53.119979pt;}
.fs1_c00241{font-size:58.879976pt;}
.fs2_c00241{font-size:63.999974pt;}
.y0_c00241{bottom:0.000000pt;}
.y4_c00241{bottom:67.306640pt;}
.y3_c00241{bottom:101.226626pt;}
.y15_c00241{bottom:121.546618pt;}
.y14_c00241{bottom:162.506602pt;}
.y13_c00241{bottom:203.306585pt;}
.y12_c00241{bottom:231.306574pt;}
.y11_c00241{bottom:258.826563pt;}
.y10_c00241{bottom:286.506552pt;}
.yf_c00241{bottom:314.026541pt;}
.ye_c00241{bottom:341.706530pt;}
.yd_c00241{bottom:369.226519pt;}
.yc_c00241{bottom:396.906508pt;}
.yb_c00241{bottom:424.426497pt;}
.ya_c00241{bottom:452.106486pt;}
.y9_c00241{bottom:479.626475pt;}
.y8_c00241{bottom:507.306464pt;}
.y7_c00241{bottom:534.826453pt;}
.y6_c00241{bottom:574.826437pt;}
.y5_c00241{bottom:600.106427pt;}
.y20_c00241{bottom:677.866396pt;}
.y1f_c00241{bottom:694.186389pt;}
.y1e_c00241{bottom:710.506382pt;}
.y1d_c00241{bottom:726.666376pt;}
.y1c_c00241{bottom:742.986369pt;}
.y16_c00241{bottom:759.786363pt;}
.y17_c00241{bottom:793.066349pt;}
.y26_c00241{bottom:813.386341pt;}
.y18_c00241{bottom:826.506336pt;}
.y24_c00241{bottom:833.066333pt;}
.y19_c00241{bottom:859.946323pt;}
.y23_c00241{bottom:864.906321pt;}
.y25_c00241{bottom:875.146317pt;}
.y22_c00241{bottom:888.586311pt;}
.y1a_c00241{bottom:893.226309pt;}
.y21_c00241{bottom:910.186303pt;}
.y1b_c00241{bottom:926.666296pt;}
.y2_c00241{bottom:1028.426255pt;}
.y1_c00241{bottom:1062.986241pt;}
.h6_c00241{height:43.808420pt;}
.h2_c00241{height:48.558731pt;}
.h1_c00241{height:52.134354pt;}
.h3_c00241{height:57.787477pt;}
.h4_c00241{height:62.812475pt;}
.h5_c00241{height:64.499974pt;}
.h0_c00241{height:1122.666667pt;}
.w0_c00241{width:793.333333pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:113.599955pt;}
.x9_c00241{left:120.799952pt;}
.x8_c00241{left:127.519949pt;}
.x7_c00241{left:134.239946pt;}
.x3_c00241{left:139.999881pt;}
.x6_c00241{left:160.799510pt;}
.xb_c00241{left:170.879932pt;}
.xa_c00241{left:173.279931pt;}
.xd_c00241{left:176.959929pt;}
.xc_c00241{left:185.279926pt;}
.x20_c00241{left:203.039919pt;}
.xf_c00241{left:252.319899pt;}
.xe_c00241{left:254.719898pt;}
.x11_c00241{left:256.479897pt;}
.x10_c00241{left:266.719893pt;}
.x21_c00241{left:287.519885pt;}
.x4_c00241{left:292.960294pt;}
.x13_c00241{left:336.959865pt;}
.x12_c00241{left:339.359864pt;}
.x14_c00241{left:343.839862pt;}
.x22_c00241{left:373.119851pt;}
.x2_c00241{left:385.919568pt;}
.x18_c00241{left:417.279833pt;}
.x16_c00241{left:419.999832pt;}
.x15_c00241{left:422.879831pt;}
.x17_c00241{left:430.239828pt;}
.x23_c00241{left:455.679818pt;}
.x1c_c00241{left:499.519800pt;}
.x5_c00241{left:501.119800pt;}
.x19_c00241{left:504.639798pt;}
.x1a_c00241{left:510.079796pt;}
.x1b_c00241{left:516.959793pt;}
.x24_c00241{left:534.239786pt;}
.x1d_c00241{left:585.279766pt;}
.x1f_c00241{left:596.799761pt;}
.x1e_c00241{left:602.879759pt;}
.x25_c00241{left:615.679754pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fff7680446735c76698a1808.woff2')format("woff");}.ff1_c00242{font-family:ff1_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:ff2_c00242;src:url('chunks/assets/font_e7b9a9499461d7efeb403c1d.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_9e49242101d9a222714dd305.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.311035;font-style:normal;font-weight:normal;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_9ef683cce47ebb4a6c18c10e.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_a96ad00e0738883ec2b5090e.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00242{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:48.239981px;}
.ls0_c00242{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00242{word-spacing:-15.011994px;}
.ws1_c00242{word-spacing:-10.007996px;}
.ws2_c00242{word-spacing:0.000000px;}
._1_c00242{margin-left:-1.105374px;}
._0_c00242{width:1.478392px;}
._2_c00242{width:9.983198px;}
._3_c00242{width:11.044833px;}
._4_c00242{width:12.137363px;}
._8_c00242{width:60.556170px;}
._e_c00242{width:75.039570px;}
._f_c00242{width:82.964107px;}
._7_c00242{width:85.050195px;}
._1d_c00242{width:90.168232px;}
._6_c00242{width:95.135970px;}
._1c_c00242{width:111.060195px;}
._13_c00242{width:118.360588px;}
._d_c00242{width:126.909270px;}
._1b_c00242{width:134.113395px;}
._12_c00242{width:138.532139px;}
._22_c00242{width:141.454589px;}
._5_c00242{width:144.124021px;}
._c_c00242{width:145.639995px;}
._1f_c00242{width:152.844120px;}
._9_c00242{width:156.371033px;}
._11_c00242{width:163.026164px;}
._10_c00242{width:173.111939px;}
._21_c00242{width:181.036477px;}
._18_c00242{width:184.288533px;}
._20_c00242{width:185.496021px;}
._1a_c00242{width:197.509696px;}
._1e_c00242{width:202.658690px;}
._b_c00242{width:204.226746px;}
._17_c00242{width:207.341733px;}
._16_c00242{width:218.868333px;}
._15_c00242{width:226.072459px;}
._19_c00242{width:320.599405px;}
._a_c00242{width:372.469106px;}
._14_c00242{width:519.448378px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs4_c00242{font-size:35.999986px;}
.fs3_c00242{font-size:53.999978px;}
.fs0_c00242{font-size:59.759976px;}
.fs1_c00242{font-size:66.239974px;}
.fs2_c00242{font-size:71.999971px;}
.y0_c00242{bottom:0.000000px;}
.ye_c00242{bottom:2.879041px;}
.y4_c00242{bottom:75.900270px;}
.y3_c00242{bottom:114.060254px;}
.y31_c00242{bottom:165.359934px;}
.y2f_c00242{bottom:205.859918px;}
.y30_c00242{bottom:210.359916px;}
.y2c_c00242{bottom:246.359901px;}
.y2e_c00242{bottom:258.419897px;}
.y2d_c00242{bottom:265.259894px;}
.y2b_c00242{bottom:270.299892px;}
.y2a_c00242{bottom:310.799876px;}
.y28_c00242{bottom:351.299859px;}
.y29_c00242{bottom:355.979858px;}
.y25_c00242{bottom:391.799843px;}
.y27_c00242{bottom:403.859838px;}
.y26_c00242{bottom:410.699836px;}
.y24_c00242{bottom:415.919834px;}
.y23_c00242{bottom:456.419817px;}
.y21_c00242{bottom:496.919801px;}
.y22_c00242{bottom:501.419799px;}
.y1e_c00242{bottom:537.419785px;}
.y20_c00242{bottom:549.299780px;}
.y1f_c00242{bottom:556.139778px;}
.y1d_c00242{bottom:561.359775px;}
.y1c_c00242{bottom:601.859759px;}
.y1a_c00242{bottom:642.359743px;}
.y1b_c00242{bottom:646.859741px;}
.y17_c00242{bottom:682.859727px;}
.y19_c00242{bottom:694.919722px;}
.y18_c00242{bottom:701.759719px;}
.y16_c00242{bottom:706.799717px;}
.y15_c00242{bottom:747.299701px;}
.y13_c00242{bottom:789.419684px;}
.y14_c00242{bottom:793.919682px;}
.y10_c00242{bottom:831.359667px;}
.y12_c00242{bottom:843.419663px;}
.y11_c00242{bottom:850.259660px;}
.yf_c00242{bottom:855.299658px;}
.yd_c00242{bottom:894.540600px;}
.yc_c00242{bottom:897.419641px;}
.yb_c00242{bottom:901.919639px;}
.ya_c00242{bottom:947.459621px;}
.y9_c00242{bottom:978.059609px;}
.y8_c00242{bottom:1028.459589px;}
.y7_c00242{bottom:1059.419576px;}
.y6_c00242{bottom:1090.559564px;}
.y5_c00242{bottom:1136.099546px;}
.y2_c00242{bottom:1176.059530px;}
.y1_c00242{bottom:1196.219522px;}
.h6_c00242{height:14.940000px;}
.h8_c00242{height:37.546860px;}
.h2_c00242{height:54.628572px;}
.h5_c00242{height:56.320290px;}
.h1_c00242{height:58.651148px;}
.h4_c00242{height:70.664034px;}
.h3_c00242{height:72.562471px;}
.h9_c00242{height:103.840271px;}
.h7_c00242{height:104.560271px;}
.h0_c00242{height:1263.000000px;}
.w2_c00242{width:6.840000px;}
.w1_c00242{width:7.020000px;}
.w0_c00242{width:892.500000px;}
.x0_c00242{left:0.000000px;}
.x5_c00242{left:127.620262px;}
.x7_c00242{left:132.119947px;}
.x6_c00242{left:180.719930px;}
.x1_c00242{left:181.799927px;}
.xe_c00242{left:220.679912px;}
.x2_c00242{left:329.039408px;}
.x8_c00242{left:338.399865px;}
.x1b_c00242{left:371.519851px;}
.x1c_c00242{left:381.239848px;}
.x1d_c00242{left:388.079845px;}
.x4_c00242{left:433.979826px;}
.x24_c00242{left:446.759821px;}
.xf_c00242{left:456.479817px;}
.x10_c00242{left:463.319815px;}
.x25_c00242{left:506.879797px;}
.x26_c00242{left:520.019792px;}
.x11_c00242{left:529.919788px;}
.x12_c00242{left:536.759785px;}
.x27_c00242{left:577.619769px;}
.x28_c00242{left:590.759764px;}
.x1e_c00242{left:600.479760px;}
.x13_c00242{left:602.459759px;}
.x1f_c00242{left:607.319757px;}
.x14_c00242{left:609.299756px;}
.x29_c00242{left:642.239743px;}
.x2a_c00242{left:655.379738px;}
.x20_c00242{left:665.279734px;}
.x15_c00242{left:667.079733px;}
.x21_c00242{left:672.119731px;}
.x16_c00242{left:673.919730px;}
.x9_c00242{left:678.240000px;}
.xa_c00242{left:692.099723px;}
.x2b_c00242{left:701.819719px;}
.x22_c00242{left:724.859710px;}
.x17_c00242{left:726.659709px;}
.x23_c00242{left:731.699707px;}
.x18_c00242{left:733.499707px;}
.xb_c00242{left:737.820000px;}
.xc_c00242{left:751.679699px;}
.x3_c00242{left:765.359694px;}
.x19_c00242{left:784.439686px;}
.x1a_c00242{left:791.279683px;}
.xd_c00242{left:797.400000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:42.879983pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:-13.343995pt;}
.ws1_c00242{word-spacing:-8.895996pt;}
.ws2_c00242{word-spacing:0.000000pt;}
._1_c00242{margin-left:-0.982555pt;}
._0_c00242{width:1.314126pt;}
._2_c00242{width:8.873954pt;}
._3_c00242{width:9.817629pt;}
._4_c00242{width:10.788767pt;}
._8_c00242{width:53.827706pt;}
._e_c00242{width:66.701840pt;}
._f_c00242{width:73.745873pt;}
._7_c00242{width:75.600173pt;}
._1d_c00242{width:80.149540pt;}
._6_c00242{width:84.565307pt;}
._1c_c00242{width:98.720173pt;}
._13_c00242{width:105.209412pt;}
._d_c00242{width:112.808240pt;}
._1b_c00242{width:119.211907pt;}
._12_c00242{width:123.139679pt;}
._22_c00242{width:125.737413pt;}
._5_c00242{width:128.110241pt;}
._c_c00242{width:129.457774pt;}
._1f_c00242{width:135.861440pt;}
._9_c00242{width:138.996474pt;}
._11_c00242{width:144.912146pt;}
._10_c00242{width:153.877279pt;}
._21_c00242{width:160.921312pt;}
._18_c00242{width:163.812029pt;}
._20_c00242{width:164.885352pt;}
._1a_c00242{width:175.564174pt;}
._1e_c00242{width:180.141058pt;}
._b_c00242{width:181.534885pt;}
._17_c00242{width:184.303763pt;}
._16_c00242{width:194.549630pt;}
._15_c00242{width:200.953296pt;}
._19_c00242{width:284.977249pt;}
._a_c00242{width:331.083650pt;}
._14_c00242{width:461.731892pt;}
.fs4_c00242{font-size:31.999987pt;}
.fs3_c00242{font-size:47.999981pt;}
.fs0_c00242{font-size:53.119979pt;}
.fs1_c00242{font-size:58.879976pt;}
.fs2_c00242{font-size:63.999974pt;}
.y0_c00242{bottom:0.000000pt;}
.ye_c00242{bottom:2.559148pt;}
.y4_c00242{bottom:67.466906pt;}
.y3_c00242{bottom:101.386893pt;}
.y31_c00242{bottom:146.986608pt;}
.y2f_c00242{bottom:182.986593pt;}
.y30_c00242{bottom:186.986592pt;}
.y2c_c00242{bottom:218.986579pt;}
.y2e_c00242{bottom:229.706575pt;}
.y2d_c00242{bottom:235.786572pt;}
.y2b_c00242{bottom:240.266571pt;}
.y2a_c00242{bottom:276.266556pt;}
.y28_c00242{bottom:312.266542pt;}
.y29_c00242{bottom:316.426540pt;}
.y25_c00242{bottom:348.266527pt;}
.y27_c00242{bottom:358.986523pt;}
.y26_c00242{bottom:365.066521pt;}
.y24_c00242{bottom:369.706519pt;}
.y23_c00242{bottom:405.706504pt;}
.y21_c00242{bottom:441.706490pt;}
.y22_c00242{bottom:445.706488pt;}
.y1e_c00242{bottom:477.706476pt;}
.y20_c00242{bottom:488.266471pt;}
.y1f_c00242{bottom:494.346469pt;}
.y1d_c00242{bottom:498.986467pt;}
.y1c_c00242{bottom:534.986453pt;}
.y1a_c00242{bottom:570.986438pt;}
.y1b_c00242{bottom:574.986437pt;}
.y17_c00242{bottom:606.986424pt;}
.y19_c00242{bottom:617.706420pt;}
.y18_c00242{bottom:623.786417pt;}
.y16_c00242{bottom:628.266415pt;}
.y15_c00242{bottom:664.266401pt;}
.y13_c00242{bottom:701.706386pt;}
.y14_c00242{bottom:705.706384pt;}
.y10_c00242{bottom:738.986371pt;}
.y12_c00242{bottom:749.706367pt;}
.y11_c00242{bottom:755.786364pt;}
.yf_c00242{bottom:760.266363pt;}
.yd_c00242{bottom:795.147200pt;}
.yc_c00242{bottom:797.706348pt;}
.yb_c00242{bottom:801.706346pt;}
.ya_c00242{bottom:842.186330pt;}
.y9_c00242{bottom:869.386319pt;}
.y8_c00242{bottom:914.186301pt;}
.y7_c00242{bottom:941.706290pt;}
.y6_c00242{bottom:969.386279pt;}
.y5_c00242{bottom:1009.866263pt;}
.y2_c00242{bottom:1045.386249pt;}
.y1_c00242{bottom:1063.306241pt;}
.h6_c00242{height:13.280000pt;}
.h8_c00242{height:33.374987pt;}
.h2_c00242{height:48.558731pt;}
.h5_c00242{height:50.062480pt;}
.h1_c00242{height:52.134354pt;}
.h4_c00242{height:62.812475pt;}
.h3_c00242{height:64.499974pt;}
.h9_c00242{height:92.302463pt;}
.h7_c00242{height:92.942463pt;}
.h0_c00242{height:1122.666667pt;}
.w2_c00242{width:6.080000pt;}
.w1_c00242{width:6.240000pt;}
.w0_c00242{width:793.333333pt;}
.x0_c00242{left:0.000000pt;}
.x5_c00242{left:113.440233pt;}
.x7_c00242{left:117.439953pt;}
.x6_c00242{left:160.639938pt;}
.x1_c00242{left:161.599935pt;}
.xe_c00242{left:196.159922pt;}
.x2_c00242{left:292.479474pt;}
.x8_c00242{left:300.799880pt;}
.x1b_c00242{left:330.239868pt;}
.x1c_c00242{left:338.879864pt;}
.x1d_c00242{left:344.959862pt;}
.x4_c00242{left:385.759846pt;}
.x24_c00242{left:397.119841pt;}
.xf_c00242{left:405.759838pt;}
.x10_c00242{left:411.839835pt;}
.x25_c00242{left:450.559820pt;}
.x26_c00242{left:462.239815pt;}
.x11_c00242{left:471.039812pt;}
.x12_c00242{left:477.119809pt;}
.x27_c00242{left:513.439795pt;}
.x28_c00242{left:525.119790pt;}
.x1e_c00242{left:533.759786pt;}
.x13_c00242{left:535.519786pt;}
.x1f_c00242{left:539.839784pt;}
.x14_c00242{left:541.599783pt;}
.x29_c00242{left:570.879772pt;}
.x2a_c00242{left:582.559767pt;}
.x20_c00242{left:591.359763pt;}
.x15_c00242{left:592.959763pt;}
.x21_c00242{left:597.439761pt;}
.x16_c00242{left:599.039760pt;}
.x9_c00242{left:602.880000pt;}
.xa_c00242{left:615.199754pt;}
.x2b_c00242{left:623.839750pt;}
.x22_c00242{left:644.319742pt;}
.x17_c00242{left:645.919742pt;}
.x23_c00242{left:650.399740pt;}
.x18_c00242{left:651.999739pt;}
.xb_c00242{left:655.840000pt;}
.xc_c00242{left:668.159733pt;}
.x3_c00242{left:680.319728pt;}
.x19_c00242{left:697.279721pt;}
.x1a_c00242{left:703.359719pt;}
.xd_c00242{left:708.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_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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00243{font-family:ff1_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:ff2_c00243;src:url('chunks/assets/font_376a8e43d74d542497db30db.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00243;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_75c34bfc3c26dd757a2f8108.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00243{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.v1_c00243{vertical-align:48.239981px;}
.ls0_c00243{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00243{word-spacing:-15.011994px;}
.ws1_c00243{word-spacing:-10.007996px;}
.ws2_c00243{word-spacing:0.000000px;}
._1_c00243{margin-left:-1.105374px;}
._0_c00243{width:1.195563px;}
._1c_c00243{width:51.421505px;}
._1b_c00243{width:69.431817px;}
._28_c00243{width:84.404932px;}
._13_c00243{width:90.168232px;}
._1f_c00243{width:107.458132px;}
._7_c00243{width:111.060195px;}
._21_c00243{width:112.504994px;}
._14_c00243{width:118.360588px;}
._27_c00243{width:122.744983px;}
._20_c00243{width:131.231745px;}
._6_c00243{width:134.113395px;}
._1e_c00243{width:136.507970px;}
._d_c00243{width:138.532139px;}
._8_c00243{width:141.317520px;}
._5_c00243{width:145.639995px;}
._4_c00243{width:152.844120px;}
._2_c00243{width:156.371033px;}
._24_c00243{width:157.633270px;}
._22_c00243{width:159.287032px;}
._c_c00243{width:163.026164px;}
._b_c00243{width:173.111939px;}
._a_c00243{width:181.036477px;}
._29_c00243{width:182.655172px;}
._12_c00243{width:184.288533px;}
._9_c00243{width:201.836145px;}
._25_c00243{width:204.110077px;}
._11_c00243{width:207.341733px;}
._10_c00243{width:218.868333px;}
._1a_c00243{width:223.444546px;}
._f_c00243{width:226.072459px;}
._19_c00243{width:243.616097px;}
._18_c00243{width:268.110122px;}
._17_c00243{width:278.195897px;}
._26_c00243{width:282.417542px;}
._16_c00243{width:286.120435px;}
._3_c00243{width:320.599405px;}
._1d_c00243{width:333.566830px;}
._23_c00243{width:481.266515px;}
._e_c00243{width:519.448378px;}
._15_c00243{width:588.693688px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs3_c00243{font-size:35.999986px;}
.fs2_c00243{font-size:53.999978px;}
.fs0_c00243{font-size:59.759976px;}
.fs1_c00243{font-size:66.239974px;}
.fs4_c00243{font-size:71.999971px;}
.y0_c00243{bottom:0.000000px;}
.y1b_c00243{bottom:2.879142px;}
.y4_c00243{bottom:75.899970px;}
.y3_c00243{bottom:114.059954px;}
.y2d_c00243{bottom:204.599918px;}
.y2c_c00243{bottom:245.099902px;}
.y29_c00243{bottom:285.599886px;}
.y2b_c00243{bottom:297.659881px;}
.y2a_c00243{bottom:304.499878px;}
.y28_c00243{bottom:309.719876px;}
.y27_c00243{bottom:350.219860px;}
.y26_c00243{bottom:390.719844px;}
.y23_c00243{bottom:431.219828px;}
.y25_c00243{bottom:443.099823px;}
.y24_c00243{bottom:449.939820px;}
.y22_c00243{bottom:455.159818px;}
.y21_c00243{bottom:495.659802px;}
.y20_c00243{bottom:537.599785px;}
.y1d_c00243{bottom:579.719768px;}
.y1f_c00243{bottom:591.599763px;}
.y1e_c00243{bottom:598.439761px;}
.y1c_c00243{bottom:603.659759px;}
.y1a_c00243{bottom:642.720600px;}
.y19_c00243{bottom:645.599742px;}
.y18_c00243{bottom:650.099740px;}
.y17_c00243{bottom:696.179722px;}
.y16_c00243{bottom:726.779709px;}
.y15_c00243{bottom:773.039691px;}
.y14_c00243{bottom:788.519685px;}
.y13_c00243{bottom:822.539671px;}
.y12_c00243{bottom:863.039655px;}
.y10_c00243{bottom:903.539639px;}
.y11_c00243{bottom:908.039637px;}
.yd_c00243{bottom:944.039622px;}
.yf_c00243{bottom:956.099618px;}
.ye_c00243{bottom:962.939615px;}
.yc_c00243{bottom:967.979613px;}
.yb_c00243{bottom:1008.479597px;}
.y9_c00243{bottom:1048.979580px;}
.ya_c00243{bottom:1053.659579px;}
.y6_c00243{bottom:1089.479564px;}
.y8_c00243{bottom:1101.539559px;}
.y7_c00243{bottom:1108.379557px;}
.y5_c00243{bottom:1113.599555px;}
.y2_c00243{bottom:1157.159537px;}
.y1_c00243{bottom:1196.039522px;}
.h7_c00243{height:14.940000px;}
.h5_c00243{height:37.546860px;}
.h2_c00243{height:54.628572px;}
.h3_c00243{height:56.320290px;}
.h1_c00243{height:58.651148px;}
.h6_c00243{height:70.664034px;}
.h8_c00243{height:103.840271px;}
.h4_c00243{height:104.560271px;}
.h0_c00243{height:1263.000000px;}
.w1_c00243{width:6.300000px;}
.w0_c00243{width:892.500000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:127.619949px;}
.x3_c00243{left:132.119947px;}
.x4_c00243{left:220.679912px;}
.x16_c00243{left:338.039865px;}
.x26_c00243{left:370.799852px;}
.x27_c00243{left:377.639849px;}
.x5_c00243{left:381.239848px;}
.x17_c00243{left:383.760000px;}
.x6_c00243{left:388.079845px;}
.x18_c00243{left:396.179842px;}
.x1b_c00243{left:428.939828px;}
.x2_c00243{left:433.979514px;}
.x1c_c00243{left:435.779826px;}
.x19_c00243{left:441.900000px;}
.x7_c00243{left:456.479817px;}
.x1a_c00243{left:460.979816px;}
.x8_c00243{left:463.319815px;}
.x1d_c00243{left:492.839803px;}
.x1e_c00243{left:499.679800px;}
.x9_c00243{left:529.919788px;}
.xa_c00243{left:536.759785px;}
.x1f_c00243{left:562.679775px;}
.x20_c00243{left:569.519772px;}
.xb_c00243{left:600.479760px;}
.xc_c00243{left:607.319757px;}
.x21_c00243{left:632.519747px;}
.x22_c00243{left:639.359744px;}
.xd_c00243{left:665.279734px;}
.xe_c00243{left:672.119731px;}
.x23_c00243{left:702.359719px;}
.x24_c00243{left:709.199716px;}
.x11_c00243{left:714.959714px;}
.x13_c00243{left:724.859710px;}
.x14_c00243{left:731.699707px;}
.x12_c00243{left:761.399695px;}
.x25_c00243{left:767.159693px;}
.x15_c00243{left:774.539690px;}
.xf_c00243{left:784.439686px;}
.x10_c00243{left:791.279683px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.v1_c00243{vertical-align:42.879983pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:-13.343995pt;}
.ws1_c00243{word-spacing:-8.895996pt;}
.ws2_c00243{word-spacing:0.000000pt;}
._1_c00243{margin-left:-0.982555pt;}
._0_c00243{width:1.062723pt;}
._1c_c00243{width:45.708004pt;}
._1b_c00243{width:61.717171pt;}
._28_c00243{width:75.026606pt;}
._13_c00243{width:80.149540pt;}
._1f_c00243{width:95.518340pt;}
._7_c00243{width:98.720173pt;}
._21_c00243{width:100.004439pt;}
._14_c00243{width:105.209412pt;}
._27_c00243{width:109.106651pt;}
._20_c00243{width:116.650440pt;}
._6_c00243{width:119.211907pt;}
._1e_c00243{width:121.340418pt;}
._d_c00243{width:123.139679pt;}
._8_c00243{width:125.615574pt;}
._5_c00243{width:129.457774pt;}
._4_c00243{width:135.861440pt;}
._2_c00243{width:138.996474pt;}
._24_c00243{width:140.118462pt;}
._22_c00243{width:141.588473pt;}
._c_c00243{width:144.912146pt;}
._b_c00243{width:153.877279pt;}
._a_c00243{width:160.921312pt;}
._29_c00243{width:162.360152pt;}
._12_c00243{width:163.812029pt;}
._9_c00243{width:179.409907pt;}
._25_c00243{width:181.431180pt;}
._11_c00243{width:184.303763pt;}
._10_c00243{width:194.549630pt;}
._1a_c00243{width:198.617374pt;}
._f_c00243{width:200.953296pt;}
._19_c00243{width:216.547641pt;}
._18_c00243{width:238.320108pt;}
._17_c00243{width:247.285242pt;}
._26_c00243{width:251.037815pt;}
._16_c00243{width:254.329275pt;}
._3_c00243{width:284.977249pt;}
._1d_c00243{width:296.503849pt;}
._23_c00243{width:427.792458pt;}
._e_c00243{width:461.731892pt;}
._15_c00243{width:523.283278pt;}
.fs3_c00243{font-size:31.999987pt;}
.fs2_c00243{font-size:47.999981pt;}
.fs0_c00243{font-size:53.119979pt;}
.fs1_c00243{font-size:58.879976pt;}
.fs4_c00243{font-size:63.999974pt;}
.y0_c00243{bottom:0.000000pt;}
.y1b_c00243{bottom:2.559237pt;}
.y4_c00243{bottom:67.466640pt;}
.y3_c00243{bottom:101.386626pt;}
.y2d_c00243{bottom:181.866594pt;}
.y2c_c00243{bottom:217.866580pt;}
.y29_c00243{bottom:253.866565pt;}
.y2b_c00243{bottom:264.586561pt;}
.y2a_c00243{bottom:270.666558pt;}
.y28_c00243{bottom:275.306557pt;}
.y27_c00243{bottom:311.306542pt;}
.y26_c00243{bottom:347.306528pt;}
.y23_c00243{bottom:383.306513pt;}
.y25_c00243{bottom:393.866509pt;}
.y24_c00243{bottom:399.946507pt;}
.y22_c00243{bottom:404.586505pt;}
.y21_c00243{bottom:440.586490pt;}
.y20_c00243{bottom:477.866476pt;}
.y1d_c00243{bottom:515.306461pt;}
.y1f_c00243{bottom:525.866456pt;}
.y1e_c00243{bottom:531.946454pt;}
.y1c_c00243{bottom:536.586452pt;}
.y1a_c00243{bottom:571.307200pt;}
.y19_c00243{bottom:573.866437pt;}
.y18_c00243{bottom:577.866436pt;}
.y17_c00243{bottom:618.826419pt;}
.y16_c00243{bottom:646.026408pt;}
.y15_c00243{bottom:687.146392pt;}
.y14_c00243{bottom:700.906386pt;}
.y13_c00243{bottom:731.146374pt;}
.y12_c00243{bottom:767.146360pt;}
.y10_c00243{bottom:803.146345pt;}
.y11_c00243{bottom:807.146344pt;}
.yd_c00243{bottom:839.146331pt;}
.yf_c00243{bottom:849.866327pt;}
.ye_c00243{bottom:855.946324pt;}
.yc_c00243{bottom:860.426322pt;}
.yb_c00243{bottom:896.426308pt;}
.y9_c00243{bottom:932.426294pt;}
.ya_c00243{bottom:936.586292pt;}
.y6_c00243{bottom:968.426279pt;}
.y8_c00243{bottom:979.146275pt;}
.y7_c00243{bottom:985.226273pt;}
.y5_c00243{bottom:989.866271pt;}
.y2_c00243{bottom:1028.586255pt;}
.y1_c00243{bottom:1063.146241pt;}
.h7_c00243{height:13.280000pt;}
.h5_c00243{height:33.374987pt;}
.h2_c00243{height:48.558731pt;}
.h3_c00243{height:50.062480pt;}
.h1_c00243{height:52.134354pt;}
.h6_c00243{height:62.812475pt;}
.h8_c00243{height:92.302463pt;}
.h4_c00243{height:92.942463pt;}
.h0_c00243{height:1122.666667pt;}
.w1_c00243{width:5.600000pt;}
.w0_c00243{width:793.333333pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:113.439955pt;}
.x3_c00243{left:117.439953pt;}
.x4_c00243{left:196.159922pt;}
.x16_c00243{left:300.479880pt;}
.x26_c00243{left:329.599868pt;}
.x27_c00243{left:335.679866pt;}
.x5_c00243{left:338.879864pt;}
.x17_c00243{left:341.120000pt;}
.x6_c00243{left:344.959862pt;}
.x18_c00243{left:352.159859pt;}
.x1b_c00243{left:381.279847pt;}
.x2_c00243{left:385.759568pt;}
.x1c_c00243{left:387.359845pt;}
.x19_c00243{left:392.800000pt;}
.x7_c00243{left:405.759838pt;}
.x1a_c00243{left:409.759836pt;}
.x8_c00243{left:411.839835pt;}
.x1d_c00243{left:438.079825pt;}
.x1e_c00243{left:444.159822pt;}
.x9_c00243{left:471.039812pt;}
.xa_c00243{left:477.119809pt;}
.x1f_c00243{left:500.159800pt;}
.x20_c00243{left:506.239798pt;}
.xb_c00243{left:533.759786pt;}
.xc_c00243{left:539.839784pt;}
.x21_c00243{left:562.239775pt;}
.x22_c00243{left:568.319773pt;}
.xd_c00243{left:591.359763pt;}
.xe_c00243{left:597.439761pt;}
.x23_c00243{left:624.319750pt;}
.x24_c00243{left:630.399748pt;}
.x11_c00243{left:635.519746pt;}
.x13_c00243{left:644.319742pt;}
.x14_c00243{left:650.399740pt;}
.x12_c00243{left:676.799729pt;}
.x25_c00243{left:681.919727pt;}
.x15_c00243{left:688.479725pt;}
.xf_c00243{left:697.279721pt;}
.x10_c00243{left:703.359719pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00244{font-family:ff1_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:ff2_c00244;src:url('chunks/assets/font_5983cad38ae0b4e23ed44d7b.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_c71e88393bac71237c0bd085.woff2')format("woff");}.ff4_c00244{font-family:ff4_c00244;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00244{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v2_c00244{vertical-align:-33.839986px;}
.v0_c00244{vertical-align:0.000000px;}
.v1_c00244{vertical-align:48.239981px;}
.ls1_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:353.839210px;}
.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;}
}
.ws0_c00244{word-spacing:-15.011994px;}
.ws1_c00244{word-spacing:-10.007996px;}
.ws2_c00244{word-spacing:0.000000px;}
._1_c00244{margin-left:-1.105374px;}
._0_c00244{width:1.478392px;}
._1f_c00244{width:46.378617px;}
._1e_c00244{width:66.550167px;}
._24_c00244{width:75.039570px;}
._25_c00244{width:82.964107px;}
._4_c00244{width:84.404932px;}
._1d_c00244{width:91.044193px;}
._23_c00244{width:95.211120px;}
._1c_c00244{width:101.129968px;}
._5_c00244{width:107.458132px;}
._8_c00244{width:111.060136px;}
._a_c00244{width:112.597288px;}
._27_c00244{width:117.465347px;}
._2_c00244{width:122.744983px;}
._19_c00244{width:125.743302px;}
._22_c00244{width:126.909270px;}
._7_c00244{width:131.231745px;}
._2e_c00244{width:134.113395px;}
._b_c00244{width:136.370901px;}
._d_c00244{width:138.532301px;}
._21_c00244{width:145.639995px;}
._1b_c00244{width:152.999668px;}
._f_c00244{width:157.633270px;}
._c_c00244{width:159.424101px;}
._1a_c00244{width:162.442851px;}
._9_c00244{width:163.756415px;}
._26_c00244{width:173.111939px;}
._13_c00244{width:175.176908px;}
._10_c00244{width:180.686470px;}
._6_c00244{width:183.101446px;}
._12_c00244{width:184.288558px;}
._2d_c00244{width:197.276359px;}
._11_c00244{width:204.460083px;}
._2b_c00244{width:207.341733px;}
._15_c00244{width:217.681246px;}
._2a_c00244{width:218.868333px;}
._29_c00244{width:226.072459px;}
._16_c00244{width:241.454859px;}
._18_c00244{width:243.616043px;}
._17_c00244{width:264.508059px;}
._3_c00244{width:282.417542px;}
._2c_c00244{width:320.599405px;}
._20_c00244{width:372.469106px;}
._e_c00244{width:481.266515px;}
._28_c00244{width:519.448378px;}
._14_c00244{width:549.791413px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs3_c00244{font-size:35.999986px;}
.fs2_c00244{font-size:53.999978px;}
.fs0_c00244{font-size:59.759976px;}
.fs1_c00244{font-size:66.239974px;}
.fs4_c00244{font-size:71.999971px;}
.y0_c00244{bottom:0.000000px;}
.y4_c00244{bottom:75.900270px;}
.y3_c00244{bottom:114.060254px;}
.y2c_c00244{bottom:169.679932px;}
.y2e_c00244{bottom:181.739927px;}
.y2d_c00244{bottom:188.579925px;}
.y2b_c00244{bottom:193.799922px;}
.y2a_c00244{bottom:234.299906px;}
.y28_c00244{bottom:276.239890px;}
.y29_c00244{bottom:280.919888px;}
.y25_c00244{bottom:318.179873px;}
.y27_c00244{bottom:330.239868px;}
.y26_c00244{bottom:337.079865px;}
.y24_c00244{bottom:342.299863px;}
.y23_c00244{bottom:384.239846px;}
.y22_c00244{bottom:388.739845px;}
.y21_c00244{bottom:434.279826px;}
.y20_c00244{bottom:464.879814px;}
.y1f_c00244{bottom:511.319795px;}
.y1e_c00244{bottom:526.799789px;}
.y1d_c00244{bottom:567.299773px;}
.y1c_c00244{bottom:606.359757px;}
.y19_c00244{bottom:636.779745px;}
.y1b_c00244{bottom:648.839740px;}
.y1a_c00244{bottom:655.679738px;}
.y18_c00244{bottom:669.359732px;}
.y17_c00244{bottom:709.139716px;}
.y16_c00244{bottom:748.019701px;}
.y13_c00244{bottom:778.619689px;}
.y15_c00244{bottom:790.679684px;}
.y14_c00244{bottom:797.519681px;}
.y12_c00244{bottom:811.019676px;}
.y11_c00244{bottom:850.079660px;}
.y10_c00244{bottom:881.399647px;}
.yf_c00244{bottom:921.899631px;}
.yc_c00244{bottom:962.399615px;}
.ye_c00244{bottom:974.279610px;}
.yd_c00244{bottom:981.119608px;}
.yb_c00244{bottom:986.339605px;}
.ya_c00244{bottom:1026.839589px;}
.y9_c00244{bottom:1067.339573px;}
.y6_c00244{bottom:1107.839557px;}
.y8_c00244{bottom:1119.899552px;}
.y7_c00244{bottom:1126.739549px;}
.y5_c00244{bottom:1131.779547px;}
.y2_c00244{bottom:1176.059530px;}
.y1_c00244{bottom:1196.219522px;}
.h5_c00244{height:37.546860px;}
.h2_c00244{height:54.628572px;}
.h3_c00244{height:56.320290px;}
.h1_c00244{height:58.651148px;}
.h7_c00244{height:70.664034px;}
.h6_c00244{height:103.840271px;}
.h4_c00244{height:104.560271px;}
.h0_c00244{height:1263.000000px;}
.w0_c00244{width:892.500000px;}
.x0_c00244{left:0.000000px;}
.x5_c00244{left:127.620262px;}
.x6_c00244{left:132.119947px;}
.x1_c00244{left:181.799927px;}
.x7_c00244{left:219.779912px;}
.x2_c00244{left:329.039408px;}
.x18_c00244{left:338.399865px;}
.x8_c00244{left:370.799852px;}
.x9_c00244{left:377.639849px;}
.x25_c00244{left:381.239848px;}
.x26_c00244{left:388.079845px;}
.xa_c00244{left:428.939828px;}
.x4_c00244{left:433.979826px;}
.xb_c00244{left:435.779826px;}
.x19_c00244{left:456.479817px;}
.x1a_c00244{left:463.319815px;}
.xc_c00244{left:492.839803px;}
.xd_c00244{left:499.679800px;}
.x1b_c00244{left:529.919788px;}
.x1c_c00244{left:536.759785px;}
.x14_c00244{left:562.679775px;}
.x15_c00244{left:569.519772px;}
.x27_c00244{left:600.479760px;}
.x1d_c00244{left:602.459759px;}
.x28_c00244{left:607.319757px;}
.x1e_c00244{left:609.299756px;}
.xe_c00244{left:632.519747px;}
.x16_c00244{left:634.319746px;}
.x17_c00244{left:637.559745px;}
.xf_c00244{left:639.359744px;}
.x29_c00244{left:665.279734px;}
.x1f_c00244{left:667.079733px;}
.x2a_c00244{left:672.119731px;}
.x20_c00244{left:673.919730px;}
.x10_c00244{left:702.359719px;}
.x11_c00244{left:709.199716px;}
.x2b_c00244{left:724.859710px;}
.x21_c00244{left:726.659709px;}
.x2c_c00244{left:731.699707px;}
.x22_c00244{left:733.499707px;}
.x3_c00244{left:765.359694px;}
.x12_c00244{left:767.159693px;}
.x13_c00244{left:773.999690px;}
.x23_c00244{left:784.439686px;}
.x24_c00244{left:791.279683px;}
@media print{
.v2_c00244{vertical-align:-30.079988pt;}
.v0_c00244{vertical-align:0.000000pt;}
.v1_c00244{vertical-align:42.879983pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:314.523742pt;}
.ws0_c00244{word-spacing:-13.343995pt;}
.ws1_c00244{word-spacing:-8.895996pt;}
.ws2_c00244{word-spacing:0.000000pt;}
._1_c00244{margin-left:-0.982555pt;}
._0_c00244{width:1.314126pt;}
._1f_c00244{width:41.225437pt;}
._1e_c00244{width:59.155704pt;}
._24_c00244{width:66.701840pt;}
._25_c00244{width:73.745873pt;}
._4_c00244{width:75.026606pt;}
._1d_c00244{width:80.928171pt;}
._23_c00244{width:84.632106pt;}
._1c_c00244{width:89.893305pt;}
._5_c00244{width:95.518340pt;}
._8_c00244{width:98.720121pt;}
._a_c00244{width:100.086478pt;}
._27_c00244{width:104.413642pt;}
._2_c00244{width:109.106651pt;}
._19_c00244{width:111.771824pt;}
._22_c00244{width:112.808240pt;}
._7_c00244{width:116.650440pt;}
._2e_c00244{width:119.211907pt;}
._b_c00244{width:121.218579pt;}
._d_c00244{width:123.139823pt;}
._21_c00244{width:129.457774pt;}
._1b_c00244{width:135.999705pt;}
._f_c00244{width:140.118462pt;}
._c_c00244{width:141.710312pt;}
._1a_c00244{width:144.393645pt;}
._9_c00244{width:145.561258pt;}
._26_c00244{width:153.877279pt;}
._13_c00244{width:155.712807pt;}
._10_c00244{width:160.610196pt;}
._6_c00244{width:162.756841pt;}
._12_c00244{width:163.812051pt;}
._2d_c00244{width:175.356763pt;}
._11_c00244{width:181.742296pt;}
._2b_c00244{width:184.303763pt;}
._15_c00244{width:193.494441pt;}
._2a_c00244{width:194.549630pt;}
._29_c00244{width:200.953296pt;}
._16_c00244{width:214.626541pt;}
._18_c00244{width:216.547593pt;}
._17_c00244{width:235.118275pt;}
._3_c00244{width:251.037815pt;}
._2c_c00244{width:284.977249pt;}
._20_c00244{width:331.083650pt;}
._e_c00244{width:427.792458pt;}
._28_c00244{width:461.731892pt;}
._14_c00244{width:488.703478pt;}
.fs3_c00244{font-size:31.999987pt;}
.fs2_c00244{font-size:47.999981pt;}
.fs0_c00244{font-size:53.119979pt;}
.fs1_c00244{font-size:58.879976pt;}
.fs4_c00244{font-size:63.999974pt;}
.y0_c00244{bottom:0.000000pt;}
.y4_c00244{bottom:67.466906pt;}
.y3_c00244{bottom:101.386893pt;}
.y2c_c00244{bottom:150.826606pt;}
.y2e_c00244{bottom:161.546602pt;}
.y2d_c00244{bottom:167.626600pt;}
.y2b_c00244{bottom:172.266598pt;}
.y2a_c00244{bottom:208.266583pt;}
.y28_c00244{bottom:245.546568pt;}
.y29_c00244{bottom:249.706567pt;}
.y25_c00244{bottom:282.826554pt;}
.y27_c00244{bottom:293.546549pt;}
.y26_c00244{bottom:299.626547pt;}
.y24_c00244{bottom:304.266545pt;}
.y23_c00244{bottom:341.546530pt;}
.y22_c00244{bottom:345.546528pt;}
.y21_c00244{bottom:386.026512pt;}
.y20_c00244{bottom:413.226501pt;}
.y1f_c00244{bottom:454.506485pt;}
.y1e_c00244{bottom:468.266479pt;}
.y1d_c00244{bottom:504.266465pt;}
.y1c_c00244{bottom:538.986451pt;}
.y19_c00244{bottom:566.026440pt;}
.y1b_c00244{bottom:576.746436pt;}
.y1a_c00244{bottom:582.826434pt;}
.y18_c00244{bottom:594.986429pt;}
.y17_c00244{bottom:630.346415pt;}
.y16_c00244{bottom:664.906401pt;}
.y13_c00244{bottom:692.106390pt;}
.y15_c00244{bottom:702.826386pt;}
.y14_c00244{bottom:708.906383pt;}
.y12_c00244{bottom:720.906378pt;}
.y11_c00244{bottom:755.626364pt;}
.y10_c00244{bottom:783.466353pt;}
.yf_c00244{bottom:819.466339pt;}
.yc_c00244{bottom:855.466324pt;}
.ye_c00244{bottom:866.026320pt;}
.yd_c00244{bottom:872.106318pt;}
.yb_c00244{bottom:876.746316pt;}
.ya_c00244{bottom:912.746302pt;}
.y9_c00244{bottom:948.746287pt;}
.y6_c00244{bottom:984.746273pt;}
.y8_c00244{bottom:995.466268pt;}
.y7_c00244{bottom:1001.546266pt;}
.y5_c00244{bottom:1006.026264pt;}
.y2_c00244{bottom:1045.386249pt;}
.y1_c00244{bottom:1063.306241pt;}
.h5_c00244{height:33.374987pt;}
.h2_c00244{height:48.558731pt;}
.h3_c00244{height:50.062480pt;}
.h1_c00244{height:52.134354pt;}
.h7_c00244{height:62.812475pt;}
.h6_c00244{height:92.302463pt;}
.h4_c00244{height:92.942463pt;}
.h0_c00244{height:1122.666667pt;}
.w0_c00244{width:793.333333pt;}
.x0_c00244{left:0.000000pt;}
.x5_c00244{left:113.440233pt;}
.x6_c00244{left:117.439953pt;}
.x1_c00244{left:161.599935pt;}
.x7_c00244{left:195.359922pt;}
.x2_c00244{left:292.479474pt;}
.x18_c00244{left:300.799880pt;}
.x8_c00244{left:329.599868pt;}
.x9_c00244{left:335.679866pt;}
.x25_c00244{left:338.879864pt;}
.x26_c00244{left:344.959862pt;}
.xa_c00244{left:381.279847pt;}
.x4_c00244{left:385.759846pt;}
.xb_c00244{left:387.359845pt;}
.x19_c00244{left:405.759838pt;}
.x1a_c00244{left:411.839835pt;}
.xc_c00244{left:438.079825pt;}
.xd_c00244{left:444.159822pt;}
.x1b_c00244{left:471.039812pt;}
.x1c_c00244{left:477.119809pt;}
.x14_c00244{left:500.159800pt;}
.x15_c00244{left:506.239798pt;}
.x27_c00244{left:533.759786pt;}
.x1d_c00244{left:535.519786pt;}
.x28_c00244{left:539.839784pt;}
.x1e_c00244{left:541.599783pt;}
.xe_c00244{left:562.239775pt;}
.x16_c00244{left:563.839774pt;}
.x17_c00244{left:566.719773pt;}
.xf_c00244{left:568.319773pt;}
.x29_c00244{left:591.359763pt;}
.x1f_c00244{left:592.959763pt;}
.x2a_c00244{left:597.439761pt;}
.x20_c00244{left:599.039760pt;}
.x10_c00244{left:624.319750pt;}
.x11_c00244{left:630.399748pt;}
.x2b_c00244{left:644.319742pt;}
.x21_c00244{left:645.919742pt;}
.x2c_c00244{left:650.399740pt;}
.x22_c00244{left:651.999739pt;}
.x3_c00244{left:680.319728pt;}
.x12_c00244{left:681.919727pt;}
.x13_c00244{left:687.999725pt;}
.x23_c00244{left:697.279721pt;}
.x24_c00244{left:703.359719pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00245{font-family:ff1_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:ff2_c00245;src:url('chunks/assets/font_376a8e43d74d542497db30db.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00245{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.v1_c00245{vertical-align:48.239981px;}
.ls0_c00245{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00245{word-spacing:-15.011994px;}
.ws1_c00245{word-spacing:-10.007996px;}
.ws2_c00245{word-spacing:0.000000px;}
._1_c00245{margin-left:-1.105374px;}
._0_c00245{width:1.195563px;}
._11_c00245{width:90.168232px;}
._14_c00245{width:97.372357px;}
._10_c00245{width:111.060195px;}
._5_c00245{width:118.360588px;}
._b_c00245{width:126.347045px;}
._16_c00245{width:134.113395px;}
._4_c00245{width:138.532139px;}
._18_c00245{width:141.317520px;}
._13_c00245{width:145.639995px;}
._17_c00245{width:148.658715px;}
._d_c00245{width:152.844120px;}
._3_c00245{width:163.026164px;}
._15_c00245{width:173.111939px;}
._12_c00245{width:181.036477px;}
._a_c00245{width:184.288533px;}
._f_c00245{width:186.216433px;}
._e_c00245{width:196.789283px;}
._2_c00245{width:201.836145px;}
._9_c00245{width:207.341733px;}
._8_c00245{width:218.868333px;}
._1e_c00245{width:223.444546px;}
._7_c00245{width:226.072459px;}
._1d_c00245{width:243.616097px;}
._1c_c00245{width:268.110122px;}
._1b_c00245{width:278.195897px;}
._1a_c00245{width:286.120435px;}
._c_c00245{width:320.599405px;}
._6_c00245{width:519.448378px;}
._19_c00245{width:588.693688px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs4_c00245{font-size:35.999986px;}
.fs2_c00245{font-size:53.999978px;}
.fs0_c00245{font-size:59.759976px;}
.fs1_c00245{font-size:66.239974px;}
.fs3_c00245{font-size:71.999971px;}
.y0_c00245{bottom:0.000000px;}
.y4_c00245{bottom:75.899970px;}
.y3_c00245{bottom:114.059954px;}
.y2f_c00245{bottom:170.219932px;}
.y2e_c00245{bottom:209.279916px;}
.y2d_c00245{bottom:255.539898px;}
.y2c_c00245{bottom:271.019892px;}
.y2b_c00245{bottom:305.039878px;}
.y2a_c00245{bottom:345.539862px;}
.y28_c00245{bottom:386.039846px;}
.y29_c00245{bottom:390.539844px;}
.y25_c00245{bottom:426.539829px;}
.y27_c00245{bottom:438.599825px;}
.y26_c00245{bottom:445.439822px;}
.y24_c00245{bottom:450.479820px;}
.y23_c00245{bottom:490.979804px;}
.y21_c00245{bottom:531.479787px;}
.y22_c00245{bottom:536.159786px;}
.y1e_c00245{bottom:571.979771px;}
.y20_c00245{bottom:584.039766px;}
.y1f_c00245{bottom:590.879764px;}
.y1d_c00245{bottom:596.099762px;}
.y1c_c00245{bottom:636.599745px;}
.y1a_c00245{bottom:677.099729px;}
.y1b_c00245{bottom:681.599727px;}
.y17_c00245{bottom:717.599713px;}
.y19_c00245{bottom:729.479708px;}
.y18_c00245{bottom:736.319705px;}
.y16_c00245{bottom:741.539703px;}
.y15_c00245{bottom:782.039687px;}
.y13_c00245{bottom:822.539671px;}
.y14_c00245{bottom:827.039669px;}
.y10_c00245{bottom:863.039655px;}
.y12_c00245{bottom:875.099650px;}
.y11_c00245{bottom:881.939647px;}
.yf_c00245{bottom:886.979645px;}
.ye_c00245{bottom:927.479629px;}
.yc_c00245{bottom:967.979613px;}
.yd_c00245{bottom:972.659611px;}
.y9_c00245{bottom:1008.479597px;}
.yb_c00245{bottom:1020.539592px;}
.ya_c00245{bottom:1027.379589px;}
.y8_c00245{bottom:1032.599587px;}
.y7_c00245{bottom:1073.099571px;}
.y5_c00245{bottom:1113.599555px;}
.y6_c00245{bottom:1118.099553px;}
.y2_c00245{bottom:1157.159537px;}
.y1_c00245{bottom:1196.039522px;}
.h6_c00245{height:37.546860px;}
.h2_c00245{height:54.628572px;}
.h3_c00245{height:56.320290px;}
.h1_c00245{height:58.651148px;}
.h4_c00245{height:70.664034px;}
.h7_c00245{height:103.840271px;}
.h5_c00245{height:104.560271px;}
.h0_c00245{height:1263.000000px;}
.w0_c00245{width:892.500000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:127.619949px;}
.x6_c00245{left:132.119947px;}
.x3_c00245{left:220.679912px;}
.x7_c00245{left:381.239848px;}
.x8_c00245{left:388.079845px;}
.x2_c00245{left:433.979514px;}
.x4_c00245{left:446.759821px;}
.x9_c00245{left:456.479817px;}
.xa_c00245{left:463.319815px;}
.x5_c00245{left:506.879797px;}
.x13_c00245{left:520.019792px;}
.x15_c00245{left:529.919788px;}
.x16_c00245{left:536.759785px;}
.x14_c00245{left:577.619769px;}
.x19_c00245{left:590.759764px;}
.xb_c00245{left:600.479760px;}
.xc_c00245{left:607.319757px;}
.x1a_c00245{left:642.239743px;}
.x1b_c00245{left:655.379738px;}
.xd_c00245{left:665.279734px;}
.xe_c00245{left:672.119731px;}
.x1c_c00245{left:701.819719px;}
.x1d_c00245{left:714.959714px;}
.xf_c00245{left:724.859710px;}
.x17_c00245{left:726.659709px;}
.x18_c00245{left:729.899708px;}
.x10_c00245{left:731.699707px;}
.x1e_c00245{left:761.399695px;}
.x1f_c00245{left:774.539690px;}
.x11_c00245{left:784.439686px;}
.x12_c00245{left:791.279683px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.v1_c00245{vertical-align:42.879983pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:-13.343995pt;}
.ws1_c00245{word-spacing:-8.895996pt;}
.ws2_c00245{word-spacing:0.000000pt;}
._1_c00245{margin-left:-0.982555pt;}
._0_c00245{width:1.062723pt;}
._11_c00245{width:80.149540pt;}
._14_c00245{width:86.553206pt;}
._10_c00245{width:98.720173pt;}
._5_c00245{width:105.209412pt;}
._b_c00245{width:112.308485pt;}
._16_c00245{width:119.211907pt;}
._4_c00245{width:123.139679pt;}
._18_c00245{width:125.615574pt;}
._13_c00245{width:129.457774pt;}
._17_c00245{width:132.141080pt;}
._d_c00245{width:135.861440pt;}
._3_c00245{width:144.912146pt;}
._15_c00245{width:153.877279pt;}
._12_c00245{width:160.921312pt;}
._a_c00245{width:163.812029pt;}
._f_c00245{width:165.525718pt;}
._e_c00245{width:174.923808pt;}
._2_c00245{width:179.409907pt;}
._9_c00245{width:184.303763pt;}
._8_c00245{width:194.549630pt;}
._1e_c00245{width:198.617374pt;}
._7_c00245{width:200.953296pt;}
._1d_c00245{width:216.547641pt;}
._1c_c00245{width:238.320108pt;}
._1b_c00245{width:247.285242pt;}
._1a_c00245{width:254.329275pt;}
._c_c00245{width:284.977249pt;}
._6_c00245{width:461.731892pt;}
._19_c00245{width:523.283278pt;}
.fs4_c00245{font-size:31.999987pt;}
.fs2_c00245{font-size:47.999981pt;}
.fs0_c00245{font-size:53.119979pt;}
.fs1_c00245{font-size:58.879976pt;}
.fs3_c00245{font-size:63.999974pt;}
.y0_c00245{bottom:0.000000pt;}
.y4_c00245{bottom:67.466640pt;}
.y3_c00245{bottom:101.386626pt;}
.y2f_c00245{bottom:151.306606pt;}
.y2e_c00245{bottom:186.026592pt;}
.y2d_c00245{bottom:227.146576pt;}
.y2c_c00245{bottom:240.906570pt;}
.y2b_c00245{bottom:271.146558pt;}
.y2a_c00245{bottom:307.146544pt;}
.y28_c00245{bottom:343.146529pt;}
.y29_c00245{bottom:347.146528pt;}
.y25_c00245{bottom:379.146515pt;}
.y27_c00245{bottom:389.866511pt;}
.y26_c00245{bottom:395.946508pt;}
.y24_c00245{bottom:400.426506pt;}
.y23_c00245{bottom:436.426492pt;}
.y21_c00245{bottom:472.426478pt;}
.y22_c00245{bottom:476.586476pt;}
.y1e_c00245{bottom:508.426463pt;}
.y20_c00245{bottom:519.146459pt;}
.y1f_c00245{bottom:525.226457pt;}
.y1d_c00245{bottom:529.866455pt;}
.y1c_c00245{bottom:565.866440pt;}
.y1a_c00245{bottom:601.866426pt;}
.y1b_c00245{bottom:605.866424pt;}
.y17_c00245{bottom:637.866412pt;}
.y19_c00245{bottom:648.426407pt;}
.y18_c00245{bottom:654.506405pt;}
.y16_c00245{bottom:659.146403pt;}
.y15_c00245{bottom:695.146389pt;}
.y13_c00245{bottom:731.146374pt;}
.y14_c00245{bottom:735.146373pt;}
.y10_c00245{bottom:767.146360pt;}
.y12_c00245{bottom:777.866356pt;}
.y11_c00245{bottom:783.946353pt;}
.yf_c00245{bottom:788.426351pt;}
.ye_c00245{bottom:824.426337pt;}
.yc_c00245{bottom:860.426322pt;}
.yd_c00245{bottom:864.586321pt;}
.y9_c00245{bottom:896.426308pt;}
.yb_c00245{bottom:907.146304pt;}
.ya_c00245{bottom:913.226301pt;}
.y8_c00245{bottom:917.866300pt;}
.y7_c00245{bottom:953.866285pt;}
.y5_c00245{bottom:989.866271pt;}
.y6_c00245{bottom:993.866269pt;}
.y2_c00245{bottom:1028.586255pt;}
.y1_c00245{bottom:1063.146241pt;}
.h6_c00245{height:33.374987pt;}
.h2_c00245{height:48.558731pt;}
.h3_c00245{height:50.062480pt;}
.h1_c00245{height:52.134354pt;}
.h4_c00245{height:62.812475pt;}
.h7_c00245{height:92.302463pt;}
.h5_c00245{height:92.942463pt;}
.h0_c00245{height:1122.666667pt;}
.w0_c00245{width:793.333333pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:113.439955pt;}
.x6_c00245{left:117.439953pt;}
.x3_c00245{left:196.159922pt;}
.x7_c00245{left:338.879864pt;}
.x8_c00245{left:344.959862pt;}
.x2_c00245{left:385.759568pt;}
.x4_c00245{left:397.119841pt;}
.x9_c00245{left:405.759838pt;}
.xa_c00245{left:411.839835pt;}
.x5_c00245{left:450.559820pt;}
.x13_c00245{left:462.239815pt;}
.x15_c00245{left:471.039812pt;}
.x16_c00245{left:477.119809pt;}
.x14_c00245{left:513.439795pt;}
.x19_c00245{left:525.119790pt;}
.xb_c00245{left:533.759786pt;}
.xc_c00245{left:539.839784pt;}
.x1a_c00245{left:570.879772pt;}
.x1b_c00245{left:582.559767pt;}
.xd_c00245{left:591.359763pt;}
.xe_c00245{left:597.439761pt;}
.x1c_c00245{left:623.839750pt;}
.x1d_c00245{left:635.519746pt;}
.xf_c00245{left:644.319742pt;}
.x17_c00245{left:645.919742pt;}
.x18_c00245{left:648.799740pt;}
.x10_c00245{left:650.399740pt;}
.x1e_c00245{left:676.799729pt;}
.x1f_c00245{left:688.479725pt;}
.x11_c00245{left:697.279721pt;}
.x12_c00245{left:703.359719pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ad84d79de2dbaf3a84a60a6.woff2')format("woff");}.ff1_c00246{font-family:ff1_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:ff2_c00246;src:url('chunks/assets/font_439146fd860bf601c1ea85cb.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_6d857d73931b8354629d338f.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_07b653b00e416132b9d6b679.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_6a67cad81e95948c966aea43.woff2')format("woff");}.ff5_c00246{font-family:ff5_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:ff6_c00246;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00246{font-family:ff6_c00246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00246{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.v1_c00246{vertical-align:21.599991px;}
.ls2_c00246{letter-spacing:0.000000px;}
.ls1_c00246{letter-spacing:0.187140px;}
.ls0_c00246{letter-spacing:78.802648px;}
.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;}
}
.ws1_c00246{word-spacing:-12.059995px;}
.ws0_c00246{word-spacing:-10.007996px;}
.ws2_c00246{word-spacing:0.000000px;}
._14_c00246{margin-left:-2.224604px;}
._1_c00246{margin-left:-1.105374px;}
._0_c00246{width:1.478392px;}
._b_c00246{width:2.792576px;}
._c_c00246{width:4.522078px;}
._d_c00246{width:6.313400px;}
._10_c00246{width:13.598882px;}
._11_c00246{width:14.852254px;}
._12_c00246{width:16.066356px;}
._13_c00246{width:17.921377px;}
._e_c00246{width:24.405168px;}
._f_c00246{width:26.183489px;}
._3_c00246{width:444.048962px;}
._7_c00246{width:451.191167px;}
._5_c00246{width:475.101849px;}
._9_c00246{width:496.227149px;}
._a_c00246{width:511.705815px;}
._2_c00246{width:557.871498px;}
._4_c00246{width:562.855103px;}
._6_c00246{width:759.537559px;}
._8_c00246{width:1077.047660px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs4_c00246{font-size:35.999986px;}
.fs5_c00246{font-size:48.239981px;}
.fs2_c00246{font-size:53.999978px;}
.fs0_c00246{font-size:59.759976px;}
.fs1_c00246{font-size:66.239974px;}
.fs3_c00246{font-size:71.999971px;}
.y0_c00246{bottom:0.000000px;}
.y4_c00246{bottom:75.900270px;}
.y3_c00246{bottom:114.060254px;}
.y30_c00246{bottom:152.039939px;}
.y2f_c00246{bottom:172.739931px;}
.y2e_c00246{bottom:193.439923px;}
.y2d_c00246{bottom:214.139914px;}
.y2c_c00246{bottom:234.839906px;}
.y2b_c00246{bottom:255.539898px;}
.y2a_c00246{bottom:276.239890px;}
.y29_c00246{bottom:296.939881px;}
.y28_c00246{bottom:317.639873px;}
.y27_c00246{bottom:338.339865px;}
.y26_c00246{bottom:359.039856px;}
.y25_c00246{bottom:379.739848px;}
.y24_c00246{bottom:400.439840px;}
.y23_c00246{bottom:421.139832px;}
.y22_c00246{bottom:441.659823px;}
.y21_c00246{bottom:462.359815px;}
.y20_c00246{bottom:483.059807px;}
.y1f_c00246{bottom:503.759798px;}
.y1e_c00246{bottom:524.459790px;}
.y1d_c00246{bottom:545.159782px;}
.y1c_c00246{bottom:565.859774px;}
.y1b_c00246{bottom:586.559765px;}
.y1a_c00246{bottom:607.259757px;}
.y19_c00246{bottom:627.959749px;}
.y18_c00246{bottom:648.659741px;}
.y17_c00246{bottom:669.359732px;}
.y16_c00246{bottom:690.059724px;}
.y15_c00246{bottom:710.759716px;}
.y14_c00246{bottom:731.459707px;}
.y13_c00246{bottom:752.159699px;}
.y12_c00246{bottom:777.719689px;}
.y11_c00246{bottom:796.979681px;}
.y10_c00246{bottom:812.459675px;}
.yf_c00246{bottom:844.499662px;}
.yd_c00246{bottom:884.999646px;}
.ye_c00246{bottom:891.839643px;}
.yc_c00246{bottom:925.499630px;}
.yb_c00246{bottom:967.619613px;}
.y9_c00246{bottom:1009.559596px;}
.ya_c00246{bottom:1016.399593px;}
.y8_c00246{bottom:1051.499579px;}
.y7_c00246{bottom:1055.999578px;}
.y6_c00246{bottom:1101.719559px;}
.y5_c00246{bottom:1132.139547px;}
.y2_c00246{bottom:1176.059530px;}
.y1_c00246{bottom:1196.219522px;}
.h5_c00246{height:37.546860px;}
.h8_c00246{height:47.344903px;}
.h7_c00246{height:50.312792px;}
.h2_c00246{height:54.628572px;}
.h3_c00246{height:56.320290px;}
.h1_c00246{height:58.651148px;}
.h4_c00246{height:70.664034px;}
.h6_c00246{height:77.920281px;}
.h0_c00246{height:1263.000000px;}
.w0_c00246{width:892.500000px;}
.x0_c00246{left:0.000000px;}
.x5_c00246{left:127.620262px;}
.x7_c00246{left:132.119947px;}
.xd_c00246{left:133.739947px;}
.xe_c00246{left:145.619942px;}
.xf_c00246{left:172.619478px;}
.x1_c00246{left:181.799927px;}
.xa_c00246{left:300.059880px;}
.x2_c00246{left:329.039408px;}
.x4_c00246{left:433.979826px;}
.x6_c00246{left:523.259791px;}
.xb_c00246{left:599.939760px;}
.xc_c00246{left:606.779757px;}
.x8_c00246{left:742.679703px;}
.x9_c00246{left:749.519700px;}
.x3_c00246{left:765.359694px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.v1_c00246{vertical-align:19.199992pt;}
.ls2_c00246{letter-spacing:0.000000pt;}
.ls1_c00246{letter-spacing:0.166347pt;}
.ls0_c00246{letter-spacing:70.046799pt;}
.ws1_c00246{word-spacing:-10.719996pt;}
.ws0_c00246{word-spacing:-8.895996pt;}
.ws2_c00246{word-spacing:0.000000pt;}
._14_c00246{margin-left:-1.977426pt;}
._1_c00246{margin-left:-0.982555pt;}
._0_c00246{width:1.314126pt;}
._b_c00246{width:2.482290pt;}
._c_c00246{width:4.019625pt;}
._d_c00246{width:5.611911pt;}
._10_c00246{width:12.087895pt;}
._11_c00246{width:13.202003pt;}
._12_c00246{width:14.281205pt;}
._13_c00246{width:15.930113pt;}
._e_c00246{width:21.693483pt;}
._f_c00246{width:23.274212pt;}
._3_c00246{width:394.710188pt;}
._7_c00246{width:401.058815pt;}
._5_c00246{width:422.312755pt;}
._9_c00246{width:441.090799pt;}
._a_c00246{width:454.849614pt;}
._2_c00246{width:495.885776pt;}
._4_c00246{width:500.315648pt;}
._6_c00246{width:675.144497pt;}
._8_c00246{width:957.375698pt;}
.fs4_c00246{font-size:31.999987pt;}
.fs5_c00246{font-size:42.879983pt;}
.fs2_c00246{font-size:47.999981pt;}
.fs0_c00246{font-size:53.119979pt;}
.fs1_c00246{font-size:58.879976pt;}
.fs3_c00246{font-size:63.999974pt;}
.y0_c00246{bottom:0.000000pt;}
.y4_c00246{bottom:67.466906pt;}
.y3_c00246{bottom:101.386893pt;}
.y30_c00246{bottom:135.146613pt;}
.y2f_c00246{bottom:153.546605pt;}
.y2e_c00246{bottom:171.946598pt;}
.y2d_c00246{bottom:190.346591pt;}
.y2c_c00246{bottom:208.746583pt;}
.y2b_c00246{bottom:227.146576pt;}
.y2a_c00246{bottom:245.546568pt;}
.y29_c00246{bottom:263.946561pt;}
.y28_c00246{bottom:282.346554pt;}
.y27_c00246{bottom:300.746546pt;}
.y26_c00246{bottom:319.146539pt;}
.y25_c00246{bottom:337.546532pt;}
.y24_c00246{bottom:355.946524pt;}
.y23_c00246{bottom:374.346517pt;}
.y22_c00246{bottom:392.586510pt;}
.y21_c00246{bottom:410.986502pt;}
.y20_c00246{bottom:429.386495pt;}
.y1f_c00246{bottom:447.786488pt;}
.y1e_c00246{bottom:466.186480pt;}
.y1d_c00246{bottom:484.586473pt;}
.y1c_c00246{bottom:502.986465pt;}
.y1b_c00246{bottom:521.386458pt;}
.y1a_c00246{bottom:539.786451pt;}
.y19_c00246{bottom:558.186443pt;}
.y18_c00246{bottom:576.586436pt;}
.y17_c00246{bottom:594.986429pt;}
.y16_c00246{bottom:613.386421pt;}
.y15_c00246{bottom:631.786414pt;}
.y14_c00246{bottom:650.186407pt;}
.y13_c00246{bottom:668.586399pt;}
.y12_c00246{bottom:691.306390pt;}
.y11_c00246{bottom:708.426383pt;}
.y10_c00246{bottom:722.186378pt;}
.yf_c00246{bottom:750.666366pt;}
.yd_c00246{bottom:786.666352pt;}
.ye_c00246{bottom:792.746350pt;}
.yc_c00246{bottom:822.666338pt;}
.yb_c00246{bottom:860.106323pt;}
.y9_c00246{bottom:897.386308pt;}
.ya_c00246{bottom:903.466305pt;}
.y8_c00246{bottom:934.666293pt;}
.y7_c00246{bottom:938.666291pt;}
.y6_c00246{bottom:979.306275pt;}
.y5_c00246{bottom:1006.346264pt;}
.y2_c00246{bottom:1045.386249pt;}
.y1_c00246{bottom:1063.306241pt;}
.h5_c00246{height:33.374987pt;}
.h8_c00246{height:42.084358pt;}
.h7_c00246{height:44.722482pt;}
.h2_c00246{height:48.558731pt;}
.h3_c00246{height:50.062480pt;}
.h1_c00246{height:52.134354pt;}
.h4_c00246{height:62.812475pt;}
.h6_c00246{height:69.262472pt;}
.h0_c00246{height:1122.666667pt;}
.w0_c00246{width:793.333333pt;}
.x0_c00246{left:0.000000pt;}
.x5_c00246{left:113.440233pt;}
.x7_c00246{left:117.439953pt;}
.xd_c00246{left:118.879952pt;}
.xe_c00246{left:129.439948pt;}
.xf_c00246{left:153.439536pt;}
.x1_c00246{left:161.599935pt;}
.xa_c00246{left:266.719893pt;}
.x2_c00246{left:292.479474pt;}
.x4_c00246{left:385.759846pt;}
.x6_c00246{left:465.119814pt;}
.xb_c00246{left:533.279787pt;}
.xc_c00246{left:539.359784pt;}
.x8_c00246{left:660.159736pt;}
.x9_c00246{left:666.239734pt;}
.x3_c00246{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ea23882612c6f24b5f7289f.woff2')format("woff");}.ff1_c00247{font-family:ff1_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:ff2_c00247;src:url('chunks/assets/font_9c0dba549325613737740e50.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_9380aa02a28272ae85988ed6.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;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_639f1e6320d24f2c51b70872.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls1_c00247{letter-spacing:0.000000px;}
.ls0_c00247{letter-spacing:78.802648px;}
.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;}
}
.ws1_c00247{word-spacing:-17.999993px;}
.ws0_c00247{word-spacing:-12.059995px;}
.ws2_c00247{word-spacing:0.000000px;}
._1_c00247{margin-left:-1.105374px;}
._0_c00247{width:1.195563px;}
._e_c00247{width:2.315627px;}
._a_c00247{width:3.897433px;}
._b_c00247{width:4.924780px;}
._10_c00247{width:6.138037px;}
._c_c00247{width:7.278668px;}
._d_c00247{width:8.871927px;}
._5_c00247{width:10.032753px;}
._15_c00247{width:11.066063px;}
._6_c00247{width:12.066665px;}
._7_c00247{width:13.085548px;}
._13_c00247{width:15.031088px;}
._f_c00247{width:16.771777px;}
._4_c00247{width:19.720698px;}
._11_c00247{width:21.187593px;}
._12_c00247{width:22.269883px;}
._14_c00247{width:23.305840px;}
._16_c00247{width:29.702733px;}
._8_c00247{width:31.142442px;}
._9_c00247{width:33.036923px;}
._2_c00247{width:44.020326px;}
._3_c00247{width:45.124703px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs2_c00247{font-size:48.239981px;}
.fs0_c00247{font-size:59.759976px;}
.fs1_c00247{font-size:66.239974px;}
.fs3_c00247{font-size:71.999971px;}
.y0_c00247{bottom:0.000000px;}
.y4_c00247{bottom:75.899970px;}
.y3_c00247{bottom:114.059954px;}
.y24_c00247{bottom:136.019946px;}
.y23_c00247{bottom:167.159933px;}
.y22_c00247{bottom:213.239915px;}
.y21_c00247{bottom:244.199902px;}
.y20_c00247{bottom:275.339890px;}
.y1f_c00247{bottom:306.299877px;}
.y1e_c00247{bottom:337.439865px;}
.y1d_c00247{bottom:368.399853px;}
.y1c_c00247{bottom:399.539840px;}
.y1b_c00247{bottom:430.499828px;}
.y1a_c00247{bottom:476.579809px;}
.y19_c00247{bottom:507.539797px;}
.y18_c00247{bottom:538.679785px;}
.y17_c00247{bottom:569.639772px;}
.y16_c00247{bottom:600.779760px;}
.y15_c00247{bottom:631.379747px;}
.y14_c00247{bottom:662.519735px;}
.y13_c00247{bottom:693.839722px;}
.y12_c00247{bottom:724.979710px;}
.y11_c00247{bottom:755.939698px;}
.y10_c00247{bottom:787.079685px;}
.yf_c00247{bottom:818.039673px;}
.ye_c00247{bottom:849.179660px;}
.yd_c00247{bottom:880.139648px;}
.yc_c00247{bottom:911.279635px;}
.yb_c00247{bottom:942.239623px;}
.ya_c00247{bottom:973.379611px;}
.y9_c00247{bottom:1004.339598px;}
.y8_c00247{bottom:1035.479586px;}
.y7_c00247{bottom:1066.439573px;}
.y6_c00247{bottom:1097.579561px;}
.y5_c00247{bottom:1123.859550px;}
.y2_c00247{bottom:1157.159537px;}
.y1_c00247{bottom:1196.039522px;}
.h3_c00247{height:50.312792px;}
.h2_c00247{height:54.628572px;}
.h1_c00247{height:58.651148px;}
.h4_c00247{height:70.664034px;}
.h5_c00247{height:72.562471px;}
.h0_c00247{height:1263.000000px;}
.w0_c00247{width:892.500000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:127.619949px;}
.x3_c00247{left:145.619942px;}
.x4_c00247{left:180.719928px;}
.x2_c00247{left:433.979514px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls1_c00247{letter-spacing:0.000000pt;}
.ls0_c00247{letter-spacing:70.046799pt;}
.ws1_c00247{word-spacing:-15.999994pt;}
.ws0_c00247{word-spacing:-10.719996pt;}
.ws2_c00247{word-spacing:0.000000pt;}
._1_c00247{margin-left:-0.982555pt;}
._0_c00247{width:1.062723pt;}
._e_c00247{width:2.058335pt;}
._a_c00247{width:3.464385pt;}
._b_c00247{width:4.377582pt;}
._10_c00247{width:5.456033pt;}
._c_c00247{width:6.469927pt;}
._d_c00247{width:7.886157pt;}
._5_c00247{width:8.918003pt;}
._15_c00247{width:9.836500pt;}
._6_c00247{width:10.725924pt;}
._7_c00247{width:11.631598pt;}
._13_c00247{width:13.360967pt;}
._f_c00247{width:14.908246pt;}
._4_c00247{width:17.529509pt;}
._11_c00247{width:18.833416pt;}
._12_c00247{width:19.795452pt;}
._14_c00247{width:20.716302pt;}
._16_c00247{width:26.402429pt;}
._8_c00247{width:27.682170pt;}
._9_c00247{width:29.366154pt;}
._2_c00247{width:39.129178pt;}
._3_c00247{width:40.110847pt;}
.fs2_c00247{font-size:42.879983pt;}
.fs0_c00247{font-size:53.119979pt;}
.fs1_c00247{font-size:58.879976pt;}
.fs3_c00247{font-size:63.999974pt;}
.y0_c00247{bottom:0.000000pt;}
.y4_c00247{bottom:67.466640pt;}
.y3_c00247{bottom:101.386626pt;}
.y24_c00247{bottom:120.906618pt;}
.y23_c00247{bottom:148.586607pt;}
.y22_c00247{bottom:189.546591pt;}
.y21_c00247{bottom:217.066580pt;}
.y20_c00247{bottom:244.746569pt;}
.y1f_c00247{bottom:272.266558pt;}
.y1e_c00247{bottom:299.946547pt;}
.y1d_c00247{bottom:327.466536pt;}
.y1c_c00247{bottom:355.146525pt;}
.y1b_c00247{bottom:382.666514pt;}
.y1a_c00247{bottom:423.626497pt;}
.y19_c00247{bottom:451.146486pt;}
.y18_c00247{bottom:478.826475pt;}
.y17_c00247{bottom:506.346464pt;}
.y16_c00247{bottom:534.026453pt;}
.y15_c00247{bottom:561.226442pt;}
.y14_c00247{bottom:588.906431pt;}
.y13_c00247{bottom:616.746420pt;}
.y12_c00247{bottom:644.426409pt;}
.y11_c00247{bottom:671.946398pt;}
.y10_c00247{bottom:699.626387pt;}
.yf_c00247{bottom:727.146376pt;}
.ye_c00247{bottom:754.826365pt;}
.yd_c00247{bottom:782.346354pt;}
.yc_c00247{bottom:810.026343pt;}
.yb_c00247{bottom:837.546332pt;}
.ya_c00247{bottom:865.226321pt;}
.y9_c00247{bottom:892.746310pt;}
.y8_c00247{bottom:920.426298pt;}
.y7_c00247{bottom:947.946287pt;}
.y6_c00247{bottom:975.626276pt;}
.y5_c00247{bottom:998.986267pt;}
.y2_c00247{bottom:1028.586255pt;}
.y1_c00247{bottom:1063.146241pt;}
.h3_c00247{height:44.722482pt;}
.h2_c00247{height:48.558731pt;}
.h1_c00247{height:52.134354pt;}
.h4_c00247{height:62.812475pt;}
.h5_c00247{height:64.499974pt;}
.h0_c00247{height:1122.666667pt;}
.w0_c00247{width:793.333333pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:113.439955pt;}
.x3_c00247{left:129.439948pt;}
.x4_c00247{left:160.639936pt;}
.x2_c00247{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89ed8911c76911fccf80b28d.woff2')format("woff");}.ff1_c00248{font-family:ff1_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:ff2_c00248;src:url('chunks/assets/font_9cc07d7cd0438a37243f8b49.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_fbe3dc38adc368f8a1f4109b.woff2')format("woff");}.ff3_c00248{font-family:ff3_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:ff4_c00248;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls1_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:34.015846px;}
.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:-17.999993px;}
.ws1_c00248{word-spacing:0.000000px;}
._1_c00248{margin-left:-1.105374px;}
._0_c00248{width:1.478392px;}
._2_c00248{width:3.943426px;}
._3_c00248{width:5.227616px;}
._e_c00248{width:8.465476px;}
._d_c00248{width:9.471877px;}
._6_c00248{width:10.557381px;}
._7_c00248{width:11.670432px;}
._8_c00248{width:15.204486px;}
._9_c00248{width:16.259572px;}
._b_c00248{width:21.628140px;}
._c_c00248{width:22.975142px;}
._4_c00248{width:28.846506px;}
._5_c00248{width:30.643766px;}
._a_c00248{width:35.421290px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs0_c00248{font-size:59.759976px;}
.fs1_c00248{font-size:66.239974px;}
.fs2_c00248{font-size:71.999971px;}
.y0_c00248{bottom:0.000000px;}
.y4_c00248{bottom:75.900270px;}
.y3_c00248{bottom:114.060254px;}
.y23_c00248{bottom:175.079930px;}
.y22_c00248{bottom:206.219918px;}
.y21_c00248{bottom:237.179905px;}
.y20_c00248{bottom:268.319893px;}
.y1f_c00248{bottom:299.279880px;}
.y1e_c00248{bottom:330.419868px;}
.y1d_c00248{bottom:361.379855px;}
.y1c_c00248{bottom:392.519843px;}
.y1b_c00248{bottom:423.479831px;}
.y1a_c00248{bottom:454.439818px;}
.y19_c00248{bottom:485.579806px;}
.y18_c00248{bottom:516.539793px;}
.y17_c00248{bottom:547.679781px;}
.y16_c00248{bottom:578.639769px;}
.y15_c00248{bottom:609.779756px;}
.y14_c00248{bottom:640.739744px;}
.y13_c00248{bottom:671.879731px;}
.y12_c00248{bottom:702.839719px;}
.y11_c00248{bottom:733.979706px;}
.y10_c00248{bottom:764.939694px;}
.yf_c00248{bottom:796.079682px;}
.ye_c00248{bottom:827.039669px;}
.yd_c00248{bottom:858.179657px;}
.yc_c00248{bottom:889.139644px;}
.yb_c00248{bottom:935.219626px;}
.ya_c00248{bottom:966.359613px;}
.y9_c00248{bottom:997.319601px;}
.y8_c00248{bottom:1043.399583px;}
.y7_c00248{bottom:1074.359570px;}
.y6_c00248{bottom:1105.499558px;}
.y5_c00248{bottom:1136.459545px;}
.y2_c00248{bottom:1176.059530px;}
.y1_c00248{bottom:1196.219522px;}
.h2_c00248{height:54.628572px;}
.h1_c00248{height:58.651148px;}
.h3_c00248{height:70.664034px;}
.h4_c00248{height:75.093720px;}
.h0_c00248{height:1263.000000px;}
.w0_c00248{width:892.500000px;}
.x0_c00248{left:0.000000px;}
.x5_c00248{left:127.620262px;}
.x7_c00248{left:154.620498px;}
.x6_c00248{left:180.720080px;}
.x1_c00248{left:181.799927px;}
.x2_c00248{left:329.039408px;}
.x4_c00248{left:433.979826px;}
.x3_c00248{left:765.359694px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls1_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:30.236308pt;}
.ws0_c00248{word-spacing:-15.999994pt;}
.ws1_c00248{word-spacing:0.000000pt;}
._1_c00248{margin-left:-0.982555pt;}
._0_c00248{width:1.314126pt;}
._2_c00248{width:3.505268pt;}
._3_c00248{width:4.646770pt;}
._e_c00248{width:7.524868pt;}
._d_c00248{width:8.419446pt;}
._6_c00248{width:9.384339pt;}
._7_c00248{width:10.373717pt;}
._8_c00248{width:13.515099pt;}
._9_c00248{width:14.452953pt;}
._b_c00248{width:19.225013pt;}
._c_c00248{width:20.422348pt;}
._4_c00248{width:25.641339pt;}
._5_c00248{width:27.238903pt;}
._a_c00248{width:31.485591pt;}
.fs0_c00248{font-size:53.119979pt;}
.fs1_c00248{font-size:58.879976pt;}
.fs2_c00248{font-size:63.999974pt;}
.y0_c00248{bottom:0.000000pt;}
.y4_c00248{bottom:67.466906pt;}
.y3_c00248{bottom:101.386893pt;}
.y23_c00248{bottom:155.626604pt;}
.y22_c00248{bottom:183.306593pt;}
.y21_c00248{bottom:210.826582pt;}
.y20_c00248{bottom:238.506571pt;}
.y1f_c00248{bottom:266.026560pt;}
.y1e_c00248{bottom:293.706549pt;}
.y1d_c00248{bottom:321.226538pt;}
.y1c_c00248{bottom:348.906527pt;}
.y1b_c00248{bottom:376.426516pt;}
.y1a_c00248{bottom:403.946505pt;}
.y19_c00248{bottom:431.626494pt;}
.y18_c00248{bottom:459.146483pt;}
.y17_c00248{bottom:486.826472pt;}
.y16_c00248{bottom:514.346461pt;}
.y15_c00248{bottom:542.026450pt;}
.y14_c00248{bottom:569.546439pt;}
.y13_c00248{bottom:597.226428pt;}
.y12_c00248{bottom:624.746417pt;}
.y11_c00248{bottom:652.426406pt;}
.y10_c00248{bottom:679.946395pt;}
.yf_c00248{bottom:707.626384pt;}
.ye_c00248{bottom:735.146373pt;}
.yd_c00248{bottom:762.826362pt;}
.yc_c00248{bottom:790.346351pt;}
.yb_c00248{bottom:831.306334pt;}
.ya_c00248{bottom:858.986323pt;}
.y9_c00248{bottom:886.506312pt;}
.y8_c00248{bottom:927.466296pt;}
.y7_c00248{bottom:954.986285pt;}
.y6_c00248{bottom:982.666274pt;}
.y5_c00248{bottom:1010.186263pt;}
.y2_c00248{bottom:1045.386249pt;}
.y1_c00248{bottom:1063.306241pt;}
.h2_c00248{height:48.558731pt;}
.h1_c00248{height:52.134354pt;}
.h3_c00248{height:62.812475pt;}
.h4_c00248{height:66.749973pt;}
.h0_c00248{height:1122.666667pt;}
.w0_c00248{width:793.333333pt;}
.x0_c00248{left:0.000000pt;}
.x5_c00248{left:113.440233pt;}
.x7_c00248{left:137.440443pt;}
.x6_c00248{left:160.640071pt;}
.x1_c00248{left:161.599935pt;}
.x2_c00248{left:292.479474pt;}
.x4_c00248{left:385.759846pt;}
.x3_c00248{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c78d9aa721910a4cd3805b47.woff2')format("woff");}.ff1_c00249{font-family:ff1_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;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_eda5495f5954b8fc63cde009.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_9416a2c87ec0c1fdb8648530.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_5b223d9a0c66a81427c15554.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_524060aca52e7afd8f07a1fa.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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;}
._1_c00249{margin-left:-1.105374px;}
._0_c00249{width:1.195563px;}
._4_c00249{width:2.729294px;}
._5_c00249{width:3.751009px;}
._b_c00249{width:4.798492px;}
._a_c00249{width:7.321223px;}
._6_c00249{width:8.765396px;}
._7_c00249{width:10.049167px;}
._9_c00249{width:12.144493px;}
._2_c00249{width:13.893689px;}
._3_c00249{width:16.576941px;}
._8_c00249{width:22.319023px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs0_c00249{font-size:59.759976px;}
.fs1_c00249{font-size:66.239974px;}
.fs2_c00249{font-size:71.999971px;}
.y0_c00249{bottom:0.000000px;}
.y4_c00249{bottom:75.719970px;}
.y3_c00249{bottom:113.879954px;}
.y19_c00249{bottom:161.579935px;}
.y18_c00249{bottom:192.539923px;}
.y17_c00249{bottom:223.679911px;}
.y16_c00249{bottom:254.639898px;}
.y15_c00249{bottom:285.779886px;}
.y14_c00249{bottom:316.739873px;}
.y13_c00249{bottom:347.879861px;}
.y12_c00249{bottom:378.839848px;}
.y11_c00249{bottom:409.979836px;}
.y10_c00249{bottom:440.939824px;}
.yf_c00249{bottom:472.079811px;}
.ye_c00249{bottom:503.039799px;}
.yd_c00249{bottom:534.179786px;}
.yc_c00249{bottom:565.139774px;}
.yb_c00249{bottom:596.279761px;}
.ya_c00249{bottom:627.239749px;}
.y9_c00249{bottom:672.239731px;}
.y8_c00249{bottom:712.379715px;}
.y7_c00249{bottom:1055.999578px;}
.y6_c00249{bottom:1086.599565px;}
.y5_c00249{bottom:1117.739553px;}
.y2_c00249{bottom:1156.979537px;}
.y1_c00249{bottom:1195.859522px;}
.h2_c00249{height:54.628572px;}
.h1_c00249{height:58.651148px;}
.h5_c00249{height:65.010911px;}
.h6_c00249{height:70.628878px;}
.h4_c00249{height:70.664034px;}
.h3_c00249{height:72.562471px;}
.h0_c00249{height:1263.000000px;}
.w0_c00249{width:892.500000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:127.799949px;}
.x3_c00249{left:154.800348px;}
.x6_c00249{left:180.899928px;}
.x5_c00249{left:238.679905px;}
.x2_c00249{left:434.159514px;}
.x4_c00249{left:554.579679px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
._1_c00249{margin-left:-0.982555pt;}
._0_c00249{width:1.062723pt;}
._4_c00249{width:2.426039pt;}
._5_c00249{width:3.334230pt;}
._b_c00249{width:4.265326pt;}
._a_c00249{width:6.507754pt;}
._6_c00249{width:7.791464pt;}
._7_c00249{width:8.932593pt;}
._9_c00249{width:10.795105pt;}
._2_c00249{width:12.349946pt;}
._3_c00249{width:14.735058pt;}
._8_c00249{width:19.839132pt;}
.fs0_c00249{font-size:53.119979pt;}
.fs1_c00249{font-size:58.879976pt;}
.fs2_c00249{font-size:63.999974pt;}
.y0_c00249{bottom:0.000000pt;}
.y4_c00249{bottom:67.306640pt;}
.y3_c00249{bottom:101.226626pt;}
.y19_c00249{bottom:143.626609pt;}
.y18_c00249{bottom:171.146598pt;}
.y17_c00249{bottom:198.826587pt;}
.y16_c00249{bottom:226.346576pt;}
.y15_c00249{bottom:254.026565pt;}
.y14_c00249{bottom:281.546554pt;}
.y13_c00249{bottom:309.226543pt;}
.y12_c00249{bottom:336.746532pt;}
.y11_c00249{bottom:364.426521pt;}
.y10_c00249{bottom:391.946510pt;}
.yf_c00249{bottom:419.626499pt;}
.ye_c00249{bottom:447.146488pt;}
.yd_c00249{bottom:474.826477pt;}
.yc_c00249{bottom:502.346466pt;}
.yb_c00249{bottom:530.026455pt;}
.ya_c00249{bottom:557.546444pt;}
.y9_c00249{bottom:597.546428pt;}
.y8_c00249{bottom:633.226413pt;}
.y7_c00249{bottom:938.666291pt;}
.y6_c00249{bottom:965.866280pt;}
.y5_c00249{bottom:993.546269pt;}
.y2_c00249{bottom:1028.426255pt;}
.y1_c00249{bottom:1062.986241pt;}
.h2_c00249{height:48.558731pt;}
.h1_c00249{height:52.134354pt;}
.h5_c00249{height:57.787477pt;}
.h6_c00249{height:62.781225pt;}
.h4_c00249{height:62.812475pt;}
.h3_c00249{height:64.499974pt;}
.h0_c00249{height:1122.666667pt;}
.w0_c00249{width:793.333333pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:113.599955pt;}
.x3_c00249{left:137.600310pt;}
.x6_c00249{left:160.799936pt;}
.x5_c00249{left:212.159915pt;}
.x2_c00249{left:385.919568pt;}
.x4_c00249{left:492.959715pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55c39fcc3444bbd87901e5ed.woff2')format("woff");}.ff1_c00250{font-family:ff1_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:ff2_c00250;src:url('chunks/assets/font_a76c0eb3cfe3d573047c4d0c.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_dfa50e41f45c47cfc67c6c0d.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;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_0358a79ddd9df64c5af54c73.woff2')format("woff");}.ff4_c00250{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v2_c00250{vertical-align:-83.519967px;}
.v1_c00250{vertical-align:-82.079967px;}
.v0_c00250{vertical-align:0.000000px;}
.ls3_c00250{letter-spacing:0.000000px;}
.ls2_c00250{letter-spacing:0.189300px;}
.ls0_c00250{letter-spacing:2.892299px;}
.ls1_c00250{letter-spacing:194.525322px;}
.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:-17.999993px;}
.ws1_c00250{word-spacing:-12.059995px;}
.ws2_c00250{word-spacing:-9.719996px;}
.ws3_c00250{word-spacing:0.000000px;}
._14_c00250{margin-left:-9.814931px;}
._1_c00250{margin-left:-1.105374px;}
._0_c00250{width:1.478392px;}
._f_c00250{width:3.472309px;}
._e_c00250{width:4.524726px;}
._12_c00250{width:5.772802px;}
._b_c00250{width:7.190101px;}
._d_c00250{width:8.565859px;}
._c_c00250{width:10.004396px;}
._13_c00250{width:11.417109px;}
._8_c00250{width:12.833001px;}
._5_c00250{width:14.231477px;}
._6_c00250{width:15.386245px;}
._11_c00250{width:16.849124px;}
._10_c00250{width:19.005319px;}
._9_c00250{width:24.342249px;}
._a_c00250{width:25.719476px;}
._7_c00250{width:26.787972px;}
._4_c00250{width:27.942048px;}
._2_c00250{width:37.224747px;}
._3_c00250{width:38.465233px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs4_c00250{font-size:38.879984px;}
.fs3_c00250{font-size:48.239981px;}
.fs0_c00250{font-size:59.759976px;}
.fs1_c00250{font-size:66.239974px;}
.fs2_c00250{font-size:71.999971px;}
.y0_c00250{bottom:0.000000px;}
.y4_c00250{bottom:75.900270px;}
.y3_c00250{bottom:114.060254px;}
.y2a_c00250{bottom:133.320247px;}
.y29_c00250{bottom:140.160244px;}
.y28_c00250{bottom:150.599940px;}
.y27_c00250{bottom:167.879933px;}
.y26_c00250{bottom:185.159926px;}
.y25_c00250{bottom:191.999923px;}
.y24_c00250{bottom:203.339919px;}
.y23_c00250{bottom:225.839910px;}
.y22_c00250{bottom:256.799897px;}
.y21_c00250{bottom:308.819876px;}
.y20_c00250{bottom:339.599864px;}
.y1f_c00250{bottom:370.739852px;}
.y1e_c00250{bottom:401.699839px;}
.y1d_c00250{bottom:432.839827px;}
.y1c_c00250{bottom:463.799814px;}
.y1b_c00250{bottom:494.939802px;}
.y1a_c00250{bottom:525.899790px;}
.y19_c00250{bottom:557.039777px;}
.y18_c00250{bottom:587.999765px;}
.y17_c00250{bottom:639.659744px;}
.y15_c00250{bottom:670.799732px;}
.y16_c00250{bottom:679.079728px;}
.y14_c00250{bottom:701.939719px;}
.y13_c00250{bottom:732.899707px;}
.y12_c00250{bottom:764.039694px;}
.y11_c00250{bottom:794.999682px;}
.y10_c00250{bottom:825.959670px;}
.yf_c00250{bottom:857.099657px;}
.ye_c00250{bottom:888.059645px;}
.yd_c00250{bottom:919.199632px;}
.yb_c00250{bottom:950.159620px;}
.yc_c00250{bottom:958.439617px;}
.ya_c00250{bottom:981.299607px;}
.y9_c00250{bottom:1012.259595px;}
.y8_c00250{bottom:1043.399583px;}
.y7_c00250{bottom:1074.359570px;}
.y6_c00250{bottom:1105.499558px;}
.y5_c00250{bottom:1136.459545px;}
.y2_c00250{bottom:1176.059530px;}
.y1_c00250{bottom:1196.219522px;}
.h6_c00250{height:38.158578px;}
.h4_c00250{height:47.344903px;}
.h2_c00250{height:54.628572px;}
.h1_c00250{height:58.651148px;}
.h3_c00250{height:70.628878px;}
.h5_c00250{height:70.664034px;}
.h0_c00250{height:1263.000000px;}
.w0_c00250{width:892.500000px;}
.x0_c00250{left:0.000000px;}
.x5_c00250{left:127.620262px;}
.xb_c00250{left:132.479947px;}
.xc_c00250{left:137.339945px;}
.x6_c00250{left:180.719928px;}
.x1_c00250{left:181.799927px;}
.x7_c00250{left:227.159909px;}
.x8_c00250{left:233.279907px;}
.x9_c00250{left:243.179903px;}
.xa_c00250{left:255.419898px;}
.x2_c00250{left:329.039408px;}
.x4_c00250{left:433.979826px;}
.x3_c00250{left:765.359694px;}
@media print{
.v2_c00250{vertical-align:-74.239970pt;}
.v1_c00250{vertical-align:-72.959971pt;}
.v0_c00250{vertical-align:0.000000pt;}
.ls3_c00250{letter-spacing:0.000000pt;}
.ls2_c00250{letter-spacing:0.168267pt;}
.ls0_c00250{letter-spacing:2.570932pt;}
.ls1_c00250{letter-spacing:172.911398pt;}
.ws0_c00250{word-spacing:-15.999994pt;}
.ws1_c00250{word-spacing:-10.719996pt;}
.ws2_c00250{word-spacing:-8.639997pt;}
.ws3_c00250{word-spacing:0.000000pt;}
._14_c00250{margin-left:-8.724383pt;}
._1_c00250{margin-left:-0.982555pt;}
._0_c00250{width:1.314126pt;}
._f_c00250{width:3.086497pt;}
._e_c00250{width:4.021979pt;}
._12_c00250{width:5.131379pt;}
._b_c00250{width:6.391201pt;}
._d_c00250{width:7.614097pt;}
._c_c00250{width:8.892796pt;}
._13_c00250{width:10.148542pt;}
._8_c00250{width:11.407112pt;}
._5_c00250{width:12.650201pt;}
._6_c00250{width:13.676662pt;}
._11_c00250{width:14.976999pt;}
._10_c00250{width:16.893617pt;}
._9_c00250{width:21.637555pt;}
._a_c00250{width:22.861756pt;}
._7_c00250{width:23.811531pt;}
._4_c00250{width:24.837376pt;}
._2_c00250{width:33.088664pt;}
._3_c00250{width:34.191318pt;}
.fs4_c00250{font-size:34.559986pt;}
.fs3_c00250{font-size:42.879983pt;}
.fs0_c00250{font-size:53.119979pt;}
.fs1_c00250{font-size:58.879976pt;}
.fs2_c00250{font-size:63.999974pt;}
.y0_c00250{bottom:0.000000pt;}
.y4_c00250{bottom:67.466906pt;}
.y3_c00250{bottom:101.386893pt;}
.y2a_c00250{bottom:118.506886pt;}
.y29_c00250{bottom:124.586883pt;}
.y28_c00250{bottom:133.866613pt;}
.y27_c00250{bottom:149.226607pt;}
.y26_c00250{bottom:164.586601pt;}
.y25_c00250{bottom:170.666598pt;}
.y24_c00250{bottom:180.746594pt;}
.y23_c00250{bottom:200.746586pt;}
.y22_c00250{bottom:228.266575pt;}
.y21_c00250{bottom:274.506557pt;}
.y20_c00250{bottom:301.866546pt;}
.y1f_c00250{bottom:329.546535pt;}
.y1e_c00250{bottom:357.066524pt;}
.y1d_c00250{bottom:384.746513pt;}
.y1c_c00250{bottom:412.266502pt;}
.y1b_c00250{bottom:439.946491pt;}
.y1a_c00250{bottom:467.466480pt;}
.y19_c00250{bottom:495.146469pt;}
.y18_c00250{bottom:522.666458pt;}
.y17_c00250{bottom:568.586439pt;}
.y15_c00250{bottom:596.266428pt;}
.y16_c00250{bottom:603.626425pt;}
.y14_c00250{bottom:623.946417pt;}
.y13_c00250{bottom:651.466406pt;}
.y12_c00250{bottom:679.146395pt;}
.y11_c00250{bottom:706.666384pt;}
.y10_c00250{bottom:734.186373pt;}
.yf_c00250{bottom:761.866362pt;}
.ye_c00250{bottom:789.386351pt;}
.yd_c00250{bottom:817.066340pt;}
.yb_c00250{bottom:844.586329pt;}
.yc_c00250{bottom:851.946326pt;}
.ya_c00250{bottom:872.266318pt;}
.y9_c00250{bottom:899.786307pt;}
.y8_c00250{bottom:927.466296pt;}
.y7_c00250{bottom:954.986285pt;}
.y6_c00250{bottom:982.666274pt;}
.y5_c00250{bottom:1010.186263pt;}
.y2_c00250{bottom:1045.386249pt;}
.y1_c00250{bottom:1063.306241pt;}
.h6_c00250{height:33.918736pt;}
.h4_c00250{height:42.084358pt;}
.h2_c00250{height:48.558731pt;}
.h1_c00250{height:52.134354pt;}
.h3_c00250{height:62.781225pt;}
.h5_c00250{height:62.812475pt;}
.h0_c00250{height:1122.666667pt;}
.w0_c00250{width:793.333333pt;}
.x0_c00250{left:0.000000pt;}
.x5_c00250{left:113.440233pt;}
.xb_c00250{left:117.759953pt;}
.xc_c00250{left:122.079951pt;}
.x6_c00250{left:160.639936pt;}
.x1_c00250{left:161.599935pt;}
.x7_c00250{left:201.919919pt;}
.x8_c00250{left:207.359917pt;}
.x9_c00250{left:216.159914pt;}
.xa_c00250{left:227.039909pt;}
.x2_c00250{left:292.479474pt;}
.x4_c00250{left:385.759846pt;}
.x3_c00250{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_956683860dd1601d77f5d6eb.woff2')format("woff");}.ff1_c00251{font-family:ff1_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:ff2_c00251;src:url('chunks/assets/font_62211f8db7cb92447b0c2ca8.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_eb276033f0bc8c351a4282d1.woff2')format("woff");}.ff3_c00251{font-family:ff3_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:ff4_c00251;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00251{font-family:ff4_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;}
.m0_c00251{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls2_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:0.153901px;}
.ls1_c00251{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00251{word-spacing:-12.059995px;}
.ws1_c00251{word-spacing:-9.719996px;}
.ws2_c00251{word-spacing:0.000000px;}
._8_c00251{margin-left:-12.716934px;}
._1_c00251{margin-left:-1.105374px;}
._0_c00251{width:1.195563px;}
._4_c00251{width:2.200898px;}
._5_c00251{width:3.662353px;}
._7_c00251{width:5.749238px;}
._2_c00251{width:7.098025px;}
._3_c00251{width:8.217756px;}
._6_c00251{width:22.950897px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs4_c00251{font-size:38.879984px;}
.fs3_c00251{font-size:48.239981px;}
.fs0_c00251{font-size:59.759976px;}
.fs1_c00251{font-size:66.239974px;}
.fs2_c00251{font-size:71.999971px;}
.y0_c00251{bottom:0.000000px;}
.y4_c00251{bottom:75.719970px;}
.y3_c00251{bottom:113.879954px;}
.y21_c00251{bottom:133.140247px;}
.y20_c00251{bottom:139.980244px;}
.y1f_c00251{bottom:151.319939px;}
.y1e_c00251{bottom:209.639916px;}
.y1d_c00251{bottom:231.419907px;}
.y1c_c00251{bottom:253.199899px;}
.y1b_c00251{bottom:282.539887px;}
.y1a_c00251{bottom:309.539876px;}
.y19_c00251{bottom:454.799818px;}
.y18_c00251{bottom:485.759806px;}
.y17_c00251{bottom:516.899793px;}
.y16_c00251{bottom:547.859781px;}
.y15_c00251{bottom:571.259771px;}
.y14_c00251{bottom:593.039763px;}
.y13_c00251{bottom:622.559751px;}
.y12_c00251{bottom:649.379740px;}
.y11_c00251{bottom:776.459689px;}
.y10_c00251{bottom:807.599677px;}
.yf_c00251{bottom:838.559665px;}
.ye_c00251{bottom:869.699652px;}
.yd_c00251{bottom:900.659640px;}
.yc_c00251{bottom:931.799627px;}
.yb_c00251{bottom:962.759615px;}
.y9_c00251{bottom:993.899602px;}
.ya_c00251{bottom:1002.179599px;}
.y8_c00251{bottom:1024.859590px;}
.y7_c00251{bottom:1055.999578px;}
.y6_c00251{bottom:1086.959565px;}
.y5_c00251{bottom:1118.099553px;}
.y2_c00251{bottom:1156.979537px;}
.y1_c00251{bottom:1195.859522px;}
.h8_c00251{height:38.158578px;}
.h4_c00251{height:47.344903px;}
.h2_c00251{height:54.628572px;}
.h1_c00251{height:58.651148px;}
.h6_c00251{height:65.010911px;}
.h3_c00251{height:70.628878px;}
.h5_c00251{height:70.664034px;}
.h7_c00251{height:72.562471px;}
.h0_c00251{height:1263.000000px;}
.w0_c00251{width:892.500000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:127.799949px;}
.xc_c00251{left:137.519945px;}
.xb_c00251{left:150.839940px;}
.x8_c00251{left:154.979938px;}
.x3_c00251{left:180.899928px;}
.x9_c00251{left:413.819905px;}
.x2_c00251{left:434.159514px;}
.x7_c00251{left:446.578170px;}
.x4_c00251{left:579.419768px;}
.x5_c00251{left:591.659763px;}
.xa_c00251{left:725.579162px;}
.x6_c00251{left:750.418677px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls2_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:0.136801pt;}
.ls1_c00251{letter-spacing:0.168267pt;}
.ws0_c00251{word-spacing:-10.719996pt;}
.ws1_c00251{word-spacing:-8.639997pt;}
.ws2_c00251{word-spacing:0.000000pt;}
._8_c00251{margin-left:-11.303941pt;}
._1_c00251{margin-left:-0.982555pt;}
._0_c00251{width:1.062723pt;}
._4_c00251{width:1.956353pt;}
._5_c00251{width:3.255425pt;}
._7_c00251{width:5.110434pt;}
._2_c00251{width:6.309356pt;}
._3_c00251{width:7.304672pt;}
._6_c00251{width:20.400797pt;}
.fs4_c00251{font-size:34.559986pt;}
.fs3_c00251{font-size:42.879983pt;}
.fs0_c00251{font-size:53.119979pt;}
.fs1_c00251{font-size:58.879976pt;}
.fs2_c00251{font-size:63.999974pt;}
.y0_c00251{bottom:0.000000pt;}
.y4_c00251{bottom:67.306640pt;}
.y3_c00251{bottom:101.226626pt;}
.y21_c00251{bottom:118.346886pt;}
.y20_c00251{bottom:124.426884pt;}
.y1f_c00251{bottom:134.506613pt;}
.y1e_c00251{bottom:186.346592pt;}
.y1d_c00251{bottom:205.706584pt;}
.y1c_c00251{bottom:225.066577pt;}
.y1b_c00251{bottom:251.146566pt;}
.y1a_c00251{bottom:275.146557pt;}
.y19_c00251{bottom:404.266505pt;}
.y18_c00251{bottom:431.786494pt;}
.y17_c00251{bottom:459.466483pt;}
.y16_c00251{bottom:486.986472pt;}
.y15_c00251{bottom:507.786464pt;}
.y14_c00251{bottom:527.146456pt;}
.y13_c00251{bottom:553.386445pt;}
.y12_c00251{bottom:577.226436pt;}
.y11_c00251{bottom:690.186391pt;}
.y10_c00251{bottom:717.866380pt;}
.yf_c00251{bottom:745.386369pt;}
.ye_c00251{bottom:773.066357pt;}
.yd_c00251{bottom:800.586346pt;}
.yc_c00251{bottom:828.266335pt;}
.yb_c00251{bottom:855.786324pt;}
.y9_c00251{bottom:883.466313pt;}
.ya_c00251{bottom:890.826310pt;}
.y8_c00251{bottom:910.986302pt;}
.y7_c00251{bottom:938.666291pt;}
.y6_c00251{bottom:966.186280pt;}
.y5_c00251{bottom:993.866269pt;}
.y2_c00251{bottom:1028.426255pt;}
.y1_c00251{bottom:1062.986241pt;}
.h8_c00251{height:33.918736pt;}
.h4_c00251{height:42.084358pt;}
.h2_c00251{height:48.558731pt;}
.h1_c00251{height:52.134354pt;}
.h6_c00251{height:57.787477pt;}
.h3_c00251{height:62.781225pt;}
.h5_c00251{height:62.812475pt;}
.h7_c00251{height:64.499974pt;}
.h0_c00251{height:1122.666667pt;}
.w0_c00251{width:793.333333pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:113.599955pt;}
.xc_c00251{left:122.239951pt;}
.xb_c00251{left:134.079946pt;}
.x8_c00251{left:137.759945pt;}
.x3_c00251{left:160.799936pt;}
.x9_c00251{left:367.839916pt;}
.x2_c00251{left:385.919568pt;}
.x7_c00251{left:396.958373pt;}
.x4_c00251{left:515.039794pt;}
.x5_c00251{left:525.919790pt;}
.xa_c00251{left:644.959255pt;}
.x6_c00251{left:667.038824pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_967e69c9a96ae8f4e9819cea.woff2')format("woff");}.ff1_c00252{font-family:ff1_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:ff2_c00252;src:url('chunks/assets/font_1af5b3389dc9a4680e07ae98.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_b1f11f12d5f1e6eb49a9ed1f.woff2')format("woff");}.ff3_c00252{font-family:ff3_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;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_4794910bbeeb5a7e9bca5a20.woff2')format("woff");}.ff4_c00252{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls3_c00252{letter-spacing:0.000000px;}
.ls0_c00252{letter-spacing:0.042600px;}
.ls2_c00252{letter-spacing:0.182640px;}
.ls1_c00252{letter-spacing:10.096556px;}
.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;}
}
.ws0_c00252{word-spacing:-17.999993px;}
.ws3_c00252{word-spacing:-14.939994px;}
.ws1_c00252{word-spacing:-12.059995px;}
.ws2_c00252{word-spacing:-8.786876px;}
.ws4_c00252{word-spacing:0.000000px;}
._d_c00252{margin-left:-9.462242px;}
._1_c00252{margin-left:-1.105374px;}
._0_c00252{width:1.478392px;}
._8_c00252{width:3.146635px;}
._3_c00252{width:4.219816px;}
._4_c00252{width:5.420113px;}
._c_c00252{width:6.732523px;}
._6_c00252{width:10.703629px;}
._7_c00252{width:11.709966px;}
._a_c00252{width:13.154434px;}
._b_c00252{width:14.207468px;}
._5_c00252{width:15.249418px;}
._2_c00252{width:22.319023px;}
._9_c00252{width:27.425895px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs4_c00252{font-size:38.879984px;}
.fs3_c00252{font-size:48.239981px;}
.fs0_c00252{font-size:59.759976px;}
.fs1_c00252{font-size:66.239974px;}
.fs2_c00252{font-size:71.999971px;}
.y0_c00252{bottom:0.000000px;}
.y4_c00252{bottom:75.900270px;}
.y3_c00252{bottom:114.060254px;}
.y2c_c00252{bottom:133.680247px;}
.y2b_c00252{bottom:141.240244px;}
.y2a_c00252{bottom:151.679939px;}
.y29_c00252{bottom:169.319932px;}
.y28_c00252{bottom:176.879929px;}
.y27_c00252{bottom:187.679925px;}
.y26_c00252{bottom:205.859918px;}
.y25_c00252{bottom:213.419915px;}
.y24_c00252{bottom:224.759910px;}
.y23_c00252{bottom:308.639877px;}
.y22_c00252{bottom:339.599864px;}
.y21_c00252{bottom:370.739852px;}
.y20_c00252{bottom:401.699839px;}
.y1f_c00252{bottom:432.839827px;}
.y1d_c00252{bottom:463.799814px;}
.y1e_c00252{bottom:472.079811px;}
.y1c_c00252{bottom:494.939802px;}
.y1b_c00252{bottom:525.899790px;}
.y19_c00252{bottom:557.039777px;}
.y1a_c00252{bottom:565.319774px;}
.y18_c00252{bottom:587.999765px;}
.y17_c00252{bottom:619.139752px;}
.y16_c00252{bottom:650.099740px;}
.y15_c00252{bottom:679.979728px;}
.y14_c00252{bottom:708.419717px;}
.y13_c00252{bottom:736.859705px;}
.y12_c00252{bottom:765.479694px;}
.y11_c00252{bottom:794.999682px;}
.y10_c00252{bottom:825.959670px;}
.yf_c00252{bottom:857.099657px;}
.ye_c00252{bottom:888.059645px;}
.yd_c00252{bottom:919.199632px;}
.yc_c00252{bottom:950.159620px;}
.yb_c00252{bottom:981.299607px;}
.ya_c00252{bottom:1012.259595px;}
.y8_c00252{bottom:1043.399583px;}
.y9_c00252{bottom:1051.679579px;}
.y7_c00252{bottom:1074.359570px;}
.y6_c00252{bottom:1105.499558px;}
.y5_c00252{bottom:1136.459545px;}
.y2_c00252{bottom:1176.059530px;}
.y1_c00252{bottom:1196.219522px;}
.h8_c00252{height:32.064597px;}
.h7_c00252{height:47.321348px;}
.h5_c00252{height:47.344903px;}
.h9_c00252{height:49.284472px;}
.h2_c00252{height:54.628572px;}
.h1_c00252{height:58.651148px;}
.h6_c00252{height:64.978568px;}
.h4_c00252{height:70.628878px;}
.h3_c00252{height:70.664034px;}
.h0_c00252{height:1263.000000px;}
.w0_c00252{width:892.500000px;}
.x0_c00252{left:0.000000px;}
.x5_c00252{left:127.620262px;}
.xd_c00252{left:137.339945px;}
.x6_c00252{left:180.719928px;}
.x1_c00252{left:181.799927px;}
.x7_c00252{left:184.139926px;}
.x8_c00252{left:196.379921px;}
.xb_c00252{left:237.239905px;}
.xc_c00252{left:249.479900px;}
.x2_c00252{left:329.039408px;}
.x4_c00252{left:433.979826px;}
.x9_c00252{left:579.419768px;}
.xa_c00252{left:591.659763px;}
.x3_c00252{left:765.359694px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls3_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.037867pt;}
.ls2_c00252{letter-spacing:0.162347pt;}
.ls1_c00252{letter-spacing:8.974716pt;}
.ws0_c00252{word-spacing:-15.999994pt;}
.ws3_c00252{word-spacing:-13.279995pt;}
.ws1_c00252{word-spacing:-10.719996pt;}
.ws2_c00252{word-spacing:-7.810557pt;}
.ws4_c00252{word-spacing:0.000000pt;}
._d_c00252{margin-left:-8.410881pt;}
._1_c00252{margin-left:-0.982555pt;}
._0_c00252{width:1.314126pt;}
._8_c00252{width:2.797009pt;}
._3_c00252{width:3.750948pt;}
._4_c00252{width:4.817878pt;}
._c_c00252{width:5.984465pt;}
._6_c00252{width:9.514337pt;}
._7_c00252{width:10.408858pt;}
._a_c00252{width:11.692830pt;}
._b_c00252{width:12.628861pt;}
._5_c00252{width:13.555038pt;}
._2_c00252{width:19.839132pt;}
._9_c00252{width:24.378574pt;}
.fs4_c00252{font-size:34.559986pt;}
.fs3_c00252{font-size:42.879983pt;}
.fs0_c00252{font-size:53.119979pt;}
.fs1_c00252{font-size:58.879976pt;}
.fs2_c00252{font-size:63.999974pt;}
.y0_c00252{bottom:0.000000pt;}
.y4_c00252{bottom:67.466906pt;}
.y3_c00252{bottom:101.386893pt;}
.y2c_c00252{bottom:118.826886pt;}
.y2b_c00252{bottom:125.546883pt;}
.y2a_c00252{bottom:134.826613pt;}
.y29_c00252{bottom:150.506606pt;}
.y28_c00252{bottom:157.226604pt;}
.y27_c00252{bottom:166.826600pt;}
.y26_c00252{bottom:182.986593pt;}
.y25_c00252{bottom:189.706591pt;}
.y24_c00252{bottom:199.786587pt;}
.y23_c00252{bottom:274.346557pt;}
.y22_c00252{bottom:301.866546pt;}
.y21_c00252{bottom:329.546535pt;}
.y20_c00252{bottom:357.066524pt;}
.y1f_c00252{bottom:384.746513pt;}
.y1d_c00252{bottom:412.266502pt;}
.y1e_c00252{bottom:419.626499pt;}
.y1c_c00252{bottom:439.946491pt;}
.y1b_c00252{bottom:467.466480pt;}
.y19_c00252{bottom:495.146469pt;}
.y1a_c00252{bottom:502.506466pt;}
.y18_c00252{bottom:522.666458pt;}
.y17_c00252{bottom:550.346447pt;}
.y16_c00252{bottom:577.866436pt;}
.y15_c00252{bottom:604.426425pt;}
.y14_c00252{bottom:629.706415pt;}
.y13_c00252{bottom:654.986405pt;}
.y12_c00252{bottom:680.426394pt;}
.y11_c00252{bottom:706.666384pt;}
.y10_c00252{bottom:734.186373pt;}
.yf_c00252{bottom:761.866362pt;}
.ye_c00252{bottom:789.386351pt;}
.yd_c00252{bottom:817.066340pt;}
.yc_c00252{bottom:844.586329pt;}
.yb_c00252{bottom:872.266318pt;}
.ya_c00252{bottom:899.786307pt;}
.y8_c00252{bottom:927.466296pt;}
.y9_c00252{bottom:934.826293pt;}
.y7_c00252{bottom:954.986285pt;}
.y6_c00252{bottom:982.666274pt;}
.y5_c00252{bottom:1010.186263pt;}
.y2_c00252{bottom:1045.386249pt;}
.y1_c00252{bottom:1063.306241pt;}
.h8_c00252{height:28.501864pt;}
.h7_c00252{height:42.063421pt;}
.h5_c00252{height:42.084358pt;}
.h9_c00252{height:43.808420pt;}
.h2_c00252{height:48.558731pt;}
.h1_c00252{height:52.134354pt;}
.h6_c00252{height:57.758727pt;}
.h4_c00252{height:62.781225pt;}
.h3_c00252{height:62.812475pt;}
.h0_c00252{height:1122.666667pt;}
.w0_c00252{width:793.333333pt;}
.x0_c00252{left:0.000000pt;}
.x5_c00252{left:113.440233pt;}
.xd_c00252{left:122.079951pt;}
.x6_c00252{left:160.639936pt;}
.x1_c00252{left:161.599935pt;}
.x7_c00252{left:163.679935pt;}
.x8_c00252{left:174.559930pt;}
.xb_c00252{left:210.879916pt;}
.xc_c00252{left:221.759911pt;}
.x2_c00252{left:292.479474pt;}
.x4_c00252{left:385.759846pt;}
.x9_c00252{left:515.039794pt;}
.xa_c00252{left:525.919790pt;}
.x3_c00252{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92106516f5408053e6b10350.woff2')format("woff");}.ff1_c00253{font-family:ff1_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:ff2_c00253;src:url('chunks/assets/font_b68e6516d2c4eece46e66532.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_be79ce66fe7bc8ce4f495c98.woff2')format("woff");}.ff3_c00253{font-family:ff3_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;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.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_54eeedb32593af4e901a3ff9.woff2')format("woff");}.ff5_c00253{font-family:ff5_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls2_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.153901px;}
.ls1_c00253{letter-spacing:0.182640px;}
.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;}
}
.ws1_c00253{word-spacing:-17.999993px;}
.ws0_c00253{word-spacing:-12.059995px;}
.ws2_c00253{word-spacing:-8.786876px;}
.ws3_c00253{word-spacing:0.000000px;}
._c_c00253{margin-left:-12.716934px;}
._7_c00253{margin-left:-2.139990px;}
._1_c00253{margin-left:-1.105374px;}
._0_c00253{width:1.195563px;}
._a_c00253{width:2.899431px;}
._4_c00253{width:5.231962px;}
._3_c00253{width:6.303276px;}
._6_c00253{width:7.744209px;}
._b_c00253{width:8.765396px;}
._9_c00253{width:11.416673px;}
._5_c00253{width:12.638121px;}
._2_c00253{width:13.875918px;}
._8_c00253{width:15.266124px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs4_c00253{font-size:38.879984px;}
.fs3_c00253{font-size:48.239981px;}
.fs0_c00253{font-size:59.759976px;}
.fs1_c00253{font-size:66.239974px;}
.fs2_c00253{font-size:71.999971px;}
.y0_c00253{bottom:0.000000px;}
.y4_c00253{bottom:75.719970px;}
.y3_c00253{bottom:113.879954px;}
.y25_c00253{bottom:133.500247px;}
.y24_c00253{bottom:141.060244px;}
.y23_c00253{bottom:151.499939px;}
.y22_c00253{bottom:169.139932px;}
.y21_c00253{bottom:176.699929px;}
.y20_c00253{bottom:188.039925px;}
.y1f_c00253{bottom:225.299910px;}
.y1e_c00253{bottom:256.259897px;}
.y1d_c00253{bottom:287.399885px;}
.y1c_c00253{bottom:318.359873px;}
.y1b_c00253{bottom:349.499860px;}
.y1a_c00253{bottom:372.719851px;}
.y19_c00253{bottom:394.499842px;}
.y18_c00253{bottom:419.879832px;}
.y17_c00253{bottom:621.299751px;}
.y16_c00253{bottom:652.259739px;}
.y15_c00253{bottom:683.399727px;}
.y14_c00253{bottom:714.359714px;}
.y13_c00253{bottom:745.499702px;}
.y12_c00253{bottom:776.459689px;}
.y11_c00253{bottom:807.599677px;}
.y10_c00253{bottom:838.559665px;}
.yf_c00253{bottom:869.699652px;}
.yd_c00253{bottom:900.659640px;}
.ye_c00253{bottom:908.939636px;}
.yc_c00253{bottom:931.799627px;}
.yb_c00253{bottom:962.759615px;}
.ya_c00253{bottom:993.899602px;}
.y9_c00253{bottom:1024.859590px;}
.y8_c00253{bottom:1055.999578px;}
.y6_c00253{bottom:1086.959565px;}
.y7_c00253{bottom:1095.239562px;}
.y5_c00253{bottom:1118.099553px;}
.y2_c00253{bottom:1156.979537px;}
.y1_c00253{bottom:1195.859522px;}
.h9_c00253{height:32.064597px;}
.h4_c00253{height:47.321348px;}
.h7_c00253{height:47.344903px;}
.h2_c00253{height:54.628572px;}
.h1_c00253{height:58.651148px;}
.h8_c00253{height:65.010911px;}
.h3_c00253{height:70.628878px;}
.h5_c00253{height:70.664034px;}
.h6_c00253{height:72.562471px;}
.h0_c00253{height:1263.000000px;}
.w0_c00253{width:892.500000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:127.799949px;}
.xb_c00253{left:137.519945px;}
.x9_c00253{left:152.459939px;}
.x3_c00253{left:180.899928px;}
.x6_c00253{left:347.219861px;}
.x7_c00253{left:359.459856px;}
.xa_c00253{left:413.820797px;}
.x2_c00253{left:434.159514px;}
.x4_c00253{left:662.939735px;}
.x5_c00253{left:675.179730px;}
.x8_c00253{left:693.000368px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls2_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.136801pt;}
.ls1_c00253{letter-spacing:0.162347pt;}
.ws1_c00253{word-spacing:-15.999994pt;}
.ws0_c00253{word-spacing:-10.719996pt;}
.ws2_c00253{word-spacing:-7.810557pt;}
.ws3_c00253{word-spacing:0.000000pt;}
._c_c00253{margin-left:-11.303941pt;}
._7_c00253{margin-left:-1.902214pt;}
._1_c00253{margin-left:-0.982555pt;}
._0_c00253{width:1.062723pt;}
._a_c00253{width:2.577272pt;}
._4_c00253{width:4.650633pt;}
._3_c00253{width:5.602912pt;}
._6_c00253{width:6.883742pt;}
._b_c00253{width:7.791464pt;}
._9_c00253{width:10.148154pt;}
._5_c00253{width:11.233885pt;}
._2_c00253{width:12.334150pt;}
._8_c00253{width:13.569888pt;}
.fs4_c00253{font-size:34.559986pt;}
.fs3_c00253{font-size:42.879983pt;}
.fs0_c00253{font-size:53.119979pt;}
.fs1_c00253{font-size:58.879976pt;}
.fs2_c00253{font-size:63.999974pt;}
.y0_c00253{bottom:0.000000pt;}
.y4_c00253{bottom:67.306640pt;}
.y3_c00253{bottom:101.226626pt;}
.y25_c00253{bottom:118.666886pt;}
.y24_c00253{bottom:125.386883pt;}
.y23_c00253{bottom:134.666613pt;}
.y22_c00253{bottom:150.346607pt;}
.y21_c00253{bottom:157.066604pt;}
.y20_c00253{bottom:167.146600pt;}
.y1f_c00253{bottom:200.266587pt;}
.y1e_c00253{bottom:227.786576pt;}
.y1d_c00253{bottom:255.466564pt;}
.y1c_c00253{bottom:282.986553pt;}
.y1b_c00253{bottom:310.666542pt;}
.y1a_c00253{bottom:331.306534pt;}
.y19_c00253{bottom:350.666526pt;}
.y18_c00253{bottom:373.226517pt;}
.y17_c00253{bottom:552.266446pt;}
.y16_c00253{bottom:579.786435pt;}
.y15_c00253{bottom:607.466424pt;}
.y14_c00253{bottom:634.986413pt;}
.y13_c00253{bottom:662.666402pt;}
.y12_c00253{bottom:690.186391pt;}
.y11_c00253{bottom:717.866380pt;}
.y10_c00253{bottom:745.386369pt;}
.yf_c00253{bottom:773.066357pt;}
.yd_c00253{bottom:800.586346pt;}
.ye_c00253{bottom:807.946343pt;}
.yc_c00253{bottom:828.266335pt;}
.yb_c00253{bottom:855.786324pt;}
.ya_c00253{bottom:883.466313pt;}
.y9_c00253{bottom:910.986302pt;}
.y8_c00253{bottom:938.666291pt;}
.y6_c00253{bottom:966.186280pt;}
.y7_c00253{bottom:973.546277pt;}
.y5_c00253{bottom:993.866269pt;}
.y2_c00253{bottom:1028.426255pt;}
.y1_c00253{bottom:1062.986241pt;}
.h9_c00253{height:28.501864pt;}
.h4_c00253{height:42.063421pt;}
.h7_c00253{height:42.084358pt;}
.h2_c00253{height:48.558731pt;}
.h1_c00253{height:52.134354pt;}
.h8_c00253{height:57.787477pt;}
.h3_c00253{height:62.781225pt;}
.h5_c00253{height:62.812475pt;}
.h6_c00253{height:64.499974pt;}
.h0_c00253{height:1122.666667pt;}
.w0_c00253{width:793.333333pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:113.599955pt;}
.xb_c00253{left:122.239951pt;}
.x9_c00253{left:135.519946pt;}
.x3_c00253{left:160.799936pt;}
.x6_c00253{left:308.639877pt;}
.x7_c00253{left:319.519872pt;}
.xa_c00253{left:367.840709pt;}
.x2_c00253{left:385.919568pt;}
.x4_c00253{left:589.279764pt;}
.x5_c00253{left:600.159760pt;}
.x8_c00253{left:616.000327pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cfa39fa92757eaff2f5ca30.woff2')format("woff");}.ff1_c00254{font-family:ff1_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:ff2_c00254;src:url('chunks/assets/font_8d5e0afbe0dbfa3039540a38.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_0347ddb7a23968284f768edd.woff2')format("woff");}.ff3_c00254{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00254{word-spacing:-17.999993px;}
.ws1_c00254{word-spacing:0.000000px;}
._1_c00254{margin-left:-1.105374px;}
._0_c00254{width:1.478392px;}
._4_c00254{width:4.890612px;}
._2_c00254{width:6.781419px;}
._5_c00254{width:7.790051px;}
._6_c00254{width:8.866722px;}
._7_c00254{width:12.857995px;}
._8_c00254{width:13.953928px;}
._3_c00254{width:16.665455px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs0_c00254{font-size:59.759976px;}
.fs1_c00254{font-size:66.239974px;}
.fs2_c00254{font-size:71.999971px;}
.y0_c00254{bottom:0.000000px;}
.y4_c00254{bottom:75.900270px;}
.y3_c00254{bottom:114.060254px;}
.ye_c00254{bottom:857.099657px;}
.yd_c00254{bottom:888.059645px;}
.yc_c00254{bottom:919.199632px;}
.yb_c00254{bottom:950.159620px;}
.ya_c00254{bottom:981.299607px;}
.y9_c00254{bottom:1012.259595px;}
.y8_c00254{bottom:1043.399583px;}
.y7_c00254{bottom:1074.359570px;}
.y6_c00254{bottom:1105.499558px;}
.y5_c00254{bottom:1136.459545px;}
.y2_c00254{bottom:1176.059530px;}
.y1_c00254{bottom:1196.219522px;}
.h2_c00254{height:54.628572px;}
.h1_c00254{height:58.651148px;}
.h3_c00254{height:70.664034px;}
.h0_c00254{height:1263.000000px;}
.w0_c00254{width:892.500000px;}
.x0_c00254{left:0.000000px;}
.x5_c00254{left:127.620262px;}
.x6_c00254{left:180.719930px;}
.x1_c00254{left:181.799927px;}
.x2_c00254{left:329.039408px;}
.x4_c00254{left:433.979826px;}
.x3_c00254{left:765.359694px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:-15.999994pt;}
.ws1_c00254{word-spacing:0.000000pt;}
._1_c00254{margin-left:-0.982555pt;}
._0_c00254{width:1.314126pt;}
._4_c00254{width:4.347210pt;}
._2_c00254{width:6.027928pt;}
._5_c00254{width:6.924490pt;}
._6_c00254{width:7.881531pt;}
._7_c00254{width:11.429329pt;}
._8_c00254{width:12.403491pt;}
._3_c00254{width:14.813738pt;}
.fs0_c00254{font-size:53.119979pt;}
.fs1_c00254{font-size:58.879976pt;}
.fs2_c00254{font-size:63.999974pt;}
.y0_c00254{bottom:0.000000pt;}
.y4_c00254{bottom:67.466906pt;}
.y3_c00254{bottom:101.386893pt;}
.ye_c00254{bottom:761.866362pt;}
.yd_c00254{bottom:789.386351pt;}
.yc_c00254{bottom:817.066340pt;}
.yb_c00254{bottom:844.586329pt;}
.ya_c00254{bottom:872.266318pt;}
.y9_c00254{bottom:899.786307pt;}
.y8_c00254{bottom:927.466296pt;}
.y7_c00254{bottom:954.986285pt;}
.y6_c00254{bottom:982.666274pt;}
.y5_c00254{bottom:1010.186263pt;}
.y2_c00254{bottom:1045.386249pt;}
.y1_c00254{bottom:1063.306241pt;}
.h2_c00254{height:48.558731pt;}
.h1_c00254{height:52.134354pt;}
.h3_c00254{height:62.812475pt;}
.h0_c00254{height:1122.666667pt;}
.w0_c00254{width:793.333333pt;}
.x0_c00254{left:0.000000pt;}
.x5_c00254{left:113.440233pt;}
.x6_c00254{left:160.639938pt;}
.x1_c00254{left:161.599935pt;}
.x2_c00254{left:292.479474pt;}
.x4_c00254{left:385.759846pt;}
.x3_c00254{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ae840d5186ea764218edafd.woff2')format("woff");}.ff1_c00255{font-family:ff1_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:ff2_c00255;src:url('chunks/assets/font_439146fd860bf601c1ea85cb.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00255{font-family:ff3_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:ff4_c00255;src:url('chunks/assets/font_d8ab719c8945fba661dd030a.woff2')format("woff");}.ff4_c00255{font-family:ff4_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;}
.m0_c00255{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00255{word-spacing:0.000000px;}
._1_c00255{margin-left:-1.105374px;}
._0_c00255{width:1.195563px;}
._4_c00255{width:2.241640px;}
._3_c00255{width:5.050051px;}
._2_c00255{width:6.564052px;}
.fc0_c00255{color:rgb(0,0,0);}
.fs0_c00255{font-size:59.759976px;}
.fs1_c00255{font-size:66.239974px;}
.fs2_c00255{font-size:71.999971px;}
.y0_c00255{bottom:0.000000px;}
.y4_c00255{bottom:75.719970px;}
.y3_c00255{bottom:113.879954px;}
.yb_c00255{bottom:158.879936px;}
.ya_c00255{bottom:190.019924px;}
.y9_c00255{bottom:220.979912px;}
.y8_c00255{bottom:252.119899px;}
.y7_c00255{bottom:283.079887px;}
.y6_c00255{bottom:327.899869px;}
.y5_c00255{bottom:368.219853px;}
.y2_c00255{bottom:1156.979537px;}
.y1_c00255{bottom:1195.859522px;}
.h2_c00255{height:54.628572px;}
.h1_c00255{height:58.651148px;}
.h4_c00255{height:65.010911px;}
.h5_c00255{height:70.664034px;}
.h3_c00255{height:72.562471px;}
.h0_c00255{height:1263.000000px;}
.w0_c00255{width:892.500000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:127.799949px;}
.x5_c00255{left:180.899928px;}
.x4_c00255{left:184.319926px;}
.x2_c00255{left:434.159514px;}
.x3_c00255{left:698.579721px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
._1_c00255{margin-left:-0.982555pt;}
._0_c00255{width:1.062723pt;}
._4_c00255{width:1.992569pt;}
._3_c00255{width:4.488934pt;}
._2_c00255{width:5.834713pt;}
.fs0_c00255{font-size:53.119979pt;}
.fs1_c00255{font-size:58.879976pt;}
.fs2_c00255{font-size:63.999974pt;}
.y0_c00255{bottom:0.000000pt;}
.y4_c00255{bottom:67.306640pt;}
.y3_c00255{bottom:101.226626pt;}
.yb_c00255{bottom:141.226610pt;}
.ya_c00255{bottom:168.906599pt;}
.y9_c00255{bottom:196.426588pt;}
.y8_c00255{bottom:224.106577pt;}
.y7_c00255{bottom:251.626566pt;}
.y6_c00255{bottom:291.466550pt;}
.y5_c00255{bottom:327.306536pt;}
.y2_c00255{bottom:1028.426255pt;}
.y1_c00255{bottom:1062.986241pt;}
.h2_c00255{height:48.558731pt;}
.h1_c00255{height:52.134354pt;}
.h4_c00255{height:57.787477pt;}
.h5_c00255{height:62.812475pt;}
.h3_c00255{height:64.499974pt;}
.h0_c00255{height:1122.666667pt;}
.w0_c00255{width:793.333333pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:113.599955pt;}
.x5_c00255{left:160.799936pt;}
.x4_c00255{left:163.839934pt;}
.x2_c00255{left:385.919568pt;}
.x3_c00255{left:620.959752pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c26d66e77a1818aa5f0de0f7.woff2')format("woff");}.ff1_c00256{font-family:ff1_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:ff2_c00256;src:url('chunks/assets/font_71b70e3f422047315661effa.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_ba5c8573b1fbe361aa088008.woff2')format("woff");}.ff3_c00256{font-family:ff3_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:ff4_c00256;src:url('chunks/assets/font_173ecda2c7f6b38e0d65a4e7.woff2')format("woff");}.ff4_c00256{font-family:ff4_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:ff5_c00256;src:url('chunks/assets/font_595980732af58fbe9a28f5f5.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;}
.m0_c00256{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls6_c00256{letter-spacing:0.000000px;}
.ls3_c00256{letter-spacing:0.731040px;}
.ls0_c00256{letter-spacing:10.816976px;}
.ls4_c00256{letter-spacing:17.300813px;}
.ls2_c00256{letter-spacing:33.150167px;}
.ls5_c00256{letter-spacing:55.483178px;}
.ls1_c00256{letter-spacing:62.687375px;}
.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;}
}
.ws1_c00256{word-spacing:-17.999993px;}
.ws0_c00256{word-spacing:-16.559993px;}
.ws2_c00256{word-spacing:0.000000px;}
._1_c00256{margin-left:-1.105374px;}
._0_c00256{width:1.478392px;}
._b_c00256{width:7.347173px;}
._a_c00256{width:8.629815px;}
._6_c00256{width:10.597307px;}
._3_c00256{width:11.816158px;}
._4_c00256{width:12.864919px;}
._2_c00256{width:16.758726px;}
._f_c00256{width:28.381515px;}
._e_c00256{width:29.387566px;}
._9_c00256{width:32.008037px;}
._8_c00256{width:33.283511px;}
._5_c00256{width:34.544936px;}
._c_c00256{width:55.600373px;}
._d_c00256{width:60.030253px;}
._7_c00256{width:62.362046px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs0_c00256{font-size:59.759976px;}
.fs1_c00256{font-size:66.239974px;}
.fs2_c00256{font-size:71.999971px;}
.y0_c00256{bottom:0.000000px;}
.y4_c00256{bottom:75.720270px;}
.y3_c00256{bottom:113.880254px;}
.y19_c00256{bottom:195.959922px;}
.y18_c00256{bottom:226.919909px;}
.y17_c00256{bottom:258.059897px;}
.y16_c00256{bottom:289.019884px;}
.y15_c00256{bottom:320.159872px;}
.y14_c00256{bottom:351.119860px;}
.y13_c00256{bottom:382.259847px;}
.y12_c00256{bottom:413.219835px;}
.y11_c00256{bottom:444.359822px;}
.y10_c00256{bottom:475.319810px;}
.yf_c00256{bottom:506.459797px;}
.ye_c00256{bottom:537.419785px;}
.yd_c00256{bottom:568.559773px;}
.yc_c00256{bottom:614.459754px;}
.yb_c00256{bottom:645.599742px;}
.ya_c00256{bottom:676.559729px;}
.y9_c00256{bottom:721.559711px;}
.y8_c00256{bottom:761.699695px;}
.y7_c00256{bottom:1058.879576px;}
.y6_c00256{bottom:1105.319558px;}
.y5_c00256{bottom:1135.919546px;}
.y2_c00256{bottom:1175.879530px;}
.y1_c00256{bottom:1196.039522px;}
.h2_c00256{height:54.628572px;}
.h1_c00256{height:58.651148px;}
.h4_c00256{height:65.010911px;}
.h6_c00256{height:70.628878px;}
.h5_c00256{height:70.664034px;}
.h3_c00256{height:72.562471px;}
.h0_c00256{height:1263.000000px;}
.w0_c00256{width:892.500000px;}
.x0_c00256{left:0.000000px;}
.x5_c00256{left:127.800262px;}
.x8_c00256{left:180.899928px;}
.x1_c00256{left:181.979927px;}
.x7_c00256{left:261.719895px;}
.x2_c00256{left:329.219408px;}
.x4_c00256{left:434.159826px;}
.x6_c00256{left:638.999459px;}
.x3_c00256{left:765.539694px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls6_c00256{letter-spacing:0.000000pt;}
.ls3_c00256{letter-spacing:0.649813pt;}
.ls0_c00256{letter-spacing:9.615089pt;}
.ls4_c00256{letter-spacing:15.378501pt;}
.ls2_c00256{letter-spacing:29.466815pt;}
.ls5_c00256{letter-spacing:49.318380pt;}
.ls1_c00256{letter-spacing:55.722111pt;}
.ws1_c00256{word-spacing:-15.999994pt;}
.ws0_c00256{word-spacing:-14.719994pt;}
.ws2_c00256{word-spacing:0.000000pt;}
._1_c00256{margin-left:-0.982555pt;}
._0_c00256{width:1.314126pt;}
._b_c00256{width:6.530820pt;}
._a_c00256{width:7.670947pt;}
._6_c00256{width:9.419828pt;}
._3_c00256{width:10.503252pt;}
._4_c00256{width:11.435483pt;}
._2_c00256{width:14.896645pt;}
._f_c00256{width:25.228014pt;}
._e_c00256{width:26.122281pt;}
._9_c00256{width:28.451589pt;}
._8_c00256{width:29.585343pt;}
._5_c00256{width:30.706610pt;}
._c_c00256{width:49.422553pt;}
._d_c00256{width:53.360225pt;}
._7_c00256{width:55.432929pt;}
.fs0_c00256{font-size:53.119979pt;}
.fs1_c00256{font-size:58.879976pt;}
.fs2_c00256{font-size:63.999974pt;}
.y0_c00256{bottom:0.000000pt;}
.y4_c00256{bottom:67.306906pt;}
.y3_c00256{bottom:101.226893pt;}
.y19_c00256{bottom:174.186597pt;}
.y18_c00256{bottom:201.706586pt;}
.y17_c00256{bottom:229.386575pt;}
.y16_c00256{bottom:256.906564pt;}
.y15_c00256{bottom:284.586553pt;}
.y14_c00256{bottom:312.106542pt;}
.y13_c00256{bottom:339.786531pt;}
.y12_c00256{bottom:367.306520pt;}
.y11_c00256{bottom:394.986509pt;}
.y10_c00256{bottom:422.506498pt;}
.yf_c00256{bottom:450.186487pt;}
.ye_c00256{bottom:477.706476pt;}
.yd_c00256{bottom:505.386465pt;}
.yc_c00256{bottom:546.186448pt;}
.yb_c00256{bottom:573.866437pt;}
.ya_c00256{bottom:601.386426pt;}
.y9_c00256{bottom:641.386410pt;}
.y8_c00256{bottom:677.066396pt;}
.y7_c00256{bottom:941.226290pt;}
.y6_c00256{bottom:982.506274pt;}
.y5_c00256{bottom:1009.706263pt;}
.y2_c00256{bottom:1045.226249pt;}
.y1_c00256{bottom:1063.146241pt;}
.h2_c00256{height:48.558731pt;}
.h1_c00256{height:52.134354pt;}
.h4_c00256{height:57.787477pt;}
.h6_c00256{height:62.781225pt;}
.h5_c00256{height:62.812475pt;}
.h3_c00256{height:64.499974pt;}
.h0_c00256{height:1122.666667pt;}
.w0_c00256{width:793.333333pt;}
.x0_c00256{left:0.000000pt;}
.x5_c00256{left:113.600233pt;}
.x8_c00256{left:160.799936pt;}
.x1_c00256{left:161.759935pt;}
.x7_c00256{left:232.639907pt;}
.x2_c00256{left:292.639474pt;}
.x4_c00256{left:385.919846pt;}
.x6_c00256{left:567.999519pt;}
.x3_c00256{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a03901c062942bfea7a3b62.woff2')format("woff");}.ff1_c00257{font-family:ff1_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:ff2_c00257;src:url('chunks/assets/font_eada57624d68d31d182b11d5.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_c47f1c5032bfbaf38409d9e3.woff2')format("woff");}.ff3_c00257{font-family:ff3_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:ff4_c00257;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00257{font-family:ff4_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:ff5_c00257;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00257{font-family:ff5_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;}
.m0_c00257{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls5_c00257{letter-spacing:0.000000px;}
.ls2_c00257{letter-spacing:0.153901px;}
.ls3_c00257{letter-spacing:0.182640px;}
.ls0_c00257{letter-spacing:1.451459px;}
.ls1_c00257{letter-spacing:5.774038px;}
.ls4_c00257{letter-spacing:7.387077px;}
.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;}
}
.ws1_c00257{word-spacing:-17.999993px;}
.ws0_c00257{word-spacing:-12.059995px;}
.ws2_c00257{word-spacing:-10.439996px;}
.ws3_c00257{word-spacing:-9.437756px;}
.ws4_c00257{word-spacing:-8.786876px;}
.ws5_c00257{word-spacing:0.000000px;}
._a_c00257{margin-left:-12.716934px;}
._1_c00257{margin-left:-1.105374px;}
._0_c00257{width:1.195563px;}
._5_c00257{width:2.747704px;}
._3_c00257{width:4.792598px;}
._2_c00257{width:5.993719px;}
._9_c00257{width:7.223088px;}
._8_c00257{width:8.282704px;}
._6_c00257{width:12.279133px;}
._7_c00257{width:13.881891px;}
._4_c00257{width:14.987261px;}
.fc0_c00257{color:rgb(0,0,0);}
.fs5_c00257{font-size:38.879984px;}
.fs4_c00257{font-size:41.759983px;}
.fs3_c00257{font-size:48.239981px;}
.fs0_c00257{font-size:59.759976px;}
.fs1_c00257{font-size:66.239974px;}
.fs2_c00257{font-size:71.999971px;}
.y0_c00257{bottom:0.000000px;}
.y4_c00257{bottom:75.719970px;}
.y3_c00257{bottom:113.879954px;}
.y25_c00257{bottom:134.220246px;}
.y24_c00257{bottom:153.299939px;}
.y23_c00257{bottom:170.579932px;}
.y22_c00257{bottom:188.219925px;}
.y21_c00257{bottom:195.779922px;}
.y20_c00257{bottom:206.579917px;}
.y1f_c00257{bottom:224.759910px;}
.y1e_c00257{bottom:232.319907px;}
.y1d_c00257{bottom:242.759903px;}
.y1c_c00257{bottom:260.039896px;}
.y1b_c00257{bottom:278.219889px;}
.y1a_c00257{bottom:285.779886px;}
.y19_c00257{bottom:298.379881px;}
.y18_c00257{bottom:321.419871px;}
.y16_c00257{bottom:342.119863px;}
.y17_c00257{bottom:349.679860px;}
.y15_c00257{bottom:382.439847px;}
.y14_c00257{bottom:714.359714px;}
.y12_c00257{bottom:745.499702px;}
.y13_c00257{bottom:753.779698px;}
.y11_c00257{bottom:776.459689px;}
.y10_c00257{bottom:807.599677px;}
.yf_c00257{bottom:838.559665px;}
.ye_c00257{bottom:869.699652px;}
.yd_c00257{bottom:900.659640px;}
.yc_c00257{bottom:931.799627px;}
.yb_c00257{bottom:962.759615px;}
.ya_c00257{bottom:993.899602px;}
.y9_c00257{bottom:1024.859590px;}
.y8_c00257{bottom:1055.999578px;}
.y6_c00257{bottom:1086.959565px;}
.y7_c00257{bottom:1095.239562px;}
.y5_c00257{bottom:1118.099553px;}
.y2_c00257{bottom:1156.979537px;}
.y1_c00257{bottom:1195.859522px;}
.ha_c00257{height:32.064597px;}
.h9_c00257{height:34.439752px;}
.h8_c00257{height:40.985140px;}
.h4_c00257{height:47.344903px;}
.hc_c00257{height:49.284472px;}
.h2_c00257{height:54.628572px;}
.hb_c00257{height:58.621969px;}
.h1_c00257{height:58.651148px;}
.h7_c00257{height:65.010911px;}
.h3_c00257{height:70.628878px;}
.h6_c00257{height:70.664034px;}
.h5_c00257{height:72.562471px;}
.h0_c00257{height:1263.000000px;}
.w0_c00257{width:892.500000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:127.799949px;}
.xc_c00257{left:138.239945px;}
.xd_c00257{left:143.819942px;}
.x9_c00257{left:161.099936px;}
.x3_c00257{left:180.899928px;}
.x2_c00257{left:434.159514px;}
.x8_c00257{left:567.000493px;}
.x4_c00257{left:624.419750px;}
.xa_c00257{left:632.159747px;}
.x5_c00257{left:636.659745px;}
.xb_c00257{left:642.599743px;}
.x6_c00257{left:670.319732px;}
.x7_c00257{left:682.559727px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls5_c00257{letter-spacing:0.000000pt;}
.ls2_c00257{letter-spacing:0.136801pt;}
.ls3_c00257{letter-spacing:0.162347pt;}
.ls0_c00257{letter-spacing:1.290186pt;}
.ls1_c00257{letter-spacing:5.132478pt;}
.ls4_c00257{letter-spacing:6.566291pt;}
.ws1_c00257{word-spacing:-15.999994pt;}
.ws0_c00257{word-spacing:-10.719996pt;}
.ws2_c00257{word-spacing:-9.279996pt;}
.ws3_c00257{word-spacing:-8.389117pt;}
.ws4_c00257{word-spacing:-7.810557pt;}
.ws5_c00257{word-spacing:0.000000pt;}
._a_c00257{margin-left:-11.303941pt;}
._1_c00257{margin-left:-0.982555pt;}
._0_c00257{width:1.062723pt;}
._5_c00257{width:2.442403pt;}
._3_c00257{width:4.260087pt;}
._2_c00257{width:5.327751pt;}
._9_c00257{width:6.420523pt;}
._8_c00257{width:7.362403pt;}
._6_c00257{width:10.914785pt;}
._7_c00257{width:12.339459pt;}
._4_c00257{width:13.322010pt;}
.fs5_c00257{font-size:34.559986pt;}
.fs4_c00257{font-size:37.119985pt;}
.fs3_c00257{font-size:42.879983pt;}
.fs0_c00257{font-size:53.119979pt;}
.fs1_c00257{font-size:58.879976pt;}
.fs2_c00257{font-size:63.999974pt;}
.y0_c00257{bottom:0.000000pt;}
.y4_c00257{bottom:67.306640pt;}
.y3_c00257{bottom:101.226626pt;}
.y25_c00257{bottom:119.306886pt;}
.y24_c00257{bottom:136.266612pt;}
.y23_c00257{bottom:151.626606pt;}
.y22_c00257{bottom:167.306600pt;}
.y21_c00257{bottom:174.026597pt;}
.y20_c00257{bottom:183.626593pt;}
.y1f_c00257{bottom:199.786587pt;}
.y1e_c00257{bottom:206.506584pt;}
.y1d_c00257{bottom:215.786580pt;}
.y1c_c00257{bottom:231.146574pt;}
.y1b_c00257{bottom:247.306568pt;}
.y1a_c00257{bottom:254.026565pt;}
.y19_c00257{bottom:265.226561pt;}
.y18_c00257{bottom:285.706552pt;}
.y16_c00257{bottom:304.106545pt;}
.y17_c00257{bottom:310.826542pt;}
.y15_c00257{bottom:339.946531pt;}
.y14_c00257{bottom:634.986413pt;}
.y12_c00257{bottom:662.666402pt;}
.y13_c00257{bottom:670.026399pt;}
.y11_c00257{bottom:690.186391pt;}
.y10_c00257{bottom:717.866380pt;}
.yf_c00257{bottom:745.386369pt;}
.ye_c00257{bottom:773.066357pt;}
.yd_c00257{bottom:800.586346pt;}
.yc_c00257{bottom:828.266335pt;}
.yb_c00257{bottom:855.786324pt;}
.ya_c00257{bottom:883.466313pt;}
.y9_c00257{bottom:910.986302pt;}
.y8_c00257{bottom:938.666291pt;}
.y6_c00257{bottom:966.186280pt;}
.y7_c00257{bottom:973.546277pt;}
.y5_c00257{bottom:993.866269pt;}
.y2_c00257{bottom:1028.426255pt;}
.y1_c00257{bottom:1062.986241pt;}
.ha_c00257{height:28.501864pt;}
.h9_c00257{height:30.613113pt;}
.h8_c00257{height:36.431235pt;}
.h4_c00257{height:42.084358pt;}
.hc_c00257{height:43.808420pt;}
.h2_c00257{height:48.558731pt;}
.hb_c00257{height:52.108417pt;}
.h1_c00257{height:52.134354pt;}
.h7_c00257{height:57.787477pt;}
.h3_c00257{height:62.781225pt;}
.h6_c00257{height:62.812475pt;}
.h5_c00257{height:64.499974pt;}
.h0_c00257{height:1122.666667pt;}
.w0_c00257{width:793.333333pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:113.599955pt;}
.xc_c00257{left:122.879951pt;}
.xd_c00257{left:127.839949pt;}
.x9_c00257{left:143.199943pt;}
.x3_c00257{left:160.799936pt;}
.x2_c00257{left:385.919568pt;}
.x8_c00257{left:504.000439pt;}
.x4_c00257{left:555.039778pt;}
.xa_c00257{left:561.919775pt;}
.x5_c00257{left:565.919774pt;}
.xb_c00257{left:571.199772pt;}
.x6_c00257{left:595.839762pt;}
.x7_c00257{left:606.719757pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_825b2e0d4a3149f305b402e5.woff2')format("woff");}.ff1_c00258{font-family:ff1_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:ff2_c00258;src:url('chunks/assets/font_1be6a0a23f430407c668ca9c.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_b504d24821a1142fc6eddf4b.woff2')format("woff");}.ff3_c00258{font-family:ff3_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:ff4_c00258;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00258{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls3_c00258{letter-spacing:0.000000px;}
.ls0_c00258{letter-spacing:0.153901px;}
.ls1_c00258{letter-spacing:0.182640px;}
.ls2_c00258{letter-spacing:0.189257px;}
.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;}
}
.ws1_c00258{word-spacing:-16.559993px;}
.ws4_c00258{word-spacing:-14.939994px;}
.ws0_c00258{word-spacing:-12.059995px;}
.ws2_c00258{word-spacing:-9.719996px;}
.ws3_c00258{word-spacing:-8.786876px;}
.ws5_c00258{word-spacing:0.000000px;}
._e_c00258{margin-left:-12.716934px;}
._1_c00258{margin-left:-1.105374px;}
._0_c00258{width:1.478392px;}
._c_c00258{width:3.021487px;}
._b_c00258{width:4.375752px;}
._7_c00258{width:6.577444px;}
._4_c00258{width:7.709759px;}
._5_c00258{width:9.141164px;}
._d_c00258{width:10.264269px;}
._8_c00258{width:11.346233px;}
._2_c00258{width:13.627832px;}
._3_c00258{width:14.843174px;}
._a_c00258{width:19.720691px;}
._9_c00258{width:21.531271px;}
._6_c00258{width:28.082405px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs4_c00258{font-size:38.879984px;}
.fs3_c00258{font-size:48.239981px;}
.fs0_c00258{font-size:59.759976px;}
.fs1_c00258{font-size:66.239974px;}
.fs2_c00258{font-size:71.999971px;}
.y0_c00258{bottom:0.000000px;}
.y4_c00258{bottom:75.720270px;}
.y3_c00258{bottom:113.880254px;}
.y23_c00258{bottom:133.500247px;}
.y22_c00258{bottom:141.060244px;}
.y21_c00258{bottom:151.859939px;}
.y20_c00258{bottom:170.219932px;}
.y1f_c00258{bottom:177.779929px;}
.y1e_c00258{bottom:188.219925px;}
.y1d_c00258{bottom:205.319918px;}
.y1c_c00258{bottom:222.599911px;}
.y1b_c00258{bottom:229.439908px;}
.y1a_c00258{bottom:240.779904px;}
.y18_c00258{bottom:385.139846px;}
.y19_c00258{bottom:393.419843px;}
.y17_c00258{bottom:416.099834px;}
.y16_c00258{bottom:447.239821px;}
.y15_c00258{bottom:493.139803px;}
.y14_c00258{bottom:524.279790px;}
.y13_c00258{bottom:570.359772px;}
.y12_c00258{bottom:615.179754px;}
.y11_c00258{bottom:655.319738px;}
.yf_c00258{bottom:826.859669px;}
.y10_c00258{bottom:835.139666px;}
.ye_c00258{bottom:857.999657px;}
.yc_c00258{bottom:888.959644px;}
.yd_c00258{bottom:897.239641px;}
.yb_c00258{bottom:920.099632px;}
.ya_c00258{bottom:966.179614px;}
.y9_c00258{bottom:997.139601px;}
.y8_c00258{bottom:1028.279589px;}
.y7_c00258{bottom:1074.179570px;}
.y6_c00258{bottom:1105.319558px;}
.y5_c00258{bottom:1136.279545px;}
.y2_c00258{bottom:1175.879530px;}
.y1_c00258{bottom:1196.039522px;}
.h8_c00258{height:32.064597px;}
.h7_c00258{height:38.158578px;}
.h4_c00258{height:47.344903px;}
.h9_c00258{height:49.284472px;}
.h2_c00258{height:54.628572px;}
.h1_c00258{height:58.651148px;}
.h6_c00258{height:65.010911px;}
.h3_c00258{height:70.664034px;}
.h5_c00258{height:72.562471px;}
.h0_c00258{height:1263.000000px;}
.w0_c00258{width:892.500000px;}
.x0_c00258{left:0.000000px;}
.x5_c00258{left:127.800262px;}
.xf_c00258{left:137.519945px;}
.x6_c00258{left:180.899928px;}
.x1_c00258{left:181.979927px;}
.x9_c00258{left:245.699902px;}
.xa_c00258{left:257.939897px;}
.xc_c00258{left:271.799891px;}
.x2_c00258{left:329.219408px;}
.xd_c00258{left:380.159848px;}
.xe_c00258{left:392.399843px;}
.x4_c00258{left:434.159826px;}
.x7_c00258{left:563.579775px;}
.x8_c00258{left:575.819770px;}
.x3_c00258{left:765.539694px;}
.xb_c00258{left:813.959929px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls3_c00258{letter-spacing:0.000000pt;}
.ls0_c00258{letter-spacing:0.136801pt;}
.ls1_c00258{letter-spacing:0.162347pt;}
.ls2_c00258{letter-spacing:0.168228pt;}
.ws1_c00258{word-spacing:-14.719994pt;}
.ws4_c00258{word-spacing:-13.279995pt;}
.ws0_c00258{word-spacing:-10.719996pt;}
.ws2_c00258{word-spacing:-8.639997pt;}
.ws3_c00258{word-spacing:-7.810557pt;}
.ws5_c00258{word-spacing:0.000000pt;}
._e_c00258{margin-left:-11.303941pt;}
._1_c00258{margin-left:-0.982555pt;}
._0_c00258{width:1.314126pt;}
._c_c00258{width:2.685766pt;}
._b_c00258{width:3.889557pt;}
._7_c00258{width:5.846617pt;}
._4_c00258{width:6.853119pt;}
._5_c00258{width:8.125479pt;}
._d_c00258{width:9.123794pt;}
._8_c00258{width:10.085541pt;}
._2_c00258{width:12.113629pt;}
._3_c00258{width:13.193933pt;}
._a_c00258{width:17.529503pt;}
._9_c00258{width:19.138908pt;}
._6_c00258{width:24.962138pt;}
.fs4_c00258{font-size:34.559986pt;}
.fs3_c00258{font-size:42.879983pt;}
.fs0_c00258{font-size:53.119979pt;}
.fs1_c00258{font-size:58.879976pt;}
.fs2_c00258{font-size:63.999974pt;}
.y0_c00258{bottom:0.000000pt;}
.y4_c00258{bottom:67.306906pt;}
.y3_c00258{bottom:101.226893pt;}
.y23_c00258{bottom:118.666886pt;}
.y22_c00258{bottom:125.386883pt;}
.y21_c00258{bottom:134.986613pt;}
.y20_c00258{bottom:151.306606pt;}
.y1f_c00258{bottom:158.026603pt;}
.y1e_c00258{bottom:167.306600pt;}
.y1d_c00258{bottom:182.506594pt;}
.y1c_c00258{bottom:197.866588pt;}
.y1b_c00258{bottom:203.946585pt;}
.y1a_c00258{bottom:214.026581pt;}
.y18_c00258{bottom:342.346530pt;}
.y19_c00258{bottom:349.706527pt;}
.y17_c00258{bottom:369.866519pt;}
.y16_c00258{bottom:397.546508pt;}
.y15_c00258{bottom:438.346491pt;}
.y14_c00258{bottom:466.026480pt;}
.y13_c00258{bottom:506.986464pt;}
.y12_c00258{bottom:546.826448pt;}
.y11_c00258{bottom:582.506434pt;}
.yf_c00258{bottom:734.986373pt;}
.y10_c00258{bottom:742.346370pt;}
.ye_c00258{bottom:762.666362pt;}
.yc_c00258{bottom:790.186351pt;}
.yd_c00258{bottom:797.546348pt;}
.yb_c00258{bottom:817.866340pt;}
.ya_c00258{bottom:858.826323pt;}
.y9_c00258{bottom:886.346312pt;}
.y8_c00258{bottom:914.026301pt;}
.y7_c00258{bottom:954.826285pt;}
.y6_c00258{bottom:982.506274pt;}
.y5_c00258{bottom:1010.026263pt;}
.y2_c00258{bottom:1045.226249pt;}
.y1_c00258{bottom:1063.146241pt;}
.h8_c00258{height:28.501864pt;}
.h7_c00258{height:33.918736pt;}
.h4_c00258{height:42.084358pt;}
.h9_c00258{height:43.808420pt;}
.h2_c00258{height:48.558731pt;}
.h1_c00258{height:52.134354pt;}
.h6_c00258{height:57.787477pt;}
.h3_c00258{height:62.812475pt;}
.h5_c00258{height:64.499974pt;}
.h0_c00258{height:1122.666667pt;}
.w0_c00258{width:793.333333pt;}
.x0_c00258{left:0.000000pt;}
.x5_c00258{left:113.600233pt;}
.xf_c00258{left:122.239951pt;}
.x6_c00258{left:160.799936pt;}
.x1_c00258{left:161.759935pt;}
.x9_c00258{left:218.399913pt;}
.xa_c00258{left:229.279908pt;}
.xc_c00258{left:241.599903pt;}
.x2_c00258{left:292.639474pt;}
.xd_c00258{left:337.919865pt;}
.xe_c00258{left:348.799860pt;}
.x4_c00258{left:385.919846pt;}
.x7_c00258{left:500.959800pt;}
.x8_c00258{left:511.839795pt;}
.x3_c00258{left:680.479728pt;}
.xb_c00258{left:723.519937pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d63ad6c01bfa8267e3275585.woff2')format("woff");}.ff1_c00259{font-family:ff1_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:ff2_c00259;src:url('chunks/assets/font_ee242ace5bc73edb388ed9f2.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.311035;font-style:normal;font-weight:normal;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_ef17ece1df73c04c3e7bd19e.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_420e8e9b376e37b63b2873c9.woff2')format("woff");}.ff5_c00259{font-family:ff5_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;}
.m0_c00259{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls3_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:0.153901px;}
.ls2_c00259{letter-spacing:0.182640px;}
.ls0_c00259{letter-spacing:1.451459px;}
.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;}
}
.ws1_c00259{word-spacing:-17.999993px;}
.ws0_c00259{word-spacing:-16.559993px;}
.ws2_c00259{word-spacing:-12.059995px;}
.ws3_c00259{word-spacing:-8.786876px;}
.ws4_c00259{word-spacing:0.000000px;}
._9_c00259{margin-left:-12.716934px;}
._1_c00259{margin-left:-1.105374px;}
._0_c00259{width:1.195563px;}
._3_c00259{width:2.318156px;}
._8_c00259{width:3.327615px;}
._5_c00259{width:9.338598px;}
._4_c00259{width:10.850996px;}
._7_c00259{width:13.517992px;}
._6_c00259{width:14.541714px;}
._2_c00259{width:16.555642px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs4_c00259{font-size:38.879984px;}
.fs3_c00259{font-size:48.239981px;}
.fs0_c00259{font-size:59.759976px;}
.fs1_c00259{font-size:66.239974px;}
.fs2_c00259{font-size:71.999971px;}
.y0_c00259{bottom:0.000000px;}
.y4_c00259{bottom:75.719970px;}
.y3_c00259{bottom:113.879954px;}
.y20_c00259{bottom:133.499947px;}
.y1f_c00259{bottom:151.859939px;}
.y1e_c00259{bottom:159.419936px;}
.y1d_c00259{bottom:169.859932px;}
.y1c_c00259{bottom:187.499925px;}
.y1b_c00259{bottom:195.059922px;}
.y1a_c00259{bottom:206.399917px;}
.y19_c00259{bottom:287.399885px;}
.y17_c00259{bottom:318.359873px;}
.y18_c00259{bottom:326.639869px;}
.y16_c00259{bottom:349.499860px;}
.y15_c00259{bottom:380.459848px;}
.y14_c00259{bottom:411.599835px;}
.y12_c00259{bottom:442.559823px;}
.y13_c00259{bottom:450.839820px;}
.y11_c00259{bottom:473.519811px;}
.y10_c00259{bottom:504.659798px;}
.yf_c00259{bottom:535.619786px;}
.ye_c00259{bottom:566.759773px;}
.yd_c00259{bottom:597.719761px;}
.yc_c00259{bottom:628.859748px;}
.yb_c00259{bottom:659.819736px;}
.ya_c00259{bottom:690.959724px;}
.y9_c00259{bottom:721.919711px;}
.y8_c00259{bottom:753.059699px;}
.y7_c00259{bottom:783.659687px;}
.y6_c00259{bottom:813.899674px;}
.y5_c00259{bottom:854.219658px;}
.y2_c00259{bottom:1156.979537px;}
.y1_c00259{bottom:1195.859522px;}
.h9_c00259{height:32.064597px;}
.h7_c00259{height:47.321348px;}
.h8_c00259{height:47.344903px;}
.ha_c00259{height:49.284472px;}
.h2_c00259{height:54.628572px;}
.h1_c00259{height:58.651148px;}
.h4_c00259{height:65.010911px;}
.h5_c00259{height:70.628878px;}
.h6_c00259{height:70.664034px;}
.h3_c00259{height:72.562471px;}
.h0_c00259{height:1263.000000px;}
.w0_c00259{width:892.500000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:127.799949px;}
.xa_c00259{left:137.519945px;}
.x5_c00259{left:180.899928px;}
.x8_c00259{left:239.759904px;}
.x9_c00259{left:251.999899px;}
.x4_c00259{left:284.939886px;}
.x2_c00259{left:434.159514px;}
.x6_c00259{left:647.459741px;}
.x7_c00259{left:659.699736px;}
.x3_c00259{left:718.919712px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls3_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:0.136801pt;}
.ls2_c00259{letter-spacing:0.162347pt;}
.ls0_c00259{letter-spacing:1.290186pt;}
.ws1_c00259{word-spacing:-15.999994pt;}
.ws0_c00259{word-spacing:-14.719994pt;}
.ws2_c00259{word-spacing:-10.719996pt;}
.ws3_c00259{word-spacing:-7.810557pt;}
.ws4_c00259{word-spacing:0.000000pt;}
._9_c00259{margin-left:-11.303941pt;}
._1_c00259{margin-left:-0.982555pt;}
._0_c00259{width:1.062723pt;}
._3_c00259{width:2.060583pt;}
._8_c00259{width:2.957880pt;}
._5_c00259{width:8.300976pt;}
._4_c00259{width:9.645329pt;}
._7_c00259{width:12.015993pt;}
._6_c00259{width:12.925968pt;}
._2_c00259{width:14.716126pt;}
.fs4_c00259{font-size:34.559986pt;}
.fs3_c00259{font-size:42.879983pt;}
.fs0_c00259{font-size:53.119979pt;}
.fs1_c00259{font-size:58.879976pt;}
.fs2_c00259{font-size:63.999974pt;}
.y0_c00259{bottom:0.000000pt;}
.y4_c00259{bottom:67.306640pt;}
.y3_c00259{bottom:101.226626pt;}
.y20_c00259{bottom:118.666619pt;}
.y1f_c00259{bottom:134.986613pt;}
.y1e_c00259{bottom:141.706610pt;}
.y1d_c00259{bottom:150.986606pt;}
.y1c_c00259{bottom:166.666600pt;}
.y1b_c00259{bottom:173.386597pt;}
.y1a_c00259{bottom:183.466593pt;}
.y19_c00259{bottom:255.466564pt;}
.y17_c00259{bottom:282.986553pt;}
.y18_c00259{bottom:290.346551pt;}
.y16_c00259{bottom:310.666542pt;}
.y15_c00259{bottom:338.186531pt;}
.y14_c00259{bottom:365.866520pt;}
.y12_c00259{bottom:393.386509pt;}
.y13_c00259{bottom:400.746506pt;}
.y11_c00259{bottom:420.906498pt;}
.y10_c00259{bottom:448.586487pt;}
.yf_c00259{bottom:476.106476pt;}
.ye_c00259{bottom:503.786465pt;}
.yd_c00259{bottom:531.306454pt;}
.yc_c00259{bottom:558.986443pt;}
.yb_c00259{bottom:586.506432pt;}
.ya_c00259{bottom:614.186421pt;}
.y9_c00259{bottom:641.706410pt;}
.y8_c00259{bottom:669.386399pt;}
.y7_c00259{bottom:696.586388pt;}
.y6_c00259{bottom:723.466377pt;}
.y5_c00259{bottom:759.306363pt;}
.y2_c00259{bottom:1028.426255pt;}
.y1_c00259{bottom:1062.986241pt;}
.h9_c00259{height:28.501864pt;}
.h7_c00259{height:42.063421pt;}
.h8_c00259{height:42.084358pt;}
.ha_c00259{height:43.808420pt;}
.h2_c00259{height:48.558731pt;}
.h1_c00259{height:52.134354pt;}
.h4_c00259{height:57.787477pt;}
.h5_c00259{height:62.781225pt;}
.h6_c00259{height:62.812475pt;}
.h3_c00259{height:64.499974pt;}
.h0_c00259{height:1122.666667pt;}
.w0_c00259{width:793.333333pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:113.599955pt;}
.xa_c00259{left:122.239951pt;}
.x5_c00259{left:160.799936pt;}
.x8_c00259{left:213.119915pt;}
.x9_c00259{left:223.999910pt;}
.x4_c00259{left:253.279899pt;}
.x2_c00259{left:385.919568pt;}
.x6_c00259{left:575.519770pt;}
.x7_c00259{left:586.399765pt;}
.x3_c00259{left:639.039744pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89669cddc008f97d18c15a34.woff2')format("woff");}.ff1_c00260{font-family:ff1_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:ff2_c00260;src:url('chunks/assets/font_a89e8c57a2d8256f9b96d2e2.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_4736e73a6b056cb651788d00.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00260{font-family:ff4_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;}
.m0_c00260{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls2_c00260{letter-spacing:0.000000px;}
.ls0_c00260{letter-spacing:0.153901px;}
.ls1_c00260{letter-spacing:0.182640px;}
.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;}
}
.ws0_c00260{word-spacing:-16.559993px;}
.ws1_c00260{word-spacing:-12.059995px;}
.ws2_c00260{word-spacing:-8.786876px;}
.ws3_c00260{word-spacing:0.000000px;}
._5_c00260{margin-left:-12.716934px;}
._1_c00260{margin-left:-1.105374px;}
._0_c00260{width:1.478392px;}
._2_c00260{width:2.701153px;}
._3_c00260{width:7.123932px;}
._4_c00260{width:8.135130px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs4_c00260{font-size:38.879984px;}
.fs3_c00260{font-size:48.239981px;}
.fs0_c00260{font-size:59.759976px;}
.fs1_c00260{font-size:66.239974px;}
.fs2_c00260{font-size:71.999971px;}
.y0_c00260{bottom:0.000000px;}
.y4_c00260{bottom:75.720270px;}
.y3_c00260{bottom:113.880254px;}
.y13_c00260{bottom:133.499947px;}
.y12_c00260{bottom:151.859939px;}
.y11_c00260{bottom:159.419936px;}
.y10_c00260{bottom:170.759932px;}
.yf_c00260{bottom:247.619901px;}
.ye_c00260{bottom:292.439883px;}
.yd_c00260{bottom:332.759867px;}
.yc_c00260{bottom:549.299780px;}
.ya_c00260{bottom:595.199762px;}
.yb_c00260{bottom:603.479759px;}
.y9_c00260{bottom:626.339749px;}
.y8_c00260{bottom:657.299737px;}
.y7_c00260{bottom:703.379719px;}
.y6_c00260{bottom:748.379701px;}
.y5_c00260{bottom:773.579691px;}
.y2_c00260{bottom:1175.879530px;}
.y1_c00260{bottom:1196.039522px;}
.h8_c00260{height:32.064597px;}
.h6_c00260{height:47.344903px;}
.h9_c00260{height:49.284472px;}
.h2_c00260{height:54.628572px;}
.h1_c00260{height:58.651148px;}
.h4_c00260{height:65.010911px;}
.h3_c00260{height:70.628878px;}
.h5_c00260{height:70.664034px;}
.h7_c00260{height:72.562471px;}
.h0_c00260{height:1263.000000px;}
.w0_c00260{width:892.500000px;}
.x0_c00260{left:0.000000px;}
.x5_c00260{left:127.800262px;}
.xe_c00260{left:137.519945px;}
.x8_c00260{left:180.899928px;}
.x1_c00260{left:181.979927px;}
.x7_c00260{left:183.419927px;}
.xc_c00260{left:250.379900px;}
.x2_c00260{left:329.219408px;}
.x4_c00260{left:434.159826px;}
.x9_c00260{left:609.479756px;}
.xa_c00260{left:621.719751px;}
.xd_c00260{left:642.959743px;}
.x6_c00260{left:727.019709px;}
.xb_c00260{left:741.421038px;}
.x3_c00260{left:765.539694px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls2_c00260{letter-spacing:0.000000pt;}
.ls0_c00260{letter-spacing:0.136801pt;}
.ls1_c00260{letter-spacing:0.162347pt;}
.ws0_c00260{word-spacing:-14.719994pt;}
.ws1_c00260{word-spacing:-10.719996pt;}
.ws2_c00260{word-spacing:-7.810557pt;}
.ws3_c00260{word-spacing:0.000000pt;}
._5_c00260{margin-left:-11.303941pt;}
._1_c00260{margin-left:-0.982555pt;}
._0_c00260{width:1.314126pt;}
._2_c00260{width:2.401025pt;}
._3_c00260{width:6.332384pt;}
._4_c00260{width:7.231227pt;}
.fs4_c00260{font-size:34.559986pt;}
.fs3_c00260{font-size:42.879983pt;}
.fs0_c00260{font-size:53.119979pt;}
.fs1_c00260{font-size:58.879976pt;}
.fs2_c00260{font-size:63.999974pt;}
.y0_c00260{bottom:0.000000pt;}
.y4_c00260{bottom:67.306906pt;}
.y3_c00260{bottom:101.226893pt;}
.y13_c00260{bottom:118.666619pt;}
.y12_c00260{bottom:134.986613pt;}
.y11_c00260{bottom:141.706610pt;}
.y10_c00260{bottom:151.786606pt;}
.yf_c00260{bottom:220.106579pt;}
.ye_c00260{bottom:259.946563pt;}
.yd_c00260{bottom:295.786548pt;}
.yc_c00260{bottom:488.266471pt;}
.ya_c00260{bottom:529.066455pt;}
.yb_c00260{bottom:536.426452pt;}
.y9_c00260{bottom:556.746444pt;}
.y8_c00260{bottom:584.266433pt;}
.y7_c00260{bottom:625.226417pt;}
.y6_c00260{bottom:665.226401pt;}
.y5_c00260{bottom:687.626392pt;}
.y2_c00260{bottom:1045.226249pt;}
.y1_c00260{bottom:1063.146241pt;}
.h8_c00260{height:28.501864pt;}
.h6_c00260{height:42.084358pt;}
.h9_c00260{height:43.808420pt;}
.h2_c00260{height:48.558731pt;}
.h1_c00260{height:52.134354pt;}
.h4_c00260{height:57.787477pt;}
.h3_c00260{height:62.781225pt;}
.h5_c00260{height:62.812475pt;}
.h7_c00260{height:64.499974pt;}
.h0_c00260{height:1122.666667pt;}
.w0_c00260{width:793.333333pt;}
.x0_c00260{left:0.000000pt;}
.x5_c00260{left:113.600233pt;}
.xe_c00260{left:122.239951pt;}
.x8_c00260{left:160.799936pt;}
.x1_c00260{left:161.759935pt;}
.x7_c00260{left:163.039935pt;}
.xc_c00260{left:222.559911pt;}
.x2_c00260{left:292.639474pt;}
.x4_c00260{left:385.919846pt;}
.x9_c00260{left:541.759783pt;}
.xa_c00260{left:552.639779pt;}
.xd_c00260{left:571.519771pt;}
.x6_c00260{left:646.239742pt;}
.xb_c00260{left:659.040923pt;}
.x3_c00260{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a08eeaaafe401bf6dd939b69.woff2')format("woff");}.ff1_c00261{font-family:ff1_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:ff2_c00261;src:url('chunks/assets/font_33a56455232af242c1d90a8b.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_61fcfe4026a3ad23aa9cf4fb.woff2')format("woff");}.ff3_c00261{font-family:ff3_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:ff4_c00261;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls2_c00261{letter-spacing:0.000000px;}
.ls0_c00261{letter-spacing:0.153901px;}
.ls1_c00261{letter-spacing:0.182640px;}
.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:-16.559993px;}
.ws0_c00261{word-spacing:-12.059995px;}
.ws2_c00261{word-spacing:-8.786876px;}
.ws3_c00261{word-spacing:0.000000px;}
._9_c00261{margin-left:-12.716934px;}
._1_c00261{margin-left:-1.105374px;}
._0_c00261{width:1.195563px;}
._4_c00261{width:6.942059px;}
._5_c00261{width:7.956755px;}
._3_c00261{width:9.268480px;}
._8_c00261{width:14.825386px;}
._7_c00261{width:15.900161px;}
._2_c00261{width:25.335318px;}
._6_c00261{width:26.452239px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs4_c00261{font-size:38.879984px;}
.fs3_c00261{font-size:48.239981px;}
.fs0_c00261{font-size:59.759976px;}
.fs1_c00261{font-size:66.239974px;}
.fs2_c00261{font-size:71.999971px;}
.y0_c00261{bottom:0.000000px;}
.y4_c00261{bottom:75.719970px;}
.y3_c00261{bottom:113.879954px;}
.y1a_c00261{bottom:133.499947px;}
.y19_c00261{bottom:151.859939px;}
.y18_c00261{bottom:159.419936px;}
.y17_c00261{bottom:169.859932px;}
.y16_c00261{bottom:187.499925px;}
.y15_c00261{bottom:195.059922px;}
.y14_c00261{bottom:206.399917px;}
.y13_c00261{bottom:262.199895px;}
.y12_c00261{bottom:292.079883px;}
.y11_c00261{bottom:332.399867px;}
.yf_c00261{bottom:645.599742px;}
.y10_c00261{bottom:653.879738px;}
.ye_c00261{bottom:676.559729px;}
.yd_c00261{bottom:707.699717px;}
.yc_c00261{bottom:752.519699px;}
.yb_c00261{bottom:792.119683px;}
.ya_c00261{bottom:980.219608px;}
.y8_c00261{bottom:1024.859590px;}
.y9_c00261{bottom:1033.139587px;}
.y7_c00261{bottom:1055.999578px;}
.y6_c00261{bottom:1086.959565px;}
.y5_c00261{bottom:1118.099553px;}
.y2_c00261{bottom:1156.979537px;}
.y1_c00261{bottom:1195.859522px;}
.h9_c00261{height:32.064597px;}
.h8_c00261{height:47.321348px;}
.h4_c00261{height:47.344903px;}
.ha_c00261{height:49.284472px;}
.h2_c00261{height:54.628572px;}
.h1_c00261{height:58.651148px;}
.h5_c00261{height:65.010911px;}
.h7_c00261{height:70.628878px;}
.h3_c00261{height:70.664034px;}
.h6_c00261{height:72.562471px;}
.h0_c00261{height:1263.000000px;}
.w0_c00261{width:892.500000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:127.799949px;}
.xd_c00261{left:137.519945px;}
.xc_c00261{left:149.579940px;}
.x7_c00261{left:174.780592px;}
.x3_c00261{left:180.899928px;}
.x9_c00261{left:279.359888px;}
.xa_c00261{left:291.599883px;}
.x4_c00261{left:355.319858px;}
.x5_c00261{left:367.559853px;}
.x2_c00261{left:434.159514px;}
.x8_c00261{left:718.559713px;}
.xb_c00261{left:732.418970px;}
.x6_c00261{left:746.999971px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls2_c00261{letter-spacing:0.000000pt;}
.ls0_c00261{letter-spacing:0.136801pt;}
.ls1_c00261{letter-spacing:0.162347pt;}
.ws1_c00261{word-spacing:-14.719994pt;}
.ws0_c00261{word-spacing:-10.719996pt;}
.ws2_c00261{word-spacing:-7.810557pt;}
.ws3_c00261{word-spacing:0.000000pt;}
._9_c00261{margin-left:-11.303941pt;}
._1_c00261{margin-left:-0.982555pt;}
._0_c00261{width:1.062723pt;}
._4_c00261{width:6.170719pt;}
._5_c00261{width:7.072671pt;}
._3_c00261{width:8.238649pt;}
._8_c00261{width:13.178121pt;}
._7_c00261{width:14.133477pt;}
._2_c00261{width:22.520282pt;}
._6_c00261{width:23.513101pt;}
.fs4_c00261{font-size:34.559986pt;}
.fs3_c00261{font-size:42.879983pt;}
.fs0_c00261{font-size:53.119979pt;}
.fs1_c00261{font-size:58.879976pt;}
.fs2_c00261{font-size:63.999974pt;}
.y0_c00261{bottom:0.000000pt;}
.y4_c00261{bottom:67.306640pt;}
.y3_c00261{bottom:101.226626pt;}
.y1a_c00261{bottom:118.666619pt;}
.y19_c00261{bottom:134.986613pt;}
.y18_c00261{bottom:141.706610pt;}
.y17_c00261{bottom:150.986606pt;}
.y16_c00261{bottom:166.666600pt;}
.y15_c00261{bottom:173.386597pt;}
.y14_c00261{bottom:183.466593pt;}
.y13_c00261{bottom:233.066573pt;}
.y12_c00261{bottom:259.626563pt;}
.y11_c00261{bottom:295.466548pt;}
.yf_c00261{bottom:573.866437pt;}
.y10_c00261{bottom:581.226434pt;}
.ye_c00261{bottom:601.386426pt;}
.yd_c00261{bottom:629.066415pt;}
.yc_c00261{bottom:668.906399pt;}
.yb_c00261{bottom:704.106385pt;}
.ya_c00261{bottom:871.306318pt;}
.y8_c00261{bottom:910.986302pt;}
.y9_c00261{bottom:918.346299pt;}
.y7_c00261{bottom:938.666291pt;}
.y6_c00261{bottom:966.186280pt;}
.y5_c00261{bottom:993.866269pt;}
.y2_c00261{bottom:1028.426255pt;}
.y1_c00261{bottom:1062.986241pt;}
.h9_c00261{height:28.501864pt;}
.h8_c00261{height:42.063421pt;}
.h4_c00261{height:42.084358pt;}
.ha_c00261{height:43.808420pt;}
.h2_c00261{height:48.558731pt;}
.h1_c00261{height:52.134354pt;}
.h5_c00261{height:57.787477pt;}
.h7_c00261{height:62.781225pt;}
.h3_c00261{height:62.812475pt;}
.h6_c00261{height:64.499974pt;}
.h0_c00261{height:1122.666667pt;}
.w0_c00261{width:793.333333pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:113.599955pt;}
.xd_c00261{left:122.239951pt;}
.xc_c00261{left:132.959947pt;}
.x7_c00261{left:155.360526pt;}
.x3_c00261{left:160.799936pt;}
.x9_c00261{left:248.319901pt;}
.xa_c00261{left:259.199896pt;}
.x4_c00261{left:315.839874pt;}
.x5_c00261{left:326.719869pt;}
.x2_c00261{left:385.919568pt;}
.x8_c00261{left:638.719745pt;}
.xb_c00261{left:651.039085pt;}
.x6_c00261{left:663.999974pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b4ced08d92b1dea215d001e.woff2')format("woff");}.ff1_c00262{font-family:ff1_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:ff2_c00262;src:url('chunks/assets/font_1cf072afb1f98edecd015c0a.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_82c084b4bb7b2b778c9c4153.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;}
.m0_c00262{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls2_c00262{letter-spacing:0.000000px;}
.ls1_c00262{letter-spacing:0.010620px;}
.ls0_c00262{letter-spacing:22.343811px;}
.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;}
}
.ws0_c00262{word-spacing:-17.999993px;}
.ws1_c00262{word-spacing:0.000000px;}
._1_c00262{margin-left:-1.105374px;}
._0_c00262{width:1.478392px;}
._4_c00262{width:2.631555px;}
._7_c00262{width:4.442998px;}
._8_c00262{width:5.917174px;}
._6_c00262{width:10.502753px;}
._5_c00262{width:11.757011px;}
._3_c00262{width:19.304892px;}
._2_c00262{width:20.408053px;}
._9_c00262{width:22.609541px;}
.fc0_c00262{color:rgb(0,0,0);}
.fs0_c00262{font-size:59.759976px;}
.fs1_c00262{font-size:66.239974px;}
.fs2_c00262{font-size:71.999971px;}
.y0_c00262{bottom:0.000000px;}
.y4_c00262{bottom:75.900270px;}
.y3_c00262{bottom:114.060254px;}
.y24_c00262{bottom:173.999930px;}
.y23_c00262{bottom:205.139918px;}
.y22_c00262{bottom:236.099906px;}
.y21_c00262{bottom:267.239893px;}
.y20_c00262{bottom:298.199881px;}
.y1f_c00262{bottom:329.339868px;}
.y1e_c00262{bottom:360.299856px;}
.y1d_c00262{bottom:391.439843px;}
.y1c_c00262{bottom:422.399831px;}
.y1b_c00262{bottom:453.539819px;}
.y1a_c00262{bottom:484.499806px;}
.y19_c00262{bottom:515.639794px;}
.y18_c00262{bottom:546.599781px;}
.y17_c00262{bottom:577.739769px;}
.y16_c00262{bottom:608.699757px;}
.y15_c00262{bottom:639.839744px;}
.y14_c00262{bottom:670.799732px;}
.y13_c00262{bottom:701.939719px;}
.y12_c00262{bottom:732.899707px;}
.y11_c00262{bottom:764.039694px;}
.y10_c00262{bottom:794.999682px;}
.yf_c00262{bottom:825.959670px;}
.ye_c00262{bottom:857.099657px;}
.yd_c00262{bottom:888.059645px;}
.yc_c00262{bottom:919.199632px;}
.yb_c00262{bottom:950.159620px;}
.ya_c00262{bottom:981.299607px;}
.y9_c00262{bottom:1012.259595px;}
.y8_c00262{bottom:1043.399583px;}
.y7_c00262{bottom:1074.359570px;}
.y6_c00262{bottom:1105.499558px;}
.y5_c00262{bottom:1136.459545px;}
.y2_c00262{bottom:1176.059530px;}
.y1_c00262{bottom:1196.219522px;}
.h2_c00262{height:54.628572px;}
.h1_c00262{height:58.651148px;}
.h4_c00262{height:70.628878px;}
.h3_c00262{height:70.664034px;}
.h0_c00262{height:1263.000000px;}
.w0_c00262{width:892.500000px;}
.x0_c00262{left:0.000000px;}
.x5_c00262{left:127.620262px;}
.x7_c00262{left:154.618997px;}
.x6_c00262{left:180.719928px;}
.x1_c00262{left:181.799927px;}
.x2_c00262{left:329.039408px;}
.x4_c00262{left:433.979826px;}
.x3_c00262{left:765.359694px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls2_c00262{letter-spacing:0.000000pt;}
.ls1_c00262{letter-spacing:0.009440pt;}
.ls0_c00262{letter-spacing:19.861165pt;}
.ws0_c00262{word-spacing:-15.999994pt;}
.ws1_c00262{word-spacing:0.000000pt;}
._1_c00262{margin-left:-0.982555pt;}
._0_c00262{width:1.314126pt;}
._4_c00262{width:2.339160pt;}
._7_c00262{width:3.949332pt;}
._8_c00262{width:5.259711pt;}
._6_c00262{width:9.335780pt;}
._5_c00262{width:10.450677pt;}
._3_c00262{width:17.159904pt;}
._2_c00262{width:18.140491pt;}
._9_c00262{width:20.097369pt;}
.fs0_c00262{font-size:53.119979pt;}
.fs1_c00262{font-size:58.879976pt;}
.fs2_c00262{font-size:63.999974pt;}
.y0_c00262{bottom:0.000000pt;}
.y4_c00262{bottom:67.466906pt;}
.y3_c00262{bottom:101.386893pt;}
.y24_c00262{bottom:154.666605pt;}
.y23_c00262{bottom:182.346594pt;}
.y22_c00262{bottom:209.866583pt;}
.y21_c00262{bottom:237.546572pt;}
.y20_c00262{bottom:265.066561pt;}
.y1f_c00262{bottom:292.746550pt;}
.y1e_c00262{bottom:320.266539pt;}
.y1d_c00262{bottom:347.946527pt;}
.y1c_c00262{bottom:375.466516pt;}
.y1b_c00262{bottom:403.146505pt;}
.y1a_c00262{bottom:430.666494pt;}
.y19_c00262{bottom:458.346483pt;}
.y18_c00262{bottom:485.866472pt;}
.y17_c00262{bottom:513.546461pt;}
.y16_c00262{bottom:541.066450pt;}
.y15_c00262{bottom:568.746439pt;}
.y14_c00262{bottom:596.266428pt;}
.y13_c00262{bottom:623.946417pt;}
.y12_c00262{bottom:651.466406pt;}
.y11_c00262{bottom:679.146395pt;}
.y10_c00262{bottom:706.666384pt;}
.yf_c00262{bottom:734.186373pt;}
.ye_c00262{bottom:761.866362pt;}
.yd_c00262{bottom:789.386351pt;}
.yc_c00262{bottom:817.066340pt;}
.yb_c00262{bottom:844.586329pt;}
.ya_c00262{bottom:872.266318pt;}
.y9_c00262{bottom:899.786307pt;}
.y8_c00262{bottom:927.466296pt;}
.y7_c00262{bottom:954.986285pt;}
.y6_c00262{bottom:982.666274pt;}
.y5_c00262{bottom:1010.186263pt;}
.y2_c00262{bottom:1045.386249pt;}
.y1_c00262{bottom:1063.306241pt;}
.h2_c00262{height:48.558731pt;}
.h1_c00262{height:52.134354pt;}
.h4_c00262{height:62.781225pt;}
.h3_c00262{height:62.812475pt;}
.h0_c00262{height:1122.666667pt;}
.w0_c00262{width:793.333333pt;}
.x0_c00262{left:0.000000pt;}
.x5_c00262{left:113.440233pt;}
.x7_c00262{left:137.439108pt;}
.x6_c00262{left:160.639936pt;}
.x1_c00262{left:161.599935pt;}
.x2_c00262{left:292.479474pt;}
.x4_c00262{left:385.759846pt;}
.x3_c00262{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be4c4e68d294ba0f75905df9.woff2')format("woff");}.ff1_c00263{font-family:ff1_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:ff2_c00263;src:url('chunks/assets/font_e2ada0b70b1ce27019249ed8.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_29b9780a3031d1dd46f87411.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.311035;font-style:normal;font-weight:normal;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_3611a87d92abbe94e3e2ca60.woff2')format("woff");}.ff4_c00263{font-family:ff4_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:ff5_c00263;src:url('chunks/assets/font_4d314a1b36978014d98486b0.woff2')format("woff");}.ff5_c00263{font-family:ff5_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;}
.m0_c00263{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00263{word-spacing:-17.999993px;}
.ws1_c00263{word-spacing:0.000000px;}
._1_c00263{margin-left:-1.105374px;}
._0_c00263{width:1.195563px;}
._5_c00263{width:2.578079px;}
._2_c00263{width:3.708164px;}
._7_c00263{width:5.113994px;}
._8_c00263{width:9.480315px;}
._6_c00263{width:10.746105px;}
._3_c00263{width:24.793240px;}
._4_c00263{width:25.847038px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs0_c00263{font-size:59.759976px;}
.fs1_c00263{font-size:66.239974px;}
.fs2_c00263{font-size:71.999971px;}
.y0_c00263{bottom:0.000000px;}
.y4_c00263{bottom:75.719970px;}
.y3_c00263{bottom:113.879954px;}
.y18_c00263{bottom:207.299917px;}
.y17_c00263{bottom:238.259905px;}
.y16_c00263{bottom:269.399892px;}
.y15_c00263{bottom:300.359880px;}
.y14_c00263{bottom:331.499867px;}
.y13_c00263{bottom:362.459855px;}
.y12_c00263{bottom:393.599843px;}
.y11_c00263{bottom:424.559830px;}
.y10_c00263{bottom:455.699818px;}
.yf_c00263{bottom:486.659805px;}
.ye_c00263{bottom:517.799793px;}
.yd_c00263{bottom:548.759780px;}
.yc_c00263{bottom:579.899768px;}
.yb_c00263{bottom:603.119759px;}
.ya_c00263{bottom:624.899750px;}
.y9_c00263{bottom:654.239738px;}
.y8_c00263{bottom:681.239728px;}
.y7_c00263{bottom:1055.999578px;}
.y6_c00263{bottom:1086.599565px;}
.y5_c00263{bottom:1117.739553px;}
.y2_c00263{bottom:1156.979537px;}
.y1_c00263{bottom:1195.859522px;}
.h2_c00263{height:54.628572px;}
.h1_c00263{height:58.651148px;}
.h5_c00263{height:65.010911px;}
.h6_c00263{height:70.628878px;}
.h4_c00263{height:70.664034px;}
.h3_c00263{height:72.562471px;}
.h0_c00263{height:1263.000000px;}
.w0_c00263{width:892.500000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:127.799949px;}
.x6_c00263{left:136.259945px;}
.x3_c00263{left:154.799938px;}
.x8_c00263{left:180.899928px;}
.x7_c00263{left:304.559878px;}
.x2_c00263{left:434.159514px;}
.x5_c00263{left:446.579821px;}
.x4_c00263{left:583.919766px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:-15.999994pt;}
.ws1_c00263{word-spacing:0.000000pt;}
._1_c00263{margin-left:-0.982555pt;}
._0_c00263{width:1.062723pt;}
._5_c00263{width:2.291625pt;}
._2_c00263{width:3.296146pt;}
._7_c00263{width:4.545773pt;}
._8_c00263{width:8.426946pt;}
._6_c00263{width:9.552094pt;}
._3_c00263{width:22.038436pt;}
._4_c00263{width:22.975145pt;}
.fs0_c00263{font-size:53.119979pt;}
.fs1_c00263{font-size:58.879976pt;}
.fs2_c00263{font-size:63.999974pt;}
.y0_c00263{bottom:0.000000pt;}
.y4_c00263{bottom:67.306640pt;}
.y3_c00263{bottom:101.226626pt;}
.y18_c00263{bottom:184.266593pt;}
.y17_c00263{bottom:211.786582pt;}
.y16_c00263{bottom:239.466571pt;}
.y15_c00263{bottom:266.986560pt;}
.y14_c00263{bottom:294.666549pt;}
.y13_c00263{bottom:322.186538pt;}
.y12_c00263{bottom:349.866527pt;}
.y11_c00263{bottom:377.386516pt;}
.y10_c00263{bottom:405.066505pt;}
.yf_c00263{bottom:432.586494pt;}
.ye_c00263{bottom:460.266483pt;}
.yd_c00263{bottom:487.786472pt;}
.yc_c00263{bottom:515.466460pt;}
.yb_c00263{bottom:536.106452pt;}
.ya_c00263{bottom:555.466444pt;}
.y9_c00263{bottom:581.546434pt;}
.y8_c00263{bottom:605.546424pt;}
.y7_c00263{bottom:938.666291pt;}
.y6_c00263{bottom:965.866280pt;}
.y5_c00263{bottom:993.546269pt;}
.y2_c00263{bottom:1028.426255pt;}
.y1_c00263{bottom:1062.986241pt;}
.h2_c00263{height:48.558731pt;}
.h1_c00263{height:52.134354pt;}
.h5_c00263{height:57.787477pt;}
.h6_c00263{height:62.781225pt;}
.h4_c00263{height:62.812475pt;}
.h3_c00263{height:64.499974pt;}
.h0_c00263{height:1122.666667pt;}
.w0_c00263{width:793.333333pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:113.599955pt;}
.x6_c00263{left:121.119952pt;}
.x3_c00263{left:137.599945pt;}
.x8_c00263{left:160.799936pt;}
.x7_c00263{left:270.719892pt;}
.x2_c00263{left:385.919568pt;}
.x5_c00263{left:396.959841pt;}
.x4_c00263{left:519.039792pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6dd59724803d4cfc23b4198.woff2')format("woff");}.ff1_c00264{font-family:ff1_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:ff2_c00264;src:url('chunks/assets/font_5c59df57ab2d96d5e64a18ba.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_ad90b96c5b3e1d9e043a1665.woff2')format("woff");}.ff3_c00264{font-family:ff3_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;}
.m0_c00264{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls2_c00264{letter-spacing:0.000000px;}
.ls1_c00264{letter-spacing:0.182640px;}
.ls0_c00264{letter-spacing:0.189300px;}
.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;}
}
.ws3_c00264{word-spacing:-14.939994px;}
.ws0_c00264{word-spacing:-12.059995px;}
.ws1_c00264{word-spacing:-9.719996px;}
.ws2_c00264{word-spacing:-8.786876px;}
.ws4_c00264{word-spacing:0.000000px;}
._11_c00264{margin-left:-9.552128px;}
._1_c00264{margin-left:-1.105374px;}
._0_c00264{width:1.478392px;}
._5_c00264{width:2.997792px;}
._e_c00264{width:4.276092px;}
._c_c00264{width:5.509999px;}
._b_c00264{width:6.608933px;}
._6_c00264{width:7.839739px;}
._4_c00264{width:9.284120px;}
._f_c00264{width:10.636499px;}
._10_c00264{width:11.760520px;}
._a_c00264{width:12.810424px;}
._9_c00264{width:13.823902px;}
._2_c00264{width:23.398550px;}
._3_c00264{width:24.484096px;}
._d_c00264{width:25.619838px;}
._7_c00264{width:56.334876px;}
._8_c00264{width:57.480586px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs4_c00264{font-size:38.879984px;}
.fs3_c00264{font-size:48.239981px;}
.fs0_c00264{font-size:59.759976px;}
.fs1_c00264{font-size:66.239974px;}
.fs2_c00264{font-size:71.999971px;}
.y0_c00264{bottom:0.000000px;}
.y4_c00264{bottom:75.900270px;}
.y3_c00264{bottom:114.060254px;}
.y2d_c00264{bottom:133.680247px;}
.y2c_c00264{bottom:141.240244px;}
.y2b_c00264{bottom:152.039939px;}
.y2a_c00264{bottom:170.399932px;}
.y29_c00264{bottom:177.959929px;}
.y28_c00264{bottom:188.399925px;}
.y27_c00264{bottom:205.499918px;}
.y26_c00264{bottom:222.779911px;}
.y25_c00264{bottom:229.619908px;}
.y24_c00264{bottom:240.959904px;}
.y22_c00264{bottom:298.199881px;}
.y23_c00264{bottom:306.479877px;}
.y21_c00264{bottom:329.339868px;}
.y20_c00264{bottom:360.299856px;}
.y1f_c00264{bottom:391.439843px;}
.y1e_c00264{bottom:422.399831px;}
.y1d_c00264{bottom:453.539819px;}
.y1c_c00264{bottom:484.499806px;}
.y1b_c00264{bottom:515.639794px;}
.y1a_c00264{bottom:546.599781px;}
.y19_c00264{bottom:577.739769px;}
.y18_c00264{bottom:608.699757px;}
.y17_c00264{bottom:639.839744px;}
.y16_c00264{bottom:670.799732px;}
.y15_c00264{bottom:701.939719px;}
.y14_c00264{bottom:732.899707px;}
.y13_c00264{bottom:764.039694px;}
.y12_c00264{bottom:794.999682px;}
.y11_c00264{bottom:825.959670px;}
.yf_c00264{bottom:857.099657px;}
.y10_c00264{bottom:865.379654px;}
.ye_c00264{bottom:888.059645px;}
.yd_c00264{bottom:919.199632px;}
.yc_c00264{bottom:950.159620px;}
.yb_c00264{bottom:981.299607px;}
.ya_c00264{bottom:1012.259595px;}
.y9_c00264{bottom:1043.399583px;}
.y8_c00264{bottom:1074.359570px;}
.y6_c00264{bottom:1105.499558px;}
.y7_c00264{bottom:1113.779554px;}
.y5_c00264{bottom:1136.459545px;}
.y2_c00264{bottom:1176.059530px;}
.y1_c00264{bottom:1196.219522px;}
.h7_c00264{height:32.064597px;}
.h6_c00264{height:38.158578px;}
.h4_c00264{height:47.344903px;}
.h8_c00264{height:49.284472px;}
.h2_c00264{height:54.628572px;}
.h1_c00264{height:58.651148px;}
.h3_c00264{height:70.628878px;}
.h5_c00264{height:70.664034px;}
.h0_c00264{height:1263.000000px;}
.w0_c00264{width:892.500000px;}
.x0_c00264{left:0.000000px;}
.x5_c00264{left:127.620262px;}
.xd_c00264{left:137.339945px;}
.x6_c00264{left:180.719928px;}
.x1_c00264{left:181.799927px;}
.x2_c00264{left:329.039408px;}
.x7_c00264{left:336.779865px;}
.x8_c00264{left:349.019860px;}
.x4_c00264{left:433.979826px;}
.xb_c00264{left:618.659753px;}
.xc_c00264{left:630.899748px;}
.x9_c00264{left:680.219728px;}
.xa_c00264{left:692.459723px;}
.x3_c00264{left:765.359694px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls2_c00264{letter-spacing:0.000000pt;}
.ls1_c00264{letter-spacing:0.162347pt;}
.ls0_c00264{letter-spacing:0.168267pt;}
.ws3_c00264{word-spacing:-13.279995pt;}
.ws0_c00264{word-spacing:-10.719996pt;}
.ws1_c00264{word-spacing:-8.639997pt;}
.ws2_c00264{word-spacing:-7.810557pt;}
.ws4_c00264{word-spacing:0.000000pt;}
._11_c00264{margin-left:-8.490780pt;}
._1_c00264{margin-left:-0.982555pt;}
._0_c00264{width:1.314126pt;}
._5_c00264{width:2.664704pt;}
._e_c00264{width:3.800971pt;}
._c_c00264{width:4.897777pt;}
._b_c00264{width:5.874607pt;}
._6_c00264{width:6.968657pt;}
._4_c00264{width:8.252551pt;}
._f_c00264{width:9.454666pt;}
._10_c00264{width:10.453795pt;}
._a_c00264{width:11.387044pt;}
._9_c00264{width:12.287912pt;}
._2_c00264{width:20.798711pt;}
._3_c00264{width:21.763641pt;}
._d_c00264{width:22.773190pt;}
._7_c00264{width:50.075445pt;}
._8_c00264{width:51.093854pt;}
.fs4_c00264{font-size:34.559986pt;}
.fs3_c00264{font-size:42.879983pt;}
.fs0_c00264{font-size:53.119979pt;}
.fs1_c00264{font-size:58.879976pt;}
.fs2_c00264{font-size:63.999974pt;}
.y0_c00264{bottom:0.000000pt;}
.y4_c00264{bottom:67.466906pt;}
.y3_c00264{bottom:101.386893pt;}
.y2d_c00264{bottom:118.826886pt;}
.y2c_c00264{bottom:125.546883pt;}
.y2b_c00264{bottom:135.146613pt;}
.y2a_c00264{bottom:151.466606pt;}
.y29_c00264{bottom:158.186603pt;}
.y28_c00264{bottom:167.466600pt;}
.y27_c00264{bottom:182.666594pt;}
.y26_c00264{bottom:198.026587pt;}
.y25_c00264{bottom:204.106585pt;}
.y24_c00264{bottom:214.186581pt;}
.y22_c00264{bottom:265.066561pt;}
.y23_c00264{bottom:272.426558pt;}
.y21_c00264{bottom:292.746550pt;}
.y20_c00264{bottom:320.266539pt;}
.y1f_c00264{bottom:347.946527pt;}
.y1e_c00264{bottom:375.466516pt;}
.y1d_c00264{bottom:403.146505pt;}
.y1c_c00264{bottom:430.666494pt;}
.y1b_c00264{bottom:458.346483pt;}
.y1a_c00264{bottom:485.866472pt;}
.y19_c00264{bottom:513.546461pt;}
.y18_c00264{bottom:541.066450pt;}
.y17_c00264{bottom:568.746439pt;}
.y16_c00264{bottom:596.266428pt;}
.y15_c00264{bottom:623.946417pt;}
.y14_c00264{bottom:651.466406pt;}
.y13_c00264{bottom:679.146395pt;}
.y12_c00264{bottom:706.666384pt;}
.y11_c00264{bottom:734.186373pt;}
.yf_c00264{bottom:761.866362pt;}
.y10_c00264{bottom:769.226359pt;}
.ye_c00264{bottom:789.386351pt;}
.yd_c00264{bottom:817.066340pt;}
.yc_c00264{bottom:844.586329pt;}
.yb_c00264{bottom:872.266318pt;}
.ya_c00264{bottom:899.786307pt;}
.y9_c00264{bottom:927.466296pt;}
.y8_c00264{bottom:954.986285pt;}
.y6_c00264{bottom:982.666274pt;}
.y7_c00264{bottom:990.026271pt;}
.y5_c00264{bottom:1010.186263pt;}
.y2_c00264{bottom:1045.386249pt;}
.y1_c00264{bottom:1063.306241pt;}
.h7_c00264{height:28.501864pt;}
.h6_c00264{height:33.918736pt;}
.h4_c00264{height:42.084358pt;}
.h8_c00264{height:43.808420pt;}
.h2_c00264{height:48.558731pt;}
.h1_c00264{height:52.134354pt;}
.h3_c00264{height:62.781225pt;}
.h5_c00264{height:62.812475pt;}
.h0_c00264{height:1122.666667pt;}
.w0_c00264{width:793.333333pt;}
.x0_c00264{left:0.000000pt;}
.x5_c00264{left:113.440233pt;}
.xd_c00264{left:122.079951pt;}
.x6_c00264{left:160.639936pt;}
.x1_c00264{left:161.599935pt;}
.x2_c00264{left:292.479474pt;}
.x7_c00264{left:299.359880pt;}
.x8_c00264{left:310.239876pt;}
.x4_c00264{left:385.759846pt;}
.xb_c00264{left:549.919780pt;}
.xc_c00264{left:560.799776pt;}
.x9_c00264{left:604.639758pt;}
.xa_c00264{left:615.519754pt;}
.x3_c00264{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f20be04a3846860dd2b48eb3.woff2')format("woff");}.ff1_c00265{font-family:ff1_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:ff2_c00265;src:url('chunks/assets/font_687e2eac9ab2f846e6e3114a.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_316bbf99ce71d1f489142238.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;}
.m0_c00265{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls2_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.182640px;}
.ls1_c00265{letter-spacing:0.189300px;}
.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;}
}
.ws3_c00265{word-spacing:-14.939994px;}
.ws0_c00265{word-spacing:-12.059995px;}
.ws2_c00265{word-spacing:-9.719996px;}
.ws1_c00265{word-spacing:-8.786876px;}
.ws4_c00265{word-spacing:0.000000px;}
._10_c00265{margin-left:-9.672329px;}
._1_c00265{margin-left:-1.105374px;}
._0_c00265{width:1.195563px;}
._5_c00265{width:2.535705px;}
._f_c00265{width:3.538088px;}
._2_c00265{width:4.621375px;}
._3_c00265{width:5.630200px;}
._b_c00265{width:6.690574px;}
._c_c00265{width:8.630965px;}
._6_c00265{width:11.647259px;}
._d_c00265{width:13.450673px;}
._e_c00265{width:14.575241px;}
._a_c00265{width:16.695025px;}
._7_c00265{width:24.614958px;}
._4_c00265{width:26.279036px;}
._9_c00265{width:28.739130px;}
._8_c00265{width:29.895307px;}
.fc0_c00265{color:rgb(0,0,0);}
.fs4_c00265{font-size:38.879984px;}
.fs3_c00265{font-size:48.239981px;}
.fs0_c00265{font-size:59.759976px;}
.fs1_c00265{font-size:66.239974px;}
.fs2_c00265{font-size:71.999971px;}
.y0_c00265{bottom:0.000000px;}
.y4_c00265{bottom:75.899970px;}
.y3_c00265{bottom:114.059954px;}
.y29_c00265{bottom:133.679947px;}
.y28_c00265{bottom:151.679939px;}
.y27_c00265{bottom:158.519937px;}
.y26_c00265{bottom:168.959932px;}
.y25_c00265{bottom:186.239926px;}
.y24_c00265{bottom:193.079923px;}
.y23_c00265{bottom:203.519919px;}
.y22_c00265{bottom:220.979912px;}
.y21_c00265{bottom:228.539909px;}
.y20_c00265{bottom:239.879904px;}
.y1f_c00265{bottom:404.039838px;}
.y1d_c00265{bottom:435.179826px;}
.y1e_c00265{bottom:443.459823px;}
.y1c_c00265{bottom:466.139814px;}
.y1b_c00265{bottom:497.279801px;}
.y1a_c00265{bottom:528.239789px;}
.y18_c00265{bottom:559.379776px;}
.y19_c00265{bottom:567.659773px;}
.y17_c00265{bottom:590.339764px;}
.y16_c00265{bottom:621.479751px;}
.y15_c00265{bottom:652.439739px;}
.y14_c00265{bottom:683.579727px;}
.y13_c00265{bottom:714.539714px;}
.y12_c00265{bottom:745.679702px;}
.y11_c00265{bottom:776.639689px;}
.y10_c00265{bottom:807.779677px;}
.yf_c00265{bottom:838.739665px;}
.ye_c00265{bottom:869.879652px;}
.yc_c00265{bottom:900.839640px;}
.yd_c00265{bottom:909.119636px;}
.yb_c00265{bottom:931.979627px;}
.ya_c00265{bottom:962.939615px;}
.y9_c00265{bottom:994.079602px;}
.y8_c00265{bottom:1025.039590px;}
.y7_c00265{bottom:1056.179578px;}
.y6_c00265{bottom:1087.139565px;}
.y5_c00265{bottom:1118.279553px;}
.y2_c00265{bottom:1157.159537px;}
.y1_c00265{bottom:1196.039522px;}
.h6_c00265{height:32.064597px;}
.h7_c00265{height:38.158578px;}
.h5_c00265{height:47.344903px;}
.h8_c00265{height:49.284472px;}
.h2_c00265{height:54.628572px;}
.h1_c00265{height:58.651148px;}
.h4_c00265{height:70.628878px;}
.h3_c00265{height:70.664034px;}
.h0_c00265{height:1263.000000px;}
.w0_c00265{width:892.500000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:127.619949px;}
.x9_c00265{left:137.339945px;}
.x3_c00265{left:180.719928px;}
.x7_c00265{left:218.159913px;}
.x8_c00265{left:230.399908px;}
.x2_c00265{left:433.979514px;}
.x4_c00265{left:445.859822px;}
.x5_c00265{left:585.359766px;}
.x6_c00265{left:597.599761px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls2_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.162347pt;}
.ls1_c00265{letter-spacing:0.168267pt;}
.ws3_c00265{word-spacing:-13.279995pt;}
.ws0_c00265{word-spacing:-10.719996pt;}
.ws2_c00265{word-spacing:-8.639997pt;}
.ws1_c00265{word-spacing:-7.810557pt;}
.ws4_c00265{word-spacing:0.000000pt;}
._10_c00265{margin-left:-8.597626pt;}
._1_c00265{margin-left:-0.982555pt;}
._0_c00265{width:1.062723pt;}
._5_c00265{width:2.253960pt;}
._f_c00265{width:3.144967pt;}
._2_c00265{width:4.107889pt;}
._3_c00265{width:5.004622pt;}
._b_c00265{width:5.947177pt;}
._c_c00265{width:7.671969pt;}
._6_c00265{width:10.353119pt;}
._d_c00265{width:11.956154pt;}
._e_c00265{width:12.955770pt;}
._a_c00265{width:14.840022pt;}
._7_c00265{width:21.879963pt;}
._4_c00265{width:23.359143pt;}
._9_c00265{width:25.545894pt;}
._8_c00265{width:26.573607pt;}
.fs4_c00265{font-size:34.559986pt;}
.fs3_c00265{font-size:42.879983pt;}
.fs0_c00265{font-size:53.119979pt;}
.fs1_c00265{font-size:58.879976pt;}
.fs2_c00265{font-size:63.999974pt;}
.y0_c00265{bottom:0.000000pt;}
.y4_c00265{bottom:67.466640pt;}
.y3_c00265{bottom:101.386626pt;}
.y29_c00265{bottom:118.826619pt;}
.y28_c00265{bottom:134.826613pt;}
.y27_c00265{bottom:140.906610pt;}
.y26_c00265{bottom:150.186607pt;}
.y25_c00265{bottom:165.546600pt;}
.y24_c00265{bottom:171.626598pt;}
.y23_c00265{bottom:180.906594pt;}
.y22_c00265{bottom:196.426588pt;}
.y21_c00265{bottom:203.146585pt;}
.y20_c00265{bottom:213.226581pt;}
.y1f_c00265{bottom:359.146523pt;}
.y1d_c00265{bottom:386.826512pt;}
.y1e_c00265{bottom:394.186509pt;}
.y1c_c00265{bottom:414.346501pt;}
.y1b_c00265{bottom:442.026490pt;}
.y1a_c00265{bottom:469.546479pt;}
.y18_c00265{bottom:497.226468pt;}
.y19_c00265{bottom:504.586465pt;}
.y17_c00265{bottom:524.746457pt;}
.y16_c00265{bottom:552.426446pt;}
.y15_c00265{bottom:579.946435pt;}
.y14_c00265{bottom:607.626424pt;}
.y13_c00265{bottom:635.146413pt;}
.y12_c00265{bottom:662.826402pt;}
.y11_c00265{bottom:690.346391pt;}
.y10_c00265{bottom:718.026379pt;}
.yf_c00265{bottom:745.546368pt;}
.ye_c00265{bottom:773.226357pt;}
.yc_c00265{bottom:800.746346pt;}
.yd_c00265{bottom:808.106343pt;}
.yb_c00265{bottom:828.426335pt;}
.ya_c00265{bottom:855.946324pt;}
.y9_c00265{bottom:883.626313pt;}
.y8_c00265{bottom:911.146302pt;}
.y7_c00265{bottom:938.826291pt;}
.y6_c00265{bottom:966.346280pt;}
.y5_c00265{bottom:994.026269pt;}
.y2_c00265{bottom:1028.586255pt;}
.y1_c00265{bottom:1063.146241pt;}
.h6_c00265{height:28.501864pt;}
.h7_c00265{height:33.918736pt;}
.h5_c00265{height:42.084358pt;}
.h8_c00265{height:43.808420pt;}
.h2_c00265{height:48.558731pt;}
.h1_c00265{height:52.134354pt;}
.h4_c00265{height:62.781225pt;}
.h3_c00265{height:62.812475pt;}
.h0_c00265{height:1122.666667pt;}
.w0_c00265{width:793.333333pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:113.439955pt;}
.x9_c00265{left:122.079951pt;}
.x3_c00265{left:160.639936pt;}
.x7_c00265{left:193.919922pt;}
.x8_c00265{left:204.799918pt;}
.x2_c00265{left:385.759568pt;}
.x4_c00265{left:396.319841pt;}
.x5_c00265{left:520.319792pt;}
.x6_c00265{left:531.199788pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40219b83890ac1ed885add87.woff2')format("woff");}.ff1_c00266{font-family:ff1_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:ff2_c00266;src:url('chunks/assets/font_43f58ae1e43ce260b2499697.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_3ef04a5383ffb78f652010f9.woff2')format("woff");}.ff3_c00266{font-family:ff3_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:ff4_c00266;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00266{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls3_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:0.153901px;}
.ls2_c00266{letter-spacing:0.182640px;}
.ls1_c00266{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00266{word-spacing:-14.939994px;}
.ws0_c00266{word-spacing:-12.059995px;}
.ws1_c00266{word-spacing:-9.719996px;}
.ws3_c00266{word-spacing:-8.786876px;}
.ws4_c00266{word-spacing:0.000000px;}
._7_c00266{margin-left:-12.716934px;}
._1_c00266{margin-left:-1.105374px;}
._0_c00266{width:1.478392px;}
._4_c00266{width:3.722604px;}
._2_c00266{width:13.507528px;}
._3_c00266{width:15.009094px;}
._5_c00266{width:19.281374px;}
._6_c00266{width:20.401361px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs4_c00266{font-size:38.879984px;}
.fs3_c00266{font-size:48.239981px;}
.fs0_c00266{font-size:59.759976px;}
.fs1_c00266{font-size:66.239974px;}
.fs2_c00266{font-size:71.999971px;}
.y0_c00266{bottom:0.000000px;}
.y4_c00266{bottom:75.720270px;}
.y3_c00266{bottom:113.880254px;}
.y1e_c00266{bottom:133.499947px;}
.y1d_c00266{bottom:151.859939px;}
.y1c_c00266{bottom:159.419936px;}
.y1b_c00266{bottom:169.859932px;}
.y1a_c00266{bottom:187.139925px;}
.y19_c00266{bottom:193.979922px;}
.y18_c00266{bottom:205.319918px;}
.y17_c00266{bottom:279.119888px;}
.y15_c00266{bottom:310.259876px;}
.y16_c00266{bottom:318.539873px;}
.y14_c00266{bottom:341.219864px;}
.y13_c00266{bottom:372.359851px;}
.y12_c00266{bottom:403.319839px;}
.y11_c00266{bottom:434.459826px;}
.y10_c00266{bottom:465.419814px;}
.yf_c00266{bottom:488.639805px;}
.ye_c00266{bottom:510.419796px;}
.yd_c00266{bottom:535.799786px;}
.yc_c00266{bottom:808.859676px;}
.ya_c00266{bottom:840.179664px;}
.yb_c00266{bottom:848.459661px;}
.y9_c00266{bottom:871.319651px;}
.y8_c00266{bottom:902.279639px;}
.y7_c00266{bottom:925.679630px;}
.y6_c00266{bottom:947.459621px;}
.y5_c00266{bottom:972.659611px;}
.y2_c00266{bottom:1175.879530px;}
.y1_c00266{bottom:1196.039522px;}
.ha_c00266{height:32.064597px;}
.h8_c00266{height:38.158578px;}
.h5_c00266{height:47.344903px;}
.hb_c00266{height:49.284472px;}
.h2_c00266{height:54.628572px;}
.h9_c00266{height:58.621969px;}
.h1_c00266{height:58.651148px;}
.h4_c00266{height:65.010911px;}
.h7_c00266{height:70.628878px;}
.h3_c00266{height:70.664034px;}
.h6_c00266{height:72.562471px;}
.h0_c00266{height:1263.000000px;}
.w0_c00266{width:892.500000px;}
.x0_c00266{left:0.000000px;}
.x5_c00266{left:127.800262px;}
.x7_c00266{left:132.479947px;}
.x10_c00266{left:137.519945px;}
.x9_c00266{left:180.899928px;}
.x1_c00266{left:181.979927px;}
.x8_c00266{left:255.059898px;}
.xd_c00266{left:325.259870px;}
.x2_c00266{left:329.219408px;}
.x4_c00266{left:434.159826px;}
.xe_c00266{left:575.279770px;}
.xf_c00266{left:587.519765px;}
.xa_c00266{left:680.759728px;}
.xb_c00266{left:692.999723px;}
.xc_c00266{left:717.659713px;}
.x3_c00266{left:765.539694px;}
.x6_c00266{left:775.799690px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls3_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:0.136801pt;}
.ls2_c00266{letter-spacing:0.162347pt;}
.ls1_c00266{letter-spacing:0.168267pt;}
.ws2_c00266{word-spacing:-13.279995pt;}
.ws0_c00266{word-spacing:-10.719996pt;}
.ws1_c00266{word-spacing:-8.639997pt;}
.ws3_c00266{word-spacing:-7.810557pt;}
.ws4_c00266{word-spacing:0.000000pt;}
._7_c00266{margin-left:-11.303941pt;}
._1_c00266{margin-left:-0.982555pt;}
._0_c00266{width:1.314126pt;}
._4_c00266{width:3.308981pt;}
._2_c00266{width:12.006692pt;}
._3_c00266{width:13.341417pt;}
._5_c00266{width:17.138999pt;}
._6_c00266{width:18.134543pt;}
.fs4_c00266{font-size:34.559986pt;}
.fs3_c00266{font-size:42.879983pt;}
.fs0_c00266{font-size:53.119979pt;}
.fs1_c00266{font-size:58.879976pt;}
.fs2_c00266{font-size:63.999974pt;}
.y0_c00266{bottom:0.000000pt;}
.y4_c00266{bottom:67.306906pt;}
.y3_c00266{bottom:101.226893pt;}
.y1e_c00266{bottom:118.666619pt;}
.y1d_c00266{bottom:134.986613pt;}
.y1c_c00266{bottom:141.706610pt;}
.y1b_c00266{bottom:150.986606pt;}
.y1a_c00266{bottom:166.346600pt;}
.y19_c00266{bottom:172.426598pt;}
.y18_c00266{bottom:182.506594pt;}
.y17_c00266{bottom:248.106567pt;}
.y15_c00266{bottom:275.786556pt;}
.y16_c00266{bottom:283.146553pt;}
.y14_c00266{bottom:303.306545pt;}
.y13_c00266{bottom:330.986534pt;}
.y12_c00266{bottom:358.506523pt;}
.y11_c00266{bottom:386.186512pt;}
.y10_c00266{bottom:413.706501pt;}
.yf_c00266{bottom:434.346493pt;}
.ye_c00266{bottom:453.706485pt;}
.yd_c00266{bottom:476.266476pt;}
.yc_c00266{bottom:718.986379pt;}
.ya_c00266{bottom:746.826368pt;}
.yb_c00266{bottom:754.186365pt;}
.y9_c00266{bottom:774.506357pt;}
.y8_c00266{bottom:802.026346pt;}
.y7_c00266{bottom:822.826338pt;}
.y6_c00266{bottom:842.186330pt;}
.y5_c00266{bottom:864.586321pt;}
.y2_c00266{bottom:1045.226249pt;}
.y1_c00266{bottom:1063.146241pt;}
.ha_c00266{height:28.501864pt;}
.h8_c00266{height:33.918736pt;}
.h5_c00266{height:42.084358pt;}
.hb_c00266{height:43.808420pt;}
.h2_c00266{height:48.558731pt;}
.h9_c00266{height:52.108417pt;}
.h1_c00266{height:52.134354pt;}
.h4_c00266{height:57.787477pt;}
.h7_c00266{height:62.781225pt;}
.h3_c00266{height:62.812475pt;}
.h6_c00266{height:64.499974pt;}
.h0_c00266{height:1122.666667pt;}
.w0_c00266{width:793.333333pt;}
.x0_c00266{left:0.000000pt;}
.x5_c00266{left:113.600233pt;}
.x7_c00266{left:117.759953pt;}
.x10_c00266{left:122.239951pt;}
.x9_c00266{left:160.799936pt;}
.x1_c00266{left:161.759935pt;}
.x8_c00266{left:226.719909pt;}
.xd_c00266{left:289.119884pt;}
.x2_c00266{left:292.639474pt;}
.x4_c00266{left:385.919846pt;}
.xe_c00266{left:511.359795pt;}
.xf_c00266{left:522.239791pt;}
.xa_c00266{left:605.119758pt;}
.xb_c00266{left:615.999754pt;}
.xc_c00266{left:637.919745pt;}
.x3_c00266{left:680.479728pt;}
.x6_c00266{left:689.599724pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ce4bd6f02b23168613a844d.woff2')format("woff");}.ff1_c00267{font-family:ff1_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:ff2_c00267;src:url('chunks/assets/font_0d4d5dfd2ac4b7dd69d3cae6.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_c11b9c4b703fbcad2872958d.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;line-height:1.311035;font-style:normal;font-weight:normal;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00267{font-family:ff5_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;}
.m0_c00267{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls2_c00267{letter-spacing:0.000000px;}
.ls0_c00267{letter-spacing:0.153901px;}
.ls1_c00267{letter-spacing:0.182640px;}
.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;}
}
.ws0_c00267{word-spacing:-17.999993px;}
.ws1_c00267{word-spacing:-12.059995px;}
.ws2_c00267{word-spacing:-8.786876px;}
.ws3_c00267{word-spacing:0.000000px;}
._9_c00267{margin-left:-12.716934px;}
._1_c00267{margin-left:-1.105374px;}
._0_c00267{width:1.195563px;}
._8_c00267{width:2.640736px;}
._2_c00267{width:3.698948px;}
._3_c00267{width:4.953905px;}
._7_c00267{width:12.060596px;}
._4_c00267{width:23.039455px;}
._5_c00267{width:35.983425px;}
._6_c00267{width:37.549299px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs4_c00267{font-size:38.879984px;}
.fs3_c00267{font-size:48.239981px;}
.fs0_c00267{font-size:59.759976px;}
.fs1_c00267{font-size:66.239974px;}
.fs2_c00267{font-size:71.999971px;}
.y0_c00267{bottom:0.000000px;}
.y4_c00267{bottom:75.719970px;}
.y3_c00267{bottom:113.879954px;}
.y1b_c00267{bottom:133.499947px;}
.y1a_c00267{bottom:151.859939px;}
.y19_c00267{bottom:170.219932px;}
.y18_c00267{bottom:177.779929px;}
.y17_c00267{bottom:189.119924px;}
.y15_c00267{bottom:216.479913px;}
.y16_c00267{bottom:224.759910px;}
.y14_c00267{bottom:247.619901px;}
.y13_c00267{bottom:278.579889px;}
.y12_c00267{bottom:309.719876px;}
.y11_c00267{bottom:340.679864px;}
.y10_c00267{bottom:371.819851px;}
.yf_c00267{bottom:402.779839px;}
.ye_c00267{bottom:433.919826px;}
.yd_c00267{bottom:464.519814px;}
.yc_c00267{bottom:494.759802px;}
.yb_c00267{bottom:523.379791px;}
.ya_c00267{bottom:552.899779px;}
.y9_c00267{bottom:579.539768px;}
.y8_c00267{bottom:1055.999578px;}
.y6_c00267{bottom:1086.959565px;}
.y7_c00267{bottom:1095.239562px;}
.y5_c00267{bottom:1118.099553px;}
.y2_c00267{bottom:1156.979537px;}
.y1_c00267{bottom:1195.859522px;}
.h8_c00267{height:32.064597px;}
.h4_c00267{height:47.344903px;}
.ha_c00267{height:49.284472px;}
.h2_c00267{height:54.628572px;}
.h9_c00267{height:58.621969px;}
.h1_c00267{height:58.651148px;}
.h6_c00267{height:65.010911px;}
.h7_c00267{height:70.628878px;}
.h3_c00267{height:70.664034px;}
.h5_c00267{height:72.562471px;}
.h0_c00267{height:1263.000000px;}
.w0_c00267{width:892.500000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:127.799949px;}
.xb_c00267{left:137.519945px;}
.x3_c00267{left:180.899928px;}
.x7_c00267{left:201.599919px;}
.x9_c00267{left:225.719910px;}
.xa_c00267{left:237.959905px;}
.x8_c00267{left:255.059898px;}
.x2_c00267{left:434.159514px;}
.x6_c00267{left:667.619733px;}
.x4_c00267{left:739.079704px;}
.x5_c00267{left:751.319699px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls2_c00267{letter-spacing:0.000000pt;}
.ls0_c00267{letter-spacing:0.136801pt;}
.ls1_c00267{letter-spacing:0.162347pt;}
.ws0_c00267{word-spacing:-15.999994pt;}
.ws1_c00267{word-spacing:-10.719996pt;}
.ws2_c00267{word-spacing:-7.810557pt;}
.ws3_c00267{word-spacing:0.000000pt;}
._9_c00267{margin-left:-11.303941pt;}
._1_c00267{margin-left:-0.982555pt;}
._0_c00267{width:1.062723pt;}
._8_c00267{width:2.347321pt;}
._2_c00267{width:3.287954pt;}
._3_c00267{width:4.403471pt;}
._7_c00267{width:10.720530pt;}
._4_c00267{width:20.479516pt;}
._5_c00267{width:31.985267pt;}
._6_c00267{width:33.377155pt;}
.fs4_c00267{font-size:34.559986pt;}
.fs3_c00267{font-size:42.879983pt;}
.fs0_c00267{font-size:53.119979pt;}
.fs1_c00267{font-size:58.879976pt;}
.fs2_c00267{font-size:63.999974pt;}
.y0_c00267{bottom:0.000000pt;}
.y4_c00267{bottom:67.306640pt;}
.y3_c00267{bottom:101.226626pt;}
.y1b_c00267{bottom:118.666619pt;}
.y1a_c00267{bottom:134.986613pt;}
.y19_c00267{bottom:151.306606pt;}
.y18_c00267{bottom:158.026603pt;}
.y17_c00267{bottom:168.106599pt;}
.y15_c00267{bottom:192.426590pt;}
.y16_c00267{bottom:199.786587pt;}
.y14_c00267{bottom:220.106579pt;}
.y13_c00267{bottom:247.626568pt;}
.y12_c00267{bottom:275.306557pt;}
.y11_c00267{bottom:302.826546pt;}
.y10_c00267{bottom:330.506534pt;}
.yf_c00267{bottom:358.026523pt;}
.ye_c00267{bottom:385.706512pt;}
.yd_c00267{bottom:412.906502pt;}
.yc_c00267{bottom:439.786491pt;}
.yb_c00267{bottom:465.226481pt;}
.ya_c00267{bottom:491.466470pt;}
.y9_c00267{bottom:515.146461pt;}
.y8_c00267{bottom:938.666291pt;}
.y6_c00267{bottom:966.186280pt;}
.y7_c00267{bottom:973.546277pt;}
.y5_c00267{bottom:993.866269pt;}
.y2_c00267{bottom:1028.426255pt;}
.y1_c00267{bottom:1062.986241pt;}
.h8_c00267{height:28.501864pt;}
.h4_c00267{height:42.084358pt;}
.ha_c00267{height:43.808420pt;}
.h2_c00267{height:48.558731pt;}
.h9_c00267{height:52.108417pt;}
.h1_c00267{height:52.134354pt;}
.h6_c00267{height:57.787477pt;}
.h7_c00267{height:62.781225pt;}
.h3_c00267{height:62.812475pt;}
.h5_c00267{height:64.499974pt;}
.h0_c00267{height:1122.666667pt;}
.w0_c00267{width:793.333333pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:113.599955pt;}
.xb_c00267{left:122.239951pt;}
.x3_c00267{left:160.799936pt;}
.x7_c00267{left:179.199928pt;}
.x9_c00267{left:200.639920pt;}
.xa_c00267{left:211.519915pt;}
.x8_c00267{left:226.719909pt;}
.x2_c00267{left:385.919568pt;}
.x6_c00267{left:593.439763pt;}
.x4_c00267{left:656.959737pt;}
.x5_c00267{left:667.839733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1488a641bbec6847fe5c6f1e.woff2')format("woff");}.ff1_c00268{font-family:ff1_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:ff2_c00268;src:url('chunks/assets/font_4c558a098b615709f0f1d280.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00268{font-family:ff3_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:ff4_c00268;src:url('chunks/assets/font_5d7c11f69ead785180f66ada.woff2')format("woff");}.ff4_c00268{font-family:ff4_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;}
.m0_c00268{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls2_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:0.153901px;}
.ls1_c00268{letter-spacing:0.182640px;}
.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;}
}
.ws0_c00268{word-spacing:-16.559993px;}
.ws1_c00268{word-spacing:-12.059995px;}
.ws2_c00268{word-spacing:-8.786876px;}
.ws3_c00268{word-spacing:0.000000px;}
._6_c00268{margin-left:-3.571519px;}
._1_c00268{margin-left:-1.105374px;}
._0_c00268{width:1.478392px;}
._5_c00268{width:10.849294px;}
._4_c00268{width:12.086429px;}
._2_c00268{width:14.032990px;}
._3_c00268{width:15.241343px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs4_c00268{font-size:38.879984px;}
.fs3_c00268{font-size:48.239981px;}
.fs0_c00268{font-size:59.759976px;}
.fs1_c00268{font-size:66.239974px;}
.fs2_c00268{font-size:71.999971px;}
.y0_c00268{bottom:0.000000px;}
.y4_c00268{bottom:75.720270px;}
.y3_c00268{bottom:113.880254px;}
.y1f_c00268{bottom:133.499947px;}
.y1e_c00268{bottom:151.859939px;}
.y1d_c00268{bottom:170.219932px;}
.y1c_c00268{bottom:177.779929px;}
.y1b_c00268{bottom:188.219925px;}
.y1a_c00268{bottom:205.679918px;}
.y19_c00268{bottom:213.239915px;}
.y18_c00268{bottom:224.579910px;}
.y17_c00268{bottom:264.899894px;}
.y16_c00268{bottom:295.859882px;}
.y15_c00268{bottom:326.999869px;}
.y14_c00268{bottom:357.959857px;}
.y13_c00268{bottom:389.099844px;}
.y12_c00268{bottom:412.679835px;}
.y11_c00268{bottom:434.459826px;}
.y10_c00268{bottom:456.239818px;}
.yf_c00268{bottom:481.619807px;}
.ye_c00268{bottom:786.179686px;}
.yc_c00268{bottom:817.499673px;}
.yd_c00268{bottom:825.779670px;}
.yb_c00268{bottom:848.639661px;}
.ya_c00268{bottom:879.599648px;}
.y9_c00268{bottom:910.379636px;}
.y8_c00268{bottom:933.959626px;}
.y7_c00268{bottom:955.739618px;}
.y6_c00268{bottom:985.079606px;}
.y5_c00268{bottom:1012.079595px;}
.y2_c00268{bottom:1175.879530px;}
.y1_c00268{bottom:1196.039522px;}
.h7_c00268{height:32.064597px;}
.h6_c00268{height:47.344903px;}
.h8_c00268{height:49.284472px;}
.h2_c00268{height:54.628572px;}
.h1_c00268{height:58.651148px;}
.h4_c00268{height:65.010911px;}
.h5_c00268{height:70.664034px;}
.h3_c00268{height:72.562471px;}
.h0_c00268{height:1263.000000px;}
.w0_c00268{width:892.500000px;}
.x0_c00268{left:0.000000px;}
.x5_c00268{left:127.800262px;}
.xd_c00268{left:129.959948px;}
.x10_c00268{left:137.519945px;}
.x7_c00268{left:143.999942px;}
.x9_c00268{left:180.899928px;}
.x1_c00268{left:181.979927px;}
.xa_c00268{left:274.679890px;}
.xb_c00268{left:286.919885px;}
.x2_c00268{left:329.219408px;}
.xe_c00268{left:334.979866px;}
.x8_c00268{left:337.139865px;}
.x4_c00268{left:434.159826px;}
.xf_c00268{left:446.579821px;}
.xc_c00268{left:724.499797px;}
.x6_c00268{left:736.919705px;}
.x3_c00268{left:765.539694px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls2_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:0.136801pt;}
.ls1_c00268{letter-spacing:0.162347pt;}
.ws0_c00268{word-spacing:-14.719994pt;}
.ws1_c00268{word-spacing:-10.719996pt;}
.ws2_c00268{word-spacing:-7.810557pt;}
.ws3_c00268{word-spacing:0.000000pt;}
._6_c00268{margin-left:-3.174684pt;}
._1_c00268{margin-left:-0.982555pt;}
._0_c00268{width:1.314126pt;}
._5_c00268{width:9.643817pt;}
._4_c00268{width:10.743493pt;}
._2_c00268{width:12.473769pt;}
._3_c00268{width:13.547860pt;}
.fs4_c00268{font-size:34.559986pt;}
.fs3_c00268{font-size:42.879983pt;}
.fs0_c00268{font-size:53.119979pt;}
.fs1_c00268{font-size:58.879976pt;}
.fs2_c00268{font-size:63.999974pt;}
.y0_c00268{bottom:0.000000pt;}
.y4_c00268{bottom:67.306906pt;}
.y3_c00268{bottom:101.226893pt;}
.y1f_c00268{bottom:118.666619pt;}
.y1e_c00268{bottom:134.986613pt;}
.y1d_c00268{bottom:151.306606pt;}
.y1c_c00268{bottom:158.026603pt;}
.y1b_c00268{bottom:167.306600pt;}
.y1a_c00268{bottom:182.826594pt;}
.y19_c00268{bottom:189.546591pt;}
.y18_c00268{bottom:199.626587pt;}
.y17_c00268{bottom:235.466572pt;}
.y16_c00268{bottom:262.986561pt;}
.y15_c00268{bottom:290.666550pt;}
.y14_c00268{bottom:318.186539pt;}
.y13_c00268{bottom:345.866528pt;}
.y12_c00268{bottom:366.826520pt;}
.y11_c00268{bottom:386.186512pt;}
.y10_c00268{bottom:405.546504pt;}
.yf_c00268{bottom:428.106495pt;}
.ye_c00268{bottom:698.826387pt;}
.yc_c00268{bottom:726.666376pt;}
.yd_c00268{bottom:734.026373pt;}
.yb_c00268{bottom:754.346365pt;}
.ya_c00268{bottom:781.866354pt;}
.y9_c00268{bottom:809.226343pt;}
.y8_c00268{bottom:830.186335pt;}
.y7_c00268{bottom:849.546327pt;}
.y6_c00268{bottom:875.626316pt;}
.y5_c00268{bottom:899.626307pt;}
.y2_c00268{bottom:1045.226249pt;}
.y1_c00268{bottom:1063.146241pt;}
.h7_c00268{height:28.501864pt;}
.h6_c00268{height:42.084358pt;}
.h8_c00268{height:43.808420pt;}
.h2_c00268{height:48.558731pt;}
.h1_c00268{height:52.134354pt;}
.h4_c00268{height:57.787477pt;}
.h5_c00268{height:62.812475pt;}
.h3_c00268{height:64.499974pt;}
.h0_c00268{height:1122.666667pt;}
.w0_c00268{width:793.333333pt;}
.x0_c00268{left:0.000000pt;}
.x5_c00268{left:113.600233pt;}
.xd_c00268{left:115.519954pt;}
.x10_c00268{left:122.239951pt;}
.x7_c00268{left:127.999949pt;}
.x9_c00268{left:160.799936pt;}
.x1_c00268{left:161.759935pt;}
.xa_c00268{left:244.159902pt;}
.xb_c00268{left:255.039898pt;}
.x2_c00268{left:292.639474pt;}
.xe_c00268{left:297.759881pt;}
.x8_c00268{left:299.679880pt;}
.x4_c00268{left:385.919846pt;}
.xf_c00268{left:396.959841pt;}
.xc_c00268{left:643.999819pt;}
.x6_c00268{left:655.039738pt;}
.x3_c00268{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d42465ca50380cbdce8faf03.woff2')format("woff");}.ff1_c00269{font-family:ff1_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:ff2_c00269;src:url('chunks/assets/font_076c8106b968e97045a07ed5.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_11df2d8476ff202b9e160bf7.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.311035;font-style:normal;font-weight:normal;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_f43b0ba45b1d3842af27130d.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_e8d9a81f4e22851b6361f4f8.woff2')format("woff");}.ff5_c00269{font-family:ff5_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;}
.m0_c00269{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls3_c00269{letter-spacing:0.000000px;}
.ls1_c00269{letter-spacing:0.009900px;}
.ls0_c00269{letter-spacing:0.010620px;}
.ls2_c00269{letter-spacing:8.655717px;}
.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:-17.999993px;}
.ws1_c00269{word-spacing:0.000000px;}
._1_c00269{margin-left:-1.105374px;}
._0_c00269{width:1.195563px;}
._5_c00269{width:4.265802px;}
._4_c00269{width:5.538967px;}
._8_c00269{width:7.940176px;}
._7_c00269{width:9.250959px;}
._3_c00269{width:10.579694px;}
._2_c00269{width:11.647259px;}
._6_c00269{width:13.162523px;}
._a_c00269{width:14.853815px;}
._c_c00269{width:19.913248px;}
._b_c00269{width:20.959676px;}
._9_c00269{width:33.799704px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs0_c00269{font-size:59.759976px;}
.fs1_c00269{font-size:66.239974px;}
.fs2_c00269{font-size:71.999971px;}
.y0_c00269{bottom:0.000000px;}
.y4_c00269{bottom:75.719970px;}
.y3_c00269{bottom:113.879954px;}
.y15_c00269{bottom:182.459927px;}
.y14_c00269{bottom:213.599915px;}
.y13_c00269{bottom:259.679896px;}
.y12_c00269{bottom:290.639884px;}
.y11_c00269{bottom:321.779871px;}
.y10_c00269{bottom:352.739859px;}
.yf_c00269{bottom:383.879846px;}
.ye_c00269{bottom:414.839834px;}
.yd_c00269{bottom:445.979822px;}
.yc_c00269{bottom:492.059803px;}
.yb_c00269{bottom:523.019791px;}
.ya_c00269{bottom:553.979778px;}
.y9_c00269{bottom:585.119766px;}
.y8_c00269{bottom:616.079754px;}
.y7_c00269{bottom:661.079736px;}
.y6_c00269{bottom:701.399719px;}
.y5_c00269{bottom:1117.739553px;}
.y2_c00269{bottom:1156.979537px;}
.y1_c00269{bottom:1195.859522px;}
.h2_c00269{height:54.628572px;}
.h1_c00269{height:58.651148px;}
.h4_c00269{height:65.010911px;}
.h5_c00269{height:70.664034px;}
.h3_c00269{height:72.562471px;}
.h0_c00269{height:1263.000000px;}
.w0_c00269{width:892.500000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:127.799949px;}
.x4_c00269{left:171.179932px;}
.x5_c00269{left:180.899928px;}
.x2_c00269{left:434.159514px;}
.x3_c00269{left:618.660329px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls3_c00269{letter-spacing:0.000000pt;}
.ls1_c00269{letter-spacing:0.008800pt;}
.ls0_c00269{letter-spacing:0.009440pt;}
.ls2_c00269{letter-spacing:7.693970pt;}
.ws0_c00269{word-spacing:-15.999994pt;}
.ws1_c00269{word-spacing:0.000000pt;}
._1_c00269{margin-left:-0.982555pt;}
._0_c00269{width:1.062723pt;}
._5_c00269{width:3.791824pt;}
._4_c00269{width:4.923526pt;}
._8_c00269{width:7.057934pt;}
._7_c00269{width:8.223075pt;}
._3_c00269{width:9.404173pt;}
._2_c00269{width:10.353119pt;}
._6_c00269{width:11.700020pt;}
._a_c00269{width:13.203391pt;}
._c_c00269{width:17.700665pt;}
._b_c00269{width:18.630824pt;}
._9_c00269{width:30.044182pt;}
.fs0_c00269{font-size:53.119979pt;}
.fs1_c00269{font-size:58.879976pt;}
.fs2_c00269{font-size:63.999974pt;}
.y0_c00269{bottom:0.000000pt;}
.y4_c00269{bottom:67.306640pt;}
.y3_c00269{bottom:101.226626pt;}
.y15_c00269{bottom:162.186602pt;}
.y14_c00269{bottom:189.866591pt;}
.y13_c00269{bottom:230.826574pt;}
.y12_c00269{bottom:258.346563pt;}
.y11_c00269{bottom:286.026552pt;}
.y10_c00269{bottom:313.546541pt;}
.yf_c00269{bottom:341.226530pt;}
.ye_c00269{bottom:368.746519pt;}
.yd_c00269{bottom:396.426508pt;}
.yc_c00269{bottom:437.386492pt;}
.yb_c00269{bottom:464.906481pt;}
.ya_c00269{bottom:492.426470pt;}
.y9_c00269{bottom:520.106459pt;}
.y8_c00269{bottom:547.626448pt;}
.y7_c00269{bottom:587.626432pt;}
.y6_c00269{bottom:623.466417pt;}
.y5_c00269{bottom:993.546269pt;}
.y2_c00269{bottom:1028.426255pt;}
.y1_c00269{bottom:1062.986241pt;}
.h2_c00269{height:48.558731pt;}
.h1_c00269{height:52.134354pt;}
.h4_c00269{height:57.787477pt;}
.h5_c00269{height:62.812475pt;}
.h3_c00269{height:64.499974pt;}
.h0_c00269{height:1122.666667pt;}
.w0_c00269{width:793.333333pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:113.599955pt;}
.x4_c00269{left:152.159939pt;}
.x5_c00269{left:160.799936pt;}
.x2_c00269{left:385.919568pt;}
.x3_c00269{left:549.920292pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9487c70e5df2a399e521d07.woff2')format("woff");}.ff1_c00270{font-family:ff1_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:ff2_c00270;src:url('chunks/assets/font_8d81983cfdfad1edd1b4f15d.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.311035;font-style:normal;font-weight:normal;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_ae3527020cfe1eb8c591e798.woff2')format("woff");}.ff4_c00270{font-family:ff4_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;}
.m0_c00270{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls3_c00270{letter-spacing:0.000000px;}
.ls0_c00270{letter-spacing:0.009900px;}
.ls1_c00270{letter-spacing:0.153901px;}
.ls2_c00270{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00270{word-spacing:-14.939994px;}
.ws0_c00270{word-spacing:-12.059995px;}
.ws1_c00270{word-spacing:-9.719996px;}
.ws3_c00270{word-spacing:0.000000px;}
._4_c00270{margin-left:-12.716934px;}
._3_c00270{margin-left:-2.139990px;}
._1_c00270{margin-left:-1.105374px;}
._0_c00270{width:1.478392px;}
._2_c00270{width:2.674439px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs4_c00270{font-size:38.879984px;}
.fs3_c00270{font-size:48.239981px;}
.fs0_c00270{font-size:59.759976px;}
.fs1_c00270{font-size:66.239974px;}
.fs2_c00270{font-size:71.999971px;}
.y0_c00270{bottom:0.000000px;}
.y4_c00270{bottom:75.720270px;}
.y3_c00270{bottom:113.880254px;}
.y14_c00270{bottom:133.140247px;}
.y13_c00270{bottom:139.980244px;}
.y12_c00270{bottom:159.059936px;}
.y11_c00270{bottom:165.899934px;}
.y10_c00270{bottom:213.239915px;}
.yf_c00270{bottom:294.059882px;}
.ye_c00270{bottom:315.839874px;}
.yd_c00270{bottom:355.979858px;}
.yb_c00270{bottom:688.439725px;}
.yc_c00270{bottom:696.719721px;}
.ya_c00270{bottom:726.599709px;}
.y9_c00270{bottom:748.379701px;}
.y8_c00270{bottom:788.699685px;}
.y6_c00270{bottom:1105.319558px;}
.y7_c00270{bottom:1113.599555px;}
.y5_c00270{bottom:1136.279545px;}
.y2_c00270{bottom:1175.879530px;}
.y1_c00270{bottom:1196.039522px;}
.h7_c00270{height:38.158578px;}
.h4_c00270{height:47.344903px;}
.h2_c00270{height:54.628572px;}
.h1_c00270{height:58.651148px;}
.h6_c00270{height:65.010911px;}
.h3_c00270{height:70.664034px;}
.h5_c00270{height:72.562471px;}
.h0_c00270{height:1263.000000px;}
.w0_c00270{width:892.500000px;}
.x0_c00270{left:0.000000px;}
.x5_c00270{left:127.800262px;}
.xe_c00270{left:135.359946px;}
.xa_c00270{left:137.699945px;}
.x6_c00270{left:180.899928px;}
.x1_c00270{left:181.979927px;}
.x2_c00270{left:329.219408px;}
.xb_c00270{left:421.740648px;}
.x4_c00270{left:434.159826px;}
.x7_c00270{left:584.099766px;}
.x8_c00270{left:596.339761px;}
.xc_c00270{left:636.479745px;}
.xd_c00270{left:648.719741px;}
.x9_c00270{left:681.659759px;}
.x3_c00270{left:765.539694px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls3_c00270{letter-spacing:0.000000pt;}
.ls0_c00270{letter-spacing:0.008800pt;}
.ls1_c00270{letter-spacing:0.136801pt;}
.ls2_c00270{letter-spacing:0.168267pt;}
.ws2_c00270{word-spacing:-13.279995pt;}
.ws0_c00270{word-spacing:-10.719996pt;}
.ws1_c00270{word-spacing:-8.639997pt;}
.ws3_c00270{word-spacing:0.000000pt;}
._4_c00270{margin-left:-11.303941pt;}
._3_c00270{margin-left:-1.902214pt;}
._1_c00270{margin-left:-0.982555pt;}
._0_c00270{width:1.314126pt;}
._2_c00270{width:2.377279pt;}
.fs4_c00270{font-size:34.559986pt;}
.fs3_c00270{font-size:42.879983pt;}
.fs0_c00270{font-size:53.119979pt;}
.fs1_c00270{font-size:58.879976pt;}
.fs2_c00270{font-size:63.999974pt;}
.y0_c00270{bottom:0.000000pt;}
.y4_c00270{bottom:67.306906pt;}
.y3_c00270{bottom:101.226893pt;}
.y14_c00270{bottom:118.346886pt;}
.y13_c00270{bottom:124.426884pt;}
.y12_c00270{bottom:141.386610pt;}
.y11_c00270{bottom:147.466608pt;}
.y10_c00270{bottom:189.546591pt;}
.yf_c00270{bottom:261.386562pt;}
.ye_c00270{bottom:280.746554pt;}
.yd_c00270{bottom:316.426540pt;}
.yb_c00270{bottom:611.946422pt;}
.yc_c00270{bottom:619.306419pt;}
.ya_c00270{bottom:645.866408pt;}
.y9_c00270{bottom:665.226401pt;}
.y8_c00270{bottom:701.066386pt;}
.y6_c00270{bottom:982.506274pt;}
.y7_c00270{bottom:989.866271pt;}
.y5_c00270{bottom:1010.026263pt;}
.y2_c00270{bottom:1045.226249pt;}
.y1_c00270{bottom:1063.146241pt;}
.h7_c00270{height:33.918736pt;}
.h4_c00270{height:42.084358pt;}
.h2_c00270{height:48.558731pt;}
.h1_c00270{height:52.134354pt;}
.h6_c00270{height:57.787477pt;}
.h3_c00270{height:62.812475pt;}
.h5_c00270{height:64.499974pt;}
.h0_c00270{height:1122.666667pt;}
.w0_c00270{width:793.333333pt;}
.x0_c00270{left:0.000000pt;}
.x5_c00270{left:113.600233pt;}
.xe_c00270{left:120.319952pt;}
.xa_c00270{left:122.399951pt;}
.x6_c00270{left:160.799936pt;}
.x1_c00270{left:161.759935pt;}
.x2_c00270{left:292.639474pt;}
.xb_c00270{left:374.880576pt;}
.x4_c00270{left:385.919846pt;}
.x7_c00270{left:519.199792pt;}
.x8_c00270{left:530.079788pt;}
.xc_c00270{left:565.759774pt;}
.xd_c00270{left:576.639769pt;}
.x9_c00270{left:605.919786pt;}
.x3_c00270{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2860106945ee4c31546ee506.woff2')format("woff");}.ff1_c00271{font-family:ff1_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:ff2_c00271;src:url('chunks/assets/font_55ecf4ebe9aa0e92495f538f.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.311035;font-style:normal;font-weight:normal;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_0c9d64ccaa35e1b11b4c34d3.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;}
.m0_c00271{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls3_c00271{letter-spacing:0.000000px;}
.ls0_c00271{letter-spacing:0.009900px;}
.ls1_c00271{letter-spacing:0.153901px;}
.ls2_c00271{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00271{word-spacing:-17.999993px;}
.ws1_c00271{word-spacing:-16.559993px;}
.ws4_c00271{word-spacing:-14.939994px;}
.ws0_c00271{word-spacing:-12.059995px;}
.ws3_c00271{word-spacing:-9.719996px;}
.ws5_c00271{word-spacing:0.000000px;}
._5_c00271{margin-left:-12.716934px;}
._1_c00271{margin-left:-1.105374px;}
._0_c00271{width:1.195563px;}
._2_c00271{width:5.028813px;}
._3_c00271{width:7.101541px;}
._4_c00271{width:10.792188px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs4_c00271{font-size:38.879984px;}
.fs3_c00271{font-size:48.239981px;}
.fs0_c00271{font-size:59.759976px;}
.fs1_c00271{font-size:66.239974px;}
.fs2_c00271{font-size:71.999971px;}
.y0_c00271{bottom:0.000000px;}
.y4_c00271{bottom:75.719970px;}
.y3_c00271{bottom:113.879954px;}
.y15_c00271{bottom:133.140247px;}
.y14_c00271{bottom:139.980244px;}
.y13_c00271{bottom:150.419940px;}
.y12_c00271{bottom:157.259937px;}
.y11_c00271{bottom:168.599933px;}
.y10_c00271{bottom:198.119921px;}
.yf_c00271{bottom:226.559909px;}
.ye_c00271{bottom:266.159894px;}
.yc_c00271{bottom:572.699771px;}
.yd_c00271{bottom:580.979768px;}
.yb_c00271{bottom:603.659759px;}
.ya_c00271{bottom:648.659741px;}
.y9_c00271{bottom:677.099729px;}
.y8_c00271{bottom:717.239713px;}
.y6_c00271{bottom:1086.959565px;}
.y7_c00271{bottom:1095.239562px;}
.y5_c00271{bottom:1118.099553px;}
.y2_c00271{bottom:1156.979537px;}
.y1_c00271{bottom:1195.859522px;}
.h7_c00271{height:38.158578px;}
.h4_c00271{height:47.344903px;}
.h2_c00271{height:54.628572px;}
.h1_c00271{height:58.651148px;}
.h5_c00271{height:65.010911px;}
.h3_c00271{height:70.664034px;}
.h6_c00271{height:72.562471px;}
.h0_c00271{height:1263.000000px;}
.w0_c00271{width:892.500000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:127.799949px;}
.x8_c00271{left:135.359946px;}
.xf_c00271{left:137.519945px;}
.x3_c00271{left:180.899928px;}
.x9_c00271{left:421.739249px;}
.xb_c00271{left:432.719827px;}
.x2_c00271{left:434.159514px;}
.xc_c00271{left:444.959822px;}
.xd_c00271{left:449.459820px;}
.xa_c00271{left:471.599811px;}
.x4_c00271{left:485.279806px;}
.x5_c00271{left:497.519801px;}
.x6_c00271{left:502.019799px;}
.x7_c00271{left:669.959732px;}
.xe_c00271{left:680.579435px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls3_c00271{letter-spacing:0.000000pt;}
.ls0_c00271{letter-spacing:0.008800pt;}
.ls1_c00271{letter-spacing:0.136801pt;}
.ls2_c00271{letter-spacing:0.168267pt;}
.ws2_c00271{word-spacing:-15.999994pt;}
.ws1_c00271{word-spacing:-14.719994pt;}
.ws4_c00271{word-spacing:-13.279995pt;}
.ws0_c00271{word-spacing:-10.719996pt;}
.ws3_c00271{word-spacing:-8.639997pt;}
.ws5_c00271{word-spacing:0.000000pt;}
._5_c00271{margin-left:-11.303941pt;}
._1_c00271{margin-left:-0.982555pt;}
._0_c00271{width:1.062723pt;}
._2_c00271{width:4.470056pt;}
._3_c00271{width:6.312481pt;}
._4_c00271{width:9.593056pt;}
.fs4_c00271{font-size:34.559986pt;}
.fs3_c00271{font-size:42.879983pt;}
.fs0_c00271{font-size:53.119979pt;}
.fs1_c00271{font-size:58.879976pt;}
.fs2_c00271{font-size:63.999974pt;}
.y0_c00271{bottom:0.000000pt;}
.y4_c00271{bottom:67.306640pt;}
.y3_c00271{bottom:101.226626pt;}
.y15_c00271{bottom:118.346886pt;}
.y14_c00271{bottom:124.426884pt;}
.y13_c00271{bottom:133.706613pt;}
.y12_c00271{bottom:139.786611pt;}
.y11_c00271{bottom:149.866607pt;}
.y10_c00271{bottom:176.106596pt;}
.yf_c00271{bottom:201.386586pt;}
.ye_c00271{bottom:236.586572pt;}
.yc_c00271{bottom:509.066463pt;}
.yd_c00271{bottom:516.426460pt;}
.yb_c00271{bottom:536.586452pt;}
.ya_c00271{bottom:576.586436pt;}
.y9_c00271{bottom:601.866426pt;}
.y8_c00271{bottom:637.546412pt;}
.y6_c00271{bottom:966.186280pt;}
.y7_c00271{bottom:973.546277pt;}
.y5_c00271{bottom:993.866269pt;}
.y2_c00271{bottom:1028.426255pt;}
.y1_c00271{bottom:1062.986241pt;}
.h7_c00271{height:33.918736pt;}
.h4_c00271{height:42.084358pt;}
.h2_c00271{height:48.558731pt;}
.h1_c00271{height:52.134354pt;}
.h5_c00271{height:57.787477pt;}
.h3_c00271{height:62.812475pt;}
.h6_c00271{height:64.499974pt;}
.h0_c00271{height:1122.666667pt;}
.w0_c00271{width:793.333333pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:113.599955pt;}
.x8_c00271{left:120.319952pt;}
.xf_c00271{left:122.239951pt;}
.x3_c00271{left:160.799936pt;}
.x9_c00271{left:374.879332pt;}
.xb_c00271{left:384.639846pt;}
.x2_c00271{left:385.919568pt;}
.xc_c00271{left:395.519842pt;}
.xd_c00271{left:399.519840pt;}
.xa_c00271{left:419.199832pt;}
.x4_c00271{left:431.359827pt;}
.x5_c00271{left:442.239823pt;}
.x6_c00271{left:446.239822pt;}
.x7_c00271{left:595.519762pt;}
.xe_c00271{left:604.959498pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f58a642fc0a7c06cdbff554.woff2')format("woff");}.ff1_c00272{font-family:ff1_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:ff2_c00272;src:url('chunks/assets/font_ef784542a67a4987474fdfaa.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_9d2f732dae2a583176ddda9c.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.311035;font-style:normal;font-weight:normal;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_10ce14a05f9f95cad9398a11.woff2')format("woff");}.ff4_c00272{font-family:ff4_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:ff5_c00272;src:url('chunks/assets/font_1cf832a2362d2f57fa6cdb49.woff2')format("woff");}.ff5_c00272{font-family:ff5_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;}
.m0_c00272{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00272{word-spacing:-17.999993px;}
.ws1_c00272{word-spacing:0.000000px;}
._5_c00272{margin-left:-2.572941px;}
._1_c00272{margin-left:-1.105374px;}
._0_c00272{width:1.478392px;}
._3_c00272{width:3.587964px;}
._4_c00272{width:5.095330px;}
._2_c00272{width:10.191956px;}
._6_c00272{width:11.406666px;}
._7_c00272{width:19.522424px;}
._8_c00272{width:72.855157px;}
._9_c00272{width:73.966398px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs0_c00272{font-size:59.759976px;}
.fs1_c00272{font-size:66.239974px;}
.fs2_c00272{font-size:71.999971px;}
.y0_c00272{bottom:0.000000px;}
.y4_c00272{bottom:75.720270px;}
.y3_c00272{bottom:113.880254px;}
.y13_c00272{bottom:232.139907px;}
.y12_c00272{bottom:263.279895px;}
.y11_c00272{bottom:294.239882px;}
.y10_c00272{bottom:325.379870px;}
.yf_c00272{bottom:356.339857px;}
.ye_c00272{bottom:408.539837px;}
.yd_c00272{bottom:460.559816px;}
.yc_c00272{bottom:491.519803px;}
.yb_c00272{bottom:522.659791px;}
.ya_c00272{bottom:553.619779px;}
.y9_c00272{bottom:584.759766px;}
.y8_c00272{bottom:635.519746px;}
.y7_c00272{bottom:675.839730px;}
.y6_c00272{bottom:1104.959558px;}
.y5_c00272{bottom:1136.099546px;}
.y2_c00272{bottom:1175.879530px;}
.y1_c00272{bottom:1196.039522px;}
.h2_c00272{height:54.628572px;}
.h1_c00272{height:58.651148px;}
.h4_c00272{height:65.010911px;}
.h6_c00272{height:70.628878px;}
.h5_c00272{height:70.664034px;}
.h3_c00272{height:72.562471px;}
.h0_c00272{height:1263.000000px;}
.w0_c00272{width:892.500000px;}
.x0_c00272{left:0.000000px;}
.x5_c00272{left:127.800262px;}
.x7_c00272{left:157.319937px;}
.x8_c00272{left:180.899928px;}
.x1_c00272{left:181.979927px;}
.x2_c00272{left:329.219408px;}
.x4_c00272{left:434.159826px;}
.x6_c00272{left:590.579413px;}
.x3_c00272{left:765.539694px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:-15.999994pt;}
.ws1_c00272{word-spacing:0.000000pt;}
._5_c00272{margin-left:-2.287059pt;}
._1_c00272{margin-left:-0.982555pt;}
._0_c00272{width:1.314126pt;}
._3_c00272{width:3.189302pt;}
._4_c00272{width:4.529182pt;}
._2_c00272{width:9.059516pt;}
._6_c00272{width:10.139258pt;}
._7_c00272{width:17.353266pt;}
._8_c00272{width:64.760139pt;}
._9_c00272{width:65.747910pt;}
.fs0_c00272{font-size:53.119979pt;}
.fs1_c00272{font-size:58.879976pt;}
.fs2_c00272{font-size:63.999974pt;}
.y0_c00272{bottom:0.000000pt;}
.y4_c00272{bottom:67.306906pt;}
.y3_c00272{bottom:101.226893pt;}
.y13_c00272{bottom:206.346584pt;}
.y12_c00272{bottom:234.026573pt;}
.y11_c00272{bottom:261.546562pt;}
.y10_c00272{bottom:289.226551pt;}
.yf_c00272{bottom:316.746540pt;}
.ye_c00272{bottom:363.146521pt;}
.yd_c00272{bottom:409.386503pt;}
.yc_c00272{bottom:436.906492pt;}
.yb_c00272{bottom:464.586481pt;}
.ya_c00272{bottom:492.106470pt;}
.y9_c00272{bottom:519.786459pt;}
.y8_c00272{bottom:564.906441pt;}
.y7_c00272{bottom:600.746426pt;}
.y6_c00272{bottom:982.186274pt;}
.y5_c00272{bottom:1009.866263pt;}
.y2_c00272{bottom:1045.226249pt;}
.y1_c00272{bottom:1063.146241pt;}
.h2_c00272{height:48.558731pt;}
.h1_c00272{height:52.134354pt;}
.h4_c00272{height:57.787477pt;}
.h6_c00272{height:62.781225pt;}
.h5_c00272{height:62.812475pt;}
.h3_c00272{height:64.499974pt;}
.h0_c00272{height:1122.666667pt;}
.w0_c00272{width:793.333333pt;}
.x0_c00272{left:0.000000pt;}
.x5_c00272{left:113.600233pt;}
.x7_c00272{left:139.839944pt;}
.x8_c00272{left:160.799936pt;}
.x1_c00272{left:161.759935pt;}
.x2_c00272{left:292.639474pt;}
.x4_c00272{left:385.919846pt;}
.x6_c00272{left:524.959478pt;}
.x3_c00272{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e01bc7cc6f0afd99a462425.woff2')format("woff");}.ff1_c00273{font-family:ff1_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:ff2_c00273;src:url('chunks/assets/font_61d4441984c3ffc389be1a97.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_f18e04d4856a54e6ffe8484d.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_26e3cf93751d9d481497763f.woff2')format("woff");}.ff4_c00273{font-family:ff4_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:ff5_c00273;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:1.311035;font-style:normal;font-weight:normal;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_99be48ab41a3d3b19e2ef4eb.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:0.670898;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls1_c00273{letter-spacing:0.000000px;}
.ls0_c00273{letter-spacing:0.182640px;}
.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;}
}
.ws1_c00273{word-spacing:-17.999993px;}
.ws4_c00273{word-spacing:-14.939994px;}
.ws0_c00273{word-spacing:-12.059995px;}
.ws2_c00273{word-spacing:-9.437756px;}
.ws3_c00273{word-spacing:-8.786876px;}
.ws5_c00273{word-spacing:0.000000px;}
._b_c00273{margin-left:-9.749945px;}
._1_c00273{margin-left:-1.105374px;}
._0_c00273{width:1.195563px;}
._3_c00273{width:4.666315px;}
._5_c00273{width:5.707816px;}
._6_c00273{width:6.923268px;}
._2_c00273{width:11.395409px;}
._8_c00273{width:14.177100px;}
._7_c00273{width:15.462149px;}
._4_c00273{width:16.795322px;}
._9_c00273{width:25.832551px;}
._a_c00273{width:26.955233px;}
.fc0_c00273{color:rgb(0,0,0);}
.fs6_c00273{font-size:38.879984px;}
.fs5_c00273{font-size:41.759983px;}
.fs3_c00273{font-size:48.239981px;}
.fs0_c00273{font-size:59.759976px;}
.fs1_c00273{font-size:66.239974px;}
.fs2_c00273{font-size:71.999971px;}
.fs4_c00273{font-size:77.759969px;}
.y0_c00273{bottom:0.000000px;}
.y4_c00273{bottom:75.899970px;}
.y3_c00273{bottom:114.059954px;}
.y2f_c00273{bottom:133.679947px;}
.y2e_c00273{bottom:152.039939px;}
.y2d_c00273{bottom:159.599936px;}
.y2c_c00273{bottom:170.039932px;}
.y2b_c00273{bottom:187.679925px;}
.y2a_c00273{bottom:195.239922px;}
.y29_c00273{bottom:205.499918px;}
.y28_c00273{bottom:223.139911px;}
.y27_c00273{bottom:230.699908px;}
.y26_c00273{bottom:241.499903px;}
.y25_c00273{bottom:259.859896px;}
.y24_c00273{bottom:267.419893px;}
.y23_c00273{bottom:302.159879px;}
.y22_c00273{bottom:309.719876px;}
.y21_c00273{bottom:322.499871px;}
.y20_c00273{bottom:398.459841px;}
.y1e_c00273{bottom:444.539822px;}
.y1f_c00273{bottom:452.819819px;}
.y1d_c00273{bottom:475.499810px;}
.y1c_c00273{bottom:521.579791px;}
.y1b_c00273{bottom:552.719779px;}
.y1a_c00273{bottom:583.679767px;}
.y18_c00273{bottom:614.819754px;}
.y19_c00273{bottom:623.099751px;}
.y17_c00273{bottom:645.779742px;}
.y16_c00273{bottom:676.919729px;}
.y15_c00273{bottom:707.879717px;}
.y14_c00273{bottom:753.959698px;}
.y13_c00273{bottom:784.919686px;}
.y11_c00273{bottom:816.059674px;}
.y12_c00273{bottom:824.339670px;}
.y10_c00273{bottom:847.019661px;}
.yf_c00273{bottom:878.159649px;}
.ye_c00273{bottom:904.439638px;}
.yd_c00273{bottom:919.739632px;}
.yc_c00273{bottom:940.079624px;}
.ya_c00273{bottom:973.019611px;}
.yb_c00273{bottom:981.299607px;}
.y9_c00273{bottom:1003.979598px;}
.y8_c00273{bottom:1035.119586px;}
.y6_c00273{bottom:1087.139565px;}
.y7_c00273{bottom:1095.419562px;}
.y5_c00273{bottom:1118.279553px;}
.y2_c00273{bottom:1157.159537px;}
.y1_c00273{bottom:1196.039522px;}
.h9_c00273{height:32.064597px;}
.h8_c00273{height:34.439752px;}
.hb_c00273{height:39.830258px;}
.h6_c00273{height:47.321348px;}
.h4_c00273{height:47.344903px;}
.hc_c00273{height:49.284472px;}
.h2_c00273{height:54.628572px;}
.ha_c00273{height:58.621969px;}
.h1_c00273{height:58.651148px;}
.h3_c00273{height:70.628878px;}
.h5_c00273{height:70.664034px;}
.h7_c00273{height:78.367469px;}
.h0_c00273{height:1263.000000px;}
.w0_c00273{width:892.500000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:127.619949px;}
.x8_c00273{left:130.679948px;}
.xf_c00273{left:138.059945px;}
.x10_c00273{left:141.839943px;}
.x3_c00273{left:180.719928px;}
.xb_c00273{left:227.159909px;}
.xc_c00273{left:239.399904px;}
.x2_c00273{left:433.979514px;}
.x4_c00273{left:489.239804px;}
.x5_c00273{left:501.479799px;}
.x9_c00273{left:590.759764px;}
.xa_c00273{left:602.999759px;}
.x11_c00273{left:648.719741px;}
.xd_c00273{left:704.339718px;}
.x6_c00273{left:712.799715px;}
.xe_c00273{left:716.579713px;}
.x7_c00273{left:725.039710px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls1_c00273{letter-spacing:0.000000pt;}
.ls0_c00273{letter-spacing:0.162347pt;}
.ws1_c00273{word-spacing:-15.999994pt;}
.ws4_c00273{word-spacing:-13.279995pt;}
.ws0_c00273{word-spacing:-10.719996pt;}
.ws2_c00273{word-spacing:-8.389117pt;}
.ws3_c00273{word-spacing:-7.810557pt;}
.ws5_c00273{word-spacing:0.000000pt;}
._b_c00273{margin-left:-8.666618pt;}
._1_c00273{margin-left:-0.982555pt;}
._0_c00273{width:1.062723pt;}
._3_c00273{width:4.147835pt;}
._5_c00273{width:5.073615pt;}
._6_c00273{width:6.154016pt;}
._2_c00273{width:10.129253pt;}
._8_c00273{width:12.601867pt;}
._7_c00273{width:13.744133pt;}
._4_c00273{width:14.929175pt;}
._9_c00273{width:22.962268pt;}
._a_c00273{width:23.960207pt;}
.fs6_c00273{font-size:34.559986pt;}
.fs5_c00273{font-size:37.119985pt;}
.fs3_c00273{font-size:42.879983pt;}
.fs0_c00273{font-size:53.119979pt;}
.fs1_c00273{font-size:58.879976pt;}
.fs2_c00273{font-size:63.999974pt;}
.fs4_c00273{font-size:69.119972pt;}
.y0_c00273{bottom:0.000000pt;}
.y4_c00273{bottom:67.466640pt;}
.y3_c00273{bottom:101.386626pt;}
.y2f_c00273{bottom:118.826619pt;}
.y2e_c00273{bottom:135.146613pt;}
.y2d_c00273{bottom:141.866610pt;}
.y2c_c00273{bottom:151.146606pt;}
.y2b_c00273{bottom:166.826600pt;}
.y2a_c00273{bottom:173.546597pt;}
.y29_c00273{bottom:182.666594pt;}
.y28_c00273{bottom:198.346587pt;}
.y27_c00273{bottom:205.066585pt;}
.y26_c00273{bottom:214.666581pt;}
.y25_c00273{bottom:230.986574pt;}
.y24_c00273{bottom:237.706572pt;}
.y23_c00273{bottom:268.586559pt;}
.y22_c00273{bottom:275.306557pt;}
.y21_c00273{bottom:286.666552pt;}
.y20_c00273{bottom:354.186525pt;}
.y1e_c00273{bottom:395.146509pt;}
.y1f_c00273{bottom:402.506506pt;}
.y1d_c00273{bottom:422.666498pt;}
.y1c_c00273{bottom:463.626481pt;}
.y1b_c00273{bottom:491.306470pt;}
.y1a_c00273{bottom:518.826459pt;}
.y18_c00273{bottom:546.506448pt;}
.y19_c00273{bottom:553.866445pt;}
.y17_c00273{bottom:574.026437pt;}
.y16_c00273{bottom:601.706426pt;}
.y15_c00273{bottom:629.226415pt;}
.y14_c00273{bottom:670.186399pt;}
.y13_c00273{bottom:697.706388pt;}
.y11_c00273{bottom:725.386377pt;}
.y12_c00273{bottom:732.746374pt;}
.y10_c00273{bottom:752.906366pt;}
.yf_c00273{bottom:780.586354pt;}
.ye_c00273{bottom:803.946345pt;}
.yd_c00273{bottom:817.546340pt;}
.yc_c00273{bottom:835.626332pt;}
.ya_c00273{bottom:864.906321pt;}
.yb_c00273{bottom:872.266318pt;}
.y9_c00273{bottom:892.426310pt;}
.y8_c00273{bottom:920.106299pt;}
.y6_c00273{bottom:966.346280pt;}
.y7_c00273{bottom:973.706277pt;}
.y5_c00273{bottom:994.026269pt;}
.y2_c00273{bottom:1028.586255pt;}
.y1_c00273{bottom:1063.146241pt;}
.h9_c00273{height:28.501864pt;}
.h8_c00273{height:30.613113pt;}
.hb_c00273{height:35.404673pt;}
.h6_c00273{height:42.063421pt;}
.h4_c00273{height:42.084358pt;}
.hc_c00273{height:43.808420pt;}
.h2_c00273{height:48.558731pt;}
.ha_c00273{height:52.108417pt;}
.h1_c00273{height:52.134354pt;}
.h3_c00273{height:62.781225pt;}
.h5_c00273{height:62.812475pt;}
.h7_c00273{height:69.659972pt;}
.h0_c00273{height:1122.666667pt;}
.w0_c00273{width:793.333333pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:113.439955pt;}
.x8_c00273{left:116.159954pt;}
.xf_c00273{left:122.719951pt;}
.x10_c00273{left:126.079950pt;}
.x3_c00273{left:160.639936pt;}
.xb_c00273{left:201.919919pt;}
.xc_c00273{left:212.799915pt;}
.x2_c00273{left:385.759568pt;}
.x4_c00273{left:434.879826pt;}
.x5_c00273{left:445.759822pt;}
.x9_c00273{left:525.119790pt;}
.xa_c00273{left:535.999786pt;}
.x11_c00273{left:576.639769pt;}
.xd_c00273{left:626.079750pt;}
.x6_c00273{left:633.599747pt;}
.xe_c00273{left:636.959745pt;}
.x7_c00273{left:644.479742pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02b4625e5c1b716e851dc173.woff2')format("woff");}.ff1_c00274{font-family:ff1_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:ff2_c00274;src:url('chunks/assets/font_6427dd028a40eed13290a4fe.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_9f7e453718f04166e5548408.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls3_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:0.009900px;}
.ls1_c00274{letter-spacing:0.153901px;}
.ls2_c00274{letter-spacing:0.182640px;}
.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;}
}
.ws0_c00274{word-spacing:-17.999993px;}
.ws1_c00274{word-spacing:-12.059995px;}
.ws2_c00274{word-spacing:-8.786876px;}
.ws3_c00274{word-spacing:0.000000px;}
._6_c00274{margin-left:-12.716934px;}
._1_c00274{margin-left:-1.105374px;}
._0_c00274{width:1.478392px;}
._5_c00274{width:3.499406px;}
._4_c00274{width:12.524763px;}
._3_c00274{width:14.098355px;}
._2_c00274{width:15.114778px;}
.fc0_c00274{color:rgb(0,0,0);}
.fs4_c00274{font-size:38.879984px;}
.fs3_c00274{font-size:48.239981px;}
.fs0_c00274{font-size:59.759976px;}
.fs1_c00274{font-size:66.239974px;}
.fs2_c00274{font-size:71.999971px;}
.y0_c00274{bottom:0.000000px;}
.y4_c00274{bottom:75.720270px;}
.y3_c00274{bottom:113.880254px;}
.y18_c00274{bottom:133.499947px;}
.y17_c00274{bottom:151.859939px;}
.y16_c00274{bottom:170.219932px;}
.y15_c00274{bottom:177.779929px;}
.y14_c00274{bottom:189.119924px;}
.y12_c00274{bottom:244.019902px;}
.y13_c00274{bottom:252.299899px;}
.y11_c00274{bottom:274.979890px;}
.y10_c00274{bottom:306.119878px;}
.yf_c00274{bottom:352.199859px;}
.ye_c00274{bottom:397.019841px;}
.yd_c00274{bottom:425.459830px;}
.yc_c00274{bottom:465.779814px;}
.ya_c00274{bottom:695.639722px;}
.yb_c00274{bottom:703.919718px;}
.y9_c00274{bottom:726.779709px;}
.y8_c00274{bottom:757.739697px;}
.y7_c00274{bottom:802.739679px;}
.y6_c00274{bottom:831.179668px;}
.y5_c00274{bottom:871.319651px;}
.y2_c00274{bottom:1175.879530px;}
.y1_c00274{bottom:1196.039522px;}
.ha_c00274{height:32.064597px;}
.h9_c00274{height:47.321348px;}
.h5_c00274{height:47.344903px;}
.hb_c00274{height:49.284472px;}
.h2_c00274{height:54.628572px;}
.h1_c00274{height:58.651148px;}
.h4_c00274{height:65.010911px;}
.h7_c00274{height:66.757473px;}
.h8_c00274{height:70.628878px;}
.h3_c00274{height:70.664034px;}
.h6_c00274{height:72.562471px;}
.h0_c00274{height:1263.000000px;}
.w0_c00274{width:892.500000px;}
.x0_c00274{left:0.000000px;}
.x5_c00274{left:127.800262px;}
.x10_c00274{left:137.519945px;}
.x9_c00274{left:180.899928px;}
.x1_c00274{left:181.979927px;}
.xd_c00274{left:183.059927px;}
.x7_c00274{left:194.759922px;}
.xa_c00274{left:230.219908px;}
.xb_c00274{left:242.459903px;}
.x2_c00274{left:329.219408px;}
.x8_c00274{left:399.060595px;}
.x4_c00274{left:434.159826px;}
.xe_c00274{left:610.919756px;}
.xf_c00274{left:623.159751px;}
.x6_c00274{left:674.999730px;}
.xc_c00274{left:717.659679px;}
.x3_c00274{left:765.539694px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls3_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:0.008800pt;}
.ls1_c00274{letter-spacing:0.136801pt;}
.ls2_c00274{letter-spacing:0.162347pt;}
.ws0_c00274{word-spacing:-15.999994pt;}
.ws1_c00274{word-spacing:-10.719996pt;}
.ws2_c00274{word-spacing:-7.810557pt;}
.ws3_c00274{word-spacing:0.000000pt;}
._6_c00274{margin-left:-11.303941pt;}
._1_c00274{margin-left:-0.982555pt;}
._0_c00274{width:1.314126pt;}
._5_c00274{width:3.110583pt;}
._4_c00274{width:11.133122pt;}
._3_c00274{width:12.531871pt;}
._2_c00274{width:13.435358pt;}
.fs4_c00274{font-size:34.559986pt;}
.fs3_c00274{font-size:42.879983pt;}
.fs0_c00274{font-size:53.119979pt;}
.fs1_c00274{font-size:58.879976pt;}
.fs2_c00274{font-size:63.999974pt;}
.y0_c00274{bottom:0.000000pt;}
.y4_c00274{bottom:67.306906pt;}
.y3_c00274{bottom:101.226893pt;}
.y18_c00274{bottom:118.666619pt;}
.y17_c00274{bottom:134.986613pt;}
.y16_c00274{bottom:151.306606pt;}
.y15_c00274{bottom:158.026603pt;}
.y14_c00274{bottom:168.106599pt;}
.y12_c00274{bottom:216.906580pt;}
.y13_c00274{bottom:224.266577pt;}
.y11_c00274{bottom:244.426569pt;}
.y10_c00274{bottom:272.106558pt;}
.yf_c00274{bottom:313.066541pt;}
.ye_c00274{bottom:352.906526pt;}
.yd_c00274{bottom:378.186515pt;}
.yc_c00274{bottom:414.026501pt;}
.ya_c00274{bottom:618.346419pt;}
.yb_c00274{bottom:625.706416pt;}
.y9_c00274{bottom:646.026408pt;}
.y8_c00274{bottom:673.546397pt;}
.y7_c00274{bottom:713.546381pt;}
.y6_c00274{bottom:738.826371pt;}
.y5_c00274{bottom:774.506357pt;}
.y2_c00274{bottom:1045.226249pt;}
.y1_c00274{bottom:1063.146241pt;}
.ha_c00274{height:28.501864pt;}
.h9_c00274{height:42.063421pt;}
.h5_c00274{height:42.084358pt;}
.hb_c00274{height:43.808420pt;}
.h2_c00274{height:48.558731pt;}
.h1_c00274{height:52.134354pt;}
.h4_c00274{height:57.787477pt;}
.h7_c00274{height:59.339976pt;}
.h8_c00274{height:62.781225pt;}
.h3_c00274{height:62.812475pt;}
.h6_c00274{height:64.499974pt;}
.h0_c00274{height:1122.666667pt;}
.w0_c00274{width:793.333333pt;}
.x0_c00274{left:0.000000pt;}
.x5_c00274{left:113.600233pt;}
.x10_c00274{left:122.239951pt;}
.x9_c00274{left:160.799936pt;}
.x1_c00274{left:161.759935pt;}
.xd_c00274{left:162.719935pt;}
.x7_c00274{left:173.119931pt;}
.xa_c00274{left:204.639918pt;}
.xb_c00274{left:215.519914pt;}
.x2_c00274{left:292.639474pt;}
.x8_c00274{left:354.720529pt;}
.x4_c00274{left:385.919846pt;}
.xe_c00274{left:543.039783pt;}
.xf_c00274{left:553.919778pt;}
.x6_c00274{left:599.999760pt;}
.xc_c00274{left:637.919715pt;}
.x3_c00274{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d139f714717b8f4148bf19d1.woff2')format("woff");}.ff1_c00275{font-family:ff1_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:ff2_c00275;src:url('chunks/assets/font_ddff43317d7538043833fa05.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_b1333a6482c57c89c6a85d1d.woff2')format("woff");}.ff3_c00275{font-family:ff3_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:ff4_c00275;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00275{font-family:ff4_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;}
.m0_c00275{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls3_c00275{letter-spacing:0.000000px;}
.ls0_c00275{letter-spacing:0.009900px;}
.ls1_c00275{letter-spacing:0.153901px;}
.ls2_c00275{letter-spacing:0.182640px;}
.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;}
}
.ws2_c00275{word-spacing:-14.939994px;}
.ws0_c00275{word-spacing:-12.059995px;}
.ws1_c00275{word-spacing:-8.786876px;}
.ws3_c00275{word-spacing:0.000000px;}
._4_c00275{margin-left:-3.571519px;}
._1_c00275{margin-left:-1.105374px;}
._0_c00275{width:1.195563px;}
._2_c00275{width:30.077314px;}
._3_c00275{width:31.241269px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs4_c00275{font-size:38.879984px;}
.fs3_c00275{font-size:48.239981px;}
.fs0_c00275{font-size:59.759976px;}
.fs1_c00275{font-size:66.239974px;}
.fs2_c00275{font-size:71.999971px;}
.y0_c00275{bottom:0.000000px;}
.y4_c00275{bottom:75.719970px;}
.y3_c00275{bottom:113.879954px;}
.y17_c00275{bottom:133.499947px;}
.y16_c00275{bottom:151.859939px;}
.y15_c00275{bottom:159.419936px;}
.y14_c00275{bottom:170.219932px;}
.y13_c00275{bottom:177.779929px;}
.y12_c00275{bottom:189.119924px;}
.y11_c00275{bottom:212.159915px;}
.y10_c00275{bottom:240.599904px;}
.yf_c00275{bottom:280.919888px;}
.yd_c00275{bottom:589.439764px;}
.ye_c00275{bottom:597.719761px;}
.yc_c00275{bottom:620.579752px;}
.yb_c00275{bottom:651.539739px;}
.ya_c00275{bottom:682.679727px;}
.y9_c00275{bottom:727.499709px;}
.y8_c00275{bottom:755.939698px;}
.y7_c00275{bottom:796.259681px;}
.y6_c00275{bottom:1086.959565px;}
.y5_c00275{bottom:1118.099553px;}
.y2_c00275{bottom:1156.979537px;}
.y1_c00275{bottom:1195.859522px;}
.h8_c00275{height:32.064597px;}
.h7_c00275{height:47.344903px;}
.h9_c00275{height:49.284472px;}
.h2_c00275{height:54.628572px;}
.h1_c00275{height:58.651148px;}
.h6_c00275{height:65.010911px;}
.h5_c00275{height:66.757473px;}
.h3_c00275{height:70.664034px;}
.h4_c00275{height:72.562471px;}
.h0_c00275{height:1263.000000px;}
.w0_c00275{width:892.500000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:127.799949px;}
.xa_c00275{left:131.939947px;}
.xd_c00275{left:137.519945px;}
.x3_c00275{left:180.899928px;}
.x5_c00275{left:181.979927px;}
.xb_c00275{left:389.160434px;}
.x6_c00275{left:399.059924px;}
.x2_c00275{left:434.159514px;}
.xc_c00275{left:504.179798px;}
.x7_c00275{left:671.579731px;}
.x8_c00275{left:683.819726px;}
.x4_c00275{left:700.920226px;}
.x9_c00275{left:707.579640px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls3_c00275{letter-spacing:0.000000pt;}
.ls0_c00275{letter-spacing:0.008800pt;}
.ls1_c00275{letter-spacing:0.136801pt;}
.ls2_c00275{letter-spacing:0.162347pt;}
.ws2_c00275{word-spacing:-13.279995pt;}
.ws0_c00275{word-spacing:-10.719996pt;}
.ws1_c00275{word-spacing:-7.810557pt;}
.ws3_c00275{word-spacing:0.000000pt;}
._4_c00275{margin-left:-3.174684pt;}
._1_c00275{margin-left:-0.982555pt;}
._0_c00275{width:1.062723pt;}
._2_c00275{width:26.735390pt;}
._3_c00275{width:27.770017pt;}
.fs4_c00275{font-size:34.559986pt;}
.fs3_c00275{font-size:42.879983pt;}
.fs0_c00275{font-size:53.119979pt;}
.fs1_c00275{font-size:58.879976pt;}
.fs2_c00275{font-size:63.999974pt;}
.y0_c00275{bottom:0.000000pt;}
.y4_c00275{bottom:67.306640pt;}
.y3_c00275{bottom:101.226626pt;}
.y17_c00275{bottom:118.666619pt;}
.y16_c00275{bottom:134.986613pt;}
.y15_c00275{bottom:141.706610pt;}
.y14_c00275{bottom:151.306606pt;}
.y13_c00275{bottom:158.026603pt;}
.y12_c00275{bottom:168.106599pt;}
.y11_c00275{bottom:188.586591pt;}
.y10_c00275{bottom:213.866581pt;}
.yf_c00275{bottom:249.706567pt;}
.yd_c00275{bottom:523.946457pt;}
.ye_c00275{bottom:531.306454pt;}
.yc_c00275{bottom:551.626446pt;}
.yb_c00275{bottom:579.146435pt;}
.ya_c00275{bottom:606.826424pt;}
.y9_c00275{bottom:646.666408pt;}
.y8_c00275{bottom:671.946398pt;}
.y7_c00275{bottom:707.786384pt;}
.y6_c00275{bottom:966.186280pt;}
.y5_c00275{bottom:993.866269pt;}
.y2_c00275{bottom:1028.426255pt;}
.y1_c00275{bottom:1062.986241pt;}
.h8_c00275{height:28.501864pt;}
.h7_c00275{height:42.084358pt;}
.h9_c00275{height:43.808420pt;}
.h2_c00275{height:48.558731pt;}
.h1_c00275{height:52.134354pt;}
.h6_c00275{height:57.787477pt;}
.h5_c00275{height:59.339976pt;}
.h3_c00275{height:62.812475pt;}
.h4_c00275{height:64.499974pt;}
.h0_c00275{height:1122.666667pt;}
.w0_c00275{width:793.333333pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:113.599955pt;}
.xa_c00275{left:117.279953pt;}
.xd_c00275{left:122.239951pt;}
.x3_c00275{left:160.799936pt;}
.x5_c00275{left:161.759935pt;}
.xb_c00275{left:345.920386pt;}
.x6_c00275{left:354.719932pt;}
.x2_c00275{left:385.919568pt;}
.xc_c00275{left:448.159821pt;}
.x7_c00275{left:596.959761pt;}
.x8_c00275{left:607.839757pt;}
.x4_c00275{left:623.040201pt;}
.x9_c00275{left:628.959680pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61c785c85c26829d3b2f8b51.woff2')format("woff");}.ff1_c00276{font-family:ff1_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:ff2_c00276;src:url('chunks/assets/font_169a87eccd52c12d490cf533.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_6e6875e4e844135a41b44df0.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00276{font-family:ff4_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;}
.m0_c00276{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls2_c00276{letter-spacing:0.000000px;}
.ls0_c00276{letter-spacing:0.153901px;}
.ls1_c00276{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00276{word-spacing:-17.999993px;}
.ws2_c00276{word-spacing:-16.559993px;}
.ws5_c00276{word-spacing:-14.939994px;}
.ws1_c00276{word-spacing:-12.059995px;}
.ws3_c00276{word-spacing:-10.439996px;}
.ws4_c00276{word-spacing:-9.719996px;}
.ws6_c00276{word-spacing:0.000000px;}
._5_c00276{margin-left:-12.716934px;}
._4_c00276{margin-left:-2.117949px;}
._1_c00276{margin-left:-1.105374px;}
._0_c00276{width:1.478392px;}
._3_c00276{width:3.271818px;}
._2_c00276{width:5.163453px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs5_c00276{font-size:38.879984px;}
.fs4_c00276{font-size:41.759983px;}
.fs3_c00276{font-size:48.239981px;}
.fs0_c00276{font-size:59.759976px;}
.fs1_c00276{font-size:66.239974px;}
.fs2_c00276{font-size:71.999971px;}
.y0_c00276{bottom:0.000000px;}
.y4_c00276{bottom:75.720270px;}
.y3_c00276{bottom:113.880254px;}
.y1b_c00276{bottom:133.499947px;}
.y1a_c00276{bottom:151.499939px;}
.y19_c00276{bottom:158.339937px;}
.y18_c00276{bottom:192.719923px;}
.y17_c00276{bottom:200.279920px;}
.y16_c00276{bottom:212.339915px;}
.y15_c00276{bottom:273.359891px;}
.y14_c00276{bottom:316.739873px;}
.y13_c00276{bottom:360.299856px;}
.y12_c00276{bottom:388.739845px;}
.y11_c00276{bottom:428.879828px;}
.yf_c00276{bottom:663.419735px;}
.y10_c00276{bottom:671.699731px;}
.ye_c00276{bottom:694.379722px;}
.yd_c00276{bottom:725.519710px;}
.yc_c00276{bottom:756.479697px;}
.yb_c00276{bottom:801.479679px;}
.ya_c00276{bottom:844.859662px;}
.y9_c00276{bottom:873.299651px;}
.y8_c00276{bottom:913.619635px;}
.y6_c00276{bottom:1105.319558px;}
.y7_c00276{bottom:1113.599555px;}
.y5_c00276{bottom:1136.279545px;}
.y2_c00276{bottom:1175.879530px;}
.y1_c00276{bottom:1196.039522px;}
.h8_c00276{height:38.158578px;}
.h7_c00276{height:40.985140px;}
.h4_c00276{height:47.344903px;}
.h9_c00276{height:49.284472px;}
.h2_c00276{height:54.628572px;}
.h1_c00276{height:58.651148px;}
.h5_c00276{height:65.010911px;}
.h3_c00276{height:70.664034px;}
.h6_c00276{height:72.562471px;}
.h0_c00276{height:1263.000000px;}
.w0_c00276{width:892.500000px;}
.x0_c00276{left:0.000000px;}
.x5_c00276{left:127.800262px;}
.x12_c00276{left:138.239945px;}
.x13_c00276{left:142.379943px;}
.x6_c00276{left:180.899928px;}
.x1_c00276{left:181.979927px;}
.x10_c00276{left:188.279925px;}
.xa_c00276{left:190.979924px;}
.xd_c00276{left:226.259909px;}
.xe_c00276{left:238.499905px;}
.x2_c00276{left:329.219408px;}
.x11_c00276{left:335.520713px;}
.xb_c00276{left:365.039654px;}
.x4_c00276{left:434.159826px;}
.xc_c00276{left:473.219530px;}
.x7_c00276{left:501.839799px;}
.x8_c00276{left:514.079794px;}
.x9_c00276{left:724.499989px;}
.xf_c00276{left:741.419805px;}
.x3_c00276{left:765.539694px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls2_c00276{letter-spacing:0.000000pt;}
.ls0_c00276{letter-spacing:0.136801pt;}
.ls1_c00276{letter-spacing:0.168267pt;}
.ws0_c00276{word-spacing:-15.999994pt;}
.ws2_c00276{word-spacing:-14.719994pt;}
.ws5_c00276{word-spacing:-13.279995pt;}
.ws1_c00276{word-spacing:-10.719996pt;}
.ws3_c00276{word-spacing:-9.279996pt;}
.ws4_c00276{word-spacing:-8.639997pt;}
.ws6_c00276{word-spacing:0.000000pt;}
._5_c00276{margin-left:-11.303941pt;}
._4_c00276{margin-left:-1.882621pt;}
._1_c00276{margin-left:-0.982555pt;}
._0_c00276{width:1.314126pt;}
._3_c00276{width:2.908283pt;}
._2_c00276{width:4.589736pt;}
.fs5_c00276{font-size:34.559986pt;}
.fs4_c00276{font-size:37.119985pt;}
.fs3_c00276{font-size:42.879983pt;}
.fs0_c00276{font-size:53.119979pt;}
.fs1_c00276{font-size:58.879976pt;}
.fs2_c00276{font-size:63.999974pt;}
.y0_c00276{bottom:0.000000pt;}
.y4_c00276{bottom:67.306906pt;}
.y3_c00276{bottom:101.226893pt;}
.y1b_c00276{bottom:118.666619pt;}
.y1a_c00276{bottom:134.666613pt;}
.y19_c00276{bottom:140.746610pt;}
.y18_c00276{bottom:171.306598pt;}
.y17_c00276{bottom:178.026595pt;}
.y16_c00276{bottom:188.746591pt;}
.y15_c00276{bottom:242.986569pt;}
.y14_c00276{bottom:281.546554pt;}
.y13_c00276{bottom:320.266539pt;}
.y12_c00276{bottom:345.546528pt;}
.y11_c00276{bottom:381.226514pt;}
.yf_c00276{bottom:589.706431pt;}
.y10_c00276{bottom:597.066428pt;}
.ye_c00276{bottom:617.226420pt;}
.yd_c00276{bottom:644.906409pt;}
.yc_c00276{bottom:672.426398pt;}
.yb_c00276{bottom:712.426382pt;}
.ya_c00276{bottom:750.986366pt;}
.y9_c00276{bottom:776.266356pt;}
.y8_c00276{bottom:812.106342pt;}
.y6_c00276{bottom:982.506274pt;}
.y7_c00276{bottom:989.866271pt;}
.y5_c00276{bottom:1010.026263pt;}
.y2_c00276{bottom:1045.226249pt;}
.y1_c00276{bottom:1063.146241pt;}
.h8_c00276{height:33.918736pt;}
.h7_c00276{height:36.431235pt;}
.h4_c00276{height:42.084358pt;}
.h9_c00276{height:43.808420pt;}
.h2_c00276{height:48.558731pt;}
.h1_c00276{height:52.134354pt;}
.h5_c00276{height:57.787477pt;}
.h3_c00276{height:62.812475pt;}
.h6_c00276{height:64.499974pt;}
.h0_c00276{height:1122.666667pt;}
.w0_c00276{width:793.333333pt;}
.x0_c00276{left:0.000000pt;}
.x5_c00276{left:113.600233pt;}
.x12_c00276{left:122.879951pt;}
.x13_c00276{left:126.559949pt;}
.x6_c00276{left:160.799936pt;}
.x1_c00276{left:161.759935pt;}
.x10_c00276{left:167.359933pt;}
.xa_c00276{left:169.759932pt;}
.xd_c00276{left:201.119920pt;}
.xe_c00276{left:211.999915pt;}
.x2_c00276{left:292.639474pt;}
.x11_c00276{left:298.240634pt;}
.xb_c00276{left:324.479692pt;}
.x4_c00276{left:385.919846pt;}
.xc_c00276{left:420.639583pt;}
.x7_c00276{left:446.079822pt;}
.x8_c00276{left:456.959817pt;}
.x9_c00276{left:643.999990pt;}
.xf_c00276{left:659.039827pt;}
.x3_c00276{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_767f86db5a835557f2b9da8a.woff2')format("woff");}.ff1_c00277{font-family:ff1_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:ff2_c00277;src:url('chunks/assets/font_f70decd5cbe475927f0d65cd.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_bd49bedcd082fbe0f09df3e9.woff2')format("woff");}.ff3_c00277{font-family:ff3_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:ff4_c00277;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls2_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:0.153901px;}
.ls1_c00277{letter-spacing:0.189300px;}
.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:-12.059995px;}
.ws1_c00277{word-spacing:-9.719996px;}
.ws2_c00277{word-spacing:0.000000px;}
._6_c00277{margin-left:-12.716934px;}
._1_c00277{margin-left:-1.105374px;}
._0_c00277{width:1.195563px;}
._3_c00277{width:9.369160px;}
._5_c00277{width:13.674883px;}
._4_c00277{width:14.727428px;}
._2_c00277{width:16.484760px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs4_c00277{font-size:38.879984px;}
.fs3_c00277{font-size:48.239981px;}
.fs0_c00277{font-size:59.759976px;}
.fs1_c00277{font-size:66.239974px;}
.fs2_c00277{font-size:71.999971px;}
.y0_c00277{bottom:0.000000px;}
.y4_c00277{bottom:75.719970px;}
.y3_c00277{bottom:113.879954px;}
.y15_c00277{bottom:133.140247px;}
.y14_c00277{bottom:139.980244px;}
.y13_c00277{bottom:151.319939px;}
.y12_c00277{bottom:184.079926px;}
.y11_c00277{bottom:230.159908px;}
.y10_c00277{bottom:274.979890px;}
.yf_c00277{bottom:303.419879px;}
.ye_c00277{bottom:343.739863px;}
.yd_c00277{bottom:619.679752px;}
.yc_c00277{bottom:663.239735px;}
.yb_c00277{bottom:691.679723px;}
.ya_c00277{bottom:731.819707px;}
.y8_c00277{bottom:1024.859590px;}
.y9_c00277{bottom:1033.139587px;}
.y7_c00277{bottom:1055.999578px;}
.y6_c00277{bottom:1086.959565px;}
.y5_c00277{bottom:1118.099553px;}
.y2_c00277{bottom:1156.979537px;}
.y1_c00277{bottom:1195.859522px;}
.h8_c00277{height:38.158578px;}
.h4_c00277{height:47.344903px;}
.h2_c00277{height:54.628572px;}
.h1_c00277{height:58.651148px;}
.h7_c00277{height:65.010911px;}
.h5_c00277{height:70.628878px;}
.h3_c00277{height:70.664034px;}
.h6_c00277{height:72.562471px;}
.h0_c00277{height:1263.000000px;}
.w0_c00277{width:892.500000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:127.799949px;}
.xa_c00277{left:137.519945px;}
.x3_c00277{left:180.899928px;}
.x7_c00277{left:198.179921px;}
.x8_c00277{left:310.139034px;}
.x2_c00277{left:434.159514px;}
.x9_c00277{left:473.218889px;}
.x6_c00277{left:730.079673px;}
.x4_c00277{left:751.319699px;}
.x5_c00277{left:763.559695px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls2_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:0.136801pt;}
.ls1_c00277{letter-spacing:0.168267pt;}
.ws0_c00277{word-spacing:-10.719996pt;}
.ws1_c00277{word-spacing:-8.639997pt;}
.ws2_c00277{word-spacing:0.000000pt;}
._6_c00277{margin-left:-11.303941pt;}
._1_c00277{margin-left:-0.982555pt;}
._0_c00277{width:1.062723pt;}
._3_c00277{width:8.328142pt;}
._5_c00277{width:12.155451pt;}
._4_c00277{width:13.091047pt;}
._2_c00277{width:14.653120pt;}
.fs4_c00277{font-size:34.559986pt;}
.fs3_c00277{font-size:42.879983pt;}
.fs0_c00277{font-size:53.119979pt;}
.fs1_c00277{font-size:58.879976pt;}
.fs2_c00277{font-size:63.999974pt;}
.y0_c00277{bottom:0.000000pt;}
.y4_c00277{bottom:67.306640pt;}
.y3_c00277{bottom:101.226626pt;}
.y15_c00277{bottom:118.346886pt;}
.y14_c00277{bottom:124.426884pt;}
.y13_c00277{bottom:134.506613pt;}
.y12_c00277{bottom:163.626601pt;}
.y11_c00277{bottom:204.586585pt;}
.y10_c00277{bottom:244.426569pt;}
.yf_c00277{bottom:269.706559pt;}
.ye_c00277{bottom:305.546544pt;}
.yd_c00277{bottom:550.826446pt;}
.yc_c00277{bottom:589.546431pt;}
.yb_c00277{bottom:614.826421pt;}
.ya_c00277{bottom:650.506406pt;}
.y8_c00277{bottom:910.986302pt;}
.y9_c00277{bottom:918.346299pt;}
.y7_c00277{bottom:938.666291pt;}
.y6_c00277{bottom:966.186280pt;}
.y5_c00277{bottom:993.866269pt;}
.y2_c00277{bottom:1028.426255pt;}
.y1_c00277{bottom:1062.986241pt;}
.h8_c00277{height:33.918736pt;}
.h4_c00277{height:42.084358pt;}
.h2_c00277{height:48.558731pt;}
.h1_c00277{height:52.134354pt;}
.h7_c00277{height:57.787477pt;}
.h5_c00277{height:62.781225pt;}
.h3_c00277{height:62.812475pt;}
.h6_c00277{height:64.499974pt;}
.h0_c00277{height:1122.666667pt;}
.w0_c00277{width:793.333333pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:113.599955pt;}
.xa_c00277{left:122.239951pt;}
.x3_c00277{left:160.799936pt;}
.x7_c00277{left:176.159930pt;}
.x8_c00277{left:275.679142pt;}
.x2_c00277{left:385.919568pt;}
.x9_c00277{left:420.639012pt;}
.x6_c00277{left:648.959709pt;}
.x4_c00277{left:667.839733pt;}
.x5_c00277{left:678.719729pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8d9034c863b5013322fc338.woff2')format("woff");}.ff1_c00278{font-family:ff1_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:ff2_c00278;src:url('chunks/assets/font_898be1f27aba47075c7c82fa.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_d810f574b97acd49abed566d.woff2')format("woff");}.ff3_c00278{font-family:ff3_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:ff4_c00278;src:url('chunks/assets/font_6eabf62e8d8dd8495eaf98fc.woff2')format("woff");}.ff4_c00278{font-family:ff4_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:ff5_c00278;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00278{word-spacing:0.000000px;}
._1_c00278{margin-left:-1.105374px;}
._0_c00278{width:1.478392px;}
._3_c00278{width:3.024692px;}
._2_c00278{width:4.034448px;}
._8_c00278{width:5.714743px;}
._5_c00278{width:9.412802px;}
._6_c00278{width:34.322881px;}
._7_c00278{width:35.820497px;}
._4_c00278{width:46.820697px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs0_c00278{font-size:59.759976px;}
.fs1_c00278{font-size:66.239974px;}
.fs2_c00278{font-size:71.999971px;}
.y0_c00278{bottom:0.000000px;}
.y4_c00278{bottom:75.900270px;}
.y3_c00278{bottom:114.060254px;}
.y22_c00278{bottom:190.739924px;}
.y21_c00278{bottom:221.879911px;}
.y20_c00278{bottom:252.839899px;}
.y1f_c00278{bottom:283.979886px;}
.y1e_c00278{bottom:314.939874px;}
.y1d_c00278{bottom:346.079862px;}
.y1c_c00278{bottom:377.039849px;}
.y1b_c00278{bottom:408.179837px;}
.y1a_c00278{bottom:439.139824px;}
.y19_c00278{bottom:470.279812px;}
.y18_c00278{bottom:501.239800px;}
.y17_c00278{bottom:532.379787px;}
.y16_c00278{bottom:563.339775px;}
.y15_c00278{bottom:594.479762px;}
.y14_c00278{bottom:625.439750px;}
.y13_c00278{bottom:656.579737px;}
.y12_c00278{bottom:687.539725px;}
.y11_c00278{bottom:718.679713px;}
.y10_c00278{bottom:749.639700px;}
.yf_c00278{bottom:780.599688px;}
.ye_c00278{bottom:811.739675px;}
.yd_c00278{bottom:842.699663px;}
.yc_c00278{bottom:889.139644px;}
.yb_c00278{bottom:935.219626px;}
.ya_c00278{bottom:966.359613px;}
.y9_c00278{bottom:997.319601px;}
.y8_c00278{bottom:1028.459589px;}
.y7_c00278{bottom:1059.419576px;}
.y6_c00278{bottom:1090.559564px;}
.y5_c00278{bottom:1136.459545px;}
.y2_c00278{bottom:1176.059530px;}
.y1_c00278{bottom:1196.219522px;}
.h2_c00278{height:54.628572px;}
.h1_c00278{height:58.651148px;}
.h4_c00278{height:70.628878px;}
.h3_c00278{height:70.664034px;}
.h5_c00278{height:72.562471px;}
.h0_c00278{height:1263.000000px;}
.w0_c00278{width:892.500000px;}
.x0_c00278{left:0.000000px;}
.x5_c00278{left:127.620262px;}
.x6_c00278{left:180.719930px;}
.x1_c00278{left:181.799927px;}
.x2_c00278{left:329.039408px;}
.x4_c00278{left:433.979826px;}
.x3_c00278{left:765.359694px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:-15.999994pt;}
.ws1_c00278{word-spacing:0.000000pt;}
._1_c00278{margin-left:-0.982555pt;}
._0_c00278{width:1.314126pt;}
._3_c00278{width:2.688615pt;}
._2_c00278{width:3.586176pt;}
._8_c00278{width:5.079772pt;}
._5_c00278{width:8.366935pt;}
._6_c00278{width:30.509227pt;}
._7_c00278{width:31.840442pt;}
._4_c00278{width:41.618397pt;}
.fs0_c00278{font-size:53.119979pt;}
.fs1_c00278{font-size:58.879976pt;}
.fs2_c00278{font-size:63.999974pt;}
.y0_c00278{bottom:0.000000pt;}
.y4_c00278{bottom:67.466906pt;}
.y3_c00278{bottom:101.386893pt;}
.y22_c00278{bottom:169.546599pt;}
.y21_c00278{bottom:197.226588pt;}
.y20_c00278{bottom:224.746577pt;}
.y1f_c00278{bottom:252.426566pt;}
.y1e_c00278{bottom:279.946555pt;}
.y1d_c00278{bottom:307.626544pt;}
.y1c_c00278{bottom:335.146533pt;}
.y1b_c00278{bottom:362.826522pt;}
.y1a_c00278{bottom:390.346511pt;}
.y19_c00278{bottom:418.026499pt;}
.y18_c00278{bottom:445.546488pt;}
.y17_c00278{bottom:473.226477pt;}
.y16_c00278{bottom:500.746466pt;}
.y15_c00278{bottom:528.426455pt;}
.y14_c00278{bottom:555.946444pt;}
.y13_c00278{bottom:583.626433pt;}
.y12_c00278{bottom:611.146422pt;}
.y11_c00278{bottom:638.826411pt;}
.y10_c00278{bottom:666.346400pt;}
.yf_c00278{bottom:693.866389pt;}
.ye_c00278{bottom:721.546378pt;}
.yd_c00278{bottom:749.066367pt;}
.yc_c00278{bottom:790.346351pt;}
.yb_c00278{bottom:831.306334pt;}
.ya_c00278{bottom:858.986323pt;}
.y9_c00278{bottom:886.506312pt;}
.y8_c00278{bottom:914.186301pt;}
.y7_c00278{bottom:941.706290pt;}
.y6_c00278{bottom:969.386279pt;}
.y5_c00278{bottom:1010.186263pt;}
.y2_c00278{bottom:1045.386249pt;}
.y1_c00278{bottom:1063.306241pt;}
.h2_c00278{height:48.558731pt;}
.h1_c00278{height:52.134354pt;}
.h4_c00278{height:62.781225pt;}
.h3_c00278{height:62.812475pt;}
.h5_c00278{height:64.499974pt;}
.h0_c00278{height:1122.666667pt;}
.w0_c00278{width:793.333333pt;}
.x0_c00278{left:0.000000pt;}
.x5_c00278{left:113.440233pt;}
.x6_c00278{left:160.639938pt;}
.x1_c00278{left:161.599935pt;}
.x2_c00278{left:292.479474pt;}
.x4_c00278{left:385.759846pt;}
.x3_c00278{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5c5f4e0e187280ed7a92c828.woff2')format("woff");}.ff1_c00279{font-family:ff1_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:ff2_c00279;src:url('chunks/assets/font_4f38e8253dfe9b2736fdf56f.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_cb052ff215d5ca4f78d7d82e.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.311035;font-style:normal;font-weight:normal;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_237db6103c377e20e00d3e5e.woff2')format("woff");}.ff4_c00279{font-family:ff4_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:ff5_c00279;src:url('chunks/assets/font_dd5afafa318b3c11f4220f98.woff2')format("woff");}.ff5_c00279{font-family:ff5_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;}
.m0_c00279{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00279{word-spacing:0.000000px;}
._e_c00279{margin-left:-2.139990px;}
._1_c00279{margin-left:-1.105374px;}
._0_c00279{width:1.195563px;}
._8_c00279{width:2.604958px;}
._5_c00279{width:3.708445px;}
._9_c00279{width:4.830173px;}
._f_c00279{width:5.831872px;}
._4_c00279{width:7.879911px;}
._6_c00279{width:11.087420px;}
._7_c00279{width:12.558013px;}
._c_c00279{width:19.208030px;}
._d_c00279{width:20.473385px;}
._2_c00279{width:21.718791px;}
._3_c00279{width:22.806829px;}
._a_c00279{width:43.909288px;}
._b_c00279{width:44.931084px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs0_c00279{font-size:59.759976px;}
.fs1_c00279{font-size:66.239974px;}
.fs2_c00279{font-size:71.999971px;}
.y0_c00279{bottom:0.000000px;}
.y4_c00279{bottom:75.719970px;}
.y3_c00279{bottom:113.879954px;}
.y18_c00279{bottom:175.979930px;}
.y17_c00279{bottom:207.119917px;}
.y16_c00279{bottom:238.079905px;}
.y15_c00279{bottom:269.219892px;}
.y14_c00279{bottom:300.179880px;}
.y13_c00279{bottom:331.319867px;}
.y12_c00279{bottom:362.279855px;}
.y11_c00279{bottom:393.239843px;}
.y10_c00279{bottom:424.379830px;}
.yf_c00279{bottom:455.339818px;}
.ye_c00279{bottom:486.479805px;}
.yd_c00279{bottom:517.439793px;}
.yc_c00279{bottom:548.579781px;}
.yb_c00279{bottom:571.799771px;}
.ya_c00279{bottom:593.579763px;}
.y9_c00279{bottom:615.539754px;}
.y8_c00279{bottom:644.699742px;}
.y7_c00279{bottom:671.879731px;}
.y6_c00279{bottom:1086.599565px;}
.y5_c00279{bottom:1117.739553px;}
.y2_c00279{bottom:1156.979537px;}
.y1_c00279{bottom:1195.859522px;}
.h2_c00279{height:54.628572px;}
.h1_c00279{height:58.651148px;}
.h4_c00279{height:65.010911px;}
.h5_c00279{height:70.664034px;}
.h3_c00279{height:72.562471px;}
.h0_c00279{height:1263.000000px;}
.w0_c00279{width:892.500000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:127.799949px;}
.x4_c00279{left:131.219948px;}
.x6_c00279{left:180.899928px;}
.x5_c00279{left:414.359834px;}
.x2_c00279{left:434.159514px;}
.x3_c00279{left:586.079766px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:-15.999994pt;}
.ws1_c00279{word-spacing:0.000000pt;}
._e_c00279{margin-left:-1.902214pt;}
._1_c00279{margin-left:-0.982555pt;}
._0_c00279{width:1.062723pt;}
._8_c00279{width:2.315518pt;}
._5_c00279{width:3.296396pt;}
._9_c00279{width:4.293487pt;}
._f_c00279{width:5.183886pt;}
._4_c00279{width:7.004365pt;}
._6_c00279{width:9.855484pt;}
._7_c00279{width:11.162678pt;}
._c_c00279{width:17.073804pt;}
._d_c00279{width:18.198564pt;}
._2_c00279{width:19.305592pt;}
._3_c00279{width:20.272737pt;}
._a_c00279{width:39.030478pt;}
._b_c00279{width:39.938741pt;}
.fs0_c00279{font-size:53.119979pt;}
.fs1_c00279{font-size:58.879976pt;}
.fs2_c00279{font-size:63.999974pt;}
.y0_c00279{bottom:0.000000pt;}
.y4_c00279{bottom:67.306640pt;}
.y3_c00279{bottom:101.226626pt;}
.y18_c00279{bottom:156.426604pt;}
.y17_c00279{bottom:184.106593pt;}
.y16_c00279{bottom:211.626582pt;}
.y15_c00279{bottom:239.306571pt;}
.y14_c00279{bottom:266.826560pt;}
.y13_c00279{bottom:294.506549pt;}
.y12_c00279{bottom:322.026538pt;}
.y11_c00279{bottom:349.546527pt;}
.y10_c00279{bottom:377.226516pt;}
.yf_c00279{bottom:404.746505pt;}
.ye_c00279{bottom:432.426494pt;}
.yd_c00279{bottom:459.946483pt;}
.yc_c00279{bottom:487.626472pt;}
.yb_c00279{bottom:508.266463pt;}
.ya_c00279{bottom:527.626456pt;}
.y9_c00279{bottom:547.146448pt;}
.y8_c00279{bottom:573.066437pt;}
.y7_c00279{bottom:597.226428pt;}
.y6_c00279{bottom:965.866280pt;}
.y5_c00279{bottom:993.546269pt;}
.y2_c00279{bottom:1028.426255pt;}
.y1_c00279{bottom:1062.986241pt;}
.h2_c00279{height:48.558731pt;}
.h1_c00279{height:52.134354pt;}
.h4_c00279{height:57.787477pt;}
.h5_c00279{height:62.812475pt;}
.h3_c00279{height:64.499974pt;}
.h0_c00279{height:1122.666667pt;}
.w0_c00279{width:793.333333pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:113.599955pt;}
.x4_c00279{left:116.639953pt;}
.x6_c00279{left:160.799936pt;}
.x5_c00279{left:368.319853pt;}
.x2_c00279{left:385.919568pt;}
.x3_c00279{left:520.959792pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50df0653f9cbf28b23270850.woff2')format("woff");}.ff1_c00280{font-family:ff1_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:ff2_c00280;src:url('chunks/assets/font_92541aea672e0fa6a13d937d.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_e042c42a18f98700438fe7c3.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;}
.m0_c00280{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls3_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.153901px;}
.ls2_c00280{letter-spacing:0.189300px;}
.ls1_c00280{letter-spacing:0.378602px;}
.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:-17.999993px;}
.ws3_c00280{word-spacing:-15.318596px;}
.ws5_c00280{word-spacing:-14.939994px;}
.ws0_c00280{word-spacing:-12.059995px;}
.ws4_c00280{word-spacing:-9.719996px;}
.ws2_c00280{word-spacing:-9.437756px;}
.ws6_c00280{word-spacing:0.000000px;}
._5_c00280{margin-left:-12.716934px;}
._1_c00280{margin-left:-1.105374px;}
._0_c00280{width:1.478392px;}
._4_c00280{width:4.308389px;}
._6_c00280{width:5.356095px;}
._2_c00280{width:15.835210px;}
._3_c00280{width:16.844503px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs5_c00280{font-size:38.879984px;}
.fs4_c00280{font-size:41.759983px;}
.fs3_c00280{font-size:48.239981px;}
.fs0_c00280{font-size:59.759976px;}
.fs1_c00280{font-size:66.239974px;}
.fs2_c00280{font-size:71.999971px;}
.y0_c00280{bottom:0.000000px;}
.y4_c00280{bottom:75.720270px;}
.y3_c00280{bottom:113.880254px;}
.y1d_c00280{bottom:133.499947px;}
.y1c_c00280{bottom:151.499939px;}
.y1b_c00280{bottom:158.339937px;}
.y1a_c00280{bottom:189.839924px;}
.y19_c00280{bottom:207.839917px;}
.y18_c00280{bottom:215.399914px;}
.y17_c00280{bottom:249.059900px;}
.y16_c00280{bottom:451.199820px;}
.y14_c00280{bottom:482.339807px;}
.y15_c00280{bottom:490.619804px;}
.y13_c00280{bottom:513.299795px;}
.y12_c00280{bottom:543.179783px;}
.y11_c00280{bottom:571.799771px;}
.y10_c00280{bottom:596.999761px;}
.yf_c00280{bottom:856.919657px;}
.yd_c00280{bottom:887.879645px;}
.ye_c00280{bottom:896.159642px;}
.yc_c00280{bottom:919.019632px;}
.yb_c00280{bottom:949.979620px;}
.ya_c00280{bottom:981.119608px;}
.y9_c00280{bottom:1012.079595px;}
.y8_c00280{bottom:1043.219583px;}
.y7_c00280{bottom:1074.179570px;}
.y6_c00280{bottom:1105.319558px;}
.y5_c00280{bottom:1136.279545px;}
.y2_c00280{bottom:1175.879530px;}
.y1_c00280{bottom:1196.039522px;}
.h7_c00280{height:34.439752px;}
.h8_c00280{height:38.158578px;}
.h4_c00280{height:47.344903px;}
.h9_c00280{height:49.284472px;}
.h2_c00280{height:54.628572px;}
.h1_c00280{height:58.651148px;}
.h5_c00280{height:65.010911px;}
.h6_c00280{height:70.628878px;}
.h3_c00280{height:70.664034px;}
.h0_c00280{height:1263.000000px;}
.w0_c00280{width:892.500000px;}
.x0_c00280{left:0.000000px;}
.x5_c00280{left:127.800262px;}
.xd_c00280{left:138.239945px;}
.xa_c00280{left:140.219944px;}
.xe_c00280{left:143.099943px;}
.xf_c00280{left:146.519941px;}
.x6_c00280{left:180.899928px;}
.x1_c00280{left:181.979927px;}
.xb_c00280{left:281.159888px;}
.x2_c00280{left:329.219408px;}
.x7_c00280{left:352.259859px;}
.x8_c00280{left:364.499854px;}
.x4_c00280{left:434.159826px;}
.xc_c00280{left:692.279723px;}
.x9_c00280{left:704.159718px;}
.x3_c00280{left:765.539694px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls3_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.136801pt;}
.ls2_c00280{letter-spacing:0.168267pt;}
.ls1_c00280{letter-spacing:0.336535pt;}
.ws1_c00280{word-spacing:-15.999994pt;}
.ws3_c00280{word-spacing:-13.616529pt;}
.ws5_c00280{word-spacing:-13.279995pt;}
.ws0_c00280{word-spacing:-10.719996pt;}
.ws4_c00280{word-spacing:-8.639997pt;}
.ws2_c00280{word-spacing:-8.389117pt;}
.ws6_c00280{word-spacing:0.000000pt;}
._5_c00280{margin-left:-11.303941pt;}
._1_c00280{margin-left:-0.982555pt;}
._0_c00280{width:1.314126pt;}
._4_c00280{width:3.829679pt;}
._6_c00280{width:4.760973pt;}
._2_c00280{width:14.075742pt;}
._3_c00280{width:14.972891pt;}
.fs5_c00280{font-size:34.559986pt;}
.fs4_c00280{font-size:37.119985pt;}
.fs3_c00280{font-size:42.879983pt;}
.fs0_c00280{font-size:53.119979pt;}
.fs1_c00280{font-size:58.879976pt;}
.fs2_c00280{font-size:63.999974pt;}
.y0_c00280{bottom:0.000000pt;}
.y4_c00280{bottom:67.306906pt;}
.y3_c00280{bottom:101.226893pt;}
.y1d_c00280{bottom:118.666619pt;}
.y1c_c00280{bottom:134.666613pt;}
.y1b_c00280{bottom:140.746610pt;}
.y1a_c00280{bottom:168.746599pt;}
.y19_c00280{bottom:184.746593pt;}
.y18_c00280{bottom:191.466590pt;}
.y17_c00280{bottom:221.386578pt;}
.y16_c00280{bottom:401.066506pt;}
.y14_c00280{bottom:428.746495pt;}
.y15_c00280{bottom:436.106492pt;}
.y13_c00280{bottom:456.266484pt;}
.y12_c00280{bottom:482.826474pt;}
.y11_c00280{bottom:508.266463pt;}
.y10_c00280{bottom:530.666454pt;}
.yf_c00280{bottom:761.706362pt;}
.yd_c00280{bottom:789.226351pt;}
.ye_c00280{bottom:796.586348pt;}
.yc_c00280{bottom:816.906340pt;}
.yb_c00280{bottom:844.426329pt;}
.ya_c00280{bottom:872.106318pt;}
.y9_c00280{bottom:899.626307pt;}
.y8_c00280{bottom:927.306296pt;}
.y7_c00280{bottom:954.826285pt;}
.y6_c00280{bottom:982.506274pt;}
.y5_c00280{bottom:1010.026263pt;}
.y2_c00280{bottom:1045.226249pt;}
.y1_c00280{bottom:1063.146241pt;}
.h7_c00280{height:30.613113pt;}
.h8_c00280{height:33.918736pt;}
.h4_c00280{height:42.084358pt;}
.h9_c00280{height:43.808420pt;}
.h2_c00280{height:48.558731pt;}
.h1_c00280{height:52.134354pt;}
.h5_c00280{height:57.787477pt;}
.h6_c00280{height:62.781225pt;}
.h3_c00280{height:62.812475pt;}
.h0_c00280{height:1122.666667pt;}
.w0_c00280{width:793.333333pt;}
.x0_c00280{left:0.000000pt;}
.x5_c00280{left:113.600233pt;}
.xd_c00280{left:122.879951pt;}
.xa_c00280{left:124.639950pt;}
.xe_c00280{left:127.199949pt;}
.xf_c00280{left:130.239948pt;}
.x6_c00280{left:160.799936pt;}
.x1_c00280{left:161.759935pt;}
.xb_c00280{left:249.919900pt;}
.x2_c00280{left:292.639474pt;}
.x7_c00280{left:313.119875pt;}
.x8_c00280{left:323.999870pt;}
.x4_c00280{left:385.919846pt;}
.xc_c00280{left:615.359754pt;}
.x9_c00280{left:625.919750pt;}
.x3_c00280{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dd6ac9cfe3a27d2c11e6ccd.woff2')format("woff");}.ff1_c00281{font-family:ff1_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:ff2_c00281;src:url('chunks/assets/font_acb8e032bc40d5138ff8b2ec.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_a89aacd775cab2fe8cc05927.woff2')format("woff");}.ff3_c00281{font-family:ff3_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;}
.m0_c00281{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls3_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.009900px;}
.ls1_c00281{letter-spacing:0.153901px;}
.ls2_c00281{letter-spacing:0.182640px;}
.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:-14.939994px;}
.ws0_c00281{word-spacing:-12.059995px;}
.ws1_c00281{word-spacing:-8.786876px;}
.ws3_c00281{word-spacing:0.000000px;}
._2_c00281{margin-left:-12.716934px;}
._1_c00281{margin-left:-1.105374px;}
._0_c00281{width:1.195563px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs4_c00281{font-size:38.879984px;}
.fs3_c00281{font-size:48.239981px;}
.fs0_c00281{font-size:59.759976px;}
.fs1_c00281{font-size:66.239974px;}
.fs2_c00281{font-size:71.999971px;}
.y0_c00281{bottom:0.000000px;}
.y4_c00281{bottom:75.719970px;}
.y3_c00281{bottom:113.879954px;}
.y17_c00281{bottom:133.499947px;}
.y16_c00281{bottom:151.859939px;}
.y15_c00281{bottom:159.419936px;}
.y14_c00281{bottom:170.759932px;}
.y13_c00281{bottom:199.739920px;}
.y12_c00281{bottom:228.179909px;}
.y11_c00281{bottom:256.619897px;}
.y10_c00281{bottom:278.399889px;}
.yf_c00281{bottom:300.179880px;}
.ye_c00281{bottom:325.559870px;}
.yc_c00281{bottom:538.139785px;}
.yd_c00281{bottom:546.419781px;}
.yb_c00281{bottom:569.279772px;}
.ya_c00281{bottom:600.239760px;}
.y9_c00281{bottom:631.379747px;}
.y8_c00281{bottom:654.599738px;}
.y7_c00281{bottom:676.379729px;}
.y6_c00281{bottom:706.079718px;}
.y5_c00281{bottom:732.899707px;}
.y2_c00281{bottom:1156.979537px;}
.y1_c00281{bottom:1195.859522px;}
.h7_c00281{height:32.064597px;}
.h6_c00281{height:47.344903px;}
.h8_c00281{height:49.284472px;}
.h2_c00281{height:54.628572px;}
.h1_c00281{height:58.651148px;}
.h4_c00281{height:65.010911px;}
.h3_c00281{height:70.628878px;}
.h5_c00281{height:70.664034px;}
.h0_c00281{height:1263.000000px;}
.w0_c00281{width:892.500000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:127.799949px;}
.xd_c00281{left:137.519945px;}
.x4_c00281{left:140.039944px;}
.xb_c00281{left:154.619938px;}
.x7_c00281{left:180.899928px;}
.xc_c00281{left:237.419905px;}
.x8_c00281{left:240.839904px;}
.x9_c00281{left:253.079899px;}
.x5_c00281{left:384.839846px;}
.x2_c00281{left:434.159514px;}
.x6_c00281{left:446.579821px;}
.x3_c00281{left:653.579739px;}
.xa_c00281{left:672.659731px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls3_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.008800pt;}
.ls1_c00281{letter-spacing:0.136801pt;}
.ls2_c00281{letter-spacing:0.162347pt;}
.ws2_c00281{word-spacing:-13.279995pt;}
.ws0_c00281{word-spacing:-10.719996pt;}
.ws1_c00281{word-spacing:-7.810557pt;}
.ws3_c00281{word-spacing:0.000000pt;}
._2_c00281{margin-left:-11.303941pt;}
._1_c00281{margin-left:-0.982555pt;}
._0_c00281{width:1.062723pt;}
.fs4_c00281{font-size:34.559986pt;}
.fs3_c00281{font-size:42.879983pt;}
.fs0_c00281{font-size:53.119979pt;}
.fs1_c00281{font-size:58.879976pt;}
.fs2_c00281{font-size:63.999974pt;}
.y0_c00281{bottom:0.000000pt;}
.y4_c00281{bottom:67.306640pt;}
.y3_c00281{bottom:101.226626pt;}
.y17_c00281{bottom:118.666619pt;}
.y16_c00281{bottom:134.986613pt;}
.y15_c00281{bottom:141.706610pt;}
.y14_c00281{bottom:151.786606pt;}
.y13_c00281{bottom:177.546596pt;}
.y12_c00281{bottom:202.826586pt;}
.y11_c00281{bottom:228.106575pt;}
.y10_c00281{bottom:247.466568pt;}
.yf_c00281{bottom:266.826560pt;}
.ye_c00281{bottom:289.386551pt;}
.yc_c00281{bottom:478.346475pt;}
.yd_c00281{bottom:485.706472pt;}
.yb_c00281{bottom:506.026464pt;}
.ya_c00281{bottom:533.546453pt;}
.y9_c00281{bottom:561.226442pt;}
.y8_c00281{bottom:581.866434pt;}
.y7_c00281{bottom:601.226426pt;}
.y6_c00281{bottom:627.626416pt;}
.y5_c00281{bottom:651.466406pt;}
.y2_c00281{bottom:1028.426255pt;}
.y1_c00281{bottom:1062.986241pt;}
.h7_c00281{height:28.501864pt;}
.h6_c00281{height:42.084358pt;}
.h8_c00281{height:43.808420pt;}
.h2_c00281{height:48.558731pt;}
.h1_c00281{height:52.134354pt;}
.h4_c00281{height:57.787477pt;}
.h3_c00281{height:62.781225pt;}
.h5_c00281{height:62.812475pt;}
.h0_c00281{height:1122.666667pt;}
.w0_c00281{width:793.333333pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:113.599955pt;}
.xd_c00281{left:122.239951pt;}
.x4_c00281{left:124.479950pt;}
.xb_c00281{left:137.439945pt;}
.x7_c00281{left:160.799936pt;}
.xc_c00281{left:211.039916pt;}
.x8_c00281{left:214.079914pt;}
.x9_c00281{left:224.959910pt;}
.x5_c00281{left:342.079863pt;}
.x2_c00281{left:385.919568pt;}
.x6_c00281{left:396.959841pt;}
.x3_c00281{left:580.959768pt;}
.xa_c00281{left:597.919761pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d187c438934680929a85945.woff2')format("woff");}.ff1_c00282{font-family:ff1_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:ff2_c00282;src:url('chunks/assets/font_d510d8a89cbd3e405afaedb5.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.311035;font-style:normal;font-weight:normal;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_a89aacd775cab2fe8cc05927.woff2')format("woff");}.ff4_c00282{font-family:ff4_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;}
.m0_c00282{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls2_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.153901px;}
.ls1_c00282{letter-spacing:0.182640px;}
.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;}
}
.ws2_c00282{word-spacing:-14.939994px;}
.ws0_c00282{word-spacing:-12.059995px;}
.ws1_c00282{word-spacing:-8.786876px;}
.ws3_c00282{word-spacing:0.000000px;}
._3_c00282{margin-left:-12.716934px;}
._1_c00282{margin-left:-1.105374px;}
._0_c00282{width:1.478392px;}
._2_c00282{width:27.361973px;}
.fc0_c00282{color:rgb(0,0,0);}
.fs4_c00282{font-size:38.879984px;}
.fs3_c00282{font-size:48.239981px;}
.fs0_c00282{font-size:59.759976px;}
.fs1_c00282{font-size:66.239974px;}
.fs2_c00282{font-size:71.999971px;}
.y0_c00282{bottom:0.000000px;}
.y4_c00282{bottom:75.720270px;}
.y3_c00282{bottom:113.880254px;}
.y16_c00282{bottom:133.500247px;}
.y15_c00282{bottom:141.060244px;}
.y14_c00282{bottom:151.499939px;}
.y13_c00282{bottom:169.139932px;}
.y12_c00282{bottom:176.699929px;}
.y11_c00282{bottom:188.039925px;}
.y10_c00282{bottom:412.139835px;}
.ye_c00282{bottom:443.099823px;}
.yf_c00282{bottom:451.379819px;}
.yd_c00282{bottom:474.239810px;}
.yc_c00282{bottom:497.999801px;}
.yb_c00282{bottom:521.219792px;}
.ya_c00282{bottom:542.999783px;}
.y9_c00282{bottom:568.379773px;}
.y8_c00282{bottom:1074.179570px;}
.y6_c00282{bottom:1105.319558px;}
.y7_c00282{bottom:1113.599555px;}
.y5_c00282{bottom:1136.279545px;}
.y2_c00282{bottom:1175.879530px;}
.y1_c00282{bottom:1196.039522px;}
.h7_c00282{height:32.064597px;}
.h4_c00282{height:47.344903px;}
.h2_c00282{height:54.628572px;}
.h1_c00282{height:58.651148px;}
.h6_c00282{height:65.010911px;}
.h3_c00282{height:70.664034px;}
.h5_c00282{height:72.562471px;}
.h0_c00282{height:1263.000000px;}
.w0_c00282{width:892.500000px;}
.x0_c00282{left:0.000000px;}
.x5_c00282{left:127.800262px;}
.xe_c00282{left:137.519945px;}
.xa_c00282{left:140.039944px;}
.x6_c00282{left:180.899928px;}
.x1_c00282{left:181.979927px;}
.x2_c00282{left:329.219408px;}
.xb_c00282{left:350.819860px;}
.x4_c00282{left:434.159826px;}
.x7_c00282{left:452.699819px;}
.x8_c00282{left:464.939814px;}
.xc_c00282{left:608.579757px;}
.xd_c00282{left:620.819752px;}
.x9_c00282{left:632.699747px;}
.x3_c00282{left:765.539694px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls2_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.136801pt;}
.ls1_c00282{letter-spacing:0.162347pt;}
.ws2_c00282{word-spacing:-13.279995pt;}
.ws0_c00282{word-spacing:-10.719996pt;}
.ws1_c00282{word-spacing:-7.810557pt;}
.ws3_c00282{word-spacing:0.000000pt;}
._3_c00282{margin-left:-11.303941pt;}
._1_c00282{margin-left:-0.982555pt;}
._0_c00282{width:1.314126pt;}
._2_c00282{width:24.321754pt;}
.fs4_c00282{font-size:34.559986pt;}
.fs3_c00282{font-size:42.879983pt;}
.fs0_c00282{font-size:53.119979pt;}
.fs1_c00282{font-size:58.879976pt;}
.fs2_c00282{font-size:63.999974pt;}
.y0_c00282{bottom:0.000000pt;}
.y4_c00282{bottom:67.306906pt;}
.y3_c00282{bottom:101.226893pt;}
.y16_c00282{bottom:118.666886pt;}
.y15_c00282{bottom:125.386883pt;}
.y14_c00282{bottom:134.666613pt;}
.y13_c00282{bottom:150.346607pt;}
.y12_c00282{bottom:157.066604pt;}
.y11_c00282{bottom:167.146600pt;}
.y10_c00282{bottom:366.346520pt;}
.ye_c00282{bottom:393.866509pt;}
.yf_c00282{bottom:401.226506pt;}
.yd_c00282{bottom:421.546498pt;}
.yc_c00282{bottom:442.666490pt;}
.yb_c00282{bottom:463.306481pt;}
.ya_c00282{bottom:482.666474pt;}
.y9_c00282{bottom:505.226465pt;}
.y8_c00282{bottom:954.826285pt;}
.y6_c00282{bottom:982.506274pt;}
.y7_c00282{bottom:989.866271pt;}
.y5_c00282{bottom:1010.026263pt;}
.y2_c00282{bottom:1045.226249pt;}
.y1_c00282{bottom:1063.146241pt;}
.h7_c00282{height:28.501864pt;}
.h4_c00282{height:42.084358pt;}
.h2_c00282{height:48.558731pt;}
.h1_c00282{height:52.134354pt;}
.h6_c00282{height:57.787477pt;}
.h3_c00282{height:62.812475pt;}
.h5_c00282{height:64.499974pt;}
.h0_c00282{height:1122.666667pt;}
.w0_c00282{width:793.333333pt;}
.x0_c00282{left:0.000000pt;}
.x5_c00282{left:113.600233pt;}
.xe_c00282{left:122.239951pt;}
.xa_c00282{left:124.479950pt;}
.x6_c00282{left:160.799936pt;}
.x1_c00282{left:161.759935pt;}
.x2_c00282{left:292.639474pt;}
.xb_c00282{left:311.839875pt;}
.x4_c00282{left:385.919846pt;}
.x7_c00282{left:402.399839pt;}
.x8_c00282{left:413.279835pt;}
.xc_c00282{left:540.959784pt;}
.xd_c00282{left:551.839779pt;}
.x9_c00282{left:562.399775pt;}
.x3_c00282{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c9f3aea60863a646aa37026.woff2')format("woff");}.ff1_c00283{font-family:ff1_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:ff2_c00283;src:url('chunks/assets/font_74fb978e24737038214f07a6.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_19aba719001698b8de9e51ef.woff2')format("woff");}.ff3_c00283{font-family:ff3_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:ff4_c00283;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls1_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.009900px;}
.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;}
}
.ws0_c00283{word-spacing:0.000000px;}
._1_c00283{margin-left:-1.105374px;}
._0_c00283{width:1.195563px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs0_c00283{font-size:59.759976px;}
.fs1_c00283{font-size:66.239974px;}
.fs2_c00283{font-size:71.999971px;}
.y0_c00283{bottom:0.000000px;}
.y4_c00283{bottom:75.719970px;}
.y3_c00283{bottom:113.879954px;}
.y1d_c00283{bottom:177.599929px;}
.y1c_c00283{bottom:208.739917px;}
.y1b_c00283{bottom:239.699904px;}
.y1a_c00283{bottom:270.839892px;}
.y19_c00283{bottom:301.799879px;}
.y18_c00283{bottom:332.939867px;}
.y17_c00283{bottom:363.899854px;}
.y16_c00283{bottom:395.039842px;}
.y15_c00283{bottom:425.999830px;}
.y14_c00283{bottom:457.139817px;}
.y13_c00283{bottom:488.099805px;}
.y12_c00283{bottom:519.239792px;}
.y11_c00283{bottom:550.199780px;}
.y10_c00283{bottom:581.339767px;}
.yf_c00283{bottom:612.299755px;}
.ye_c00283{bottom:643.439743px;}
.yd_c00283{bottom:674.399730px;}
.yc_c00283{bottom:705.539718px;}
.yb_c00283{bottom:736.499705px;}
.ya_c00283{bottom:767.639693px;}
.y9_c00283{bottom:798.599681px;}
.y8_c00283{bottom:829.739668px;}
.y7_c00283{bottom:853.319659px;}
.y6_c00283{bottom:875.099650px;}
.y5_c00283{bottom:900.479640px;}
.y2_c00283{bottom:1156.979537px;}
.y1_c00283{bottom:1195.859522px;}
.h2_c00283{height:54.628572px;}
.h1_c00283{height:58.651148px;}
.h5_c00283{height:65.010911px;}
.h4_c00283{height:66.757473px;}
.h3_c00283{height:70.628878px;}
.h6_c00283{height:72.562471px;}
.h0_c00283{height:1263.000000px;}
.w0_c00283{width:892.500000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:127.799949px;}
.x4_c00283{left:148.499941px;}
.x5_c00283{left:321.659871px;}
.x2_c00283{left:434.159514px;}
.x6_c00283{left:446.579821px;}
.x3_c00283{left:692.999723px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls1_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.008800pt;}
.ws0_c00283{word-spacing:0.000000pt;}
._1_c00283{margin-left:-0.982555pt;}
._0_c00283{width:1.062723pt;}
.fs0_c00283{font-size:53.119979pt;}
.fs1_c00283{font-size:58.879976pt;}
.fs2_c00283{font-size:63.999974pt;}
.y0_c00283{bottom:0.000000pt;}
.y4_c00283{bottom:67.306640pt;}
.y3_c00283{bottom:101.226626pt;}
.y1d_c00283{bottom:157.866604pt;}
.y1c_c00283{bottom:185.546592pt;}
.y1b_c00283{bottom:213.066581pt;}
.y1a_c00283{bottom:240.746570pt;}
.y19_c00283{bottom:268.266559pt;}
.y18_c00283{bottom:295.946548pt;}
.y17_c00283{bottom:323.466537pt;}
.y16_c00283{bottom:351.146526pt;}
.y15_c00283{bottom:378.666515pt;}
.y14_c00283{bottom:406.346504pt;}
.y13_c00283{bottom:433.866493pt;}
.y12_c00283{bottom:461.546482pt;}
.y11_c00283{bottom:489.066471pt;}
.y10_c00283{bottom:516.746460pt;}
.yf_c00283{bottom:544.266449pt;}
.ye_c00283{bottom:571.946438pt;}
.yd_c00283{bottom:599.466427pt;}
.yc_c00283{bottom:627.146416pt;}
.yb_c00283{bottom:654.666405pt;}
.ya_c00283{bottom:682.346394pt;}
.y9_c00283{bottom:709.866383pt;}
.y8_c00283{bottom:737.546372pt;}
.y7_c00283{bottom:758.506363pt;}
.y6_c00283{bottom:777.866356pt;}
.y5_c00283{bottom:800.426346pt;}
.y2_c00283{bottom:1028.426255pt;}
.y1_c00283{bottom:1062.986241pt;}
.h2_c00283{height:48.558731pt;}
.h1_c00283{height:52.134354pt;}
.h5_c00283{height:57.787477pt;}
.h4_c00283{height:59.339976pt;}
.h3_c00283{height:62.781225pt;}
.h6_c00283{height:64.499974pt;}
.h0_c00283{height:1122.666667pt;}
.w0_c00283{width:793.333333pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:113.599955pt;}
.x4_c00283{left:131.999947pt;}
.x5_c00283{left:285.919886pt;}
.x2_c00283{left:385.919568pt;}
.x6_c00283{left:396.959841pt;}
.x3_c00283{left:615.999754pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a183ca77d411a1844b2198e6.woff2')format("woff");}.ff1_c00284{font-family:ff1_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:ff2_c00284;src:url('chunks/assets/font_b19d5318ea21d1532753876f.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_d41fb9847c9d2193b8aaa4f0.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.311035;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_3ab8e447e0f10f44fc0085d6.woff2')format("woff");}.ff5_c00284{font-family:ff5_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:ff6_c00284;src:url('chunks/assets/font_068c8554672b9ffeed0e8a62.woff2')format("woff");}.ff6_c00284{font-family:ff6_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;}
.m0_c00284{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls2_c00284{letter-spacing:0.000000px;}
.ls1_c00284{letter-spacing:0.153901px;}
.ls0_c00284{letter-spacing:34.015846px;}
.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;}
}
.ws0_c00284{word-spacing:-17.999993px;}
.ws1_c00284{word-spacing:-12.059995px;}
.ws2_c00284{word-spacing:-9.719996px;}
.ws3_c00284{word-spacing:0.000000px;}
._a_c00284{margin-left:-12.716934px;}
._1_c00284{margin-left:-1.105374px;}
._0_c00284{width:1.478392px;}
._b_c00284{width:3.071071px;}
._5_c00284{width:4.262306px;}
._4_c00284{width:6.065743px;}
._3_c00284{width:7.284491px;}
._2_c00284{width:8.474936px;}
._6_c00284{width:19.005237px;}
._7_c00284{width:20.311096px;}
._9_c00284{width:21.903613px;}
._8_c00284{width:23.444798px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs4_c00284{font-size:38.879984px;}
.fs3_c00284{font-size:48.239981px;}
.fs0_c00284{font-size:59.759976px;}
.fs1_c00284{font-size:66.239974px;}
.fs2_c00284{font-size:71.999971px;}
.y0_c00284{bottom:0.000000px;}
.y4_c00284{bottom:75.720270px;}
.y3_c00284{bottom:113.880254px;}
.y1a_c00284{bottom:133.139947px;}
.y19_c00284{bottom:150.419940px;}
.y18_c00284{bottom:167.699933px;}
.y17_c00284{bottom:174.539930px;}
.y16_c00284{bottom:185.879926px;}
.y15_c00284{bottom:300.179880px;}
.y13_c00284{bottom:331.139868px;}
.y14_c00284{bottom:339.419864px;}
.y12_c00284{bottom:362.279855px;}
.y11_c00284{bottom:393.239843px;}
.y10_c00284{bottom:424.379830px;}
.yf_c00284{bottom:455.339818px;}
.ye_c00284{bottom:486.479805px;}
.yd_c00284{bottom:517.439793px;}
.yc_c00284{bottom:548.579781px;}
.yb_c00284{bottom:579.539768px;}
.ya_c00284{bottom:610.679756px;}
.y9_c00284{bottom:640.559744px;}
.y8_c00284{bottom:665.939734px;}
.y7_c00284{bottom:1073.819570px;}
.y6_c00284{bottom:1104.959558px;}
.y5_c00284{bottom:1135.919546px;}
.y2_c00284{bottom:1175.879530px;}
.y1_c00284{bottom:1196.039522px;}
.h9_c00284{height:38.158578px;}
.h8_c00284{height:47.344903px;}
.h2_c00284{height:54.628572px;}
.h1_c00284{height:58.651148px;}
.h6_c00284{height:66.757473px;}
.h5_c00284{height:70.628878px;}
.h7_c00284{height:70.664034px;}
.h4_c00284{height:72.562471px;}
.h3_c00284{height:75.093720px;}
.h0_c00284{height:1263.000000px;}
.w0_c00284{width:892.500000px;}
.x0_c00284{left:0.000000px;}
.x5_c00284{left:127.800262px;}
.xa_c00284{left:137.519945px;}
.x8_c00284{left:180.899928px;}
.x1_c00284{left:181.979927px;}
.x7_c00284{left:186.299925px;}
.x2_c00284{left:329.219408px;}
.x4_c00284{left:434.159826px;}
.x6_c00284{left:577.079769px;}
.x9_c00284{left:588.419765px;}
.x3_c00284{left:765.539694px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls2_c00284{letter-spacing:0.000000pt;}
.ls1_c00284{letter-spacing:0.136801pt;}
.ls0_c00284{letter-spacing:30.236308pt;}
.ws0_c00284{word-spacing:-15.999994pt;}
.ws1_c00284{word-spacing:-10.719996pt;}
.ws2_c00284{word-spacing:-8.639997pt;}
.ws3_c00284{word-spacing:0.000000pt;}
._a_c00284{margin-left:-11.303941pt;}
._1_c00284{margin-left:-0.982555pt;}
._0_c00284{width:1.314126pt;}
._b_c00284{width:2.729841pt;}
._5_c00284{width:3.788717pt;}
._4_c00284{width:5.391771pt;}
._3_c00284{width:6.475103pt;}
._2_c00284{width:7.533277pt;}
._6_c00284{width:16.893544pt;}
._7_c00284{width:18.054307pt;}
._9_c00284{width:19.469878pt;}
._8_c00284{width:20.839820pt;}
.fs4_c00284{font-size:34.559986pt;}
.fs3_c00284{font-size:42.879983pt;}
.fs0_c00284{font-size:53.119979pt;}
.fs1_c00284{font-size:58.879976pt;}
.fs2_c00284{font-size:63.999974pt;}
.y0_c00284{bottom:0.000000pt;}
.y4_c00284{bottom:67.306906pt;}
.y3_c00284{bottom:101.226893pt;}
.y1a_c00284{bottom:118.346619pt;}
.y19_c00284{bottom:133.706613pt;}
.y18_c00284{bottom:149.066607pt;}
.y17_c00284{bottom:155.146605pt;}
.y16_c00284{bottom:165.226601pt;}
.y15_c00284{bottom:266.826560pt;}
.y13_c00284{bottom:294.346549pt;}
.y14_c00284{bottom:301.706546pt;}
.y12_c00284{bottom:322.026538pt;}
.y11_c00284{bottom:349.546527pt;}
.y10_c00284{bottom:377.226516pt;}
.yf_c00284{bottom:404.746505pt;}
.ye_c00284{bottom:432.426494pt;}
.yd_c00284{bottom:459.946483pt;}
.yc_c00284{bottom:487.626472pt;}
.yb_c00284{bottom:515.146461pt;}
.ya_c00284{bottom:542.826450pt;}
.y9_c00284{bottom:569.386439pt;}
.y8_c00284{bottom:591.946430pt;}
.y7_c00284{bottom:954.506285pt;}
.y6_c00284{bottom:982.186274pt;}
.y5_c00284{bottom:1009.706263pt;}
.y2_c00284{bottom:1045.226249pt;}
.y1_c00284{bottom:1063.146241pt;}
.h9_c00284{height:33.918736pt;}
.h8_c00284{height:42.084358pt;}
.h2_c00284{height:48.558731pt;}
.h1_c00284{height:52.134354pt;}
.h6_c00284{height:59.339976pt;}
.h5_c00284{height:62.781225pt;}
.h7_c00284{height:62.812475pt;}
.h4_c00284{height:64.499974pt;}
.h3_c00284{height:66.749973pt;}
.h0_c00284{height:1122.666667pt;}
.w0_c00284{width:793.333333pt;}
.x0_c00284{left:0.000000pt;}
.x5_c00284{left:113.600233pt;}
.xa_c00284{left:122.239951pt;}
.x8_c00284{left:160.799936pt;}
.x1_c00284{left:161.759935pt;}
.x7_c00284{left:165.599934pt;}
.x2_c00284{left:292.639474pt;}
.x4_c00284{left:385.919846pt;}
.x6_c00284{left:512.959795pt;}
.x9_c00284{left:523.039791pt;}
.x3_c00284{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2da448400676456a215d221b.woff2')format("woff");}.ff1_c00285{font-family:ff1_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:ff2_c00285;src:url('chunks/assets/font_eda5495f5954b8fc63cde009.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_ca889a573a2f6e126e168ca2.woff2')format("woff");}.ff3_c00285{font-family:ff3_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;}
.m0_c00285{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls2_c00285{letter-spacing:0.000000px;}
.ls0_c00285{letter-spacing:0.153901px;}
.ls1_c00285{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00285{word-spacing:-14.939994px;}
.ws0_c00285{word-spacing:-12.059995px;}
.ws1_c00285{word-spacing:-9.719996px;}
.ws3_c00285{word-spacing:0.000000px;}
._4_c00285{margin-left:-12.716934px;}
._1_c00285{margin-left:-1.105374px;}
._0_c00285{width:1.195563px;}
._2_c00285{width:11.512620px;}
._3_c00285{width:26.752531px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs4_c00285{font-size:38.879984px;}
.fs3_c00285{font-size:48.239981px;}
.fs0_c00285{font-size:59.759976px;}
.fs1_c00285{font-size:66.239974px;}
.fs2_c00285{font-size:71.999971px;}
.y0_c00285{bottom:0.000000px;}
.y4_c00285{bottom:75.719970px;}
.y3_c00285{bottom:113.879954px;}
.y13_c00285{bottom:133.499947px;}
.y12_c00285{bottom:151.499939px;}
.y11_c00285{bottom:158.339937px;}
.y10_c00285{bottom:169.679932px;}
.yf_c00285{bottom:474.419810px;}
.yd_c00285{bottom:505.379798px;}
.ye_c00285{bottom:513.659795px;}
.yc_c00285{bottom:536.519785px;}
.yb_c00285{bottom:567.479773px;}
.ya_c00285{bottom:598.619761px;}
.y9_c00285{bottom:622.379751px;}
.y8_c00285{bottom:645.599742px;}
.y7_c00285{bottom:667.379733px;}
.y6_c00285{bottom:697.079721px;}
.y5_c00285{bottom:723.899710px;}
.y2_c00285{bottom:1156.979537px;}
.y1_c00285{bottom:1195.859522px;}
.h7_c00285{height:38.158578px;}
.h5_c00285{height:47.344903px;}
.h8_c00285{height:49.284472px;}
.h2_c00285{height:54.628572px;}
.h1_c00285{height:58.651148px;}
.h4_c00285{height:65.010911px;}
.h6_c00285{height:70.628878px;}
.h3_c00285{height:70.664034px;}
.h0_c00285{height:1263.000000px;}
.w0_c00285{width:892.500000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:127.799949px;}
.x9_c00285{left:137.519945px;}
.x6_c00285{left:180.899928px;}
.x5_c00285{left:335.699866px;}
.x2_c00285{left:434.159514px;}
.x4_c00285{left:446.579821px;}
.x7_c00285{left:650.159740px;}
.x8_c00285{left:662.399735px;}
.x3_c00285{left:669.599732px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls2_c00285{letter-spacing:0.000000pt;}
.ls0_c00285{letter-spacing:0.136801pt;}
.ls1_c00285{letter-spacing:0.168267pt;}
.ws2_c00285{word-spacing:-13.279995pt;}
.ws0_c00285{word-spacing:-10.719996pt;}
.ws1_c00285{word-spacing:-8.639997pt;}
.ws3_c00285{word-spacing:0.000000pt;}
._4_c00285{margin-left:-11.303941pt;}
._1_c00285{margin-left:-0.982555pt;}
._0_c00285{width:1.062723pt;}
._2_c00285{width:10.233440pt;}
._3_c00285{width:23.780027pt;}
.fs4_c00285{font-size:34.559986pt;}
.fs3_c00285{font-size:42.879983pt;}
.fs0_c00285{font-size:53.119979pt;}
.fs1_c00285{font-size:58.879976pt;}
.fs2_c00285{font-size:63.999974pt;}
.y0_c00285{bottom:0.000000pt;}
.y4_c00285{bottom:67.306640pt;}
.y3_c00285{bottom:101.226626pt;}
.y13_c00285{bottom:118.666619pt;}
.y12_c00285{bottom:134.666613pt;}
.y11_c00285{bottom:140.746610pt;}
.y10_c00285{bottom:150.826606pt;}
.yf_c00285{bottom:421.706498pt;}
.yd_c00285{bottom:449.226487pt;}
.ye_c00285{bottom:456.586484pt;}
.yc_c00285{bottom:476.906476pt;}
.yb_c00285{bottom:504.426465pt;}
.ya_c00285{bottom:532.106454pt;}
.y9_c00285{bottom:553.226445pt;}
.y8_c00285{bottom:573.866437pt;}
.y7_c00285{bottom:593.226429pt;}
.y6_c00285{bottom:619.626419pt;}
.y5_c00285{bottom:643.466409pt;}
.y2_c00285{bottom:1028.426255pt;}
.y1_c00285{bottom:1062.986241pt;}
.h7_c00285{height:33.918736pt;}
.h5_c00285{height:42.084358pt;}
.h8_c00285{height:43.808420pt;}
.h2_c00285{height:48.558731pt;}
.h1_c00285{height:52.134354pt;}
.h4_c00285{height:57.787477pt;}
.h6_c00285{height:62.781225pt;}
.h3_c00285{height:62.812475pt;}
.h0_c00285{height:1122.666667pt;}
.w0_c00285{width:793.333333pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:113.599955pt;}
.x9_c00285{left:122.239951pt;}
.x6_c00285{left:160.799936pt;}
.x5_c00285{left:298.399881pt;}
.x2_c00285{left:385.919568pt;}
.x4_c00285{left:396.959841pt;}
.x7_c00285{left:577.919769pt;}
.x8_c00285{left:588.799764pt;}
.x3_c00285{left:595.199762pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b91b1cf1fbba99faa3b98e8c.woff2')format("woff");}.ff1_c00286{font-family:ff1_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:ff2_c00286;src:url('chunks/assets/font_96c45afd402dc31c9a52f41e.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00286{font-family:ff3_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:ff4_c00286;src:url('chunks/assets/font_aafb74e19ee6123682db9cfc.woff2')format("woff");}.ff4_c00286{font-family:ff4_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;}
.m0_c00286{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls3_c00286{letter-spacing:0.000000px;}
.ls0_c00286{letter-spacing:0.009900px;}
.ls1_c00286{letter-spacing:0.153901px;}
.ls2_c00286{letter-spacing:0.182640px;}
.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:-16.559993px;}
.ws3_c00286{word-spacing:-14.939994px;}
.ws0_c00286{word-spacing:-12.059995px;}
.ws2_c00286{word-spacing:-8.786876px;}
.ws4_c00286{word-spacing:0.000000px;}
._2_c00286{margin-left:-12.716934px;}
._1_c00286{margin-left:-1.105374px;}
._0_c00286{width:1.478392px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs4_c00286{font-size:38.879984px;}
.fs3_c00286{font-size:48.239981px;}
.fs0_c00286{font-size:59.759976px;}
.fs1_c00286{font-size:66.239974px;}
.fs2_c00286{font-size:71.999971px;}
.y0_c00286{bottom:0.000000px;}
.y4_c00286{bottom:75.720270px;}
.y3_c00286{bottom:113.880254px;}
.y15_c00286{bottom:133.499947px;}
.y14_c00286{bottom:151.859939px;}
.y13_c00286{bottom:159.419936px;}
.y12_c00286{bottom:170.759932px;}
.y11_c00286{bottom:207.299917px;}
.y10_c00286{bottom:231.059908px;}
.yf_c00286{bottom:254.279898px;}
.ye_c00286{bottom:276.239890px;}
.yd_c00286{bottom:301.439879px;}
.yc_c00286{bottom:634.079746px;}
.ya_c00286{bottom:665.399734px;}
.yb_c00286{bottom:673.679731px;}
.y9_c00286{bottom:689.339724px;}
.y8_c00286{bottom:712.559715px;}
.y7_c00286{bottom:734.339706px;}
.y6_c00286{bottom:753.419699px;}
.y5_c00286{bottom:780.239688px;}
.y2_c00286{bottom:1175.879530px;}
.y1_c00286{bottom:1196.039522px;}
.h8_c00286{height:32.064597px;}
.h6_c00286{height:47.344903px;}
.h9_c00286{height:49.284472px;}
.h2_c00286{height:54.628572px;}
.h1_c00286{height:58.651148px;}
.h4_c00286{height:65.010911px;}
.h7_c00286{height:70.628878px;}
.h5_c00286{height:70.664034px;}
.h3_c00286{height:72.562471px;}
.h0_c00286{height:1263.000000px;}
.w0_c00286{width:892.500000px;}
.x0_c00286{left:0.000000px;}
.x5_c00286{left:127.800262px;}
.x8_c00286{left:136.079946px;}
.xf_c00286{left:137.519945px;}
.xd_c00286{left:162.179935px;}
.x1_c00286{left:181.979927px;}
.x9_c00286{left:209.159916px;}
.xe_c00286{left:300.239880px;}
.x2_c00286{left:329.219408px;}
.x4_c00286{left:434.159826px;}
.x7_c00286{left:446.579821px;}
.xa_c00286{left:491.039804px;}
.xb_c00286{left:503.279799px;}
.xc_c00286{left:643.499743px;}
.x6_c00286{left:646.919741px;}
.x3_c00286{left:765.539694px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls3_c00286{letter-spacing:0.000000pt;}
.ls0_c00286{letter-spacing:0.008800pt;}
.ls1_c00286{letter-spacing:0.136801pt;}
.ls2_c00286{letter-spacing:0.162347pt;}
.ws1_c00286{word-spacing:-14.719994pt;}
.ws3_c00286{word-spacing:-13.279995pt;}
.ws0_c00286{word-spacing:-10.719996pt;}
.ws2_c00286{word-spacing:-7.810557pt;}
.ws4_c00286{word-spacing:0.000000pt;}
._2_c00286{margin-left:-11.303941pt;}
._1_c00286{margin-left:-0.982555pt;}
._0_c00286{width:1.314126pt;}
.fs4_c00286{font-size:34.559986pt;}
.fs3_c00286{font-size:42.879983pt;}
.fs0_c00286{font-size:53.119979pt;}
.fs1_c00286{font-size:58.879976pt;}
.fs2_c00286{font-size:63.999974pt;}
.y0_c00286{bottom:0.000000pt;}
.y4_c00286{bottom:67.306906pt;}
.y3_c00286{bottom:101.226893pt;}
.y15_c00286{bottom:118.666619pt;}
.y14_c00286{bottom:134.986613pt;}
.y13_c00286{bottom:141.706610pt;}
.y12_c00286{bottom:151.786606pt;}
.y11_c00286{bottom:184.266593pt;}
.y10_c00286{bottom:205.386585pt;}
.yf_c00286{bottom:226.026576pt;}
.ye_c00286{bottom:245.546568pt;}
.yd_c00286{bottom:267.946559pt;}
.yc_c00286{bottom:563.626441pt;}
.ya_c00286{bottom:591.466430pt;}
.yb_c00286{bottom:598.826427pt;}
.y9_c00286{bottom:612.746422pt;}
.y8_c00286{bottom:633.386413pt;}
.y7_c00286{bottom:652.746406pt;}
.y6_c00286{bottom:669.706399pt;}
.y5_c00286{bottom:693.546389pt;}
.y2_c00286{bottom:1045.226249pt;}
.y1_c00286{bottom:1063.146241pt;}
.h8_c00286{height:28.501864pt;}
.h6_c00286{height:42.084358pt;}
.h9_c00286{height:43.808420pt;}
.h2_c00286{height:48.558731pt;}
.h1_c00286{height:52.134354pt;}
.h4_c00286{height:57.787477pt;}
.h7_c00286{height:62.781225pt;}
.h5_c00286{height:62.812475pt;}
.h3_c00286{height:64.499974pt;}
.h0_c00286{height:1122.666667pt;}
.w0_c00286{width:793.333333pt;}
.x0_c00286{left:0.000000pt;}
.x5_c00286{left:113.600233pt;}
.x8_c00286{left:120.959952pt;}
.xf_c00286{left:122.239951pt;}
.xd_c00286{left:144.159942pt;}
.x1_c00286{left:161.759935pt;}
.x9_c00286{left:185.919926pt;}
.xe_c00286{left:266.879893pt;}
.x2_c00286{left:292.639474pt;}
.x4_c00286{left:385.919846pt;}
.x7_c00286{left:396.959841pt;}
.xa_c00286{left:436.479825pt;}
.xb_c00286{left:447.359821pt;}
.xc_c00286{left:571.999771pt;}
.x6_c00286{left:575.039770pt;}
.x3_c00286{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18642cb713dec8142da32920.woff2')format("woff");}.ff1_c00287{font-family:ff1_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:ff2_c00287;src:url('chunks/assets/font_076c8106b968e97045a07ed5.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.311035;font-style:normal;font-weight:normal;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_8f4cb7d28bea1d13e25864d4.woff2')format("woff");}.ff4_c00287{font-family:ff4_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;}
.m0_c00287{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls1_c00287{letter-spacing:0.000000px;}
.ls0_c00287{letter-spacing:0.009900px;}
.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;}
}
.ws0_c00287{word-spacing:0.000000px;}
._1_c00287{margin-left:-1.105374px;}
._0_c00287{width:1.195563px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs0_c00287{font-size:59.759976px;}
.fs1_c00287{font-size:66.239974px;}
.fs2_c00287{font-size:71.999971px;}
.y0_c00287{bottom:0.000000px;}
.y4_c00287{bottom:75.719970px;}
.y3_c00287{bottom:113.879954px;}
.y1d_c00287{bottom:193.439923px;}
.y1c_c00287{bottom:224.399910px;}
.y1b_c00287{bottom:255.539898px;}
.y1a_c00287{bottom:286.499885px;}
.y19_c00287{bottom:317.639873px;}
.y18_c00287{bottom:348.599861px;}
.y17_c00287{bottom:379.739848px;}
.y16_c00287{bottom:410.699836px;}
.y15_c00287{bottom:441.839823px;}
.y14_c00287{bottom:472.799811px;}
.y13_c00287{bottom:503.939798px;}
.y12_c00287{bottom:534.899786px;}
.y11_c00287{bottom:566.039774px;}
.y10_c00287{bottom:596.999761px;}
.yf_c00287{bottom:628.139749px;}
.ye_c00287{bottom:659.099736px;}
.yd_c00287{bottom:690.239724px;}
.yc_c00287{bottom:721.199712px;}
.yb_c00287{bottom:752.339699px;}
.ya_c00287{bottom:783.299687px;}
.y9_c00287{bottom:814.799674px;}
.y8_c00287{bottom:838.019665px;}
.y7_c00287{bottom:859.799656px;}
.y6_c00287{bottom:889.139644px;}
.y5_c00287{bottom:916.319633px;}
.y2_c00287{bottom:1156.979537px;}
.y1_c00287{bottom:1195.859522px;}
.h2_c00287{height:54.628572px;}
.h1_c00287{height:58.651148px;}
.h4_c00287{height:65.010911px;}
.h5_c00287{height:70.664034px;}
.h3_c00287{height:72.562471px;}
.h0_c00287{height:1263.000000px;}
.w0_c00287{width:892.500000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:127.799949px;}
.x5_c00287{left:137.159945px;}
.x4_c00287{left:154.979938px;}
.x2_c00287{left:434.159514px;}
.x6_c00287{left:446.579821px;}
.x3_c00287{left:665.279734px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls1_c00287{letter-spacing:0.000000pt;}
.ls0_c00287{letter-spacing:0.008800pt;}
.ws0_c00287{word-spacing:0.000000pt;}
._1_c00287{margin-left:-0.982555pt;}
._0_c00287{width:1.062723pt;}
.fs0_c00287{font-size:53.119979pt;}
.fs1_c00287{font-size:58.879976pt;}
.fs2_c00287{font-size:63.999974pt;}
.y0_c00287{bottom:0.000000pt;}
.y4_c00287{bottom:67.306640pt;}
.y3_c00287{bottom:101.226626pt;}
.y1d_c00287{bottom:171.946598pt;}
.y1c_c00287{bottom:199.466587pt;}
.y1b_c00287{bottom:227.146576pt;}
.y1a_c00287{bottom:254.666565pt;}
.y19_c00287{bottom:282.346554pt;}
.y18_c00287{bottom:309.866543pt;}
.y17_c00287{bottom:337.546532pt;}
.y16_c00287{bottom:365.066521pt;}
.y15_c00287{bottom:392.746510pt;}
.y14_c00287{bottom:420.266499pt;}
.y13_c00287{bottom:447.946487pt;}
.y12_c00287{bottom:475.466476pt;}
.y11_c00287{bottom:503.146465pt;}
.y10_c00287{bottom:530.666454pt;}
.yf_c00287{bottom:558.346443pt;}
.ye_c00287{bottom:585.866432pt;}
.yd_c00287{bottom:613.546421pt;}
.yc_c00287{bottom:641.066410pt;}
.yb_c00287{bottom:668.746399pt;}
.ya_c00287{bottom:696.266388pt;}
.y9_c00287{bottom:724.266377pt;}
.y8_c00287{bottom:744.906369pt;}
.y7_c00287{bottom:764.266361pt;}
.y6_c00287{bottom:790.346351pt;}
.y5_c00287{bottom:814.506341pt;}
.y2_c00287{bottom:1028.426255pt;}
.y1_c00287{bottom:1062.986241pt;}
.h2_c00287{height:48.558731pt;}
.h1_c00287{height:52.134354pt;}
.h4_c00287{height:57.787477pt;}
.h5_c00287{height:62.812475pt;}
.h3_c00287{height:64.499974pt;}
.h0_c00287{height:1122.666667pt;}
.w0_c00287{width:793.333333pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:113.599955pt;}
.x5_c00287{left:121.919951pt;}
.x4_c00287{left:137.759945pt;}
.x2_c00287{left:385.919568pt;}
.x6_c00287{left:396.959841pt;}
.x3_c00287{left:591.359763pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4db8ff140fa859b92c734491.woff2')format("woff");}.ff1_c00288{font-family:ff1_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:ff2_c00288;src:url('chunks/assets/font_4f38e8253dfe9b2736fdf56f.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_614d9b4148ef0da649c59993.woff2')format("woff");}.ff3_c00288{font-family:ff3_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;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_3aa45e14ec5447f248998f7b.woff2')format("woff");}.ff4_c00288{font-family:ff4_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:ff5_c00288;src:url('chunks/assets/font_369896c8ac4c32b1b2b3369b.woff2')format("woff");}.ff5_c00288{font-family:ff5_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;}
.m0_c00288{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls1_c00288{letter-spacing:0.000000px;}
.ls0_c00288{letter-spacing:0.009900px;}
.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:-17.999993px;}
.ws1_c00288{word-spacing:0.000000px;}
._7_c00288{margin-left:-2.154246px;}
._1_c00288{margin-left:-1.105374px;}
._0_c00288{width:1.478392px;}
._5_c00288{width:3.012821px;}
._8_c00288{width:4.262306px;}
._9_c00288{width:5.299414px;}
._2_c00288{width:7.310301px;}
._3_c00288{width:8.896815px;}
._4_c00288{width:9.949769px;}
._b_c00288{width:11.539011px;}
._a_c00288{width:15.114778px;}
._6_c00288{width:16.417439px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs0_c00288{font-size:59.759976px;}
.fs1_c00288{font-size:66.239974px;}
.fs2_c00288{font-size:71.999971px;}
.y0_c00288{bottom:0.000000px;}
.y4_c00288{bottom:75.720270px;}
.y3_c00288{bottom:113.880254px;}
.y18_c00288{bottom:182.999927px;}
.y17_c00288{bottom:214.139914px;}
.y16_c00288{bottom:245.099902px;}
.y15_c00288{bottom:276.239890px;}
.y14_c00288{bottom:307.199877px;}
.y13_c00288{bottom:338.339865px;}
.y12_c00288{bottom:369.299852px;}
.y11_c00288{bottom:400.439840px;}
.y10_c00288{bottom:431.399827px;}
.yf_c00288{bottom:462.539815px;}
.ye_c00288{bottom:493.499803px;}
.yd_c00288{bottom:524.639790px;}
.yc_c00288{bottom:555.599778px;}
.yb_c00288{bottom:585.479766px;}
.ya_c00288{bottom:613.919754px;}
.y9_c00288{bottom:643.619743px;}
.y8_c00288{bottom:670.439732px;}
.y7_c00288{bottom:1073.819570px;}
.y6_c00288{bottom:1105.319558px;}
.y5_c00288{bottom:1135.919546px;}
.y2_c00288{bottom:1175.879530px;}
.y1_c00288{bottom:1196.039522px;}
.h2_c00288{height:54.628572px;}
.h1_c00288{height:58.651148px;}
.h5_c00288{height:65.010911px;}
.h6_c00288{height:70.628878px;}
.h4_c00288{height:70.664034px;}
.h3_c00288{height:72.562471px;}
.h0_c00288{height:1263.000000px;}
.w0_c00288{width:892.500000px;}
.x0_c00288{left:0.000000px;}
.x5_c00288{left:127.800262px;}
.x9_c00288{left:180.899928px;}
.x1_c00288{left:181.979927px;}
.x2_c00288{left:329.219408px;}
.x8_c00288{left:381.959847px;}
.x4_c00288{left:434.159826px;}
.x7_c00288{left:473.219811px;}
.x6_c00288{left:593.999762px;}
.x3_c00288{left:765.539694px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls1_c00288{letter-spacing:0.000000pt;}
.ls0_c00288{letter-spacing:0.008800pt;}
.ws0_c00288{word-spacing:-15.999994pt;}
.ws1_c00288{word-spacing:0.000000pt;}
._7_c00288{margin-left:-1.914886pt;}
._1_c00288{margin-left:-0.982555pt;}
._0_c00288{width:1.314126pt;}
._5_c00288{width:2.678063pt;}
._8_c00288{width:3.788717pt;}
._9_c00288{width:4.710590pt;}
._2_c00288{width:6.498045pt;}
._3_c00288{width:7.908280pt;}
._4_c00288{width:8.844239pt;}
._b_c00288{width:10.256899pt;}
._a_c00288{width:13.435358pt;}
._6_c00288{width:14.593280pt;}
.fs0_c00288{font-size:53.119979pt;}
.fs1_c00288{font-size:58.879976pt;}
.fs2_c00288{font-size:63.999974pt;}
.y0_c00288{bottom:0.000000pt;}
.y4_c00288{bottom:67.306906pt;}
.y3_c00288{bottom:101.226893pt;}
.y18_c00288{bottom:162.666602pt;}
.y17_c00288{bottom:190.346591pt;}
.y16_c00288{bottom:217.866580pt;}
.y15_c00288{bottom:245.546568pt;}
.y14_c00288{bottom:273.066557pt;}
.y13_c00288{bottom:300.746546pt;}
.y12_c00288{bottom:328.266535pt;}
.y11_c00288{bottom:355.946524pt;}
.y10_c00288{bottom:383.466513pt;}
.yf_c00288{bottom:411.146502pt;}
.ye_c00288{bottom:438.666491pt;}
.yd_c00288{bottom:466.346480pt;}
.yc_c00288{bottom:493.866469pt;}
.yb_c00288{bottom:520.426458pt;}
.ya_c00288{bottom:545.706448pt;}
.y9_c00288{bottom:572.106438pt;}
.y8_c00288{bottom:595.946428pt;}
.y7_c00288{bottom:954.506285pt;}
.y6_c00288{bottom:982.506274pt;}
.y5_c00288{bottom:1009.706263pt;}
.y2_c00288{bottom:1045.226249pt;}
.y1_c00288{bottom:1063.146241pt;}
.h2_c00288{height:48.558731pt;}
.h1_c00288{height:52.134354pt;}
.h5_c00288{height:57.787477pt;}
.h6_c00288{height:62.781225pt;}
.h4_c00288{height:62.812475pt;}
.h3_c00288{height:64.499974pt;}
.h0_c00288{height:1122.666667pt;}
.w0_c00288{width:793.333333pt;}
.x0_c00288{left:0.000000pt;}
.x5_c00288{left:113.600233pt;}
.x9_c00288{left:160.799936pt;}
.x1_c00288{left:161.759935pt;}
.x2_c00288{left:292.639474pt;}
.x8_c00288{left:339.519864pt;}
.x4_c00288{left:385.919846pt;}
.x7_c00288{left:420.639832pt;}
.x6_c00288{left:527.999789pt;}
.x3_c00288{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d16d43291142fee3da263e4.woff2')format("woff");}.ff1_c00289{font-family:ff1_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:ff2_c00289;src:url('chunks/assets/font_076c8106b968e97045a07ed5.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_d782adecc66210fb2e7a0c79.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00289{font-family:ff4_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;}
.m0_c00289{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls2_c00289{letter-spacing:0.000000px;}
.ls0_c00289{letter-spacing:0.153901px;}
.ls1_c00289{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00289{word-spacing:-16.559993px;}
.ws4_c00289{word-spacing:-14.939994px;}
.ws0_c00289{word-spacing:-12.059995px;}
.ws3_c00289{word-spacing:-9.719996px;}
.ws2_c00289{word-spacing:-9.437756px;}
.ws5_c00289{word-spacing:0.000000px;}
._c_c00289{margin-left:-12.716934px;}
._1_c00289{margin-left:-1.105374px;}
._0_c00289{width:1.195563px;}
._8_c00289{width:2.591312px;}
._9_c00289{width:3.623230px;}
._b_c00289{width:4.940255px;}
._2_c00289{width:5.947591px;}
._3_c00289{width:7.346141px;}
._4_c00289{width:9.082116px;}
._5_c00289{width:10.301127px;}
._a_c00289{width:19.256663px;}
._7_c00289{width:21.454095px;}
._6_c00289{width:22.652149px;}
.fc0_c00289{color:rgb(0,0,0);}
.fs5_c00289{font-size:38.879984px;}
.fs4_c00289{font-size:41.759983px;}
.fs3_c00289{font-size:48.239981px;}
.fs0_c00289{font-size:59.759976px;}
.fs1_c00289{font-size:66.239974px;}
.fs2_c00289{font-size:71.999971px;}
.y0_c00289{bottom:0.000000px;}
.y4_c00289{bottom:75.719970px;}
.y3_c00289{bottom:113.879954px;}
.y26_c00289{bottom:133.499947px;}
.y25_c00289{bottom:151.499939px;}
.y24_c00289{bottom:158.339937px;}
.y23_c00289{bottom:169.679932px;}
.y22_c00289{bottom:188.939924px;}
.y21_c00289{bottom:207.119917px;}
.y20_c00289{bottom:214.679914px;}
.y1f_c00289{bottom:227.279909px;}
.y1e_c00289{bottom:277.319889px;}
.y1d_c00289{bottom:308.279877px;}
.y1c_c00289{bottom:339.419864px;}
.y1b_c00289{bottom:369.299852px;}
.y1a_c00289{bottom:397.739841px;}
.y19_c00289{bottom:427.259829px;}
.y18_c00289{bottom:454.079818px;}
.y17_c00289{bottom:556.499777px;}
.y16_c00289{bottom:583.139767px;}
.y15_c00289{bottom:683.399727px;}
.y13_c00289{bottom:714.359714px;}
.y14_c00289{bottom:722.639711px;}
.y12_c00289{bottom:745.499702px;}
.y11_c00289{bottom:776.459689px;}
.yf_c00289{bottom:807.599677px;}
.y10_c00289{bottom:815.879674px;}
.ye_c00289{bottom:838.559665px;}
.yd_c00289{bottom:869.699652px;}
.yc_c00289{bottom:900.659640px;}
.yb_c00289{bottom:931.799627px;}
.ya_c00289{bottom:962.759615px;}
.y9_c00289{bottom:993.899602px;}
.y8_c00289{bottom:1024.859590px;}
.y7_c00289{bottom:1055.999578px;}
.y6_c00289{bottom:1086.959565px;}
.y5_c00289{bottom:1118.099553px;}
.y2_c00289{bottom:1156.979537px;}
.y1_c00289{bottom:1195.859522px;}
.h7_c00289{height:34.439752px;}
.h8_c00289{height:38.158578px;}
.h5_c00289{height:47.344903px;}
.h9_c00289{height:49.284472px;}
.h2_c00289{height:54.628572px;}
.h1_c00289{height:58.651148px;}
.h6_c00289{height:65.010911px;}
.h4_c00289{height:70.628878px;}
.h3_c00289{height:70.664034px;}
.h0_c00289{height:1263.000000px;}
.w0_c00289{width:892.500000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:127.799949px;}
.xb_c00289{left:138.059945px;}
.xd_c00289{left:142.019943px;}
.x3_c00289{left:180.900530px;}
.xc_c00289{left:316.259746px;}
.x6_c00289{left:331.199868px;}
.x7_c00289{left:343.439863px;}
.x4_c00289{left:361.979855px;}
.x5_c00289{left:374.219850px;}
.x2_c00289{left:434.159514px;}
.xa_c00289{left:446.578933px;}
.x9_c00289{left:699.659426px;}
.x8_c00289{left:703.078906px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls2_c00289{letter-spacing:0.000000pt;}
.ls0_c00289{letter-spacing:0.136801pt;}
.ls1_c00289{letter-spacing:0.168267pt;}
.ws1_c00289{word-spacing:-14.719994pt;}
.ws4_c00289{word-spacing:-13.279995pt;}
.ws0_c00289{word-spacing:-10.719996pt;}
.ws3_c00289{word-spacing:-8.639997pt;}
.ws2_c00289{word-spacing:-8.389117pt;}
.ws5_c00289{word-spacing:0.000000pt;}
._c_c00289{margin-left:-11.303941pt;}
._1_c00289{margin-left:-0.982555pt;}
._0_c00289{width:1.062723pt;}
._8_c00289{width:2.303388pt;}
._9_c00289{width:3.220649pt;}
._b_c00289{width:4.391338pt;}
._2_c00289{width:5.286748pt;}
._3_c00289{width:6.529903pt;}
._4_c00289{width:8.072992pt;}
._5_c00289{width:9.156558pt;}
._a_c00289{width:17.117033pt;}
._7_c00289{width:19.070306pt;}
._6_c00289{width:20.135243pt;}
.fs5_c00289{font-size:34.559986pt;}
.fs4_c00289{font-size:37.119985pt;}
.fs3_c00289{font-size:42.879983pt;}
.fs0_c00289{font-size:53.119979pt;}
.fs1_c00289{font-size:58.879976pt;}
.fs2_c00289{font-size:63.999974pt;}
.y0_c00289{bottom:0.000000pt;}
.y4_c00289{bottom:67.306640pt;}
.y3_c00289{bottom:101.226626pt;}
.y26_c00289{bottom:118.666619pt;}
.y25_c00289{bottom:134.666613pt;}
.y24_c00289{bottom:140.746610pt;}
.y23_c00289{bottom:150.826606pt;}
.y22_c00289{bottom:167.946599pt;}
.y21_c00289{bottom:184.106593pt;}
.y20_c00289{bottom:190.826590pt;}
.y1f_c00289{bottom:202.026586pt;}
.y1e_c00289{bottom:246.506568pt;}
.y1d_c00289{bottom:274.026557pt;}
.y1c_c00289{bottom:301.706546pt;}
.y1b_c00289{bottom:328.266535pt;}
.y1a_c00289{bottom:353.546525pt;}
.y19_c00289{bottom:379.786515pt;}
.y18_c00289{bottom:403.626505pt;}
.y17_c00289{bottom:494.666469pt;}
.y16_c00289{bottom:518.346459pt;}
.y15_c00289{bottom:607.466424pt;}
.y13_c00289{bottom:634.986413pt;}
.y14_c00289{bottom:642.346410pt;}
.y12_c00289{bottom:662.666402pt;}
.y11_c00289{bottom:690.186391pt;}
.yf_c00289{bottom:717.866380pt;}
.y10_c00289{bottom:725.226377pt;}
.ye_c00289{bottom:745.386369pt;}
.yd_c00289{bottom:773.066357pt;}
.yc_c00289{bottom:800.586346pt;}
.yb_c00289{bottom:828.266335pt;}
.ya_c00289{bottom:855.786324pt;}
.y9_c00289{bottom:883.466313pt;}
.y8_c00289{bottom:910.986302pt;}
.y7_c00289{bottom:938.666291pt;}
.y6_c00289{bottom:966.186280pt;}
.y5_c00289{bottom:993.866269pt;}
.y2_c00289{bottom:1028.426255pt;}
.y1_c00289{bottom:1062.986241pt;}
.h7_c00289{height:30.613113pt;}
.h8_c00289{height:33.918736pt;}
.h5_c00289{height:42.084358pt;}
.h9_c00289{height:43.808420pt;}
.h2_c00289{height:48.558731pt;}
.h1_c00289{height:52.134354pt;}
.h6_c00289{height:57.787477pt;}
.h4_c00289{height:62.781225pt;}
.h3_c00289{height:62.812475pt;}
.h0_c00289{height:1122.666667pt;}
.w0_c00289{width:793.333333pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:113.599955pt;}
.xb_c00289{left:122.719951pt;}
.xd_c00289{left:126.239950pt;}
.x3_c00289{left:160.800471pt;}
.xc_c00289{left:281.119774pt;}
.x6_c00289{left:294.399882pt;}
.x7_c00289{left:305.279878pt;}
.x4_c00289{left:321.759871pt;}
.x5_c00289{left:332.639867pt;}
.x2_c00289{left:385.919568pt;}
.xa_c00289{left:396.959052pt;}
.x9_c00289{left:621.919490pt;}
.x8_c00289{left:624.959028pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edfa5ce03a056ea73f5beae3.woff2')format("woff");}.ff1_c00290{font-family:ff1_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:ff2_c00290;src:url('chunks/assets/font_3f14e43c758303555e33079d.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_691685104b3c721c6a856ae5.woff2')format("woff");}.ff3_c00290{font-family:ff3_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:ff4_c00290;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls3_c00290{letter-spacing:0.000000px;}
.ls0_c00290{letter-spacing:0.009900px;}
.ls1_c00290{letter-spacing:0.153901px;}
.ls2_c00290{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00290{word-spacing:-17.999993px;}
.ws3_c00290{word-spacing:-14.939994px;}
.ws0_c00290{word-spacing:-12.059995px;}
.ws2_c00290{word-spacing:-9.719996px;}
.ws4_c00290{word-spacing:0.000000px;}
._7_c00290{margin-left:-12.716934px;}
._1_c00290{margin-left:-1.105374px;}
._0_c00290{width:1.478392px;}
._2_c00290{width:8.606121px;}
._3_c00290{width:9.623198px;}
._4_c00290{width:20.157728px;}
._5_c00290{width:25.538384px;}
._6_c00290{width:26.598106px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs4_c00290{font-size:38.879984px;}
.fs3_c00290{font-size:48.239981px;}
.fs0_c00290{font-size:59.759976px;}
.fs1_c00290{font-size:66.239974px;}
.fs2_c00290{font-size:71.999971px;}
.y0_c00290{bottom:0.000000px;}
.y4_c00290{bottom:75.720270px;}
.y3_c00290{bottom:113.880254px;}
.y26_c00290{bottom:133.140247px;}
.y25_c00290{bottom:139.980244px;}
.y24_c00290{bottom:150.779940px;}
.y23_c00290{bottom:168.779932px;}
.y22_c00290{bottom:175.619930px;}
.y21_c00290{bottom:186.419925px;}
.y20_c00290{bottom:204.419918px;}
.y1f_c00290{bottom:211.259915px;}
.y1e_c00290{bottom:222.419911px;}
.y1d_c00290{bottom:332.759867px;}
.y1b_c00290{bottom:364.259854px;}
.y1c_c00290{bottom:372.539851px;}
.y1a_c00290{bottom:395.219842px;}
.y19_c00290{bottom:426.359829px;}
.y18_c00290{bottom:457.319817px;}
.y17_c00290{bottom:488.459805px;}
.y16_c00290{bottom:511.679795px;}
.y15_c00290{bottom:533.459787px;}
.y14_c00290{bottom:562.799775px;}
.y13_c00290{bottom:589.799764px;}
.y12_c00290{bottom:736.139706px;}
.y10_c00290{bottom:767.099693px;}
.y11_c00290{bottom:775.379690px;}
.yf_c00290{bottom:798.239681px;}
.ye_c00290{bottom:829.199668px;}
.yd_c00290{bottom:860.339656px;}
.yc_c00290{bottom:883.559647px;}
.yb_c00290{bottom:905.339638px;}
.ya_c00290{bottom:935.039626px;}
.y9_c00290{bottom:961.679615px;}
.y8_c00290{bottom:1074.179570px;}
.y6_c00290{bottom:1105.319558px;}
.y7_c00290{bottom:1113.599555px;}
.y5_c00290{bottom:1136.279545px;}
.y2_c00290{bottom:1175.879530px;}
.y1_c00290{bottom:1196.039522px;}
.h8_c00290{height:38.158578px;}
.h4_c00290{height:47.344903px;}
.h9_c00290{height:49.284472px;}
.h2_c00290{height:54.628572px;}
.h1_c00290{height:58.651148px;}
.h5_c00290{height:65.010911px;}
.h7_c00290{height:66.757473px;}
.h3_c00290{height:70.664034px;}
.h6_c00290{height:72.562471px;}
.h0_c00290{height:1263.000000px;}
.w0_c00290{width:892.500000px;}
.x0_c00290{left:0.000000px;}
.x5_c00290{left:127.800262px;}
.x13_c00290{left:137.519945px;}
.xa_c00290{left:150.479940px;}
.xc_c00290{left:180.899928px;}
.x1_c00290{left:181.979927px;}
.x11_c00290{left:202.319919px;}
.x12_c00290{left:214.559914px;}
.x6_c00290{left:241.379903px;}
.xb_c00290{left:245.880688px;}
.x7_c00290{left:253.619899px;}
.x10_c00290{left:272.160525px;}
.x2_c00290{left:329.219408px;}
.x4_c00290{left:434.159826px;}
.x9_c00290{left:446.580657px;}
.xd_c00290{left:622.619751px;}
.xe_c00290{left:634.859746px;}
.xf_c00290{left:760.859696px;}
.x3_c00290{left:765.539694px;}
.x8_c00290{left:798.299880px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls3_c00290{letter-spacing:0.000000pt;}
.ls0_c00290{letter-spacing:0.008800pt;}
.ls1_c00290{letter-spacing:0.136801pt;}
.ls2_c00290{letter-spacing:0.168267pt;}
.ws1_c00290{word-spacing:-15.999994pt;}
.ws3_c00290{word-spacing:-13.279995pt;}
.ws0_c00290{word-spacing:-10.719996pt;}
.ws2_c00290{word-spacing:-8.639997pt;}
.ws4_c00290{word-spacing:0.000000pt;}
._7_c00290{margin-left:-11.303941pt;}
._1_c00290{margin-left:-0.982555pt;}
._0_c00290{width:1.314126pt;}
._2_c00290{width:7.649885pt;}
._3_c00290{width:8.553954pt;}
._4_c00290{width:17.917981pt;}
._5_c00290{width:22.700786pt;}
._6_c00290{width:23.642761pt;}
.fs4_c00290{font-size:34.559986pt;}
.fs3_c00290{font-size:42.879983pt;}
.fs0_c00290{font-size:53.119979pt;}
.fs1_c00290{font-size:58.879976pt;}
.fs2_c00290{font-size:63.999974pt;}
.y0_c00290{bottom:0.000000pt;}
.y4_c00290{bottom:67.306906pt;}
.y3_c00290{bottom:101.226893pt;}
.y26_c00290{bottom:118.346886pt;}
.y25_c00290{bottom:124.426884pt;}
.y24_c00290{bottom:134.026613pt;}
.y23_c00290{bottom:150.026607pt;}
.y22_c00290{bottom:156.106604pt;}
.y21_c00290{bottom:165.706600pt;}
.y20_c00290{bottom:181.706594pt;}
.y1f_c00290{bottom:187.786592pt;}
.y1e_c00290{bottom:197.706588pt;}
.y1d_c00290{bottom:295.786548pt;}
.y1b_c00290{bottom:323.786537pt;}
.y1c_c00290{bottom:331.146534pt;}
.y1a_c00290{bottom:351.306526pt;}
.y19_c00290{bottom:378.986515pt;}
.y18_c00290{bottom:406.506504pt;}
.y17_c00290{bottom:434.186493pt;}
.y16_c00290{bottom:454.826485pt;}
.y15_c00290{bottom:474.186477pt;}
.y14_c00290{bottom:500.266467pt;}
.y13_c00290{bottom:524.266457pt;}
.y12_c00290{bottom:654.346405pt;}
.y10_c00290{bottom:681.866394pt;}
.y11_c00290{bottom:689.226391pt;}
.yf_c00290{bottom:709.546383pt;}
.ye_c00290{bottom:737.066372pt;}
.yd_c00290{bottom:764.746361pt;}
.yc_c00290{bottom:785.386353pt;}
.yb_c00290{bottom:804.746345pt;}
.ya_c00290{bottom:831.146334pt;}
.y9_c00290{bottom:854.826325pt;}
.y8_c00290{bottom:954.826285pt;}
.y6_c00290{bottom:982.506274pt;}
.y7_c00290{bottom:989.866271pt;}
.y5_c00290{bottom:1010.026263pt;}
.y2_c00290{bottom:1045.226249pt;}
.y1_c00290{bottom:1063.146241pt;}
.h8_c00290{height:33.918736pt;}
.h4_c00290{height:42.084358pt;}
.h9_c00290{height:43.808420pt;}
.h2_c00290{height:48.558731pt;}
.h1_c00290{height:52.134354pt;}
.h5_c00290{height:57.787477pt;}
.h7_c00290{height:59.339976pt;}
.h3_c00290{height:62.812475pt;}
.h6_c00290{height:64.499974pt;}
.h0_c00290{height:1122.666667pt;}
.w0_c00290{width:793.333333pt;}
.x0_c00290{left:0.000000pt;}
.x5_c00290{left:113.600233pt;}
.x13_c00290{left:122.239951pt;}
.xa_c00290{left:133.759946pt;}
.xc_c00290{left:160.799936pt;}
.x1_c00290{left:161.759935pt;}
.x11_c00290{left:179.839928pt;}
.x12_c00290{left:190.719924pt;}
.x6_c00290{left:214.559914pt;}
.xb_c00290{left:218.560611pt;}
.x7_c00290{left:225.439910pt;}
.x10_c00290{left:241.920467pt;}
.x2_c00290{left:292.639474pt;}
.x4_c00290{left:385.919846pt;}
.x9_c00290{left:396.960584pt;}
.xd_c00290{left:553.439779pt;}
.xe_c00290{left:564.319774pt;}
.xf_c00290{left:676.319729pt;}
.x3_c00290{left:680.479728pt;}
.x8_c00290{left:709.599893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9e55f9c9d792ab1b1a60236.woff2')format("woff");}.ff1_c00291{font-family:ff1_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:ff2_c00291;src:url('chunks/assets/font_f8ae263935cdd627de77a446.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.311035;font-style:normal;font-weight:normal;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_4550ebeee9ab2977bfbb51a9.woff2')format("woff");}.ff4_c00291{font-family:ff4_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:ff5_c00291;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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;}
.m0_c00291{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls1_c00291{letter-spacing:0.000000px;}
.ls0_c00291{letter-spacing:0.153901px;}
.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;}
}
.ws2_c00291{word-spacing:-14.939994px;}
.ws0_c00291{word-spacing:-12.059995px;}
.ws1_c00291{word-spacing:-10.439996px;}
.ws3_c00291{word-spacing:0.000000px;}
._7_c00291{margin-left:-12.716934px;}
._1_c00291{margin-left:-1.105374px;}
._0_c00291{width:1.195563px;}
._3_c00291{width:2.875718px;}
._2_c00291{width:3.963655px;}
._5_c00291{width:5.540374px;}
._6_c00291{width:6.711943px;}
._4_c00291{width:31.904332px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs4_c00291{font-size:41.759983px;}
.fs3_c00291{font-size:48.239981px;}
.fs0_c00291{font-size:59.759976px;}
.fs1_c00291{font-size:66.239974px;}
.fs2_c00291{font-size:71.999971px;}
.y0_c00291{bottom:0.000000px;}
.y4_c00291{bottom:75.719970px;}
.y3_c00291{bottom:113.879954px;}
.y15_c00291{bottom:134.220246px;}
.y14_c00291{bottom:153.659939px;}
.y13_c00291{bottom:161.219936px;}
.y12_c00291{bottom:173.279931px;}
.y11_c00291{bottom:435.359826px;}
.yf_c00291{bottom:466.499813px;}
.y10_c00291{bottom:474.779810px;}
.ye_c00291{bottom:497.459801px;}
.yd_c00291{bottom:528.599789px;}
.yc_c00291{bottom:559.559776px;}
.yb_c00291{bottom:590.699764px;}
.ya_c00291{bottom:621.659751px;}
.y9_c00291{bottom:652.799739px;}
.y8_c00291{bottom:676.019730px;}
.y7_c00291{bottom:697.799721px;}
.y6_c00291{bottom:727.499709px;}
.y5_c00291{bottom:754.319698px;}
.y2_c00291{bottom:1156.979537px;}
.y1_c00291{bottom:1195.859522px;}
.h8_c00291{height:40.985140px;}
.h7_c00291{height:47.321348px;}
.h2_c00291{height:54.628572px;}
.h1_c00291{height:58.651148px;}
.h5_c00291{height:65.010911px;}
.h6_c00291{height:70.628878px;}
.h4_c00291{height:70.664034px;}
.h3_c00291{height:72.562471px;}
.h0_c00291{height:1263.000000px;}
.w0_c00291{width:892.500000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:127.799949px;}
.x9_c00291{left:138.239945px;}
.xa_c00291{left:142.379943px;}
.x4_c00291{left:151.019940px;}
.x6_c00291{left:180.899928px;}
.x5_c00291{left:245.880441px;}
.x2_c00291{left:434.159514px;}
.x7_c00291{left:479.879808px;}
.x8_c00291{left:492.119803px;}
.x3_c00291{left:698.759720px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls1_c00291{letter-spacing:0.000000pt;}
.ls0_c00291{letter-spacing:0.136801pt;}
.ws2_c00291{word-spacing:-13.279995pt;}
.ws0_c00291{word-spacing:-10.719996pt;}
.ws1_c00291{word-spacing:-9.279996pt;}
.ws3_c00291{word-spacing:0.000000pt;}
._7_c00291{margin-left:-11.303941pt;}
._1_c00291{margin-left:-0.982555pt;}
._0_c00291{width:1.062723pt;}
._3_c00291{width:2.556194pt;}
._2_c00291{width:3.523249pt;}
._5_c00291{width:4.924777pt;}
._6_c00291{width:5.966171pt;}
._4_c00291{width:28.359406pt;}
.fs4_c00291{font-size:37.119985pt;}
.fs3_c00291{font-size:42.879983pt;}
.fs0_c00291{font-size:53.119979pt;}
.fs1_c00291{font-size:58.879976pt;}
.fs2_c00291{font-size:63.999974pt;}
.y0_c00291{bottom:0.000000pt;}
.y4_c00291{bottom:67.306640pt;}
.y3_c00291{bottom:101.226626pt;}
.y15_c00291{bottom:119.306886pt;}
.y14_c00291{bottom:136.586612pt;}
.y13_c00291{bottom:143.306609pt;}
.y12_c00291{bottom:154.026605pt;}
.y11_c00291{bottom:386.986512pt;}
.yf_c00291{bottom:414.666501pt;}
.y10_c00291{bottom:422.026498pt;}
.ye_c00291{bottom:442.186490pt;}
.yd_c00291{bottom:469.866479pt;}
.yc_c00291{bottom:497.386468pt;}
.yb_c00291{bottom:525.066457pt;}
.ya_c00291{bottom:552.586446pt;}
.y9_c00291{bottom:580.266435pt;}
.y8_c00291{bottom:600.906426pt;}
.y7_c00291{bottom:620.266419pt;}
.y6_c00291{bottom:646.666408pt;}
.y5_c00291{bottom:670.506398pt;}
.y2_c00291{bottom:1028.426255pt;}
.y1_c00291{bottom:1062.986241pt;}
.h8_c00291{height:36.431235pt;}
.h7_c00291{height:42.063421pt;}
.h2_c00291{height:48.558731pt;}
.h1_c00291{height:52.134354pt;}
.h5_c00291{height:57.787477pt;}
.h6_c00291{height:62.781225pt;}
.h4_c00291{height:62.812475pt;}
.h3_c00291{height:64.499974pt;}
.h0_c00291{height:1122.666667pt;}
.w0_c00291{width:793.333333pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:113.599955pt;}
.x9_c00291{left:122.879951pt;}
.xa_c00291{left:126.559949pt;}
.x4_c00291{left:134.239946pt;}
.x6_c00291{left:160.799936pt;}
.x5_c00291{left:218.560392pt;}
.x2_c00291{left:385.919568pt;}
.x7_c00291{left:426.559829pt;}
.x8_c00291{left:437.439825pt;}
.x3_c00291{left:621.119752pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_574e2d06cf1fe47be0393bba.woff2')format("woff");}.ff1_c00292{font-family:ff1_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:ff2_c00292;src:url('chunks/assets/font_f60427c70728d713f00c2d7a.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_f0f048849140dfdcc3498690.woff2')format("woff");}.ff3_c00292{font-family:ff3_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:ff4_c00292;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00292{font-family:ff4_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;}
.m0_c00292{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls3_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.009900px;}
.ls1_c00292{letter-spacing:0.153901px;}
.ls2_c00292{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00292{word-spacing:-14.939994px;}
.ws0_c00292{word-spacing:-12.059995px;}
.ws1_c00292{word-spacing:-9.719996px;}
.ws3_c00292{word-spacing:0.000000px;}
._2_c00292{margin-left:-12.716934px;}
._1_c00292{margin-left:-1.105374px;}
._0_c00292{width:1.478392px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs4_c00292{font-size:38.879984px;}
.fs3_c00292{font-size:48.239981px;}
.fs0_c00292{font-size:59.759976px;}
.fs1_c00292{font-size:66.239974px;}
.fs2_c00292{font-size:71.999971px;}
.y0_c00292{bottom:0.000000px;}
.y4_c00292{bottom:75.720270px;}
.y3_c00292{bottom:113.880254px;}
.y10_c00292{bottom:133.140247px;}
.yf_c00292{bottom:139.980244px;}
.ye_c00292{bottom:151.319939px;}
.yc_c00292{bottom:560.459776px;}
.yd_c00292{bottom:568.739773px;}
.yb_c00292{bottom:591.419763px;}
.ya_c00292{bottom:622.559751px;}
.y9_c00292{bottom:646.319741px;}
.y8_c00292{bottom:669.539732px;}
.y7_c00292{bottom:691.319723px;}
.y6_c00292{bottom:721.019712px;}
.y5_c00292{bottom:747.659701px;}
.y2_c00292{bottom:1175.879530px;}
.y1_c00292{bottom:1196.039522px;}
.h6_c00292{height:38.158578px;}
.h5_c00292{height:47.344903px;}
.h2_c00292{height:54.628572px;}
.h1_c00292{height:58.651148px;}
.h4_c00292{height:65.010911px;}
.h3_c00292{height:70.664034px;}
.h0_c00292{height:1263.000000px;}
.w0_c00292{width:892.500000px;}
.x0_c00292{left:0.000000px;}
.x5_c00292{left:127.800262px;}
.x7_c00292{left:134.099946px;}
.xd_c00292{left:137.519945px;}
.xa_c00292{left:180.899928px;}
.x1_c00292{left:181.979927px;}
.x8_c00292{left:272.159782px;}
.x2_c00292{left:329.219408px;}
.x4_c00292{left:434.159826px;}
.x9_c00292{left:446.579821px;}
.xb_c00292{left:627.659749px;}
.xc_c00292{left:639.899744px;}
.x6_c00292{left:724.859710px;}
.x3_c00292{left:765.539694px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls3_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.008800pt;}
.ls1_c00292{letter-spacing:0.136801pt;}
.ls2_c00292{letter-spacing:0.168267pt;}
.ws2_c00292{word-spacing:-13.279995pt;}
.ws0_c00292{word-spacing:-10.719996pt;}
.ws1_c00292{word-spacing:-8.639997pt;}
.ws3_c00292{word-spacing:0.000000pt;}
._2_c00292{margin-left:-11.303941pt;}
._1_c00292{margin-left:-0.982555pt;}
._0_c00292{width:1.314126pt;}
.fs4_c00292{font-size:34.559986pt;}
.fs3_c00292{font-size:42.879983pt;}
.fs0_c00292{font-size:53.119979pt;}
.fs1_c00292{font-size:58.879976pt;}
.fs2_c00292{font-size:63.999974pt;}
.y0_c00292{bottom:0.000000pt;}
.y4_c00292{bottom:67.306906pt;}
.y3_c00292{bottom:101.226893pt;}
.y10_c00292{bottom:118.346886pt;}
.yf_c00292{bottom:124.426884pt;}
.ye_c00292{bottom:134.506613pt;}
.yc_c00292{bottom:498.186467pt;}
.yd_c00292{bottom:505.546464pt;}
.yb_c00292{bottom:525.706456pt;}
.ya_c00292{bottom:553.386445pt;}
.y9_c00292{bottom:574.506437pt;}
.y8_c00292{bottom:595.146429pt;}
.y7_c00292{bottom:614.506421pt;}
.y6_c00292{bottom:640.906410pt;}
.y5_c00292{bottom:664.586401pt;}
.y2_c00292{bottom:1045.226249pt;}
.y1_c00292{bottom:1063.146241pt;}
.h6_c00292{height:33.918736pt;}
.h5_c00292{height:42.084358pt;}
.h2_c00292{height:48.558731pt;}
.h1_c00292{height:52.134354pt;}
.h4_c00292{height:57.787477pt;}
.h3_c00292{height:62.812475pt;}
.h0_c00292{height:1122.666667pt;}
.w0_c00292{width:793.333333pt;}
.x0_c00292{left:0.000000pt;}
.x5_c00292{left:113.600233pt;}
.x7_c00292{left:119.199952pt;}
.xd_c00292{left:122.239951pt;}
.xa_c00292{left:160.799936pt;}
.x1_c00292{left:161.759935pt;}
.x8_c00292{left:241.919806pt;}
.x2_c00292{left:292.639474pt;}
.x4_c00292{left:385.919846pt;}
.x9_c00292{left:396.959841pt;}
.xb_c00292{left:557.919777pt;}
.xc_c00292{left:568.799772pt;}
.x6_c00292{left:644.319742pt;}
.x3_c00292{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_964c14c0dabd98e7e21d40b8.woff2')format("woff");}.ff1_c00293{font-family:ff1_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:ff2_c00293;src:url('chunks/assets/font_a58cd3e99d62e08f2c8317c5.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.311035;font-style:normal;font-weight:normal;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_0014f4cc88208849ca070974.woff2')format("woff");}.ff4_c00293{font-family:ff4_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:ff5_c00293;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00293{font-family:ff5_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;}
.m0_c00293{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls1_c00293{letter-spacing:0.000000px;}
.ls0_c00293{letter-spacing:0.009900px;}
.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;}
}
.ws0_c00293{word-spacing:0.000000px;}
._1_c00293{margin-left:-1.105374px;}
._0_c00293{width:1.195563px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs0_c00293{font-size:59.759976px;}
.fs1_c00293{font-size:66.239974px;}
.fs2_c00293{font-size:71.999971px;}
.y0_c00293{bottom:0.000000px;}
.y4_c00293{bottom:75.719970px;}
.y3_c00293{bottom:113.879954px;}
.y1c_c00293{bottom:164.099934px;}
.y1b_c00293{bottom:187.319925px;}
.y1a_c00293{bottom:209.279916px;}
.y19_c00293{bottom:231.059908px;}
.y18_c00293{bottom:252.839899px;}
.y17_c00293{bottom:274.619890px;}
.y16_c00293{bottom:296.579881px;}
.y15_c00293{bottom:318.359873px;}
.y14_c00293{bottom:340.139864px;}
.y13_c00293{bottom:361.919855px;}
.y12_c00293{bottom:383.699847px;}
.y11_c00293{bottom:405.659838px;}
.y10_c00293{bottom:427.439829px;}
.yf_c00293{bottom:449.219820px;}
.ye_c00293{bottom:470.999812px;}
.yd_c00293{bottom:492.959803px;}
.yc_c00293{bottom:514.739794px;}
.yb_c00293{bottom:536.519785px;}
.ya_c00293{bottom:558.299777px;}
.y9_c00293{bottom:580.079768px;}
.y8_c00293{bottom:602.039759px;}
.y7_c00293{bottom:623.819750px;}
.y6_c00293{bottom:645.599742px;}
.y5_c00293{bottom:670.979732px;}
.y2_c00293{bottom:1156.979537px;}
.y1_c00293{bottom:1195.859522px;}
.h2_c00293{height:54.628572px;}
.h1_c00293{height:58.651148px;}
.h5_c00293{height:65.010911px;}
.h4_c00293{height:66.757473px;}
.h6_c00293{height:70.628878px;}
.h3_c00293{height:72.562471px;}
.h0_c00293{height:1263.000000px;}
.w0_c00293{width:892.500000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:127.799949px;}
.x4_c00293{left:151.559939px;}
.x5_c00293{left:272.160704px;}
.x2_c00293{left:434.159514px;}
.x3_c00293{left:690.839724px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls1_c00293{letter-spacing:0.000000pt;}
.ls0_c00293{letter-spacing:0.008800pt;}
.ws0_c00293{word-spacing:0.000000pt;}
._1_c00293{margin-left:-0.982555pt;}
._0_c00293{width:1.062723pt;}
.fs0_c00293{font-size:53.119979pt;}
.fs1_c00293{font-size:58.879976pt;}
.fs2_c00293{font-size:63.999974pt;}
.y0_c00293{bottom:0.000000pt;}
.y4_c00293{bottom:67.306640pt;}
.y3_c00293{bottom:101.226626pt;}
.y1c_c00293{bottom:145.866608pt;}
.y1b_c00293{bottom:166.506600pt;}
.y1a_c00293{bottom:186.026592pt;}
.y19_c00293{bottom:205.386585pt;}
.y18_c00293{bottom:224.746577pt;}
.y17_c00293{bottom:244.106569pt;}
.y16_c00293{bottom:263.626561pt;}
.y15_c00293{bottom:282.986553pt;}
.y14_c00293{bottom:302.346546pt;}
.y13_c00293{bottom:321.706538pt;}
.y12_c00293{bottom:341.066530pt;}
.y11_c00293{bottom:360.586522pt;}
.y10_c00293{bottom:379.946515pt;}
.yf_c00293{bottom:399.306507pt;}
.ye_c00293{bottom:418.666499pt;}
.yd_c00293{bottom:438.186491pt;}
.yc_c00293{bottom:457.546484pt;}
.yb_c00293{bottom:476.906476pt;}
.ya_c00293{bottom:496.266468pt;}
.y9_c00293{bottom:515.626460pt;}
.y8_c00293{bottom:535.146453pt;}
.y7_c00293{bottom:554.506445pt;}
.y6_c00293{bottom:573.866437pt;}
.y5_c00293{bottom:596.426428pt;}
.y2_c00293{bottom:1028.426255pt;}
.y1_c00293{bottom:1062.986241pt;}
.h2_c00293{height:48.558731pt;}
.h1_c00293{height:52.134354pt;}
.h5_c00293{height:57.787477pt;}
.h4_c00293{height:59.339976pt;}
.h6_c00293{height:62.781225pt;}
.h3_c00293{height:64.499974pt;}
.h0_c00293{height:1122.666667pt;}
.w0_c00293{width:793.333333pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:113.599955pt;}
.x4_c00293{left:134.719946pt;}
.x5_c00293{left:241.920626pt;}
.x2_c00293{left:385.919568pt;}
.x3_c00293{left:614.079754pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e173338fb1df92160d4ac58.woff2')format("woff");}.ff1_c00294{font-family:ff1_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:ff2_c00294;src:url('chunks/assets/font_2858248321c1e0b79730a4af.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00294;src:url('chunks/assets/font_63ff9bc10350e6860b3260f4.woff2')format("woff");}.ff3_c00294{font-family:ff3_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:ff4_c00294;src:url('chunks/assets/font_49a426dd6d03f04811054206.woff2')format("woff");}.ff4_c00294{font-family:ff4_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:ff5_c00294;src:url('chunks/assets/font_47c0ca3cd859079047bd3979.woff2')format("woff");}.ff5_c00294{font-family:ff5_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;}
.m0_c00294{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls2_c00294{letter-spacing:0.000000px;}
.ls0_c00294{letter-spacing:0.153901px;}
.ls1_c00294{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00294{word-spacing:-14.939994px;}
.ws0_c00294{word-spacing:-12.059995px;}
.ws1_c00294{word-spacing:-9.719996px;}
.ws3_c00294{word-spacing:0.000000px;}
._5_c00294{margin-left:-12.716934px;}
._1_c00294{margin-left:-1.105374px;}
._0_c00294{width:1.478392px;}
._2_c00294{width:5.028813px;}
._3_c00294{width:6.514513px;}
._4_c00294{width:1845.779262px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs4_c00294{font-size:38.879984px;}
.fs3_c00294{font-size:48.239981px;}
.fs0_c00294{font-size:59.759976px;}
.fs1_c00294{font-size:66.239974px;}
.fs2_c00294{font-size:71.999971px;}
.y0_c00294{bottom:0.000000px;}
.y4_c00294{bottom:75.720270px;}
.y3_c00294{bottom:113.880254px;}
.y13_c00294{bottom:133.140247px;}
.y12_c00294{bottom:139.980244px;}
.y11_c00294{bottom:151.319939px;}
.y10_c00294{bottom:180.479928px;}
.yf_c00294{bottom:202.259919px;}
.ye_c00294{bottom:227.459909px;}
.yc_c00294{bottom:613.739755px;}
.yd_c00294{bottom:622.019751px;}
.yb_c00294{bottom:644.879742px;}
.ya_c00294{bottom:675.839730px;}
.y9_c00294{bottom:706.979717px;}
.y8_c00294{bottom:736.859705px;}
.y7_c00294{bottom:762.059695px;}
.y6_c00294{bottom:1104.959558px;}
.y5_c00294{bottom:1135.919546px;}
.y2_c00294{bottom:1175.879530px;}
.y1_c00294{bottom:1196.039522px;}
.h7_c00294{height:38.158578px;}
.h6_c00294{height:47.344903px;}
.h2_c00294{height:54.628572px;}
.h1_c00294{height:58.651148px;}
.h4_c00294{height:65.010911px;}
.h5_c00294{height:70.664034px;}
.h3_c00294{height:72.562471px;}
.h0_c00294{height:1263.000000px;}
.w0_c00294{width:892.500000px;}
.x0_c00294{left:0.000000px;}
.x5_c00294{left:127.800262px;}
.xe_c00294{left:137.519945px;}
.x7_c00294{left:161.279935px;}
.x8_c00294{left:180.899928px;}
.x1_c00294{left:181.979927px;}
.xb_c00294{left:206.999917px;}
.xc_c00294{left:208.259917px;}
.x9_c00294{left:226.799909px;}
.xa_c00294{left:239.039904px;}
.x2_c00294{left:329.219408px;}
.xd_c00294{left:381.959847px;}
.x4_c00294{left:434.159826px;}
.x6_c00294{left:579.419768px;}
.x3_c00294{left:765.539694px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls2_c00294{letter-spacing:0.000000pt;}
.ls0_c00294{letter-spacing:0.136801pt;}
.ls1_c00294{letter-spacing:0.168267pt;}
.ws2_c00294{word-spacing:-13.279995pt;}
.ws0_c00294{word-spacing:-10.719996pt;}
.ws1_c00294{word-spacing:-8.639997pt;}
.ws3_c00294{word-spacing:0.000000pt;}
._5_c00294{margin-left:-11.303941pt;}
._1_c00294{margin-left:-0.982555pt;}
._0_c00294{width:1.314126pt;}
._2_c00294{width:4.470056pt;}
._3_c00294{width:5.790679pt;}
._4_c00294{width:1640.692677pt;}
.fs4_c00294{font-size:34.559986pt;}
.fs3_c00294{font-size:42.879983pt;}
.fs0_c00294{font-size:53.119979pt;}
.fs1_c00294{font-size:58.879976pt;}
.fs2_c00294{font-size:63.999974pt;}
.y0_c00294{bottom:0.000000pt;}
.y4_c00294{bottom:67.306906pt;}
.y3_c00294{bottom:101.226893pt;}
.y13_c00294{bottom:118.346886pt;}
.y12_c00294{bottom:124.426884pt;}
.y11_c00294{bottom:134.506613pt;}
.y10_c00294{bottom:160.426602pt;}
.yf_c00294{bottom:179.786595pt;}
.ye_c00294{bottom:202.186586pt;}
.yc_c00294{bottom:545.546448pt;}
.yd_c00294{bottom:552.906446pt;}
.yb_c00294{bottom:573.226437pt;}
.ya_c00294{bottom:600.746426pt;}
.y9_c00294{bottom:628.426415pt;}
.y8_c00294{bottom:654.986405pt;}
.y7_c00294{bottom:677.386396pt;}
.y6_c00294{bottom:982.186274pt;}
.y5_c00294{bottom:1009.706263pt;}
.y2_c00294{bottom:1045.226249pt;}
.y1_c00294{bottom:1063.146241pt;}
.h7_c00294{height:33.918736pt;}
.h6_c00294{height:42.084358pt;}
.h2_c00294{height:48.558731pt;}
.h1_c00294{height:52.134354pt;}
.h4_c00294{height:57.787477pt;}
.h5_c00294{height:62.812475pt;}
.h3_c00294{height:64.499974pt;}
.h0_c00294{height:1122.666667pt;}
.w0_c00294{width:793.333333pt;}
.x0_c00294{left:0.000000pt;}
.x5_c00294{left:113.600233pt;}
.xe_c00294{left:122.239951pt;}
.x7_c00294{left:143.359943pt;}
.x8_c00294{left:160.799936pt;}
.x1_c00294{left:161.759935pt;}
.xb_c00294{left:183.999926pt;}
.xc_c00294{left:185.119926pt;}
.x9_c00294{left:201.599919pt;}
.xa_c00294{left:212.479915pt;}
.x2_c00294{left:292.639474pt;}
.xd_c00294{left:339.519864pt;}
.x4_c00294{left:385.919846pt;}
.x6_c00294{left:515.039794pt;}
.x3_c00294{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d4f44448fca3b0ae0368998.woff2')format("woff");}.ff1_c00295{font-family:ff1_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:ff2_c00295;src:url('chunks/assets/font_a76c0eb3cfe3d573047c4d0c.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_29cde9d53bf3d1dad95aa4e8.woff2')format("woff");}.ff3_c00295{font-family:ff3_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:ff4_c00295;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00295{margin-left:-1.105374px;}
._0_c00295{width:1.195563px;}
._3_c00295{width:8.350794px;}
._4_c00295{width:9.993811px;}
._2_c00295{width:25.921110px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs0_c00295{font-size:59.759976px;}
.fs1_c00295{font-size:66.239974px;}
.fs2_c00295{font-size:71.999971px;}
.y0_c00295{bottom:0.000000px;}
.y4_c00295{bottom:75.719970px;}
.y3_c00295{bottom:113.879954px;}
.y17_c00295{bottom:273.899890px;}
.y16_c00295{bottom:305.399878px;}
.y15_c00295{bottom:336.359865px;}
.y14_c00295{bottom:359.759856px;}
.y13_c00295{bottom:381.539847px;}
.y12_c00295{bottom:411.059836px;}
.y11_c00295{bottom:437.879825px;}
.y10_c00295{bottom:636.959745px;}
.yf_c00295{bottom:668.099733px;}
.ye_c00295{bottom:699.059720px;}
.yd_c00295{bottom:730.199708px;}
.yc_c00295{bottom:753.419699px;}
.yb_c00295{bottom:775.199690px;}
.ya_c00295{bottom:796.979681px;}
.y9_c00295{bottom:822.359671px;}
.y8_c00295{bottom:1024.859590px;}
.y7_c00295{bottom:1055.999578px;}
.y6_c00295{bottom:1086.959565px;}
.y5_c00295{bottom:1118.099553px;}
.y2_c00295{bottom:1156.979537px;}
.y1_c00295{bottom:1195.859522px;}
.h2_c00295{height:54.628572px;}
.h1_c00295{height:58.651148px;}
.h5_c00295{height:65.010911px;}
.h6_c00295{height:70.628878px;}
.h3_c00295{height:70.664034px;}
.h4_c00295{height:72.562471px;}
.h0_c00295{height:1263.000000px;}
.w0_c00295{width:892.500000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:127.799949px;}
.x6_c00295{left:129.959948px;}
.x9_c00295{left:137.159945px;}
.x3_c00295{left:180.899928px;}
.xa_c00295{left:304.559878px;}
.x7_c00295{left:340.019864px;}
.x2_c00295{left:434.159514px;}
.x5_c00295{left:446.579821px;}
.x4_c00295{left:725.939710px;}
.x8_c00295{left:734.579706px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
._1_c00295{margin-left:-0.982555pt;}
._0_c00295{width:1.062723pt;}
._3_c00295{width:7.422928pt;}
._4_c00295{width:8.883388pt;}
._2_c00295{width:23.040987pt;}
.fs0_c00295{font-size:53.119979pt;}
.fs1_c00295{font-size:58.879976pt;}
.fs2_c00295{font-size:63.999974pt;}
.y0_c00295{bottom:0.000000pt;}
.y4_c00295{bottom:67.306640pt;}
.y3_c00295{bottom:101.226626pt;}
.y17_c00295{bottom:243.466569pt;}
.y16_c00295{bottom:271.466558pt;}
.y15_c00295{bottom:298.986547pt;}
.y14_c00295{bottom:319.786539pt;}
.y13_c00295{bottom:339.146531pt;}
.y12_c00295{bottom:365.386521pt;}
.y11_c00295{bottom:389.226511pt;}
.y10_c00295{bottom:566.186440pt;}
.yf_c00295{bottom:593.866429pt;}
.ye_c00295{bottom:621.386418pt;}
.yd_c00295{bottom:649.066407pt;}
.yc_c00295{bottom:669.706399pt;}
.yb_c00295{bottom:689.066391pt;}
.ya_c00295{bottom:708.426383pt;}
.y9_c00295{bottom:730.986374pt;}
.y8_c00295{bottom:910.986302pt;}
.y7_c00295{bottom:938.666291pt;}
.y6_c00295{bottom:966.186280pt;}
.y5_c00295{bottom:993.866269pt;}
.y2_c00295{bottom:1028.426255pt;}
.y1_c00295{bottom:1062.986241pt;}
.h2_c00295{height:48.558731pt;}
.h1_c00295{height:52.134354pt;}
.h5_c00295{height:57.787477pt;}
.h6_c00295{height:62.781225pt;}
.h3_c00295{height:62.812475pt;}
.h4_c00295{height:64.499974pt;}
.h0_c00295{height:1122.666667pt;}
.w0_c00295{width:793.333333pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:113.599955pt;}
.x6_c00295{left:115.519954pt;}
.x9_c00295{left:121.919951pt;}
.x3_c00295{left:160.799936pt;}
.xa_c00295{left:270.719892pt;}
.x7_c00295{left:302.239879pt;}
.x2_c00295{left:385.919568pt;}
.x5_c00295{left:396.959841pt;}
.x4_c00295{left:645.279742pt;}
.x8_c00295{left:652.959739pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dad6d77553a02c686da09b3e.woff2')format("woff");}.ff1_c00296{font-family:ff1_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:ff2_c00296;src:url('chunks/assets/font_a89e8c57a2d8256f9b96d2e2.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.311035;font-style:normal;font-weight:normal;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_a666d7858b0ed894fe49df20.woff2')format("woff");}.ff4_c00296{font-family:ff4_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;}
.m0_c00296{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00296{word-spacing:-16.559993px;}
.ws2_c00296{word-spacing:0.000000px;}
._1_c00296{margin-left:-1.105374px;}
._0_c00296{width:1.478392px;}
.fc0_c00296{color:rgb(0,0,0);}
.fs0_c00296{font-size:59.759976px;}
.fs1_c00296{font-size:66.239974px;}
.fs2_c00296{font-size:71.999971px;}
.y0_c00296{bottom:0.000000px;}
.y4_c00296{bottom:75.720270px;}
.y3_c00296{bottom:113.880254px;}
.y15_c00296{bottom:175.439930px;}
.y14_c00296{bottom:206.399917px;}
.y13_c00296{bottom:237.539905px;}
.y12_c00296{bottom:268.499893px;}
.y11_c00296{bottom:291.719883px;}
.y10_c00296{bottom:313.679875px;}
.yf_c00296{bottom:338.879864px;}
.ye_c00296{bottom:505.019798px;}
.yd_c00296{bottom:536.519785px;}
.yc_c00296{bottom:559.739776px;}
.yb_c00296{bottom:581.519767px;}
.ya_c00296{bottom:606.899757px;}
.y9_c00296{bottom:837.479665px;}
.y8_c00296{bottom:861.419655px;}
.y7_c00296{bottom:884.639646px;}
.y6_c00296{bottom:906.419637px;}
.y5_c00296{bottom:931.619627px;}
.y2_c00296{bottom:1175.879530px;}
.y1_c00296{bottom:1196.039522px;}
.h2_c00296{height:54.628572px;}
.h1_c00296{height:58.651148px;}
.h4_c00296{height:65.010911px;}
.h5_c00296{height:70.664034px;}
.h3_c00296{height:72.562471px;}
.h0_c00296{height:1263.000000px;}
.w0_c00296{width:892.500000px;}
.x0_c00296{left:0.000000px;}
.x5_c00296{left:127.800262px;}
.x7_c00296{left:149.939940px;}
.xa_c00296{left:151.919939px;}
.xe_c00296{left:162.359935px;}
.x1_c00296{left:181.979927px;}
.xb_c00296{left:277.379889px;}
.x8_c00296{left:304.559878px;}
.x2_c00296{left:329.219408px;}
.x4_c00296{left:434.159826px;}
.xc_c00296{left:446.579821px;}
.x6_c00296{left:730.079708px;}
.x9_c00296{left:740.699704px;}
.xd_c00296{left:748.439701px;}
.x3_c00296{left:765.539694px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:-15.999994pt;}
.ws1_c00296{word-spacing:-14.719994pt;}
.ws2_c00296{word-spacing:0.000000pt;}
._1_c00296{margin-left:-0.982555pt;}
._0_c00296{width:1.314126pt;}
.fs0_c00296{font-size:53.119979pt;}
.fs1_c00296{font-size:58.879976pt;}
.fs2_c00296{font-size:63.999974pt;}
.y0_c00296{bottom:0.000000pt;}
.y4_c00296{bottom:67.306906pt;}
.y3_c00296{bottom:101.226893pt;}
.y15_c00296{bottom:155.946604pt;}
.y14_c00296{bottom:183.466593pt;}
.y13_c00296{bottom:211.146582pt;}
.y12_c00296{bottom:238.666571pt;}
.y11_c00296{bottom:259.306563pt;}
.y10_c00296{bottom:278.826555pt;}
.yf_c00296{bottom:301.226546pt;}
.ye_c00296{bottom:448.906487pt;}
.yd_c00296{bottom:476.906476pt;}
.yc_c00296{bottom:497.546468pt;}
.yb_c00296{bottom:516.906460pt;}
.ya_c00296{bottom:539.466451pt;}
.y9_c00296{bottom:744.426369pt;}
.y8_c00296{bottom:765.706360pt;}
.y7_c00296{bottom:786.346352pt;}
.y6_c00296{bottom:805.706344pt;}
.y5_c00296{bottom:828.106335pt;}
.y2_c00296{bottom:1045.226249pt;}
.y1_c00296{bottom:1063.146241pt;}
.h2_c00296{height:48.558731pt;}
.h1_c00296{height:52.134354pt;}
.h4_c00296{height:57.787477pt;}
.h5_c00296{height:62.812475pt;}
.h3_c00296{height:64.499974pt;}
.h0_c00296{height:1122.666667pt;}
.w0_c00296{width:793.333333pt;}
.x0_c00296{left:0.000000pt;}
.x5_c00296{left:113.600233pt;}
.x7_c00296{left:133.279947pt;}
.xa_c00296{left:135.039946pt;}
.xe_c00296{left:144.319942pt;}
.x1_c00296{left:161.759935pt;}
.xb_c00296{left:246.559901pt;}
.x8_c00296{left:270.719892pt;}
.x2_c00296{left:292.639474pt;}
.x4_c00296{left:385.919846pt;}
.xc_c00296{left:396.959841pt;}
.x6_c00296{left:648.959740pt;}
.x9_c00296{left:658.399737pt;}
.xd_c00296{left:665.279734pt;}
.x3_c00296{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dec4a96b3d424ba233e051a5.woff2')format("woff");}.ff1_c00297{font-family:ff1_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:ff2_c00297;src:url('chunks/assets/font_8d81983cfdfad1edd1b4f15d.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_271400e61f7bccb46c749344.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.311035;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00297;src:url('chunks/assets/font_6a99dc0c9f60a454cd652991.woff2')format("woff");}.ff5_c00297{font-family:ff5_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:ff6_c00297;src:url('chunks/assets/font_c6b8d9a91100b4376103528b.woff2')format("woff");}.ff6_c00297{font-family:ff6_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;}
.m0_c00297{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls1_c00297{letter-spacing:0.000000px;}
.ls0_c00297{letter-spacing:30.413748px;}
.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;}
}
.ws0_c00297{word-spacing:-17.999993px;}
.ws1_c00297{word-spacing:0.000000px;}
._1_c00297{margin-left:-1.105374px;}
._0_c00297{width:1.195563px;}
._4_c00297{width:3.133257px;}
._7_c00297{width:5.027668px;}
._5_c00297{width:6.373965px;}
._8_c00297{width:8.428961px;}
._6_c00297{width:10.547708px;}
._2_c00297{width:11.739141px;}
._3_c00297{width:13.207326px;}
._a_c00297{width:19.399620px;}
._9_c00297{width:20.448246px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs3_c00297{font-size:48.239981px;}
.fs0_c00297{font-size:59.759976px;}
.fs1_c00297{font-size:66.239974px;}
.fs2_c00297{font-size:71.999971px;}
.y0_c00297{bottom:0.000000px;}
.y4_c00297{bottom:75.719970px;}
.y3_c00297{bottom:113.879954px;}
.y19_c00297{bottom:144.660242px;}
.y18_c00297{bottom:175.799930px;}
.y17_c00297{bottom:206.759917px;}
.y16_c00297{bottom:237.899905px;}
.y15_c00297{bottom:268.859892px;}
.y14_c00297{bottom:299.999880px;}
.y13_c00297{bottom:330.959868px;}
.y12_c00297{bottom:362.099855px;}
.y11_c00297{bottom:393.059843px;}
.y10_c00297{bottom:424.199830px;}
.yf_c00297{bottom:455.159818px;}
.ye_c00297{bottom:486.299805px;}
.yd_c00297{bottom:517.259793px;}
.yc_c00297{bottom:548.399781px;}
.yb_c00297{bottom:579.359768px;}
.ya_c00297{bottom:602.579759px;}
.y9_c00297{bottom:624.539750px;}
.y8_c00297{bottom:649.739740px;}
.y7_c00297{bottom:1055.639578px;}
.y6_c00297{bottom:1086.599565px;}
.y5_c00297{bottom:1117.739553px;}
.y2_c00297{bottom:1156.979537px;}
.y1_c00297{bottom:1195.859522px;}
.h7_c00297{height:47.344903px;}
.h2_c00297{height:54.628572px;}
.h1_c00297{height:58.651148px;}
.h6_c00297{height:65.010911px;}
.h5_c00297{height:70.664034px;}
.h4_c00297{height:72.562471px;}
.h3_c00297{height:75.093720px;}
.h0_c00297{height:1263.000000px;}
.w0_c00297{width:892.500000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:127.799949px;}
.x7_c00297{left:180.899998px;}
.x4_c00297{left:199.799920px;}
.xa_c00297{left:236.699905px;}
.xb_c00297{left:240.479904px;}
.x5_c00297{left:363.239855px;}
.x2_c00297{left:434.159514px;}
.x6_c00297{left:473.219811px;}
.x8_c00297{left:500.039800px;}
.x9_c00297{left:507.059797px;}
.x3_c00297{left:586.079766px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls1_c00297{letter-spacing:0.000000pt;}
.ls0_c00297{letter-spacing:27.034443pt;}
.ws0_c00297{word-spacing:-15.999994pt;}
.ws1_c00297{word-spacing:0.000000pt;}
._1_c00297{margin-left:-0.982555pt;}
._0_c00297{width:1.062723pt;}
._4_c00297{width:2.785117pt;}
._7_c00297{width:4.469038pt;}
._5_c00297{width:5.665747pt;}
._8_c00297{width:7.492410pt;}
._6_c00297{width:9.375740pt;}
._2_c00297{width:10.434792pt;}
._3_c00297{width:11.739846pt;}
._a_c00297{width:17.244106pt;}
._9_c00297{width:18.176218pt;}
.fs3_c00297{font-size:42.879983pt;}
.fs0_c00297{font-size:53.119979pt;}
.fs1_c00297{font-size:58.879976pt;}
.fs2_c00297{font-size:63.999974pt;}
.y0_c00297{bottom:0.000000pt;}
.y4_c00297{bottom:67.306640pt;}
.y3_c00297{bottom:101.226626pt;}
.y19_c00297{bottom:128.586882pt;}
.y18_c00297{bottom:156.266604pt;}
.y17_c00297{bottom:183.786593pt;}
.y16_c00297{bottom:211.466582pt;}
.y15_c00297{bottom:238.986571pt;}
.y14_c00297{bottom:266.666560pt;}
.y13_c00297{bottom:294.186549pt;}
.y12_c00297{bottom:321.866538pt;}
.y11_c00297{bottom:349.386527pt;}
.y10_c00297{bottom:377.066516pt;}
.yf_c00297{bottom:404.586505pt;}
.ye_c00297{bottom:432.266494pt;}
.yd_c00297{bottom:459.786483pt;}
.yc_c00297{bottom:487.466472pt;}
.yb_c00297{bottom:514.986461pt;}
.ya_c00297{bottom:535.626452pt;}
.y9_c00297{bottom:555.146445pt;}
.y8_c00297{bottom:577.546436pt;}
.y7_c00297{bottom:938.346291pt;}
.y6_c00297{bottom:965.866280pt;}
.y5_c00297{bottom:993.546269pt;}
.y2_c00297{bottom:1028.426255pt;}
.y1_c00297{bottom:1062.986241pt;}
.h7_c00297{height:42.084358pt;}
.h2_c00297{height:48.558731pt;}
.h1_c00297{height:52.134354pt;}
.h6_c00297{height:57.787477pt;}
.h5_c00297{height:62.812475pt;}
.h4_c00297{height:64.499974pt;}
.h3_c00297{height:66.749973pt;}
.h0_c00297{height:1122.666667pt;}
.w0_c00297{width:793.333333pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:113.599955pt;}
.x7_c00297{left:160.799998pt;}
.x4_c00297{left:177.599929pt;}
.xa_c00297{left:210.399916pt;}
.xb_c00297{left:213.759914pt;}
.x5_c00297{left:322.879871pt;}
.x2_c00297{left:385.919568pt;}
.x6_c00297{left:420.639832pt;}
.x8_c00297{left:444.479822pt;}
.x9_c00297{left:450.719820pt;}
.x3_c00297{left:520.959792pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9cf9cb1672006d2115a91af.woff2')format("woff");}.ff1_c00298{font-family:ff1_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:ff2_c00298;src:url('chunks/assets/font_91ee764b19cdb7bd42fdec23.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_446f35ff6e9081c639fa1eb5.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;}
.m0_c00298{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls2_c00298{letter-spacing:0.000000px;}
.ls0_c00298{letter-spacing:0.153901px;}
.ls1_c00298{letter-spacing:0.378602px;}
.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:-12.059995px;}
.ws1_c00298{word-spacing:-9.719996px;}
.ws2_c00298{word-spacing:0.000000px;}
._6_c00298{margin-left:-12.716934px;}
._1_c00298{margin-left:-1.105374px;}
._0_c00298{width:1.478392px;}
._4_c00298{width:3.158602px;}
._7_c00298{width:5.952841px;}
._5_c00298{width:10.071756px;}
._2_c00298{width:11.556283px;}
._3_c00298{width:12.941713px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs4_c00298{font-size:38.879984px;}
.fs3_c00298{font-size:48.239981px;}
.fs0_c00298{font-size:59.759976px;}
.fs1_c00298{font-size:66.239974px;}
.fs2_c00298{font-size:71.999971px;}
.y0_c00298{bottom:0.000000px;}
.y4_c00298{bottom:75.720270px;}
.y3_c00298{bottom:113.880254px;}
.y1d_c00298{bottom:134.220246px;}
.y1c_c00298{bottom:153.299939px;}
.y1b_c00298{bottom:170.579932px;}
.y1a_c00298{bottom:177.419929px;}
.y19_c00298{bottom:188.759924px;}
.y18_c00298{bottom:230.879908px;}
.y17_c00298{bottom:252.659899px;}
.y16_c00298{bottom:278.039889px;}
.y15_c00298{bottom:494.039802px;}
.y14_c00298{bottom:524.819790px;}
.y13_c00298{bottom:555.959778px;}
.y12_c00298{bottom:586.919765px;}
.y11_c00298{bottom:618.059753px;}
.y10_c00298{bottom:649.019740px;}
.yf_c00298{bottom:680.159728px;}
.ye_c00298{bottom:703.379719px;}
.yd_c00298{bottom:725.159710px;}
.yc_c00298{bottom:750.359700px;}
.yb_c00298{bottom:981.119608px;}
.y9_c00298{bottom:1012.079595px;}
.ya_c00298{bottom:1020.359592px;}
.y8_c00298{bottom:1043.219583px;}
.y7_c00298{bottom:1074.179570px;}
.y6_c00298{bottom:1105.319558px;}
.y5_c00298{bottom:1136.279545px;}
.y2_c00298{bottom:1175.879530px;}
.y1_c00298{bottom:1196.039522px;}
.h7_c00298{height:38.158578px;}
.h4_c00298{height:47.344903px;}
.h2_c00298{height:54.628572px;}
.h1_c00298{height:58.651148px;}
.h5_c00298{height:65.010911px;}
.h6_c00298{height:70.628878px;}
.h3_c00298{height:70.664034px;}
.h0_c00298{height:1263.000000px;}
.w0_c00298{width:892.500000px;}
.x0_c00298{left:0.000000px;}
.x5_c00298{left:127.800262px;}
.xe_c00298{left:137.519945px;}
.xa_c00298{left:141.299943px;}
.xd_c00298{left:156.059938px;}
.x6_c00298{left:180.899928px;}
.x1_c00298{left:181.979927px;}
.xb_c00298{left:297.719881px;}
.x2_c00298{left:329.219408px;}
.x4_c00298{left:434.159826px;}
.x7_c00298{left:506.159798px;}
.x8_c00298{left:518.399793px;}
.x9_c00298{left:682.919727px;}
.xc_c00298{left:719.999712px;}
.x3_c00298{left:765.539694px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls2_c00298{letter-spacing:0.000000pt;}
.ls0_c00298{letter-spacing:0.136801pt;}
.ls1_c00298{letter-spacing:0.336535pt;}
.ws0_c00298{word-spacing:-10.719996pt;}
.ws1_c00298{word-spacing:-8.639997pt;}
.ws2_c00298{word-spacing:0.000000pt;}
._6_c00298{margin-left:-11.303941pt;}
._1_c00298{margin-left:-0.982555pt;}
._0_c00298{width:1.314126pt;}
._4_c00298{width:2.807646pt;}
._7_c00298{width:5.291414pt;}
._5_c00298{width:8.952672pt;}
._2_c00298{width:10.272251pt;}
._3_c00298{width:11.503745pt;}
.fs4_c00298{font-size:34.559986pt;}
.fs3_c00298{font-size:42.879983pt;}
.fs0_c00298{font-size:53.119979pt;}
.fs1_c00298{font-size:58.879976pt;}
.fs2_c00298{font-size:63.999974pt;}
.y0_c00298{bottom:0.000000pt;}
.y4_c00298{bottom:67.306906pt;}
.y3_c00298{bottom:101.226893pt;}
.y1d_c00298{bottom:119.306886pt;}
.y1c_c00298{bottom:136.266612pt;}
.y1b_c00298{bottom:151.626606pt;}
.y1a_c00298{bottom:157.706604pt;}
.y19_c00298{bottom:167.786600pt;}
.y18_c00298{bottom:205.226585pt;}
.y17_c00298{bottom:224.586577pt;}
.y16_c00298{bottom:247.146568pt;}
.y15_c00298{bottom:439.146491pt;}
.y14_c00298{bottom:466.506480pt;}
.y13_c00298{bottom:494.186469pt;}
.y12_c00298{bottom:521.706458pt;}
.y11_c00298{bottom:549.386447pt;}
.y10_c00298{bottom:576.906436pt;}
.yf_c00298{bottom:604.586425pt;}
.ye_c00298{bottom:625.226417pt;}
.yd_c00298{bottom:644.586409pt;}
.yc_c00298{bottom:666.986400pt;}
.yb_c00298{bottom:872.106318pt;}
.y9_c00298{bottom:899.626307pt;}
.ya_c00298{bottom:906.986304pt;}
.y8_c00298{bottom:927.306296pt;}
.y7_c00298{bottom:954.826285pt;}
.y6_c00298{bottom:982.506274pt;}
.y5_c00298{bottom:1010.026263pt;}
.y2_c00298{bottom:1045.226249pt;}
.y1_c00298{bottom:1063.146241pt;}
.h7_c00298{height:33.918736pt;}
.h4_c00298{height:42.084358pt;}
.h2_c00298{height:48.558731pt;}
.h1_c00298{height:52.134354pt;}
.h5_c00298{height:57.787477pt;}
.h6_c00298{height:62.781225pt;}
.h3_c00298{height:62.812475pt;}
.h0_c00298{height:1122.666667pt;}
.w0_c00298{width:793.333333pt;}
.x0_c00298{left:0.000000pt;}
.x5_c00298{left:113.600233pt;}
.xe_c00298{left:122.239951pt;}
.xa_c00298{left:125.599950pt;}
.xd_c00298{left:138.719945pt;}
.x6_c00298{left:160.799936pt;}
.x1_c00298{left:161.759935pt;}
.xb_c00298{left:264.639894pt;}
.x2_c00298{left:292.639474pt;}
.x4_c00298{left:385.919846pt;}
.x7_c00298{left:449.919820pt;}
.x8_c00298{left:460.799816pt;}
.x9_c00298{left:607.039757pt;}
.xc_c00298{left:639.999744pt;}
.x3_c00298{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36b1412c8f7fa1e9638e96e0.woff2')format("woff");}.ff1_c00299{font-family:ff1_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:ff2_c00299;src:url('chunks/assets/font_3f14e43c758303555e33079d.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_241830c5fed7c965e2af6e1d.woff2')format("woff");}.ff3_c00299{font-family:ff3_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;}
.m0_c00299{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls2_c00299{letter-spacing:0.000000px;}
.ls0_c00299{letter-spacing:0.153901px;}
.ls1_c00299{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00299{word-spacing:-14.939994px;}
.ws0_c00299{word-spacing:-12.059995px;}
.ws1_c00299{word-spacing:-9.719996px;}
.ws3_c00299{word-spacing:0.000000px;}
._7_c00299{margin-left:-12.716934px;}
._1_c00299{margin-left:-1.105374px;}
._0_c00299{width:1.195563px;}
._5_c00299{width:3.656471px;}
._6_c00299{width:5.028815px;}
._2_c00299{width:13.762482px;}
._4_c00299{width:14.804184px;}
._3_c00299{width:15.836431px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs4_c00299{font-size:38.879984px;}
.fs3_c00299{font-size:48.239981px;}
.fs0_c00299{font-size:59.759976px;}
.fs1_c00299{font-size:66.239974px;}
.fs2_c00299{font-size:71.999971px;}
.y0_c00299{bottom:0.000000px;}
.y4_c00299{bottom:75.719970px;}
.y3_c00299{bottom:113.879954px;}
.y16_c00299{bottom:134.220246px;}
.y15_c00299{bottom:153.299939px;}
.y14_c00299{bottom:160.139936px;}
.y13_c00299{bottom:171.479931px;}
.y12_c00299{bottom:364.619854px;}
.y11_c00299{bottom:651.359739px;}
.yf_c00299{bottom:682.499727px;}
.y10_c00299{bottom:690.779724px;}
.ye_c00299{bottom:713.459715px;}
.yd_c00299{bottom:744.599702px;}
.yc_c00299{bottom:775.559690px;}
.yb_c00299{bottom:806.699677px;}
.ya_c00299{bottom:829.919668px;}
.y9_c00299{bottom:851.699659px;}
.y8_c00299{bottom:877.079649px;}
.y7_c00299{bottom:1055.999578px;}
.y6_c00299{bottom:1086.959565px;}
.y5_c00299{bottom:1118.099553px;}
.y2_c00299{bottom:1156.979537px;}
.y1_c00299{bottom:1195.859522px;}
.h6_c00299{height:38.158578px;}
.h5_c00299{height:47.344903px;}
.h2_c00299{height:54.628572px;}
.h1_c00299{height:58.651148px;}
.h4_c00299{height:65.010911px;}
.h3_c00299{height:70.664034px;}
.h0_c00299{height:1263.000000px;}
.w0_c00299{width:892.500000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:127.799949px;}
.x5_c00299{left:138.059945px;}
.x3_c00299{left:180.899928px;}
.x7_c00299{left:222.839911px;}
.x8_c00299{left:235.079906px;}
.x6_c00299{left:247.679901px;}
.x2_c00299{left:434.159514px;}
.x9_c00299{left:700.919720px;}
.x4_c00299{left:710.999716px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls2_c00299{letter-spacing:0.000000pt;}
.ls0_c00299{letter-spacing:0.136801pt;}
.ls1_c00299{letter-spacing:0.168267pt;}
.ws2_c00299{word-spacing:-13.279995pt;}
.ws0_c00299{word-spacing:-10.719996pt;}
.ws1_c00299{word-spacing:-8.639997pt;}
.ws3_c00299{word-spacing:0.000000pt;}
._7_c00299{margin-left:-11.303941pt;}
._1_c00299{margin-left:-0.982555pt;}
._0_c00299{width:1.062723pt;}
._5_c00299{width:3.250196pt;}
._6_c00299{width:4.470058pt;}
._2_c00299{width:12.233317pt;}
._4_c00299{width:13.159274pt;}
._3_c00299{width:14.076827pt;}
.fs4_c00299{font-size:34.559986pt;}
.fs3_c00299{font-size:42.879983pt;}
.fs0_c00299{font-size:53.119979pt;}
.fs1_c00299{font-size:58.879976pt;}
.fs2_c00299{font-size:63.999974pt;}
.y0_c00299{bottom:0.000000pt;}
.y4_c00299{bottom:67.306640pt;}
.y3_c00299{bottom:101.226626pt;}
.y16_c00299{bottom:119.306886pt;}
.y15_c00299{bottom:136.266612pt;}
.y14_c00299{bottom:142.346610pt;}
.y13_c00299{bottom:152.426606pt;}
.y12_c00299{bottom:324.106537pt;}
.y11_c00299{bottom:578.986435pt;}
.yf_c00299{bottom:606.666424pt;}
.y10_c00299{bottom:614.026421pt;}
.ye_c00299{bottom:634.186413pt;}
.yd_c00299{bottom:661.866402pt;}
.yc_c00299{bottom:689.386391pt;}
.yb_c00299{bottom:717.066380pt;}
.ya_c00299{bottom:737.706372pt;}
.y9_c00299{bottom:757.066364pt;}
.y8_c00299{bottom:779.626355pt;}
.y7_c00299{bottom:938.666291pt;}
.y6_c00299{bottom:966.186280pt;}
.y5_c00299{bottom:993.866269pt;}
.y2_c00299{bottom:1028.426255pt;}
.y1_c00299{bottom:1062.986241pt;}
.h6_c00299{height:33.918736pt;}
.h5_c00299{height:42.084358pt;}
.h2_c00299{height:48.558731pt;}
.h1_c00299{height:52.134354pt;}
.h4_c00299{height:57.787477pt;}
.h3_c00299{height:62.812475pt;}
.h0_c00299{height:1122.666667pt;}
.w0_c00299{width:793.333333pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:113.599955pt;}
.x5_c00299{left:122.719951pt;}
.x3_c00299{left:160.799936pt;}
.x7_c00299{left:198.079921pt;}
.x8_c00299{left:208.959916pt;}
.x6_c00299{left:220.159912pt;}
.x2_c00299{left:385.919568pt;}
.x9_c00299{left:623.039751pt;}
.x4_c00299{left:631.999747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b3ddf94dce80b7e76e4886e.woff2')format("woff");}.ff1_c00300{font-family:ff1_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:ff2_c00300;src:url('chunks/assets/font_a58cd3e99d62e08f2c8317c5.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_aa37fb16e78b82dbb757b369.woff2')format("woff");}.ff3_c00300{font-family:ff3_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;}
.m0_c00300{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00300{word-spacing:0.000000px;}
._1_c00300{margin-left:-1.105374px;}
._0_c00300{width:1.478392px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs0_c00300{font-size:59.759976px;}
.fs1_c00300{font-size:66.239974px;}
.fs2_c00300{font-size:71.999971px;}
.y0_c00300{bottom:0.000000px;}
.y4_c00300{bottom:75.720270px;}
.y3_c00300{bottom:113.880254px;}
.y27_c00300{bottom:155.099938px;}
.y26_c00300{bottom:177.059929px;}
.y25_c00300{bottom:198.839920px;}
.y24_c00300{bottom:220.619912px;}
.y23_c00300{bottom:242.399903px;}
.y22_c00300{bottom:264.179894px;}
.y21_c00300{bottom:286.139886px;}
.y20_c00300{bottom:307.919877px;}
.y1f_c00300{bottom:329.699868px;}
.y1e_c00300{bottom:351.479859px;}
.y1d_c00300{bottom:373.439851px;}
.y1c_c00300{bottom:395.219842px;}
.y1b_c00300{bottom:416.999833px;}
.y1a_c00300{bottom:438.779824px;}
.y19_c00300{bottom:460.559816px;}
.y18_c00300{bottom:482.519807px;}
.y17_c00300{bottom:504.299798px;}
.y16_c00300{bottom:526.079790px;}
.y15_c00300{bottom:547.859781px;}
.y14_c00300{bottom:569.819772px;}
.y13_c00300{bottom:591.599763px;}
.y12_c00300{bottom:613.379755px;}
.y11_c00300{bottom:635.159746px;}
.y10_c00300{bottom:656.939737px;}
.yf_c00300{bottom:678.899728px;}
.ye_c00300{bottom:700.679720px;}
.yd_c00300{bottom:722.459711px;}
.yc_c00300{bottom:744.239702px;}
.yb_c00300{bottom:766.019694px;}
.ya_c00300{bottom:787.979685px;}
.y9_c00300{bottom:809.759676px;}
.y8_c00300{bottom:831.539667px;}
.y7_c00300{bottom:853.319659px;}
.y6_c00300{bottom:883.019647px;}
.y5_c00300{bottom:909.659636px;}
.y2_c00300{bottom:1175.879530px;}
.y1_c00300{bottom:1196.039522px;}
.h2_c00300{height:54.628572px;}
.h1_c00300{height:58.651148px;}
.h4_c00300{height:65.010911px;}
.h3_c00300{height:70.628878px;}
.h0_c00300{height:1263.000000px;}
.w0_c00300{width:892.500000px;}
.x0_c00300{left:0.000000px;}
.x5_c00300{left:127.800262px;}
.x8_c00300{left:164.339934px;}
.x9_c00300{left:180.899928px;}
.x1_c00300{left:181.979927px;}
.x2_c00300{left:329.219408px;}
.x4_c00300{left:434.159826px;}
.x7_c00300{left:446.579821px;}
.x6_c00300{left:703.079719px;}
.x3_c00300{left:765.539694px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
._1_c00300{margin-left:-0.982555pt;}
._0_c00300{width:1.314126pt;}
.fs0_c00300{font-size:53.119979pt;}
.fs1_c00300{font-size:58.879976pt;}
.fs2_c00300{font-size:63.999974pt;}
.y0_c00300{bottom:0.000000pt;}
.y4_c00300{bottom:67.306906pt;}
.y3_c00300{bottom:101.226893pt;}
.y27_c00300{bottom:137.866612pt;}
.y26_c00300{bottom:157.386604pt;}
.y25_c00300{bottom:176.746596pt;}
.y24_c00300{bottom:196.106588pt;}
.y23_c00300{bottom:215.466580pt;}
.y22_c00300{bottom:234.826573pt;}
.y21_c00300{bottom:254.346565pt;}
.y20_c00300{bottom:273.706557pt;}
.y1f_c00300{bottom:293.066549pt;}
.y1e_c00300{bottom:312.426542pt;}
.y1d_c00300{bottom:331.946534pt;}
.y1c_c00300{bottom:351.306526pt;}
.y1b_c00300{bottom:370.666518pt;}
.y1a_c00300{bottom:390.026511pt;}
.y19_c00300{bottom:409.386503pt;}
.y18_c00300{bottom:428.906495pt;}
.y17_c00300{bottom:448.266487pt;}
.y16_c00300{bottom:467.626480pt;}
.y15_c00300{bottom:486.986472pt;}
.y14_c00300{bottom:506.506464pt;}
.y13_c00300{bottom:525.866456pt;}
.y12_c00300{bottom:545.226449pt;}
.y11_c00300{bottom:564.586441pt;}
.y10_c00300{bottom:583.946433pt;}
.yf_c00300{bottom:603.466425pt;}
.ye_c00300{bottom:622.826418pt;}
.yd_c00300{bottom:642.186410pt;}
.yc_c00300{bottom:661.546402pt;}
.yb_c00300{bottom:680.906394pt;}
.ya_c00300{bottom:700.426386pt;}
.y9_c00300{bottom:719.786379pt;}
.y8_c00300{bottom:739.146371pt;}
.y7_c00300{bottom:758.506363pt;}
.y6_c00300{bottom:784.906353pt;}
.y5_c00300{bottom:808.586343pt;}
.y2_c00300{bottom:1045.226249pt;}
.y1_c00300{bottom:1063.146241pt;}
.h2_c00300{height:48.558731pt;}
.h1_c00300{height:52.134354pt;}
.h4_c00300{height:57.787477pt;}
.h3_c00300{height:62.781225pt;}
.h0_c00300{height:1122.666667pt;}
.w0_c00300{width:793.333333pt;}
.x0_c00300{left:0.000000pt;}
.x5_c00300{left:113.600233pt;}
.x8_c00300{left:146.079942pt;}
.x9_c00300{left:160.799936pt;}
.x1_c00300{left:161.759935pt;}
.x2_c00300{left:292.639474pt;}
.x4_c00300{left:385.919846pt;}
.x7_c00300{left:396.959841pt;}
.x6_c00300{left:624.959750pt;}
.x3_c00300{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66fdf6d88cca3f1bd6fcba36.woff2')format("woff");}.ff1_c00301{font-family:ff1_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:ff2_c00301;src:url('chunks/assets/font_4b82d9f627fb0ac681bd2f27.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_82002c02129764bee84132db.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.311035;font-style:normal;font-weight:normal;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_a3259b58c331b918e49b772f.woff2')format("woff");}.ff4_c00301{font-family:ff4_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:ff5_c00301;src:url('chunks/assets/font_6b5d342efecd382ea19d18ac.woff2')format("woff");}.ff5_c00301{font-family:ff5_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;}
.m0_c00301{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls1_c00301{letter-spacing:0.000000px;}
.ls0_c00301{letter-spacing:18.021233px;}
.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;}
}
.ws0_c00301{word-spacing:0.000000px;}
._1_c00301{margin-left:-1.105374px;}
._0_c00301{width:1.195563px;}
._2_c00301{width:2.998076px;}
._b_c00301{width:4.352139px;}
._c_c00301{width:5.394606px;}
._3_c00301{width:7.527895px;}
._4_c00301{width:8.701861px;}
._9_c00301{width:12.585003px;}
._a_c00301{width:14.276667px;}
._5_c00301{width:21.191065px;}
._6_c00301{width:22.296789px;}
._7_c00301{width:23.469327px;}
._8_c00301{width:24.540641px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs0_c00301{font-size:59.759976px;}
.fs1_c00301{font-size:66.239974px;}
.fs2_c00301{font-size:71.999971px;}
.y0_c00301{bottom:0.000000px;}
.y4_c00301{bottom:75.719970px;}
.y3_c00301{bottom:113.879954px;}
.y16_c00301{bottom:264.719894px;}
.y15_c00301{bottom:295.859882px;}
.y14_c00301{bottom:326.819869px;}
.y13_c00301{bottom:357.959857px;}
.y12_c00301{bottom:388.919844px;}
.y11_c00301{bottom:420.059832px;}
.y10_c00301{bottom:451.019820px;}
.yf_c00301{bottom:482.159807px;}
.ye_c00301{bottom:513.119795px;}
.yd_c00301{bottom:544.259782px;}
.yc_c00301{bottom:575.219770px;}
.yb_c00301{bottom:606.179758px;}
.ya_c00301{bottom:637.319745px;}
.y9_c00301{bottom:667.919733px;}
.y8_c00301{bottom:698.339721px;}
.y7_c00301{bottom:723.719711px;}
.y6_c00301{bottom:1086.599565px;}
.y5_c00301{bottom:1117.739553px;}
.y2_c00301{bottom:1156.979537px;}
.y1_c00301{bottom:1195.859522px;}
.h2_c00301{height:54.628572px;}
.h1_c00301{height:58.651148px;}
.h4_c00301{height:65.010911px;}
.h5_c00301{height:70.664034px;}
.h3_c00301{height:72.562471px;}
.h0_c00301{height:1263.000000px;}
.w0_c00301{width:892.500000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:127.799949px;}
.x4_c00301{left:164.699934px;}
.x5_c00301{left:180.899930px;}
.x2_c00301{left:434.159514px;}
.x3_c00301{left:591.659763px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls1_c00301{letter-spacing:0.000000pt;}
.ls0_c00301{letter-spacing:16.018874pt;}
.ws0_c00301{word-spacing:0.000000pt;}
._1_c00301{margin-left:-0.982555pt;}
._0_c00301{width:1.062723pt;}
._2_c00301{width:2.664957pt;}
._b_c00301{width:3.868568pt;}
._c_c00301{width:4.795205pt;}
._3_c00301{width:6.691462pt;}
._4_c00301{width:7.734988pt;}
._9_c00301{width:11.186669pt;}
._a_c00301{width:12.690371pt;}
._5_c00301{width:18.836502pt;}
._6_c00301{width:19.819368pt;}
._7_c00301{width:20.861624pt;}
._8_c00301{width:21.813903pt;}
.fs0_c00301{font-size:53.119979pt;}
.fs1_c00301{font-size:58.879976pt;}
.fs2_c00301{font-size:63.999974pt;}
.y0_c00301{bottom:0.000000pt;}
.y4_c00301{bottom:67.306640pt;}
.y3_c00301{bottom:101.226626pt;}
.y16_c00301{bottom:235.306573pt;}
.y15_c00301{bottom:262.986561pt;}
.y14_c00301{bottom:290.506550pt;}
.y13_c00301{bottom:318.186539pt;}
.y12_c00301{bottom:345.706528pt;}
.y11_c00301{bottom:373.386517pt;}
.y10_c00301{bottom:400.906506pt;}
.yf_c00301{bottom:428.586495pt;}
.ye_c00301{bottom:456.106484pt;}
.yd_c00301{bottom:483.786473pt;}
.yc_c00301{bottom:511.306462pt;}
.yb_c00301{bottom:538.826451pt;}
.ya_c00301{bottom:566.506440pt;}
.y9_c00301{bottom:593.706429pt;}
.y8_c00301{bottom:620.746418pt;}
.y7_c00301{bottom:643.306409pt;}
.y6_c00301{bottom:965.866280pt;}
.y5_c00301{bottom:993.546269pt;}
.y2_c00301{bottom:1028.426255pt;}
.y1_c00301{bottom:1062.986241pt;}
.h2_c00301{height:48.558731pt;}
.h1_c00301{height:52.134354pt;}
.h4_c00301{height:57.787477pt;}
.h5_c00301{height:62.812475pt;}
.h3_c00301{height:64.499974pt;}
.h0_c00301{height:1122.666667pt;}
.w0_c00301{width:793.333333pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:113.599955pt;}
.x4_c00301{left:146.399941pt;}
.x5_c00301{left:160.799938pt;}
.x2_c00301{left:385.919568pt;}
.x3_c00301{left:525.919790pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_84f682862d4dc70dd2e256bf.woff2')format("woff");}.ff1_c00302{font-family:ff1_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:ff2_c00302;src:url('chunks/assets/font_87eb07be62b2e4808ff33791.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00302;src:url('chunks/assets/font_dbad99006f0b5d77d181a25e.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00302{font-family:ff4_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;}
.m0_c00302{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls1_c00302{letter-spacing:0.000000px;}
.ls0_c00302{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00302{word-spacing:-17.999993px;}
.ws1_c00302{word-spacing:-12.059995px;}
.ws2_c00302{word-spacing:-9.719996px;}
.ws3_c00302{word-spacing:0.000000px;}
._6_c00302{margin-left:-12.716934px;}
._1_c00302{margin-left:-1.105374px;}
._0_c00302{width:1.478392px;}
._8_c00302{width:5.239399px;}
._7_c00302{width:6.673277px;}
._2_c00302{width:9.351397px;}
._4_c00302{width:40.954721px;}
._3_c00302{width:42.060981px;}
._5_c00302{width:43.145076px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs4_c00302{font-size:38.879984px;}
.fs3_c00302{font-size:48.239981px;}
.fs0_c00302{font-size:59.759976px;}
.fs1_c00302{font-size:66.239974px;}
.fs2_c00302{font-size:71.999971px;}
.y0_c00302{bottom:0.000000px;}
.y4_c00302{bottom:75.720270px;}
.y3_c00302{bottom:113.880254px;}
.y18_c00302{bottom:134.220246px;}
.y17_c00302{bottom:153.299939px;}
.y16_c00302{bottom:170.579932px;}
.y15_c00302{bottom:177.419929px;}
.y14_c00302{bottom:188.759924px;}
.y13_c00302{bottom:250.139900px;}
.y12_c00302{bottom:273.899890px;}
.y11_c00302{bottom:297.299881px;}
.y10_c00302{bottom:319.079872px;}
.yf_c00302{bottom:344.279862px;}
.ye_c00302{bottom:586.919765px;}
.yd_c00302{bottom:618.059753px;}
.yc_c00302{bottom:641.639743px;}
.yb_c00302{bottom:663.419735px;}
.ya_c00302{bottom:688.799724px;}
.y9_c00302{bottom:1042.859583px;}
.y7_c00302{bottom:1074.179570px;}
.y8_c00302{bottom:1082.459567px;}
.y6_c00302{bottom:1105.319558px;}
.y5_c00302{bottom:1136.279545px;}
.y2_c00302{bottom:1175.879530px;}
.y1_c00302{bottom:1196.039522px;}
.h7_c00302{height:38.158578px;}
.h4_c00302{height:47.344903px;}
.h2_c00302{height:54.628572px;}
.h1_c00302{height:58.651148px;}
.h6_c00302{height:65.010911px;}
.h3_c00302{height:70.664034px;}
.h5_c00302{height:72.562471px;}
.h0_c00302{height:1263.000000px;}
.w0_c00302{width:892.500000px;}
.x0_c00302{left:0.000000px;}
.x5_c00302{left:127.800262px;}
.xa_c00302{left:135.179946px;}
.xf_c00302{left:137.519945px;}
.xd_c00302{left:146.879941px;}
.x6_c00302{left:180.899928px;}
.x1_c00302{left:181.979927px;}
.x7_c00302{left:220.319912px;}
.x8_c00302{left:232.559907px;}
.x2_c00302{left:329.219408px;}
.xe_c00302{left:361.439855px;}
.xb_c00302{left:385.379846px;}
.x4_c00302{left:434.159826px;}
.x9_c00302{left:681.659727px;}
.xc_c00302{left:688.859724px;}
.x3_c00302{left:765.539694px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls1_c00302{letter-spacing:0.000000pt;}
.ls0_c00302{letter-spacing:0.136801pt;}
.ws0_c00302{word-spacing:-15.999994pt;}
.ws1_c00302{word-spacing:-10.719996pt;}
.ws2_c00302{word-spacing:-8.639997pt;}
.ws3_c00302{word-spacing:0.000000pt;}
._6_c00302{margin-left:-11.303941pt;}
._1_c00302{margin-left:-0.982555pt;}
._0_c00302{width:1.314126pt;}
._8_c00302{width:4.657243pt;}
._7_c00302{width:5.931802pt;}
._2_c00302{width:8.312352pt;}
._4_c00302{width:36.404196pt;}
._3_c00302{width:37.387539pt;}
._5_c00302{width:38.351179pt;}
.fs4_c00302{font-size:34.559986pt;}
.fs3_c00302{font-size:42.879983pt;}
.fs0_c00302{font-size:53.119979pt;}
.fs1_c00302{font-size:58.879976pt;}
.fs2_c00302{font-size:63.999974pt;}
.y0_c00302{bottom:0.000000pt;}
.y4_c00302{bottom:67.306906pt;}
.y3_c00302{bottom:101.226893pt;}
.y18_c00302{bottom:119.306886pt;}
.y17_c00302{bottom:136.266612pt;}
.y16_c00302{bottom:151.626606pt;}
.y15_c00302{bottom:157.706604pt;}
.y14_c00302{bottom:167.786600pt;}
.y13_c00302{bottom:222.346578pt;}
.y12_c00302{bottom:243.466569pt;}
.y11_c00302{bottom:264.266561pt;}
.y10_c00302{bottom:283.626553pt;}
.yf_c00302{bottom:306.026544pt;}
.ye_c00302{bottom:521.706458pt;}
.yd_c00302{bottom:549.386447pt;}
.yc_c00302{bottom:570.346439pt;}
.yb_c00302{bottom:589.706431pt;}
.ya_c00302{bottom:612.266422pt;}
.y9_c00302{bottom:926.986296pt;}
.y7_c00302{bottom:954.826285pt;}
.y8_c00302{bottom:962.186282pt;}
.y6_c00302{bottom:982.506274pt;}
.y5_c00302{bottom:1010.026263pt;}
.y2_c00302{bottom:1045.226249pt;}
.y1_c00302{bottom:1063.146241pt;}
.h7_c00302{height:33.918736pt;}
.h4_c00302{height:42.084358pt;}
.h2_c00302{height:48.558731pt;}
.h1_c00302{height:52.134354pt;}
.h6_c00302{height:57.787477pt;}
.h3_c00302{height:62.812475pt;}
.h5_c00302{height:64.499974pt;}
.h0_c00302{height:1122.666667pt;}
.w0_c00302{width:793.333333pt;}
.x0_c00302{left:0.000000pt;}
.x5_c00302{left:113.600233pt;}
.xa_c00302{left:120.159952pt;}
.xf_c00302{left:122.239951pt;}
.xd_c00302{left:130.559948pt;}
.x6_c00302{left:160.799936pt;}
.x1_c00302{left:161.759935pt;}
.x7_c00302{left:195.839922pt;}
.x8_c00302{left:206.719917pt;}
.x2_c00302{left:292.639474pt;}
.xe_c00302{left:321.279871pt;}
.xb_c00302{left:342.559863pt;}
.x4_c00302{left:385.919846pt;}
.x9_c00302{left:605.919758pt;}
.xc_c00302{left:612.319755pt;}
.x3_c00302{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a05de7a077e94bbb88171183.woff2')format("woff");}.ff1_c00303{font-family:ff1_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:ff2_c00303;src:url('chunks/assets/font_2d9890cc5406fb0cc2da8c37.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_20364b65886e24845df6f365.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls3_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:0.009900px;}
.ls1_c00303{letter-spacing:0.153901px;}
.ls2_c00303{letter-spacing:0.189300px;}
.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:-14.939994px;}
.ws0_c00303{word-spacing:-12.059995px;}
.ws1_c00303{word-spacing:-9.719996px;}
.ws3_c00303{word-spacing:0.000000px;}
._4_c00303{margin-left:-12.716934px;}
._1_c00303{margin-left:-1.105374px;}
._0_c00303{width:1.195563px;}
._2_c00303{width:15.835210px;}
._3_c00303{width:16.836559px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs4_c00303{font-size:38.879984px;}
.fs3_c00303{font-size:48.239981px;}
.fs0_c00303{font-size:59.759976px;}
.fs1_c00303{font-size:66.239974px;}
.fs2_c00303{font-size:71.999971px;}
.y0_c00303{bottom:0.000000px;}
.y4_c00303{bottom:75.719970px;}
.y3_c00303{bottom:113.879954px;}
.y1d_c00303{bottom:133.499947px;}
.y1c_c00303{bottom:151.859939px;}
.y1b_c00303{bottom:169.859932px;}
.y1a_c00303{bottom:176.699929px;}
.y19_c00303{bottom:187.139925px;}
.y18_c00303{bottom:204.419918px;}
.y17_c00303{bottom:211.259915px;}
.y16_c00303{bottom:222.419911px;}
.y14_c00303{bottom:401.699839px;}
.y15_c00303{bottom:409.979836px;}
.y13_c00303{bottom:432.659827px;}
.y12_c00303{bottom:463.439815px;}
.y11_c00303{bottom:494.399802px;}
.y10_c00303{bottom:517.979793px;}
.yf_c00303{bottom:539.939784px;}
.ye_c00303{bottom:565.139774px;}
.yd_c00303{bottom:759.539696px;}
.yc_c00303{bottom:790.499684px;}
.yb_c00303{bottom:814.079674px;}
.ya_c00303{bottom:836.039666px;}
.y9_c00303{bottom:861.239656px;}
.y8_c00303{bottom:1055.999578px;}
.y6_c00303{bottom:1086.959565px;}
.y7_c00303{bottom:1095.239562px;}
.y5_c00303{bottom:1118.099553px;}
.y2_c00303{bottom:1156.979537px;}
.y1_c00303{bottom:1195.859522px;}
.h8_c00303{height:38.158578px;}
.h4_c00303{height:47.344903px;}
.h9_c00303{height:49.284472px;}
.h2_c00303{height:54.628572px;}
.h1_c00303{height:58.651148px;}
.h7_c00303{height:65.010911px;}
.h6_c00303{height:66.757473px;}
.h3_c00303{height:70.664034px;}
.h5_c00303{height:72.562471px;}
.h0_c00303{height:1263.000000px;}
.w0_c00303{width:892.500000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:127.799949px;}
.x7_c00303{left:130.319948px;}
.xa_c00303{left:135.179946px;}
.xd_c00303{left:137.519945px;}
.x3_c00303{left:180.899928px;}
.x8_c00303{left:361.439855px;}
.x2_c00303{left:434.159514px;}
.x9_c00303{left:703.079719px;}
.x4_c00303{left:705.959718px;}
.x6_c00303{left:712.079715px;}
.x5_c00303{left:718.199713px;}
.xb_c00303{left:740.339704px;}
.xc_c00303{left:752.579699px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls3_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:0.008800pt;}
.ls1_c00303{letter-spacing:0.136801pt;}
.ls2_c00303{letter-spacing:0.168267pt;}
.ws2_c00303{word-spacing:-13.279995pt;}
.ws0_c00303{word-spacing:-10.719996pt;}
.ws1_c00303{word-spacing:-8.639997pt;}
.ws3_c00303{word-spacing:0.000000pt;}
._4_c00303{margin-left:-11.303941pt;}
._1_c00303{margin-left:-0.982555pt;}
._0_c00303{width:1.062723pt;}
._2_c00303{width:14.075742pt;}
._3_c00303{width:14.965830pt;}
.fs4_c00303{font-size:34.559986pt;}
.fs3_c00303{font-size:42.879983pt;}
.fs0_c00303{font-size:53.119979pt;}
.fs1_c00303{font-size:58.879976pt;}
.fs2_c00303{font-size:63.999974pt;}
.y0_c00303{bottom:0.000000pt;}
.y4_c00303{bottom:67.306640pt;}
.y3_c00303{bottom:101.226626pt;}
.y1d_c00303{bottom:118.666619pt;}
.y1c_c00303{bottom:134.986613pt;}
.y1b_c00303{bottom:150.986606pt;}
.y1a_c00303{bottom:157.066604pt;}
.y19_c00303{bottom:166.346600pt;}
.y18_c00303{bottom:181.706594pt;}
.y17_c00303{bottom:187.786592pt;}
.y16_c00303{bottom:197.706588pt;}
.y14_c00303{bottom:357.066524pt;}
.y15_c00303{bottom:364.426521pt;}
.y13_c00303{bottom:384.586513pt;}
.y12_c00303{bottom:411.946502pt;}
.y11_c00303{bottom:439.466491pt;}
.y10_c00303{bottom:460.426482pt;}
.yf_c00303{bottom:479.946475pt;}
.ye_c00303{bottom:502.346466pt;}
.yd_c00303{bottom:675.146397pt;}
.yc_c00303{bottom:702.666386pt;}
.yb_c00303{bottom:723.626377pt;}
.ya_c00303{bottom:743.146369pt;}
.y9_c00303{bottom:765.546360pt;}
.y8_c00303{bottom:938.666291pt;}
.y6_c00303{bottom:966.186280pt;}
.y7_c00303{bottom:973.546277pt;}
.y5_c00303{bottom:993.866269pt;}
.y2_c00303{bottom:1028.426255pt;}
.y1_c00303{bottom:1062.986241pt;}
.h8_c00303{height:33.918736pt;}
.h4_c00303{height:42.084358pt;}
.h9_c00303{height:43.808420pt;}
.h2_c00303{height:48.558731pt;}
.h1_c00303{height:52.134354pt;}
.h7_c00303{height:57.787477pt;}
.h6_c00303{height:59.339976pt;}
.h3_c00303{height:62.812475pt;}
.h5_c00303{height:64.499974pt;}
.h0_c00303{height:1122.666667pt;}
.w0_c00303{width:793.333333pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:113.599955pt;}
.x7_c00303{left:115.839954pt;}
.xa_c00303{left:120.159952pt;}
.xd_c00303{left:122.239951pt;}
.x3_c00303{left:160.799936pt;}
.x8_c00303{left:321.279871pt;}
.x2_c00303{left:385.919568pt;}
.x9_c00303{left:624.959750pt;}
.x4_c00303{left:627.519749pt;}
.x6_c00303{left:632.959747pt;}
.x5_c00303{left:638.399745pt;}
.xb_c00303{left:658.079737pt;}
.xc_c00303{left:668.959732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d44b78edc926ae8b639b4903.woff2')format("woff");}.ff1_c00304{font-family:ff1_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:ff2_c00304;src:url('chunks/assets/font_4b82d9f627fb0ac681bd2f27.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.311035;font-style:normal;font-weight:normal;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_04178d0cb7c2a97a783f3f77.woff2')format("woff");}.ff4_c00304{font-family:ff4_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:ff5_c00304;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00304{font-family:ff5_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;}
.m0_c00304{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls3_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:0.009900px;}
.ls1_c00304{letter-spacing:0.153901px;}
.ls2_c00304{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00304{word-spacing:-16.559993px;}
.ws3_c00304{word-spacing:-14.939994px;}
.ws1_c00304{word-spacing:-12.059995px;}
.ws2_c00304{word-spacing:-9.719996px;}
.ws4_c00304{word-spacing:0.000000px;}
._4_c00304{margin-left:-12.716934px;}
._1_c00304{margin-left:-1.105374px;}
._0_c00304{width:1.478392px;}
._2_c00304{width:12.233051px;}
._3_c00304{width:13.234970px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs4_c00304{font-size:38.879984px;}
.fs3_c00304{font-size:48.239981px;}
.fs0_c00304{font-size:59.759976px;}
.fs1_c00304{font-size:66.239974px;}
.fs2_c00304{font-size:71.999971px;}
.y0_c00304{bottom:0.000000px;}
.y4_c00304{bottom:75.720270px;}
.y3_c00304{bottom:113.880254px;}
.y14_c00304{bottom:133.499947px;}
.y13_c00304{bottom:151.859939px;}
.y12_c00304{bottom:169.859932px;}
.y11_c00304{bottom:176.699929px;}
.y10_c00304{bottom:188.039925px;}
.yf_c00304{bottom:234.479906px;}
.ye_c00304{bottom:256.439897px;}
.yd_c00304{bottom:281.639887px;}
.yc_c00304{bottom:510.239796px;}
.ya_c00304{bottom:541.379783px;}
.yb_c00304{bottom:549.659780px;}
.y9_c00304{bottom:572.339771px;}
.y8_c00304{bottom:602.219759px;}
.y7_c00304{bottom:624.179750px;}
.y6_c00304{bottom:645.959742px;}
.y5_c00304{bottom:671.159732px;}
.y2_c00304{bottom:1175.879530px;}
.y1_c00304{bottom:1196.039522px;}
.h9_c00304{height:38.158578px;}
.h7_c00304{height:47.344903px;}
.ha_c00304{height:49.284472px;}
.h2_c00304{height:54.628572px;}
.h1_c00304{height:58.651148px;}
.h5_c00304{height:65.010911px;}
.h4_c00304{height:66.757473px;}
.h8_c00304{height:70.628878px;}
.h6_c00304{height:70.664034px;}
.h3_c00304{height:72.562471px;}
.h0_c00304{height:1263.000000px;}
.w0_c00304{width:892.500000px;}
.x0_c00304{left:0.000000px;}
.x5_c00304{left:127.800262px;}
.xc_c00304{left:134.099946px;}
.xe_c00304{left:137.519945px;}
.x8_c00304{left:180.899928px;}
.x1_c00304{left:181.979927px;}
.x2_c00304{left:329.219408px;}
.xd_c00304{left:387.539845px;}
.x7_c00304{left:422.639831px;}
.x4_c00304{left:434.159826px;}
.x9_c00304{left:509.759796px;}
.xa_c00304{left:521.999791px;}
.xb_c00304{left:682.199727px;}
.x6_c00304{left:715.499714px;}
.x3_c00304{left:765.539694px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls3_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:0.008800pt;}
.ls1_c00304{letter-spacing:0.136801pt;}
.ls2_c00304{letter-spacing:0.168267pt;}
.ws0_c00304{word-spacing:-14.719994pt;}
.ws3_c00304{word-spacing:-13.279995pt;}
.ws1_c00304{word-spacing:-10.719996pt;}
.ws2_c00304{word-spacing:-8.639997pt;}
.ws4_c00304{word-spacing:0.000000pt;}
._4_c00304{margin-left:-11.303941pt;}
._1_c00304{margin-left:-0.982555pt;}
._0_c00304{width:1.314126pt;}
._2_c00304{width:10.873823pt;}
._3_c00304{width:11.764418pt;}
.fs4_c00304{font-size:34.559986pt;}
.fs3_c00304{font-size:42.879983pt;}
.fs0_c00304{font-size:53.119979pt;}
.fs1_c00304{font-size:58.879976pt;}
.fs2_c00304{font-size:63.999974pt;}
.y0_c00304{bottom:0.000000pt;}
.y4_c00304{bottom:67.306906pt;}
.y3_c00304{bottom:101.226893pt;}
.y14_c00304{bottom:118.666619pt;}
.y13_c00304{bottom:134.986613pt;}
.y12_c00304{bottom:150.986606pt;}
.y11_c00304{bottom:157.066604pt;}
.y10_c00304{bottom:167.146600pt;}
.yf_c00304{bottom:208.426583pt;}
.ye_c00304{bottom:227.946575pt;}
.yd_c00304{bottom:250.346567pt;}
.yc_c00304{bottom:453.546485pt;}
.ya_c00304{bottom:481.226474pt;}
.yb_c00304{bottom:488.586471pt;}
.y9_c00304{bottom:508.746463pt;}
.y8_c00304{bottom:535.306453pt;}
.y7_c00304{bottom:554.826445pt;}
.y6_c00304{bottom:574.186437pt;}
.y5_c00304{bottom:596.586428pt;}
.y2_c00304{bottom:1045.226249pt;}
.y1_c00304{bottom:1063.146241pt;}
.h9_c00304{height:33.918736pt;}
.h7_c00304{height:42.084358pt;}
.ha_c00304{height:43.808420pt;}
.h2_c00304{height:48.558731pt;}
.h1_c00304{height:52.134354pt;}
.h5_c00304{height:57.787477pt;}
.h4_c00304{height:59.339976pt;}
.h8_c00304{height:62.781225pt;}
.h6_c00304{height:62.812475pt;}
.h3_c00304{height:64.499974pt;}
.h0_c00304{height:1122.666667pt;}
.w0_c00304{width:793.333333pt;}
.x0_c00304{left:0.000000pt;}
.x5_c00304{left:113.600233pt;}
.xc_c00304{left:119.199952pt;}
.xe_c00304{left:122.239951pt;}
.x8_c00304{left:160.799936pt;}
.x1_c00304{left:161.759935pt;}
.x2_c00304{left:292.639474pt;}
.xd_c00304{left:344.479862pt;}
.x7_c00304{left:375.679850pt;}
.x4_c00304{left:385.919846pt;}
.x9_c00304{left:453.119819pt;}
.xa_c00304{left:463.999814pt;}
.xb_c00304{left:606.399757pt;}
.x6_c00304{left:635.999746pt;}
.x3_c00304{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6907c5c7f477cb45514fca8.woff2')format("woff");}.ff1_c00305{font-family:ff1_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:ff2_c00305;src:url('chunks/assets/font_4570fa660d8e7ffae65f6ea0.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_a462adff9a6127b435a3660b.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.311035;font-style:normal;font-weight:normal;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_3b42fbc5b465aa20c377541e.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_55f017522dd44e63597de416.woff2')format("woff");}.ff5_c00305{font-family:ff5_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;}
.m0_c00305{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls0_c00305{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00305{word-spacing:-17.999993px;}
.ws1_c00305{word-spacing:0.000000px;}
._9_c00305{margin-left:-2.139990px;}
._1_c00305{margin-left:-1.105374px;}
._0_c00305{width:1.195563px;}
._2_c00305{width:2.288915px;}
._5_c00305{width:4.621288px;}
._4_c00305{width:5.893272px;}
._3_c00305{width:9.445786px;}
._d_c00305{width:12.996047px;}
._c_c00305{width:14.274040px;}
._7_c00305{width:19.983011px;}
._6_c00305{width:21.309157px;}
._8_c00305{width:22.572479px;}
._b_c00305{width:33.765502px;}
._a_c00305{width:34.768222px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs0_c00305{font-size:59.759976px;}
.fs1_c00305{font-size:66.239974px;}
.fs2_c00305{font-size:71.999971px;}
.y0_c00305{bottom:0.000000px;}
.y4_c00305{bottom:75.719970px;}
.y3_c00305{bottom:113.879954px;}
.y1a_c00305{bottom:153.299939px;}
.y19_c00305{bottom:184.259926px;}
.y18_c00305{bottom:215.399914px;}
.y17_c00305{bottom:246.359901px;}
.y16_c00305{bottom:277.499889px;}
.y15_c00305{bottom:308.459877px;}
.y14_c00305{bottom:339.599864px;}
.y13_c00305{bottom:370.559852px;}
.y12_c00305{bottom:401.699839px;}
.y11_c00305{bottom:432.659827px;}
.y10_c00305{bottom:463.799814px;}
.yf_c00305{bottom:494.759802px;}
.ye_c00305{bottom:525.899790px;}
.yd_c00305{bottom:556.859777px;}
.yc_c00305{bottom:587.999765px;}
.yb_c00305{bottom:617.879753px;}
.ya_c00305{bottom:646.319741px;}
.y9_c00305{bottom:675.839730px;}
.y8_c00305{bottom:702.659719px;}
.y7_c00305{bottom:1055.999578px;}
.y6_c00305{bottom:1086.599565px;}
.y5_c00305{bottom:1117.739553px;}
.y2_c00305{bottom:1156.979537px;}
.y1_c00305{bottom:1195.859522px;}
.h2_c00305{height:54.628572px;}
.h1_c00305{height:58.651148px;}
.h6_c00305{height:65.010911px;}
.h4_c00305{height:70.628878px;}
.h5_c00305{height:70.664034px;}
.h3_c00305{height:72.562471px;}
.h0_c00305{height:1263.000000px;}
.w0_c00305{width:892.500000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:127.799949px;}
.x4_c00305{left:153.359939px;}
.x6_c00305{left:180.899930px;}
.x5_c00305{left:378.901094px;}
.x2_c00305{left:434.159514px;}
.x3_c00305{left:574.020345px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:-15.999994pt;}
.ws1_c00305{word-spacing:0.000000pt;}
._9_c00305{margin-left:-1.902214pt;}
._1_c00305{margin-left:-0.982555pt;}
._0_c00305{width:1.062723pt;}
._2_c00305{width:2.034591pt;}
._5_c00305{width:4.107811pt;}
._4_c00305{width:5.238464pt;}
._3_c00305{width:8.396254pt;}
._d_c00305{width:11.552041pt;}
._c_c00305{width:12.688036pt;}
._7_c00305{width:17.762676pt;}
._6_c00305{width:18.941473pt;}
._8_c00305{width:20.064425pt;}
._b_c00305{width:30.013780pt;}
._a_c00305{width:30.905086pt;}
.fs0_c00305{font-size:53.119979pt;}
.fs1_c00305{font-size:58.879976pt;}
.fs2_c00305{font-size:63.999974pt;}
.y0_c00305{bottom:0.000000pt;}
.y4_c00305{bottom:67.306640pt;}
.y3_c00305{bottom:101.226626pt;}
.y1a_c00305{bottom:136.266612pt;}
.y19_c00305{bottom:163.786601pt;}
.y18_c00305{bottom:191.466590pt;}
.y17_c00305{bottom:218.986579pt;}
.y16_c00305{bottom:246.666568pt;}
.y15_c00305{bottom:274.186557pt;}
.y14_c00305{bottom:301.866546pt;}
.y13_c00305{bottom:329.386535pt;}
.y12_c00305{bottom:357.066524pt;}
.y11_c00305{bottom:384.586513pt;}
.y10_c00305{bottom:412.266502pt;}
.yf_c00305{bottom:439.786491pt;}
.ye_c00305{bottom:467.466480pt;}
.yd_c00305{bottom:494.986469pt;}
.yc_c00305{bottom:522.666458pt;}
.yb_c00305{bottom:549.226447pt;}
.ya_c00305{bottom:574.506437pt;}
.y9_c00305{bottom:600.746426pt;}
.y8_c00305{bottom:624.586417pt;}
.y7_c00305{bottom:938.666291pt;}
.y6_c00305{bottom:965.866280pt;}
.y5_c00305{bottom:993.546269pt;}
.y2_c00305{bottom:1028.426255pt;}
.y1_c00305{bottom:1062.986241pt;}
.h2_c00305{height:48.558731pt;}
.h1_c00305{height:52.134354pt;}
.h6_c00305{height:57.787477pt;}
.h4_c00305{height:62.781225pt;}
.h5_c00305{height:62.812475pt;}
.h3_c00305{height:64.499974pt;}
.h0_c00305{height:1122.666667pt;}
.w0_c00305{width:793.333333pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:113.599955pt;}
.x4_c00305{left:136.319945pt;}
.x6_c00305{left:160.799938pt;}
.x5_c00305{left:336.800973pt;}
.x2_c00305{left:385.919568pt;}
.x3_c00305{left:510.240307pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ec3ae8b471db2b5067f4e37.woff2')format("woff");}.ff1_c00306{font-family:ff1_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:ff2_c00306;src:url('chunks/assets/font_071fbabe3f427fc8ab9c4dce.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_9145055c20dab7a18be4bc28.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_61552568c6d0af7ae6f24703.woff2')format("woff");}.ff4_c00306{font-family:ff4_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;}
.m0_c00306{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:0.189300px;}
.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:-17.999993px;}
.ws3_c00306{word-spacing:-14.939994px;}
.ws0_c00306{word-spacing:-12.059995px;}
.ws2_c00306{word-spacing:-9.719996px;}
.ws4_c00306{word-spacing:0.000000px;}
._9_c00306{margin-left:-11.009032px;}
._1_c00306{margin-left:-1.105374px;}
._0_c00306{width:1.478392px;}
._8_c00306{width:2.660815px;}
._2_c00306{width:3.719086px;}
._3_c00306{width:6.966903px;}
._4_c00306{width:8.111345px;}
._6_c00306{width:10.061115px;}
._7_c00306{width:13.673915px;}
._5_c00306{width:16.545001px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs4_c00306{font-size:38.879984px;}
.fs3_c00306{font-size:48.239981px;}
.fs0_c00306{font-size:59.759976px;}
.fs1_c00306{font-size:66.239974px;}
.fs2_c00306{font-size:71.999971px;}
.y0_c00306{bottom:0.000000px;}
.y4_c00306{bottom:75.900270px;}
.y3_c00306{bottom:114.060254px;}
.y2e_c00306{bottom:133.679947px;}
.y2d_c00306{bottom:151.679939px;}
.y2c_c00306{bottom:158.519937px;}
.y2b_c00306{bottom:168.959932px;}
.y2a_c00306{bottom:186.239926px;}
.y29_c00306{bottom:193.079923px;}
.y28_c00306{bottom:203.519919px;}
.y27_c00306{bottom:220.619912px;}
.y26_c00306{bottom:237.899905px;}
.y25_c00306{bottom:244.739902px;}
.y24_c00306{bottom:256.079898px;}
.y23_c00306{bottom:298.199881px;}
.y22_c00306{bottom:329.339868px;}
.y21_c00306{bottom:360.299856px;}
.y20_c00306{bottom:391.439843px;}
.y1f_c00306{bottom:422.399831px;}
.y1e_c00306{bottom:453.539819px;}
.y1d_c00306{bottom:484.499806px;}
.y1c_c00306{bottom:515.639794px;}
.y1b_c00306{bottom:546.599781px;}
.y1a_c00306{bottom:577.739769px;}
.y19_c00306{bottom:608.699757px;}
.y18_c00306{bottom:639.839744px;}
.y17_c00306{bottom:670.799732px;}
.y16_c00306{bottom:701.939719px;}
.y15_c00306{bottom:732.899707px;}
.y13_c00306{bottom:764.039694px;}
.y14_c00306{bottom:772.319691px;}
.y12_c00306{bottom:794.999682px;}
.y11_c00306{bottom:825.959670px;}
.y10_c00306{bottom:857.099657px;}
.yf_c00306{bottom:888.059645px;}
.yd_c00306{bottom:919.199632px;}
.ye_c00306{bottom:927.479629px;}
.yc_c00306{bottom:950.159620px;}
.yb_c00306{bottom:981.299607px;}
.ya_c00306{bottom:1012.259595px;}
.y9_c00306{bottom:1043.399583px;}
.y7_c00306{bottom:1074.359570px;}
.y8_c00306{bottom:1082.639567px;}
.y6_c00306{bottom:1105.499558px;}
.y5_c00306{bottom:1136.459545px;}
.y2_c00306{bottom:1176.059530px;}
.y1_c00306{bottom:1196.219522px;}
.h6_c00306{height:38.158578px;}
.h4_c00306{height:47.321348px;}
.h7_c00306{height:49.284472px;}
.h2_c00306{height:54.628572px;}
.h1_c00306{height:58.651148px;}
.h3_c00306{height:70.628878px;}
.h5_c00306{height:70.664034px;}
.h0_c00306{height:1263.000000px;}
.w0_c00306{width:892.500000px;}
.x0_c00306{left:0.000000px;}
.x5_c00306{left:127.620262px;}
.xd_c00306{left:137.339945px;}
.x6_c00306{left:180.719928px;}
.x1_c00306{left:181.799927px;}
.x2_c00306{left:329.039408px;}
.x4_c00306{left:433.979826px;}
.x7_c00306{left:471.059812px;}
.x8_c00306{left:483.299807px;}
.xb_c00306{left:511.739795px;}
.xc_c00306{left:523.979790px;}
.x9_c00306{left:728.099709px;}
.xa_c00306{left:740.339704px;}
.x3_c00306{left:765.359694px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:0.168267pt;}
.ws1_c00306{word-spacing:-15.999994pt;}
.ws3_c00306{word-spacing:-13.279995pt;}
.ws0_c00306{word-spacing:-10.719996pt;}
.ws2_c00306{word-spacing:-8.639997pt;}
.ws4_c00306{word-spacing:0.000000pt;}
._9_c00306{margin-left:-9.785806pt;}
._1_c00306{margin-left:-0.982555pt;}
._0_c00306{width:1.314126pt;}
._8_c00306{width:2.365169pt;}
._2_c00306{width:3.305854pt;}
._3_c00306{width:6.192803pt;}
._4_c00306{width:7.210084pt;}
._6_c00306{width:8.943213pt;}
._7_c00306{width:12.154591pt;}
._5_c00306{width:14.706667pt;}
.fs4_c00306{font-size:34.559986pt;}
.fs3_c00306{font-size:42.879983pt;}
.fs0_c00306{font-size:53.119979pt;}
.fs1_c00306{font-size:58.879976pt;}
.fs2_c00306{font-size:63.999974pt;}
.y0_c00306{bottom:0.000000pt;}
.y4_c00306{bottom:67.466906pt;}
.y3_c00306{bottom:101.386893pt;}
.y2e_c00306{bottom:118.826619pt;}
.y2d_c00306{bottom:134.826613pt;}
.y2c_c00306{bottom:140.906610pt;}
.y2b_c00306{bottom:150.186607pt;}
.y2a_c00306{bottom:165.546600pt;}
.y29_c00306{bottom:171.626598pt;}
.y28_c00306{bottom:180.906594pt;}
.y27_c00306{bottom:196.106588pt;}
.y26_c00306{bottom:211.466582pt;}
.y25_c00306{bottom:217.546580pt;}
.y24_c00306{bottom:227.626576pt;}
.y23_c00306{bottom:265.066561pt;}
.y22_c00306{bottom:292.746550pt;}
.y21_c00306{bottom:320.266539pt;}
.y20_c00306{bottom:347.946527pt;}
.y1f_c00306{bottom:375.466516pt;}
.y1e_c00306{bottom:403.146505pt;}
.y1d_c00306{bottom:430.666494pt;}
.y1c_c00306{bottom:458.346483pt;}
.y1b_c00306{bottom:485.866472pt;}
.y1a_c00306{bottom:513.546461pt;}
.y19_c00306{bottom:541.066450pt;}
.y18_c00306{bottom:568.746439pt;}
.y17_c00306{bottom:596.266428pt;}
.y16_c00306{bottom:623.946417pt;}
.y15_c00306{bottom:651.466406pt;}
.y13_c00306{bottom:679.146395pt;}
.y14_c00306{bottom:686.506392pt;}
.y12_c00306{bottom:706.666384pt;}
.y11_c00306{bottom:734.186373pt;}
.y10_c00306{bottom:761.866362pt;}
.yf_c00306{bottom:789.386351pt;}
.yd_c00306{bottom:817.066340pt;}
.ye_c00306{bottom:824.426337pt;}
.yc_c00306{bottom:844.586329pt;}
.yb_c00306{bottom:872.266318pt;}
.ya_c00306{bottom:899.786307pt;}
.y9_c00306{bottom:927.466296pt;}
.y7_c00306{bottom:954.986285pt;}
.y8_c00306{bottom:962.346282pt;}
.y6_c00306{bottom:982.666274pt;}
.y5_c00306{bottom:1010.186263pt;}
.y2_c00306{bottom:1045.386249pt;}
.y1_c00306{bottom:1063.306241pt;}
.h6_c00306{height:33.918736pt;}
.h4_c00306{height:42.063421pt;}
.h7_c00306{height:43.808420pt;}
.h2_c00306{height:48.558731pt;}
.h1_c00306{height:52.134354pt;}
.h3_c00306{height:62.781225pt;}
.h5_c00306{height:62.812475pt;}
.h0_c00306{height:1122.666667pt;}
.w0_c00306{width:793.333333pt;}
.x0_c00306{left:0.000000pt;}
.x5_c00306{left:113.440233pt;}
.xd_c00306{left:122.079951pt;}
.x6_c00306{left:160.639936pt;}
.x1_c00306{left:161.599935pt;}
.x2_c00306{left:292.479474pt;}
.x4_c00306{left:385.759846pt;}
.x7_c00306{left:418.719833pt;}
.x8_c00306{left:429.599828pt;}
.xb_c00306{left:454.879818pt;}
.xc_c00306{left:465.759814pt;}
.x9_c00306{left:647.199741pt;}
.xa_c00306{left:658.079737pt;}
.x3_c00306{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c6b47d39c31056ede3c3b44.woff2')format("woff");}.ff1_c00307{font-family:ff1_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:ff2_c00307;src:url('chunks/assets/font_a060f080252cfdaff3a234a3.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_9d398c8e4107fe3b44bed67d.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;}
.m0_c00307{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls1_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00307{word-spacing:-14.939994px;}
.ws0_c00307{word-spacing:-12.059995px;}
.ws1_c00307{word-spacing:-9.719996px;}
.ws3_c00307{word-spacing:0.000000px;}
._c_c00307{margin-left:-9.702808px;}
._1_c00307{margin-left:-1.105374px;}
._0_c00307{width:1.195563px;}
._4_c00307{width:3.247890px;}
._6_c00307{width:4.257560px;}
._5_c00307{width:5.660679px;}
._9_c00307{width:6.678354px;}
._2_c00307{width:7.899892px;}
._3_c00307{width:9.075529px;}
._b_c00307{width:10.273760px;}
._7_c00307{width:11.501979px;}
._a_c00307{width:15.831780px;}
._8_c00307{width:19.426655px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs4_c00307{font-size:38.879984px;}
.fs3_c00307{font-size:48.239981px;}
.fs0_c00307{font-size:59.759976px;}
.fs1_c00307{font-size:66.239974px;}
.fs2_c00307{font-size:71.999971px;}
.y0_c00307{bottom:0.000000px;}
.y4_c00307{bottom:75.899970px;}
.y3_c00307{bottom:114.059954px;}
.y23_c00307{bottom:133.679947px;}
.y22_c00307{bottom:151.679939px;}
.y21_c00307{bottom:158.519937px;}
.y20_c00307{bottom:169.859932px;}
.y1e_c00307{bottom:341.939863px;}
.y1f_c00307{bottom:350.219860px;}
.y1d_c00307{bottom:373.079851px;}
.y1c_c00307{bottom:404.039838px;}
.y1b_c00307{bottom:435.179826px;}
.y1a_c00307{bottom:466.139814px;}
.y19_c00307{bottom:497.279801px;}
.y18_c00307{bottom:528.239789px;}
.y17_c00307{bottom:559.379776px;}
.y16_c00307{bottom:590.339764px;}
.y15_c00307{bottom:621.479751px;}
.y14_c00307{bottom:652.439739px;}
.y13_c00307{bottom:683.579727px;}
.y12_c00307{bottom:714.539714px;}
.y11_c00307{bottom:745.679702px;}
.y10_c00307{bottom:776.639689px;}
.yf_c00307{bottom:807.779677px;}
.ye_c00307{bottom:838.739665px;}
.yd_c00307{bottom:869.879652px;}
.yc_c00307{bottom:900.839640px;}
.yb_c00307{bottom:931.979627px;}
.ya_c00307{bottom:962.939615px;}
.y9_c00307{bottom:994.079602px;}
.y8_c00307{bottom:1025.039590px;}
.y7_c00307{bottom:1056.179578px;}
.y6_c00307{bottom:1087.139565px;}
.y5_c00307{bottom:1118.279553px;}
.y2_c00307{bottom:1157.159537px;}
.y1_c00307{bottom:1196.039522px;}
.h6_c00307{height:38.158578px;}
.h4_c00307{height:47.321348px;}
.h7_c00307{height:49.284472px;}
.h2_c00307{height:54.628572px;}
.h1_c00307{height:58.651148px;}
.h3_c00307{height:70.628878px;}
.h5_c00307{height:70.664034px;}
.h0_c00307{height:1263.000000px;}
.w0_c00307{width:892.500000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:127.619949px;}
.x6_c00307{left:137.339945px;}
.x3_c00307{left:180.719928px;}
.x2_c00307{left:433.979514px;}
.x4_c00307{left:655.199738px;}
.x5_c00307{left:667.439733px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:0.168267pt;}
.ws2_c00307{word-spacing:-13.279995pt;}
.ws0_c00307{word-spacing:-10.719996pt;}
.ws1_c00307{word-spacing:-8.639997pt;}
.ws3_c00307{word-spacing:0.000000pt;}
._c_c00307{margin-left:-8.624718pt;}
._1_c00307{margin-left:-0.982555pt;}
._0_c00307{width:1.062723pt;}
._4_c00307{width:2.887013pt;}
._6_c00307{width:3.784498pt;}
._5_c00307{width:5.031715pt;}
._9_c00307{width:5.936315pt;}
._2_c00307{width:7.022126pt;}
._3_c00307{width:8.067137pt;}
._b_c00307{width:9.132231pt;}
._7_c00307{width:10.223981pt;}
._a_c00307{width:14.072693pt;}
._8_c00307{width:17.268138pt;}
.fs4_c00307{font-size:34.559986pt;}
.fs3_c00307{font-size:42.879983pt;}
.fs0_c00307{font-size:53.119979pt;}
.fs1_c00307{font-size:58.879976pt;}
.fs2_c00307{font-size:63.999974pt;}
.y0_c00307{bottom:0.000000pt;}
.y4_c00307{bottom:67.466640pt;}
.y3_c00307{bottom:101.386626pt;}
.y23_c00307{bottom:118.826619pt;}
.y22_c00307{bottom:134.826613pt;}
.y21_c00307{bottom:140.906610pt;}
.y20_c00307{bottom:150.986606pt;}
.y1e_c00307{bottom:303.946545pt;}
.y1f_c00307{bottom:311.306542pt;}
.y1d_c00307{bottom:331.626534pt;}
.y1c_c00307{bottom:359.146523pt;}
.y1b_c00307{bottom:386.826512pt;}
.y1a_c00307{bottom:414.346501pt;}
.y19_c00307{bottom:442.026490pt;}
.y18_c00307{bottom:469.546479pt;}
.y17_c00307{bottom:497.226468pt;}
.y16_c00307{bottom:524.746457pt;}
.y15_c00307{bottom:552.426446pt;}
.y14_c00307{bottom:579.946435pt;}
.y13_c00307{bottom:607.626424pt;}
.y12_c00307{bottom:635.146413pt;}
.y11_c00307{bottom:662.826402pt;}
.y10_c00307{bottom:690.346391pt;}
.yf_c00307{bottom:718.026379pt;}
.ye_c00307{bottom:745.546368pt;}
.yd_c00307{bottom:773.226357pt;}
.yc_c00307{bottom:800.746346pt;}
.yb_c00307{bottom:828.426335pt;}
.ya_c00307{bottom:855.946324pt;}
.y9_c00307{bottom:883.626313pt;}
.y8_c00307{bottom:911.146302pt;}
.y7_c00307{bottom:938.826291pt;}
.y6_c00307{bottom:966.346280pt;}
.y5_c00307{bottom:994.026269pt;}
.y2_c00307{bottom:1028.586255pt;}
.y1_c00307{bottom:1063.146241pt;}
.h6_c00307{height:33.918736pt;}
.h4_c00307{height:42.063421pt;}
.h7_c00307{height:43.808420pt;}
.h2_c00307{height:48.558731pt;}
.h1_c00307{height:52.134354pt;}
.h3_c00307{height:62.781225pt;}
.h5_c00307{height:62.812475pt;}
.h0_c00307{height:1122.666667pt;}
.w0_c00307{width:793.333333pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:113.439955pt;}
.x6_c00307{left:122.079951pt;}
.x3_c00307{left:160.639936pt;}
.x2_c00307{left:385.759568pt;}
.x4_c00307{left:582.399767pt;}
.x5_c00307{left:593.279763pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad4f5bbded9daadc526b2e2a.woff2')format("woff");}.ff1_c00308{font-family:ff1_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:ff2_c00308;src:url('chunks/assets/font_4498e719ed554a042a8ceb1e.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_a209cbfd4be902752fb81a0d.woff2')format("woff");}.ff3_c00308{font-family:ff3_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;}
.m0_c00308{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls2_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:0.153901px;}
.ls1_c00308{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00308{word-spacing:-14.939994px;}
.ws0_c00308{word-spacing:-12.059995px;}
.ws1_c00308{word-spacing:-9.719996px;}
.ws3_c00308{word-spacing:0.000000px;}
._5_c00308{margin-left:-12.716934px;}
._1_c00308{margin-left:-1.105374px;}
._0_c00308{width:1.478392px;}
._2_c00308{width:15.835210px;}
._3_c00308{width:22.362780px;}
._4_c00308{width:24.090739px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs4_c00308{font-size:38.879984px;}
.fs3_c00308{font-size:48.239981px;}
.fs0_c00308{font-size:59.759976px;}
.fs1_c00308{font-size:66.239974px;}
.fs2_c00308{font-size:71.999971px;}
.y0_c00308{bottom:0.000000px;}
.y4_c00308{bottom:75.720270px;}
.y3_c00308{bottom:113.880254px;}
.y15_c00308{bottom:133.140247px;}
.y14_c00308{bottom:139.980244px;}
.y13_c00308{bottom:151.319939px;}
.y12_c00308{bottom:286.859885px;}
.y10_c00308{bottom:332.759867px;}
.y11_c00308{bottom:341.039864px;}
.yf_c00308{bottom:363.899854px;}
.ye_c00308{bottom:394.859842px;}
.yd_c00308{bottom:433.739827px;}
.yc_c00308{bottom:456.959817px;}
.yb_c00308{bottom:478.739809px;}
.ya_c00308{bottom:504.119798px;}
.y9_c00308{bottom:768.539693px;}
.y8_c00308{bottom:792.299683px;}
.y7_c00308{bottom:822.179671px;}
.y6_c00308{bottom:850.619660px;}
.y5_c00308{bottom:875.999650px;}
.y2_c00308{bottom:1175.879530px;}
.y1_c00308{bottom:1196.039522px;}
.h7_c00308{height:38.158578px;}
.h6_c00308{height:47.344903px;}
.h2_c00308{height:54.628572px;}
.h1_c00308{height:58.651148px;}
.h4_c00308{height:65.010911px;}
.h3_c00308{height:70.628878px;}
.h5_c00308{height:70.664034px;}
.h0_c00308{height:1263.000000px;}
.w0_c00308{width:892.500000px;}
.x0_c00308{left:0.000000px;}
.x5_c00308{left:127.800262px;}
.x7_c00308{left:137.699945px;}
.xd_c00308{left:180.899930px;}
.x1_c00308{left:181.979927px;}
.x8_c00308{left:197.100378px;}
.xc_c00308{left:226.619976px;}
.x2_c00308{left:329.219408px;}
.x4_c00308{left:434.159826px;}
.xa_c00308{left:446.578602px;}
.xe_c00308{left:538.739785px;}
.xf_c00308{left:550.979780px;}
.x9_c00308{left:696.059722px;}
.x6_c00308{left:701.999719px;}
.xb_c00308{left:734.577967px;}
.x3_c00308{left:765.539694px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls2_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:0.136801pt;}
.ls1_c00308{letter-spacing:0.168267pt;}
.ws2_c00308{word-spacing:-13.279995pt;}
.ws0_c00308{word-spacing:-10.719996pt;}
.ws1_c00308{word-spacing:-8.639997pt;}
.ws3_c00308{word-spacing:0.000000pt;}
._5_c00308{margin-left:-11.303941pt;}
._1_c00308{margin-left:-0.982555pt;}
._0_c00308{width:1.314126pt;}
._2_c00308{width:14.075742pt;}
._3_c00308{width:19.878027pt;}
._4_c00308{width:21.413990pt;}
.fs4_c00308{font-size:34.559986pt;}
.fs3_c00308{font-size:42.879983pt;}
.fs0_c00308{font-size:53.119979pt;}
.fs1_c00308{font-size:58.879976pt;}
.fs2_c00308{font-size:63.999974pt;}
.y0_c00308{bottom:0.000000pt;}
.y4_c00308{bottom:67.306906pt;}
.y3_c00308{bottom:101.226893pt;}
.y15_c00308{bottom:118.346886pt;}
.y14_c00308{bottom:124.426884pt;}
.y13_c00308{bottom:134.506613pt;}
.y12_c00308{bottom:254.986565pt;}
.y10_c00308{bottom:295.786548pt;}
.y11_c00308{bottom:303.146545pt;}
.yf_c00308{bottom:323.466537pt;}
.ye_c00308{bottom:350.986526pt;}
.yd_c00308{bottom:385.546512pt;}
.yc_c00308{bottom:406.186504pt;}
.yb_c00308{bottom:425.546496pt;}
.ya_c00308{bottom:448.106487pt;}
.y9_c00308{bottom:683.146393pt;}
.y8_c00308{bottom:704.266385pt;}
.y7_c00308{bottom:730.826374pt;}
.y6_c00308{bottom:756.106364pt;}
.y5_c00308{bottom:778.666355pt;}
.y2_c00308{bottom:1045.226249pt;}
.y1_c00308{bottom:1063.146241pt;}
.h7_c00308{height:33.918736pt;}
.h6_c00308{height:42.084358pt;}
.h2_c00308{height:48.558731pt;}
.h1_c00308{height:52.134354pt;}
.h4_c00308{height:57.787477pt;}
.h3_c00308{height:62.781225pt;}
.h5_c00308{height:62.812475pt;}
.h0_c00308{height:1122.666667pt;}
.w0_c00308{width:793.333333pt;}
.x0_c00308{left:0.000000pt;}
.x5_c00308{left:113.600233pt;}
.x7_c00308{left:122.399951pt;}
.xd_c00308{left:160.799938pt;}
.x1_c00308{left:161.759935pt;}
.x8_c00308{left:175.200336pt;}
.xc_c00308{left:201.439979pt;}
.x2_c00308{left:292.639474pt;}
.x4_c00308{left:385.919846pt;}
.xa_c00308{left:396.958757pt;}
.xe_c00308{left:478.879808pt;}
.xf_c00308{left:489.759804pt;}
.x9_c00308{left:618.719753pt;}
.x6_c00308{left:623.999750pt;}
.xb_c00308{left:652.958193pt;}
.x3_c00308{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d20dbda9cbefa989a301087.woff2')format("woff");}.ff1_c00309{font-family:ff1_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:ff2_c00309;src:url('chunks/assets/font_b48dcb58793793d173da983d.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_ed6f5db27571936bb1d6d545.woff2')format("woff");}.ff3_c00309{font-family:ff3_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:ff4_c00309;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls2_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:0.153901px;}
.ls1_c00309{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00309{word-spacing:-14.939994px;}
.ws0_c00309{word-spacing:-12.059995px;}
.ws1_c00309{word-spacing:-9.719996px;}
.ws3_c00309{word-spacing:0.000000px;}
._2_c00309{margin-left:-12.716934px;}
._1_c00309{margin-left:-1.105374px;}
._0_c00309{width:1.195563px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs4_c00309{font-size:38.879984px;}
.fs3_c00309{font-size:48.239981px;}
.fs0_c00309{font-size:59.759976px;}
.fs1_c00309{font-size:66.239974px;}
.fs2_c00309{font-size:71.999971px;}
.y0_c00309{bottom:0.000000px;}
.y4_c00309{bottom:75.719970px;}
.y3_c00309{bottom:113.879954px;}
.y16_c00309{bottom:133.499947px;}
.y15_c00309{bottom:151.499939px;}
.y14_c00309{bottom:158.339937px;}
.y13_c00309{bottom:169.679932px;}
.y12_c00309{bottom:212.699915px;}
.y10_c00309{bottom:243.839902px;}
.y11_c00309{bottom:252.119899px;}
.yf_c00309{bottom:274.799890px;}
.ye_c00309{bottom:298.199881px;}
.yd_c00309{bottom:319.979872px;}
.yc_c00309{bottom:341.759863px;}
.yb_c00309{bottom:363.539855px;}
.ya_c00309{bottom:388.919844px;}
.y9_c00309{bottom:699.419720px;}
.y8_c00309{bottom:721.199712px;}
.y7_c00309{bottom:742.979703px;}
.y6_c00309{bottom:764.939694px;}
.y5_c00309{bottom:790.319684px;}
.y2_c00309{bottom:1156.979537px;}
.y1_c00309{bottom:1195.859522px;}
.h9_c00309{height:38.158578px;}
.h8_c00309{height:47.344903px;}
.ha_c00309{height:49.284472px;}
.h2_c00309{height:54.628572px;}
.h1_c00309{height:58.651148px;}
.h5_c00309{height:64.978568px;}
.h4_c00309{height:65.010911px;}
.h3_c00309{height:70.628878px;}
.h7_c00309{height:70.664034px;}
.h6_c00309{height:72.562471px;}
.h0_c00309{height:1263.000000px;}
.w0_c00309{width:892.500000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:127.799949px;}
.x4_c00309{left:132.119947px;}
.xb_c00309{left:137.519945px;}
.x8_c00309{left:180.899928px;}
.x5_c00309{left:378.898886px;}
.x2_c00309{left:434.159514px;}
.x6_c00309{left:446.578862px;}
.x9_c00309{left:484.559806px;}
.xa_c00309{left:496.799801px;}
.x7_c00309{left:687.599725px;}
.x3_c00309{left:716.579713px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls2_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:0.136801pt;}
.ls1_c00309{letter-spacing:0.168267pt;}
.ws2_c00309{word-spacing:-13.279995pt;}
.ws0_c00309{word-spacing:-10.719996pt;}
.ws1_c00309{word-spacing:-8.639997pt;}
.ws3_c00309{word-spacing:0.000000pt;}
._2_c00309{margin-left:-11.303941pt;}
._1_c00309{margin-left:-0.982555pt;}
._0_c00309{width:1.062723pt;}
.fs4_c00309{font-size:34.559986pt;}
.fs3_c00309{font-size:42.879983pt;}
.fs0_c00309{font-size:53.119979pt;}
.fs1_c00309{font-size:58.879976pt;}
.fs2_c00309{font-size:63.999974pt;}
.y0_c00309{bottom:0.000000pt;}
.y4_c00309{bottom:67.306640pt;}
.y3_c00309{bottom:101.226626pt;}
.y16_c00309{bottom:118.666619pt;}
.y15_c00309{bottom:134.666613pt;}
.y14_c00309{bottom:140.746610pt;}
.y13_c00309{bottom:150.826606pt;}
.y12_c00309{bottom:189.066591pt;}
.y10_c00309{bottom:216.746580pt;}
.y11_c00309{bottom:224.106577pt;}
.yf_c00309{bottom:244.266569pt;}
.ye_c00309{bottom:265.066561pt;}
.yd_c00309{bottom:284.426553pt;}
.yc_c00309{bottom:303.786545pt;}
.yb_c00309{bottom:323.146537pt;}
.ya_c00309{bottom:345.706528pt;}
.y9_c00309{bottom:621.706418pt;}
.y8_c00309{bottom:641.066410pt;}
.y7_c00309{bottom:660.426402pt;}
.y6_c00309{bottom:679.946395pt;}
.y5_c00309{bottom:702.506386pt;}
.y2_c00309{bottom:1028.426255pt;}
.y1_c00309{bottom:1062.986241pt;}
.h9_c00309{height:33.918736pt;}
.h8_c00309{height:42.084358pt;}
.ha_c00309{height:43.808420pt;}
.h2_c00309{height:48.558731pt;}
.h1_c00309{height:52.134354pt;}
.h5_c00309{height:57.758727pt;}
.h4_c00309{height:57.787477pt;}
.h3_c00309{height:62.781225pt;}
.h7_c00309{height:62.812475pt;}
.h6_c00309{height:64.499974pt;}
.h0_c00309{height:1122.666667pt;}
.w0_c00309{width:793.333333pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:113.599955pt;}
.x4_c00309{left:117.439953pt;}
.xb_c00309{left:122.239951pt;}
.x8_c00309{left:160.799936pt;}
.x5_c00309{left:336.799010pt;}
.x2_c00309{left:385.919568pt;}
.x6_c00309{left:396.958989pt;}
.x9_c00309{left:430.719828pt;}
.xa_c00309{left:441.599823pt;}
.x7_c00309{left:611.199756pt;}
.x3_c00309{left:636.959745pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_da7a04f634d4172e8954e6cd.woff2')format("woff");}.ff1_c00310{font-family:ff1_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:ff2_c00310;src:url('chunks/assets/font_b5a4d8fd76331807d0345178.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_e60dd52785eb821f9f6da6ce.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;}
.m0_c00310{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls2_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.153901px;}
.ls1_c00310{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00310{word-spacing:-14.939994px;}
.ws0_c00310{word-spacing:-12.059995px;}
.ws1_c00310{word-spacing:-9.719996px;}
.ws3_c00310{word-spacing:0.000000px;}
._2_c00310{margin-left:-12.716934px;}
._1_c00310{margin-left:-1.105374px;}
._0_c00310{width:1.478392px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs4_c00310{font-size:38.879984px;}
.fs3_c00310{font-size:48.239981px;}
.fs0_c00310{font-size:59.759976px;}
.fs1_c00310{font-size:66.239974px;}
.fs2_c00310{font-size:71.999971px;}
.y0_c00310{bottom:0.000000px;}
.y4_c00310{bottom:75.720270px;}
.y3_c00310{bottom:113.880254px;}
.y12_c00310{bottom:133.499947px;}
.y11_c00310{bottom:151.859939px;}
.y10_c00310{bottom:169.859932px;}
.yf_c00310{bottom:176.699929px;}
.ye_c00310{bottom:188.039925px;}
.yd_c00310{bottom:235.919906px;}
.yc_c00310{bottom:257.879897px;}
.yb_c00310{bottom:283.079887px;}
.y9_c00310{bottom:621.839751px;}
.ya_c00310{bottom:630.119748px;}
.y8_c00310{bottom:645.059742px;}
.y7_c00310{bottom:666.839733px;}
.y6_c00310{bottom:688.619725px;}
.y5_c00310{bottom:713.999714px;}
.y2_c00310{bottom:1175.879530px;}
.y1_c00310{bottom:1196.039522px;}
.h8_c00310{height:38.158578px;}
.h6_c00310{height:47.344903px;}
.h9_c00310{height:49.284472px;}
.h2_c00310{height:54.628572px;}
.h1_c00310{height:58.651148px;}
.h5_c00310{height:64.978568px;}
.h4_c00310{height:65.010911px;}
.h7_c00310{height:70.628878px;}
.h3_c00310{height:70.664034px;}
.h0_c00310{height:1263.000000px;}
.w0_c00310{width:892.500000px;}
.x0_c00310{left:0.000000px;}
.x5_c00310{left:127.800262px;}
.x7_c00310{left:134.279946px;}
.xd_c00310{left:137.519945px;}
.x1_c00310{left:181.979927px;}
.xc_c00310{left:290.880576px;}
.x2_c00310{left:329.219408px;}
.x8_c00310{left:344.879848px;}
.x4_c00310{left:434.159826px;}
.xb_c00310{left:651.419729px;}
.x9_c00310{left:667.619733px;}
.xa_c00310{left:679.859728px;}
.x6_c00310{left:695.159722px;}
.x3_c00310{left:765.539694px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls2_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.136801pt;}
.ls1_c00310{letter-spacing:0.168267pt;}
.ws2_c00310{word-spacing:-13.279995pt;}
.ws0_c00310{word-spacing:-10.719996pt;}
.ws1_c00310{word-spacing:-8.639997pt;}
.ws3_c00310{word-spacing:0.000000pt;}
._2_c00310{margin-left:-11.303941pt;}
._1_c00310{margin-left:-0.982555pt;}
._0_c00310{width:1.314126pt;}
.fs4_c00310{font-size:34.559986pt;}
.fs3_c00310{font-size:42.879983pt;}
.fs0_c00310{font-size:53.119979pt;}
.fs1_c00310{font-size:58.879976pt;}
.fs2_c00310{font-size:63.999974pt;}
.y0_c00310{bottom:0.000000pt;}
.y4_c00310{bottom:67.306906pt;}
.y3_c00310{bottom:101.226893pt;}
.y12_c00310{bottom:118.666619pt;}
.y11_c00310{bottom:134.986613pt;}
.y10_c00310{bottom:150.986606pt;}
.yf_c00310{bottom:157.066604pt;}
.ye_c00310{bottom:167.146600pt;}
.yd_c00310{bottom:209.706583pt;}
.yc_c00310{bottom:229.226575pt;}
.yb_c00310{bottom:251.626566pt;}
.y9_c00310{bottom:552.746446pt;}
.ya_c00310{bottom:560.106443pt;}
.y8_c00310{bottom:573.386437pt;}
.y7_c00310{bottom:592.746430pt;}
.y6_c00310{bottom:612.106422pt;}
.y5_c00310{bottom:634.666413pt;}
.y2_c00310{bottom:1045.226249pt;}
.y1_c00310{bottom:1063.146241pt;}
.h8_c00310{height:33.918736pt;}
.h6_c00310{height:42.084358pt;}
.h9_c00310{height:43.808420pt;}
.h2_c00310{height:48.558731pt;}
.h1_c00310{height:52.134354pt;}
.h5_c00310{height:57.758727pt;}
.h4_c00310{height:57.787477pt;}
.h7_c00310{height:62.781225pt;}
.h3_c00310{height:62.812475pt;}
.h0_c00310{height:1122.666667pt;}
.w0_c00310{width:793.333333pt;}
.x0_c00310{left:0.000000pt;}
.x5_c00310{left:113.600233pt;}
.x7_c00310{left:119.359952pt;}
.xd_c00310{left:122.239951pt;}
.x1_c00310{left:161.759935pt;}
.xc_c00310{left:258.560512pt;}
.x2_c00310{left:292.639474pt;}
.x8_c00310{left:306.559865pt;}
.x4_c00310{left:385.919846pt;}
.xb_c00310{left:579.039759pt;}
.x9_c00310{left:593.439763pt;}
.xa_c00310{left:604.319758pt;}
.x6_c00310{left:617.919753pt;}
.x3_c00310{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4941f9fb2cccb589034b44e5.woff2')format("woff");}.ff1_c00311{font-family:ff1_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:ff2_c00311;src:url('chunks/assets/font_87eb07be62b2e4808ff33791.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_f76a51b8b06d0f6a0041a56c.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;}
.m0_c00311{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:0.153901px;}
.ls1_c00311{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00311{word-spacing:-17.999993px;}
.ws3_c00311{word-spacing:-14.939994px;}
.ws1_c00311{word-spacing:-12.059995px;}
.ws2_c00311{word-spacing:-9.719996px;}
.ws4_c00311{word-spacing:0.000000px;}
._4_c00311{margin-left:-12.716934px;}
._1_c00311{margin-left:-1.105374px;}
._0_c00311{width:1.195563px;}
._2_c00311{width:6.604302px;}
._3_c00311{width:8.648816px;}
.fc0_c00311{color:rgb(0,0,0);}
.fs4_c00311{font-size:38.879984px;}
.fs3_c00311{font-size:48.239981px;}
.fs0_c00311{font-size:59.759976px;}
.fs1_c00311{font-size:66.239974px;}
.fs2_c00311{font-size:71.999971px;}
.y0_c00311{bottom:0.000000px;}
.y4_c00311{bottom:75.719970px;}
.y3_c00311{bottom:113.879954px;}
.y16_c00311{bottom:133.140247px;}
.y15_c00311{bottom:139.980244px;}
.y14_c00311{bottom:151.319939px;}
.y13_c00311{bottom:188.399925px;}
.y12_c00311{bottom:211.979915px;}
.y11_c00311{bottom:235.199906px;}
.y10_c00311{bottom:256.979897px;}
.yf_c00311{bottom:286.679885px;}
.ye_c00311{bottom:313.499875px;}
.yd_c00311{bottom:900.659640px;}
.yb_c00311{bottom:931.799627px;}
.yc_c00311{bottom:940.079624px;}
.ya_c00311{bottom:962.759615px;}
.y9_c00311{bottom:993.899602px;}
.y8_c00311{bottom:1024.859590px;}
.y7_c00311{bottom:1055.999578px;}
.y6_c00311{bottom:1086.959565px;}
.y5_c00311{bottom:1118.099553px;}
.y2_c00311{bottom:1156.979537px;}
.y1_c00311{bottom:1195.859522px;}
.h7_c00311{height:38.158578px;}
.h5_c00311{height:47.344903px;}
.h2_c00311{height:54.628572px;}
.h1_c00311{height:58.651148px;}
.h6_c00311{height:65.010911px;}
.h4_c00311{height:70.628878px;}
.h3_c00311{height:70.664034px;}
.h0_c00311{height:1263.000000px;}
.w0_c00311{width:892.500000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:127.799949px;}
.x7_c00311{left:131.399947px;}
.x9_c00311{left:137.519945px;}
.x3_c00311{left:180.899928px;}
.x8_c00311{left:324.540553px;}
.x4_c00311{left:331.379867px;}
.x5_c00311{left:343.619863px;}
.x2_c00311{left:434.159514px;}
.x6_c00311{left:670.500258px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.136801pt;}
.ls1_c00311{letter-spacing:0.168267pt;}
.ws0_c00311{word-spacing:-15.999994pt;}
.ws3_c00311{word-spacing:-13.279995pt;}
.ws1_c00311{word-spacing:-10.719996pt;}
.ws2_c00311{word-spacing:-8.639997pt;}
.ws4_c00311{word-spacing:0.000000pt;}
._4_c00311{margin-left:-11.303941pt;}
._1_c00311{margin-left:-0.982555pt;}
._0_c00311{width:1.062723pt;}
._2_c00311{width:5.870491pt;}
._3_c00311{width:7.687837pt;}
.fs4_c00311{font-size:34.559986pt;}
.fs3_c00311{font-size:42.879983pt;}
.fs0_c00311{font-size:53.119979pt;}
.fs1_c00311{font-size:58.879976pt;}
.fs2_c00311{font-size:63.999974pt;}
.y0_c00311{bottom:0.000000pt;}
.y4_c00311{bottom:67.306640pt;}
.y3_c00311{bottom:101.226626pt;}
.y16_c00311{bottom:118.346886pt;}
.y15_c00311{bottom:124.426884pt;}
.y14_c00311{bottom:134.506613pt;}
.y13_c00311{bottom:167.466600pt;}
.y12_c00311{bottom:188.426591pt;}
.y11_c00311{bottom:209.066583pt;}
.y10_c00311{bottom:228.426575pt;}
.yf_c00311{bottom:254.826565pt;}
.ye_c00311{bottom:278.666555pt;}
.yd_c00311{bottom:800.586346pt;}
.yb_c00311{bottom:828.266335pt;}
.yc_c00311{bottom:835.626332pt;}
.ya_c00311{bottom:855.786324pt;}
.y9_c00311{bottom:883.466313pt;}
.y8_c00311{bottom:910.986302pt;}
.y7_c00311{bottom:938.666291pt;}
.y6_c00311{bottom:966.186280pt;}
.y5_c00311{bottom:993.866269pt;}
.y2_c00311{bottom:1028.426255pt;}
.y1_c00311{bottom:1062.986241pt;}
.h7_c00311{height:33.918736pt;}
.h5_c00311{height:42.084358pt;}
.h2_c00311{height:48.558731pt;}
.h1_c00311{height:52.134354pt;}
.h6_c00311{height:57.787477pt;}
.h4_c00311{height:62.781225pt;}
.h3_c00311{height:62.812475pt;}
.h0_c00311{height:1122.666667pt;}
.w0_c00311{width:793.333333pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:113.599955pt;}
.x7_c00311{left:116.799953pt;}
.x9_c00311{left:122.239951pt;}
.x3_c00311{left:160.799936pt;}
.x8_c00311{left:288.480492pt;}
.x4_c00311{left:294.559882pt;}
.x5_c00311{left:305.439878pt;}
.x2_c00311{left:385.919568pt;}
.x6_c00311{left:596.000230pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82057226a6b0954eec129956.woff2')format("woff");}.ff1_c00312{font-family:ff1_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:ff2_c00312;src:url('chunks/assets/font_73ebf263a76ca0e87d40050c.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_5bef09dc12b90abc595e5677.woff2')format("woff");}.ff3_c00312{font-family:ff3_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;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_b42ed7089cedfeb042c4ab74.woff2')format("woff");}.ff4_c00312{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls1_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.189300px;}
.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:-17.999993px;}
.ws3_c00312{word-spacing:-14.939994px;}
.ws1_c00312{word-spacing:-12.059995px;}
.ws2_c00312{word-spacing:-9.719996px;}
.ws4_c00312{word-spacing:0.000000px;}
._c_c00312{margin-left:-10.197710px;}
._1_c00312{margin-left:-1.105374px;}
._0_c00312{width:1.478392px;}
._8_c00312{width:3.200665px;}
._4_c00312{width:5.103300px;}
._b_c00312{width:6.155581px;}
._a_c00312{width:7.772463px;}
._5_c00312{width:9.149481px;}
._6_c00312{width:10.205324px;}
._9_c00312{width:11.464288px;}
._3_c00312{width:12.566089px;}
._7_c00312{width:14.201929px;}
._2_c00312{width:19.093574px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs4_c00312{font-size:38.879984px;}
.fs3_c00312{font-size:48.239981px;}
.fs0_c00312{font-size:59.759976px;}
.fs1_c00312{font-size:66.239974px;}
.fs2_c00312{font-size:71.999971px;}
.y0_c00312{bottom:0.000000px;}
.y4_c00312{bottom:75.900270px;}
.y3_c00312{bottom:114.060254px;}
.y27_c00312{bottom:133.320247px;}
.y26_c00312{bottom:140.160244px;}
.y25_c00312{bottom:151.499939px;}
.y24_c00312{bottom:204.779918px;}
.y23_c00312{bottom:235.739906px;}
.y22_c00312{bottom:266.879893px;}
.y21_c00312{bottom:297.839881px;}
.y20_c00312{bottom:328.979868px;}
.y1f_c00312{bottom:359.939856px;}
.y1e_c00312{bottom:391.439843px;}
.y1d_c00312{bottom:422.399831px;}
.y1c_c00312{bottom:453.539819px;}
.y1b_c00312{bottom:484.499806px;}
.y1a_c00312{bottom:515.639794px;}
.y19_c00312{bottom:546.599781px;}
.y18_c00312{bottom:577.739769px;}
.y17_c00312{bottom:608.699757px;}
.y16_c00312{bottom:639.839744px;}
.y15_c00312{bottom:670.799732px;}
.y14_c00312{bottom:701.939719px;}
.y13_c00312{bottom:732.899707px;}
.y12_c00312{bottom:764.039694px;}
.y11_c00312{bottom:794.999682px;}
.y10_c00312{bottom:825.959670px;}
.yf_c00312{bottom:857.099657px;}
.ye_c00312{bottom:888.059645px;}
.yd_c00312{bottom:919.199632px;}
.yc_c00312{bottom:950.159620px;}
.yb_c00312{bottom:981.299607px;}
.ya_c00312{bottom:1012.259595px;}
.y9_c00312{bottom:1043.399583px;}
.y8_c00312{bottom:1074.359570px;}
.y6_c00312{bottom:1105.499558px;}
.y7_c00312{bottom:1113.779554px;}
.y5_c00312{bottom:1136.459545px;}
.y2_c00312{bottom:1176.059530px;}
.y1_c00312{bottom:1196.219522px;}
.h6_c00312{height:38.158578px;}
.h4_c00312{height:47.344903px;}
.h2_c00312{height:54.628572px;}
.h1_c00312{height:58.651148px;}
.h5_c00312{height:70.628878px;}
.h3_c00312{height:70.664034px;}
.h0_c00312{height:1263.000000px;}
.w0_c00312{width:892.500000px;}
.x0_c00312{left:0.000000px;}
.x5_c00312{left:127.620262px;}
.x9_c00312{left:137.339945px;}
.x6_c00312{left:180.719928px;}
.x1_c00312{left:181.799927px;}
.x7_c00312{left:289.079884px;}
.x8_c00312{left:301.319879px;}
.x2_c00312{left:329.039408px;}
.x4_c00312{left:433.979826px;}
.x3_c00312{left:765.359694px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls1_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.168267pt;}
.ws0_c00312{word-spacing:-15.999994pt;}
.ws3_c00312{word-spacing:-13.279995pt;}
.ws1_c00312{word-spacing:-10.719996pt;}
.ws2_c00312{word-spacing:-8.639997pt;}
.ws4_c00312{word-spacing:0.000000pt;}
._c_c00312{margin-left:-9.064631pt;}
._1_c00312{margin-left:-0.982555pt;}
._0_c00312{width:1.314126pt;}
._8_c00312{width:2.845036pt;}
._4_c00312{width:4.536267pt;}
._b_c00312{width:5.471628pt;}
._a_c00312{width:6.908856pt;}
._5_c00312{width:8.132872pt;}
._6_c00312{width:9.071399pt;}
._9_c00312{width:10.190478pt;}
._3_c00312{width:11.169857pt;}
._7_c00312{width:12.623937pt;}
._2_c00312{width:16.972066pt;}
.fs4_c00312{font-size:34.559986pt;}
.fs3_c00312{font-size:42.879983pt;}
.fs0_c00312{font-size:53.119979pt;}
.fs1_c00312{font-size:58.879976pt;}
.fs2_c00312{font-size:63.999974pt;}
.y0_c00312{bottom:0.000000pt;}
.y4_c00312{bottom:67.466906pt;}
.y3_c00312{bottom:101.386893pt;}
.y27_c00312{bottom:118.506886pt;}
.y26_c00312{bottom:124.586883pt;}
.y25_c00312{bottom:134.666613pt;}
.y24_c00312{bottom:182.026594pt;}
.y23_c00312{bottom:209.546583pt;}
.y22_c00312{bottom:237.226572pt;}
.y21_c00312{bottom:264.746561pt;}
.y20_c00312{bottom:292.426550pt;}
.y1f_c00312{bottom:319.946539pt;}
.y1e_c00312{bottom:347.946527pt;}
.y1d_c00312{bottom:375.466516pt;}
.y1c_c00312{bottom:403.146505pt;}
.y1b_c00312{bottom:430.666494pt;}
.y1a_c00312{bottom:458.346483pt;}
.y19_c00312{bottom:485.866472pt;}
.y18_c00312{bottom:513.546461pt;}
.y17_c00312{bottom:541.066450pt;}
.y16_c00312{bottom:568.746439pt;}
.y15_c00312{bottom:596.266428pt;}
.y14_c00312{bottom:623.946417pt;}
.y13_c00312{bottom:651.466406pt;}
.y12_c00312{bottom:679.146395pt;}
.y11_c00312{bottom:706.666384pt;}
.y10_c00312{bottom:734.186373pt;}
.yf_c00312{bottom:761.866362pt;}
.ye_c00312{bottom:789.386351pt;}
.yd_c00312{bottom:817.066340pt;}
.yc_c00312{bottom:844.586329pt;}
.yb_c00312{bottom:872.266318pt;}
.ya_c00312{bottom:899.786307pt;}
.y9_c00312{bottom:927.466296pt;}
.y8_c00312{bottom:954.986285pt;}
.y6_c00312{bottom:982.666274pt;}
.y7_c00312{bottom:990.026271pt;}
.y5_c00312{bottom:1010.186263pt;}
.y2_c00312{bottom:1045.386249pt;}
.y1_c00312{bottom:1063.306241pt;}
.h6_c00312{height:33.918736pt;}
.h4_c00312{height:42.084358pt;}
.h2_c00312{height:48.558731pt;}
.h1_c00312{height:52.134354pt;}
.h5_c00312{height:62.781225pt;}
.h3_c00312{height:62.812475pt;}
.h0_c00312{height:1122.666667pt;}
.w0_c00312{width:793.333333pt;}
.x0_c00312{left:0.000000pt;}
.x5_c00312{left:113.440233pt;}
.x9_c00312{left:122.079951pt;}
.x6_c00312{left:160.639936pt;}
.x1_c00312{left:161.599935pt;}
.x7_c00312{left:256.959897pt;}
.x8_c00312{left:267.839893pt;}
.x2_c00312{left:292.479474pt;}
.x4_c00312{left:385.759846pt;}
.x3_c00312{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf65574447c08211d05a9b41.woff2')format("woff");}.ff1_c00313{font-family:ff1_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:ff2_c00313;src:url('chunks/assets/font_220ed813de634ee471f71ea9.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_705baee12cd617e76edfaba1.woff2')format("woff");}.ff3_c00313{font-family:ff3_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:ff4_c00313;src:url('chunks/assets/font_03db7d3457e6ef03d4da87dd.woff2')format("woff");}.ff4_c00313{font-family:ff4_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:ff5_c00313;src:url('chunks/assets/font_9ac48b6a3f92abdff44430fe.woff2')format("woff");}.ff5_c00313{font-family:ff5_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;}
.m0_c00313{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls1_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:0.153901px;}
.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:-17.999993px;}
.ws1_c00313{word-spacing:-12.059995px;}
.ws2_c00313{word-spacing:-9.719996px;}
.ws3_c00313{word-spacing:0.000000px;}
._f_c00313{margin-left:-12.716934px;}
._1_c00313{margin-left:-1.105374px;}
._0_c00313{width:1.195563px;}
._3_c00313{width:2.281799px;}
._b_c00313{width:3.716461px;}
._2_c00313{width:5.170613px;}
._4_c00313{width:6.382423px;}
._6_c00313{width:7.736545px;}
._5_c00313{width:8.765604px;}
._c_c00313{width:10.792188px;}
._d_c00313{width:12.350346px;}
._e_c00313{width:13.918134px;}
._7_c00313{width:19.969970px;}
._9_c00313{width:21.309200px;}
._8_c00313{width:22.835060px;}
._a_c00313{width:23.852753px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs4_c00313{font-size:38.879984px;}
.fs3_c00313{font-size:48.239981px;}
.fs0_c00313{font-size:59.759976px;}
.fs1_c00313{font-size:66.239974px;}
.fs2_c00313{font-size:71.999971px;}
.y0_c00313{bottom:0.000000px;}
.y4_c00313{bottom:75.719970px;}
.y3_c00313{bottom:113.879954px;}
.y1b_c00313{bottom:137.100245px;}
.y1a_c00313{bottom:158.699937px;}
.y19_c00313{bottom:165.539934px;}
.y18_c00313{bottom:177.059929px;}
.y16_c00313{bottom:226.559909px;}
.y17_c00313{bottom:234.839906px;}
.y15_c00313{bottom:257.519897px;}
.y14_c00313{bottom:288.659885px;}
.y13_c00313{bottom:319.619872px;}
.y12_c00313{bottom:350.759860px;}
.y11_c00313{bottom:381.719847px;}
.y10_c00313{bottom:412.859835px;}
.yf_c00313{bottom:443.819822px;}
.ye_c00313{bottom:474.959810px;}
.yd_c00313{bottom:505.919798px;}
.yc_c00313{bottom:537.059785px;}
.yb_c00313{bottom:568.019773px;}
.ya_c00313{bottom:598.619761px;}
.y9_c00313{bottom:629.039748px;}
.y8_c00313{bottom:654.239738px;}
.y7_c00313{bottom:1055.999578px;}
.y6_c00313{bottom:1086.599565px;}
.y5_c00313{bottom:1117.739553px;}
.y2_c00313{bottom:1156.979537px;}
.y1_c00313{bottom:1195.859522px;}
.h8_c00313{height:38.158578px;}
.h6_c00313{height:47.344903px;}
.h2_c00313{height:54.628572px;}
.h1_c00313{height:58.651148px;}
.h5_c00313{height:65.010911px;}
.h7_c00313{height:70.628878px;}
.h4_c00313{height:70.664034px;}
.h3_c00313{height:72.562471px;}
.h0_c00313{height:1263.000000px;}
.w0_c00313{width:892.500000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:127.799949px;}
.x9_c00313{left:137.519945px;}
.x6_c00313{left:180.899928px;}
.x4_c00313{left:187.199925px;}
.x2_c00313{left:434.159514px;}
.x5_c00313{left:446.579821px;}
.x3_c00313{left:590.579764px;}
.x7_c00313{left:712.799715px;}
.x8_c00313{left:725.039710px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:0.136801pt;}
.ws0_c00313{word-spacing:-15.999994pt;}
.ws1_c00313{word-spacing:-10.719996pt;}
.ws2_c00313{word-spacing:-8.639997pt;}
.ws3_c00313{word-spacing:0.000000pt;}
._f_c00313{margin-left:-11.303941pt;}
._1_c00313{margin-left:-0.982555pt;}
._0_c00313{width:1.062723pt;}
._3_c00313{width:2.028266pt;}
._b_c00313{width:3.303521pt;}
._2_c00313{width:4.596101pt;}
._4_c00313{width:5.673265pt;}
._6_c00313{width:6.876929pt;}
._5_c00313{width:7.791648pt;}
._c_c00313{width:9.593056pt;}
._d_c00313{width:10.978085pt;}
._e_c00313{width:12.371675pt;}
._7_c00313{width:17.751084pt;}
._9_c00313{width:18.941511pt;}
._8_c00313{width:20.297831pt;}
._a_c00313{width:21.202447pt;}
.fs4_c00313{font-size:34.559986pt;}
.fs3_c00313{font-size:42.879983pt;}
.fs0_c00313{font-size:53.119979pt;}
.fs1_c00313{font-size:58.879976pt;}
.fs2_c00313{font-size:63.999974pt;}
.y0_c00313{bottom:0.000000pt;}
.y4_c00313{bottom:67.306640pt;}
.y3_c00313{bottom:101.226626pt;}
.y1b_c00313{bottom:121.866885pt;}
.y1a_c00313{bottom:141.066610pt;}
.y19_c00313{bottom:147.146608pt;}
.y18_c00313{bottom:157.386604pt;}
.y16_c00313{bottom:201.386586pt;}
.y17_c00313{bottom:208.746583pt;}
.y15_c00313{bottom:228.906575pt;}
.y14_c00313{bottom:256.586564pt;}
.y13_c00313{bottom:284.106553pt;}
.y12_c00313{bottom:311.786542pt;}
.y11_c00313{bottom:339.306531pt;}
.y10_c00313{bottom:366.986520pt;}
.yf_c00313{bottom:394.506509pt;}
.ye_c00313{bottom:422.186498pt;}
.yd_c00313{bottom:449.706487pt;}
.yc_c00313{bottom:477.386476pt;}
.yb_c00313{bottom:504.906465pt;}
.ya_c00313{bottom:532.106454pt;}
.y9_c00313{bottom:559.146443pt;}
.y8_c00313{bottom:581.546434pt;}
.y7_c00313{bottom:938.666291pt;}
.y6_c00313{bottom:965.866280pt;}
.y5_c00313{bottom:993.546269pt;}
.y2_c00313{bottom:1028.426255pt;}
.y1_c00313{bottom:1062.986241pt;}
.h8_c00313{height:33.918736pt;}
.h6_c00313{height:42.084358pt;}
.h2_c00313{height:48.558731pt;}
.h1_c00313{height:52.134354pt;}
.h5_c00313{height:57.787477pt;}
.h7_c00313{height:62.781225pt;}
.h4_c00313{height:62.812475pt;}
.h3_c00313{height:64.499974pt;}
.h0_c00313{height:1122.666667pt;}
.w0_c00313{width:793.333333pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:113.599955pt;}
.x9_c00313{left:122.239951pt;}
.x6_c00313{left:160.799936pt;}
.x4_c00313{left:166.399933pt;}
.x2_c00313{left:385.919568pt;}
.x5_c00313{left:396.959841pt;}
.x3_c00313{left:524.959790pt;}
.x7_c00313{left:633.599747pt;}
.x8_c00313{left:644.479742pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6af591199f14c04d08b2f3f5.woff2')format("woff");}.ff1_c00314{font-family:ff1_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:ff2_c00314;src:url('chunks/assets/font_73ebf263a76ca0e87d40050c.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00314{font-family:ff3_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:ff4_c00314;src:url('chunks/assets/font_c4de05acf5fc509be9e59d43.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;}
.m0_c00314{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls2_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:0.153901px;}
.ls1_c00314{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00314{word-spacing:-14.939994px;}
.ws0_c00314{word-spacing:-12.059995px;}
.ws1_c00314{word-spacing:-9.719996px;}
.ws3_c00314{word-spacing:0.000000px;}
._4_c00314{margin-left:-12.716934px;}
._1_c00314{margin-left:-1.105374px;}
._0_c00314{width:1.478392px;}
._3_c00314{width:2.680003px;}
._2_c00314{width:20.878160px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs4_c00314{font-size:38.879984px;}
.fs3_c00314{font-size:48.239981px;}
.fs0_c00314{font-size:59.759976px;}
.fs1_c00314{font-size:66.239974px;}
.fs2_c00314{font-size:71.999971px;}
.y0_c00314{bottom:0.000000px;}
.y4_c00314{bottom:75.720270px;}
.y3_c00314{bottom:113.880254px;}
.y1c_c00314{bottom:133.499947px;}
.y1b_c00314{bottom:151.499939px;}
.y1a_c00314{bottom:158.339937px;}
.y19_c00314{bottom:168.779932px;}
.y18_c00314{bottom:186.059926px;}
.y17_c00314{bottom:192.899923px;}
.y16_c00314{bottom:204.239918px;}
.y15_c00314{bottom:234.839906px;}
.y13_c00314{bottom:265.979894px;}
.y14_c00314{bottom:274.259890px;}
.y12_c00314{bottom:296.939881px;}
.y11_c00314{bottom:328.079869px;}
.y10_c00314{bottom:351.299859px;}
.yf_c00314{bottom:373.079851px;}
.ye_c00314{bottom:402.599839px;}
.yd_c00314{bottom:429.419828px;}
.yc_c00314{bottom:722.999711px;}
.ya_c00314{bottom:754.139698px;}
.yb_c00314{bottom:762.419695px;}
.y9_c00314{bottom:785.099686px;}
.y8_c00314{bottom:809.039676px;}
.y7_c00314{bottom:832.259667px;}
.y6_c00314{bottom:854.039658px;}
.y5_c00314{bottom:879.239648px;}
.y2_c00314{bottom:1175.879530px;}
.y1_c00314{bottom:1196.039522px;}
.h8_c00314{height:38.158578px;}
.h6_c00314{height:47.344903px;}
.h9_c00314{height:49.284472px;}
.h2_c00314{height:54.628572px;}
.h1_c00314{height:58.651148px;}
.h4_c00314{height:65.010911px;}
.h7_c00314{height:70.628878px;}
.h5_c00314{height:70.664034px;}
.h3_c00314{height:72.562471px;}
.h0_c00314{height:1263.000000px;}
.w0_c00314{width:892.500000px;}
.x0_c00314{left:0.000000px;}
.x5_c00314{left:127.800262px;}
.x10_c00314{left:137.519945px;}
.x7_c00314{left:140.039944px;}
.xd_c00314{left:147.599941px;}
.x9_c00314{left:180.899928px;}
.x1_c00314{left:181.979927px;}
.x2_c00314{left:329.219408px;}
.x8_c00314{left:397.619841px;}
.x4_c00314{left:434.159826px;}
.xa_c00314{left:542.699783px;}
.xb_c00314{left:554.939778px;}
.xe_c00314{left:563.039775px;}
.xf_c00314{left:575.279770px;}
.x6_c00314{left:697.499721px;}
.xc_c00314{left:712.079715px;}
.x3_c00314{left:765.539694px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls2_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:0.136801pt;}
.ls1_c00314{letter-spacing:0.168267pt;}
.ws2_c00314{word-spacing:-13.279995pt;}
.ws0_c00314{word-spacing:-10.719996pt;}
.ws1_c00314{word-spacing:-8.639997pt;}
.ws3_c00314{word-spacing:0.000000pt;}
._4_c00314{margin-left:-11.303941pt;}
._1_c00314{margin-left:-0.982555pt;}
._0_c00314{width:1.314126pt;}
._3_c00314{width:2.382224pt;}
._2_c00314{width:18.558364pt;}
.fs4_c00314{font-size:34.559986pt;}
.fs3_c00314{font-size:42.879983pt;}
.fs0_c00314{font-size:53.119979pt;}
.fs1_c00314{font-size:58.879976pt;}
.fs2_c00314{font-size:63.999974pt;}
.y0_c00314{bottom:0.000000pt;}
.y4_c00314{bottom:67.306906pt;}
.y3_c00314{bottom:101.226893pt;}
.y1c_c00314{bottom:118.666619pt;}
.y1b_c00314{bottom:134.666613pt;}
.y1a_c00314{bottom:140.746610pt;}
.y19_c00314{bottom:150.026607pt;}
.y18_c00314{bottom:165.386601pt;}
.y17_c00314{bottom:171.466598pt;}
.y16_c00314{bottom:181.546594pt;}
.y15_c00314{bottom:208.746583pt;}
.y13_c00314{bottom:236.426572pt;}
.y14_c00314{bottom:243.786569pt;}
.y12_c00314{bottom:263.946561pt;}
.y11_c00314{bottom:291.626550pt;}
.y10_c00314{bottom:312.266542pt;}
.yf_c00314{bottom:331.626534pt;}
.ye_c00314{bottom:357.866524pt;}
.yd_c00314{bottom:381.706514pt;}
.yc_c00314{bottom:642.666410pt;}
.ya_c00314{bottom:670.346399pt;}
.yb_c00314{bottom:677.706396pt;}
.y9_c00314{bottom:697.866388pt;}
.y8_c00314{bottom:719.146379pt;}
.y7_c00314{bottom:739.786371pt;}
.y6_c00314{bottom:759.146363pt;}
.y5_c00314{bottom:781.546354pt;}
.y2_c00314{bottom:1045.226249pt;}
.y1_c00314{bottom:1063.146241pt;}
.h8_c00314{height:33.918736pt;}
.h6_c00314{height:42.084358pt;}
.h9_c00314{height:43.808420pt;}
.h2_c00314{height:48.558731pt;}
.h1_c00314{height:52.134354pt;}
.h4_c00314{height:57.787477pt;}
.h7_c00314{height:62.781225pt;}
.h5_c00314{height:62.812475pt;}
.h3_c00314{height:64.499974pt;}
.h0_c00314{height:1122.666667pt;}
.w0_c00314{width:793.333333pt;}
.x0_c00314{left:0.000000pt;}
.x5_c00314{left:113.600233pt;}
.x10_c00314{left:122.239951pt;}
.x7_c00314{left:124.479950pt;}
.xd_c00314{left:131.199948pt;}
.x9_c00314{left:160.799936pt;}
.x1_c00314{left:161.759935pt;}
.x2_c00314{left:292.639474pt;}
.x8_c00314{left:353.439859pt;}
.x4_c00314{left:385.919846pt;}
.xa_c00314{left:482.399807pt;}
.xb_c00314{left:493.279803pt;}
.xe_c00314{left:500.479800pt;}
.xf_c00314{left:511.359795pt;}
.x6_c00314{left:619.999752pt;}
.xc_c00314{left:632.959747pt;}
.x3_c00314{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb5e22916b405861316cf4a3.woff2')format("woff");}.ff1_c00315{font-family:ff1_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:ff2_c00315;src:url('chunks/assets/font_584f97fb2bbaa3c25142c8b4.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_c4de05acf5fc509be9e59d43.woff2')format("woff");}.ff3_c00315{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls2_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.153901px;}
.ls1_c00315{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00315{word-spacing:-14.939994px;}
.ws0_c00315{word-spacing:-12.059995px;}
.ws1_c00315{word-spacing:-9.719996px;}
.ws3_c00315{word-spacing:0.000000px;}
._3_c00315{margin-left:-12.716934px;}
._1_c00315{margin-left:-1.105374px;}
._0_c00315{width:1.195563px;}
._2_c00315{width:10.859551px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs4_c00315{font-size:38.879984px;}
.fs3_c00315{font-size:48.239981px;}
.fs0_c00315{font-size:59.759976px;}
.fs1_c00315{font-size:66.239974px;}
.fs2_c00315{font-size:71.999971px;}
.y0_c00315{bottom:0.000000px;}
.y4_c00315{bottom:75.719970px;}
.y3_c00315{bottom:113.879954px;}
.y14_c00315{bottom:133.499947px;}
.y13_c00315{bottom:151.499939px;}
.y12_c00315{bottom:158.339937px;}
.y11_c00315{bottom:169.679932px;}
.y10_c00315{bottom:239.339904px;}
.yf_c00315{bottom:268.859892px;}
.ye_c00315{bottom:295.679882px;}
.yd_c00315{bottom:599.519760px;}
.yb_c00315{bottom:630.479748px;}
.yc_c00315{bottom:638.759744px;}
.ya_c00315{bottom:661.619735px;}
.y9_c00315{bottom:685.379726px;}
.y8_c00315{bottom:708.599717px;}
.y7_c00315{bottom:730.379708px;}
.y6_c00315{bottom:760.079696px;}
.y5_c00315{bottom:786.899685px;}
.y2_c00315{bottom:1156.979537px;}
.y1_c00315{bottom:1195.859522px;}
.h6_c00315{height:38.158578px;}
.h5_c00315{height:47.344903px;}
.h7_c00315{height:49.284472px;}
.h2_c00315{height:54.628572px;}
.h1_c00315{height:58.651148px;}
.h4_c00315{height:65.010911px;}
.h3_c00315{height:70.664034px;}
.h0_c00315{height:1263.000000px;}
.w0_c00315{width:892.500000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:127.799949px;}
.xa_c00315{left:137.339945px;}
.x4_c00315{left:148.139941px;}
.x6_c00315{left:180.899928px;}
.x7_c00315{left:324.719870px;}
.x8_c00315{left:336.959865px;}
.x5_c00315{left:417.599833px;}
.x2_c00315{left:434.159514px;}
.x3_c00315{left:691.919723px;}
.x9_c00315{left:707.759717px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls2_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.136801pt;}
.ls1_c00315{letter-spacing:0.168267pt;}
.ws2_c00315{word-spacing:-13.279995pt;}
.ws0_c00315{word-spacing:-10.719996pt;}
.ws1_c00315{word-spacing:-8.639997pt;}
.ws3_c00315{word-spacing:0.000000pt;}
._3_c00315{margin-left:-11.303941pt;}
._1_c00315{margin-left:-0.982555pt;}
._0_c00315{width:1.062723pt;}
._2_c00315{width:9.652934pt;}
.fs4_c00315{font-size:34.559986pt;}
.fs3_c00315{font-size:42.879983pt;}
.fs0_c00315{font-size:53.119979pt;}
.fs1_c00315{font-size:58.879976pt;}
.fs2_c00315{font-size:63.999974pt;}
.y0_c00315{bottom:0.000000pt;}
.y4_c00315{bottom:67.306640pt;}
.y3_c00315{bottom:101.226626pt;}
.y14_c00315{bottom:118.666619pt;}
.y13_c00315{bottom:134.666613pt;}
.y12_c00315{bottom:140.746610pt;}
.y11_c00315{bottom:150.826606pt;}
.y10_c00315{bottom:212.746582pt;}
.yf_c00315{bottom:238.986571pt;}
.ye_c00315{bottom:262.826562pt;}
.yd_c00315{bottom:532.906454pt;}
.yb_c00315{bottom:560.426442pt;}
.yc_c00315{bottom:567.786440pt;}
.ya_c00315{bottom:588.106431pt;}
.y9_c00315{bottom:609.226423pt;}
.y8_c00315{bottom:629.866415pt;}
.y7_c00315{bottom:649.226407pt;}
.y6_c00315{bottom:675.626396pt;}
.y5_c00315{bottom:699.466387pt;}
.y2_c00315{bottom:1028.426255pt;}
.y1_c00315{bottom:1062.986241pt;}
.h6_c00315{height:33.918736pt;}
.h5_c00315{height:42.084358pt;}
.h7_c00315{height:43.808420pt;}
.h2_c00315{height:48.558731pt;}
.h1_c00315{height:52.134354pt;}
.h4_c00315{height:57.787477pt;}
.h3_c00315{height:62.812475pt;}
.h0_c00315{height:1122.666667pt;}
.w0_c00315{width:793.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:113.599955pt;}
.xa_c00315{left:122.079951pt;}
.x4_c00315{left:131.679947pt;}
.x6_c00315{left:160.799936pt;}
.x7_c00315{left:288.639885pt;}
.x8_c00315{left:299.519880pt;}
.x5_c00315{left:371.199852pt;}
.x2_c00315{left:385.919568pt;}
.x3_c00315{left:615.039754pt;}
.x9_c00315{left:629.119748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19faae2782d2b8e51547e5f4.woff2')format("woff");}.ff1_c00316{font-family:ff1_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:ff2_c00316;src:url('chunks/assets/font_0041419fb10f95a51dcb6353.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_f2b409219abbf3d7ef0a8499.woff2')format("woff");}.ff3_c00316{font-family:ff3_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:ff4_c00316;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00316{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls2_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.153901px;}
.ls1_c00316{letter-spacing:0.189300px;}
.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:-14.939994px;}
.ws0_c00316{word-spacing:-12.059995px;}
.ws1_c00316{word-spacing:-9.719996px;}
.ws3_c00316{word-spacing:0.000000px;}
._5_c00316{margin-left:-12.716934px;}
._1_c00316{margin-left:-1.105374px;}
._0_c00316{width:1.478392px;}
._2_c00316{width:20.157728px;}
._3_c00316{width:25.244430px;}
._4_c00316{width:26.700348px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs4_c00316{font-size:38.879984px;}
.fs3_c00316{font-size:48.239981px;}
.fs0_c00316{font-size:59.759976px;}
.fs1_c00316{font-size:66.239974px;}
.fs2_c00316{font-size:71.999971px;}
.y0_c00316{bottom:0.000000px;}
.y4_c00316{bottom:75.720270px;}
.y3_c00316{bottom:113.880254px;}
.y19_c00316{bottom:133.499947px;}
.y18_c00316{bottom:151.859939px;}
.y17_c00316{bottom:169.859932px;}
.y16_c00316{bottom:176.699929px;}
.y15_c00316{bottom:188.039925px;}
.y14_c00316{bottom:250.319900px;}
.y13_c00316{bottom:281.279887px;}
.y12_c00316{bottom:304.859878px;}
.y11_c00316{bottom:326.819869px;}
.y10_c00316{bottom:355.979858px;}
.yf_c00316{bottom:383.159847px;}
.ye_c00316{bottom:587.459765px;}
.yd_c00316{bottom:611.219756px;}
.yc_c00316{bottom:634.979746px;}
.yb_c00316{bottom:656.759737px;}
.ya_c00316{bottom:681.959727px;}
.y9_c00316{bottom:1043.219583px;}
.y7_c00316{bottom:1074.179570px;}
.y8_c00316{bottom:1082.459567px;}
.y6_c00316{bottom:1105.319558px;}
.y5_c00316{bottom:1136.279545px;}
.y2_c00316{bottom:1175.879530px;}
.y1_c00316{bottom:1196.039522px;}
.h7_c00316{height:38.158578px;}
.h4_c00316{height:47.344903px;}
.h8_c00316{height:49.284472px;}
.h2_c00316{height:54.628572px;}
.h1_c00316{height:58.651148px;}
.h6_c00316{height:65.010911px;}
.h3_c00316{height:70.664034px;}
.h5_c00316{height:72.562471px;}
.h0_c00316{height:1263.000000px;}
.w0_c00316{width:892.500000px;}
.x0_c00316{left:0.000000px;}
.x5_c00316{left:127.800262px;}
.xd_c00316{left:132.119947px;}
.xf_c00316{left:137.519945px;}
.xa_c00316{left:144.359942px;}
.x6_c00316{left:180.899928px;}
.x1_c00316{left:181.979927px;}
.x2_c00316{left:329.219408px;}
.xb_c00316{left:363.599855px;}
.xe_c00316{left:397.619841px;}
.x4_c00316{left:434.159826px;}
.x7_c00316{left:662.579735px;}
.x8_c00316{left:674.819730px;}
.x9_c00316{left:702.359719px;}
.xc_c00316{left:752.579699px;}
.x3_c00316{left:765.539694px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls2_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.136801pt;}
.ls1_c00316{letter-spacing:0.168267pt;}
.ws2_c00316{word-spacing:-13.279995pt;}
.ws0_c00316{word-spacing:-10.719996pt;}
.ws1_c00316{word-spacing:-8.639997pt;}
.ws3_c00316{word-spacing:0.000000pt;}
._5_c00316{margin-left:-11.303941pt;}
._1_c00316{margin-left:-0.982555pt;}
._0_c00316{width:1.314126pt;}
._2_c00316{width:17.917981pt;}
._3_c00316{width:22.439493pt;}
._4_c00316{width:23.733643pt;}
.fs4_c00316{font-size:34.559986pt;}
.fs3_c00316{font-size:42.879983pt;}
.fs0_c00316{font-size:53.119979pt;}
.fs1_c00316{font-size:58.879976pt;}
.fs2_c00316{font-size:63.999974pt;}
.y0_c00316{bottom:0.000000pt;}
.y4_c00316{bottom:67.306906pt;}
.y3_c00316{bottom:101.226893pt;}
.y19_c00316{bottom:118.666619pt;}
.y18_c00316{bottom:134.986613pt;}
.y17_c00316{bottom:150.986606pt;}
.y16_c00316{bottom:157.066604pt;}
.y15_c00316{bottom:167.146600pt;}
.y14_c00316{bottom:222.506578pt;}
.y13_c00316{bottom:250.026567pt;}
.y12_c00316{bottom:270.986558pt;}
.y11_c00316{bottom:290.506550pt;}
.y10_c00316{bottom:316.426540pt;}
.yf_c00316{bottom:340.586530pt;}
.ye_c00316{bottom:522.186458pt;}
.yd_c00316{bottom:543.306449pt;}
.yc_c00316{bottom:564.426441pt;}
.yb_c00316{bottom:583.786433pt;}
.ya_c00316{bottom:606.186424pt;}
.y9_c00316{bottom:927.306296pt;}
.y7_c00316{bottom:954.826285pt;}
.y8_c00316{bottom:962.186282pt;}
.y6_c00316{bottom:982.506274pt;}
.y5_c00316{bottom:1010.026263pt;}
.y2_c00316{bottom:1045.226249pt;}
.y1_c00316{bottom:1063.146241pt;}
.h7_c00316{height:33.918736pt;}
.h4_c00316{height:42.084358pt;}
.h8_c00316{height:43.808420pt;}
.h2_c00316{height:48.558731pt;}
.h1_c00316{height:52.134354pt;}
.h6_c00316{height:57.787477pt;}
.h3_c00316{height:62.812475pt;}
.h5_c00316{height:64.499974pt;}
.h0_c00316{height:1122.666667pt;}
.w0_c00316{width:793.333333pt;}
.x0_c00316{left:0.000000pt;}
.x5_c00316{left:113.600233pt;}
.xd_c00316{left:117.439953pt;}
.xf_c00316{left:122.239951pt;}
.xa_c00316{left:128.319949pt;}
.x6_c00316{left:160.799936pt;}
.x1_c00316{left:161.759935pt;}
.x2_c00316{left:292.639474pt;}
.xb_c00316{left:323.199871pt;}
.xe_c00316{left:353.439859pt;}
.x4_c00316{left:385.919846pt;}
.x7_c00316{left:588.959764pt;}
.x8_c00316{left:599.839760pt;}
.x9_c00316{left:624.319750pt;}
.xc_c00316{left:668.959732pt;}
.x3_c00316{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47450a7636330fabbe5e300c.woff2')format("woff");}.ff1_c00317{font-family:ff1_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:ff2_c00317;src:url('chunks/assets/font_2bd8cd01fdda140be1dc8721.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_25be7b71e81b6359eb4cf324.woff2')format("woff");}.ff3_c00317{font-family:ff3_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:ff4_c00317;src:url('chunks/assets/font_f3970a72cc2c9f65a73a6c6b.woff2')format("woff");}.ff4_c00317{font-family:ff4_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:ff5_c00317;src:url('chunks/assets/font_3b7f5d51d7eafda13ec43a5b.woff2')format("woff");}.ff5_c00317{font-family:ff5_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;}
.m0_c00317{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls1_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.021238px;}
.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;}
}
.ws0_c00317{word-spacing:-17.999993px;}
.ws1_c00317{word-spacing:0.000000px;}
._1_c00317{margin-left:-1.105374px;}
._0_c00317{width:1.195563px;}
._6_c00317{width:3.722399px;}
._7_c00317{width:4.827687px;}
._5_c00317{width:6.647966px;}
._3_c00317{width:8.045173px;}
._4_c00317{width:9.734801px;}
._9_c00317{width:12.259001px;}
._a_c00317{width:13.273626px;}
._2_c00317{width:14.536146px;}
._8_c00317{width:16.332400px;}
.fc0_c00317{color:rgb(0,0,0);}
.fs0_c00317{font-size:59.759976px;}
.fs1_c00317{font-size:66.239974px;}
.fs2_c00317{font-size:71.999971px;}
.y0_c00317{bottom:0.000000px;}
.y4_c00317{bottom:75.719970px;}
.y3_c00317{bottom:113.879954px;}
.y18_c00317{bottom:189.119924px;}
.y17_c00317{bottom:220.259912px;}
.y16_c00317{bottom:251.219900px;}
.y15_c00317{bottom:282.359887px;}
.y14_c00317{bottom:313.319875px;}
.y13_c00317{bottom:344.459862px;}
.y12_c00317{bottom:375.419850px;}
.y11_c00317{bottom:406.559837px;}
.y10_c00317{bottom:437.519825px;}
.yf_c00317{bottom:468.659813px;}
.ye_c00317{bottom:499.619800px;}
.yd_c00317{bottom:530.759788px;}
.yc_c00317{bottom:561.719775px;}
.yb_c00317{bottom:592.679763px;}
.ya_c00317{bottom:623.819750px;}
.y9_c00317{bottom:654.779738px;}
.y8_c00317{bottom:684.839726px;}
.y7_c00317{bottom:710.219716px;}
.y6_c00317{bottom:1086.599565px;}
.y5_c00317{bottom:1117.739553px;}
.y2_c00317{bottom:1156.979537px;}
.y1_c00317{bottom:1195.859522px;}
.h2_c00317{height:54.628572px;}
.h1_c00317{height:58.651148px;}
.h4_c00317{height:65.010911px;}
.h6_c00317{height:70.628878px;}
.h5_c00317{height:70.664034px;}
.h3_c00317{height:72.562471px;}
.h0_c00317{height:1263.000000px;}
.w0_c00317{width:892.500000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:127.799949px;}
.x4_c00317{left:152.819939px;}
.x6_c00317{left:180.899272px;}
.x2_c00317{left:434.159514px;}
.x5_c00317{left:446.579821px;}
.x3_c00317{left:597.419761px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.018878pt;}
.ws0_c00317{word-spacing:-15.999994pt;}
.ws1_c00317{word-spacing:0.000000pt;}
._1_c00317{margin-left:-0.982555pt;}
._0_c00317{width:1.062723pt;}
._6_c00317{width:3.308799pt;}
._7_c00317{width:4.291277pt;}
._5_c00317{width:5.909303pt;}
._3_c00317{width:7.151265pt;}
._4_c00317{width:8.653157pt;}
._9_c00317{width:10.896890pt;}
._a_c00317{width:11.798779pt;}
._2_c00317{width:12.921019pt;}
._8_c00317{width:14.517689pt;}
.fs0_c00317{font-size:53.119979pt;}
.fs1_c00317{font-size:58.879976pt;}
.fs2_c00317{font-size:63.999974pt;}
.y0_c00317{bottom:0.000000pt;}
.y4_c00317{bottom:67.306640pt;}
.y3_c00317{bottom:101.226626pt;}
.y18_c00317{bottom:168.106599pt;}
.y17_c00317{bottom:195.786588pt;}
.y16_c00317{bottom:223.306577pt;}
.y15_c00317{bottom:250.986566pt;}
.y14_c00317{bottom:278.506555pt;}
.y13_c00317{bottom:306.186544pt;}
.y12_c00317{bottom:333.706533pt;}
.y11_c00317{bottom:361.386522pt;}
.y10_c00317{bottom:388.906511pt;}
.yf_c00317{bottom:416.586500pt;}
.ye_c00317{bottom:444.106489pt;}
.yd_c00317{bottom:471.786478pt;}
.yc_c00317{bottom:499.306467pt;}
.yb_c00317{bottom:526.826456pt;}
.ya_c00317{bottom:554.506445pt;}
.y9_c00317{bottom:582.026434pt;}
.y8_c00317{bottom:608.746423pt;}
.y7_c00317{bottom:631.306414pt;}
.y6_c00317{bottom:965.866280pt;}
.y5_c00317{bottom:993.546269pt;}
.y2_c00317{bottom:1028.426255pt;}
.y1_c00317{bottom:1062.986241pt;}
.h2_c00317{height:48.558731pt;}
.h1_c00317{height:52.134354pt;}
.h4_c00317{height:57.787477pt;}
.h6_c00317{height:62.781225pt;}
.h5_c00317{height:62.812475pt;}
.h3_c00317{height:64.499974pt;}
.h0_c00317{height:1122.666667pt;}
.w0_c00317{width:793.333333pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:113.599955pt;}
.x4_c00317{left:135.839946pt;}
.x6_c00317{left:160.799353pt;}
.x2_c00317{left:385.919568pt;}
.x5_c00317{left:396.959841pt;}
.x3_c00317{left:531.039788pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d252478e29a78b0a3784548.woff2')format("woff");}.ff1_c00318{font-family:ff1_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:ff2_c00318;src:url('chunks/assets/font_f9e9a719113af389de8b2ae5.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_6f58702f75aaa4cc5de9688a.woff2')format("woff");}.ff3_c00318{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00318{vertical-align:-83.519967px;}
.v0_c00318{vertical-align:0.000000px;}
.ls2_c00318{letter-spacing:0.000000px;}
.ls1_c00318{letter-spacing:0.189300px;}
.ls0_c00318{letter-spacing:194.525322px;}
.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;}
}
.ws1_c00318{word-spacing:-17.999993px;}
.ws3_c00318{word-spacing:-14.939994px;}
.ws0_c00318{word-spacing:-12.059995px;}
.ws2_c00318{word-spacing:-9.719996px;}
.ws4_c00318{word-spacing:0.000000px;}
._10_c00318{margin-left:-9.205582px;}
._1_c00318{margin-left:-1.105374px;}
._0_c00318{width:1.478392px;}
._3_c00318{width:2.981445px;}
._12_c00318{width:4.057932px;}
._7_c00318{width:5.163453px;}
._c_c00318{width:6.245234px;}
._d_c00318{width:8.130125px;}
._6_c00318{width:9.207282px;}
._5_c00318{width:10.826390px;}
._2_c00318{width:12.779796px;}
._4_c00318{width:14.394346px;}
._e_c00318{width:15.405296px;}
._f_c00318{width:16.854231px;}
._11_c00318{width:22.522997px;}
._a_c00318{width:24.544076px;}
._b_c00318{width:28.937476px;}
._8_c00318{width:35.535800px;}
._9_c00318{width:36.728823px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs4_c00318{font-size:38.879984px;}
.fs3_c00318{font-size:48.239981px;}
.fs0_c00318{font-size:59.759976px;}
.fs1_c00318{font-size:66.239974px;}
.fs2_c00318{font-size:71.999971px;}
.y0_c00318{bottom:0.000000px;}
.y4_c00318{bottom:75.900270px;}
.y3_c00318{bottom:114.060254px;}
.y2c_c00318{bottom:133.679947px;}
.y2b_c00318{bottom:151.679939px;}
.y2a_c00318{bottom:158.519937px;}
.y29_c00318{bottom:169.859932px;}
.y28_c00318{bottom:189.119924px;}
.y27_c00318{bottom:206.399917px;}
.y26_c00318{bottom:223.679911px;}
.y25_c00318{bottom:230.519908px;}
.y24_c00318{bottom:241.679903px;}
.y23_c00318{bottom:267.239893px;}
.y22_c00318{bottom:298.199881px;}
.y21_c00318{bottom:329.339868px;}
.y20_c00318{bottom:360.299856px;}
.y1f_c00318{bottom:391.439843px;}
.y1e_c00318{bottom:422.399831px;}
.y1d_c00318{bottom:453.539819px;}
.y1c_c00318{bottom:484.499806px;}
.y1b_c00318{bottom:515.639794px;}
.y1a_c00318{bottom:546.599781px;}
.y19_c00318{bottom:577.739769px;}
.y18_c00318{bottom:608.699757px;}
.y16_c00318{bottom:639.839744px;}
.y17_c00318{bottom:648.119741px;}
.y15_c00318{bottom:670.799732px;}
.y14_c00318{bottom:701.939719px;}
.y13_c00318{bottom:732.899707px;}
.y12_c00318{bottom:764.039694px;}
.y10_c00318{bottom:794.999682px;}
.y11_c00318{bottom:803.279679px;}
.yf_c00318{bottom:825.959670px;}
.ye_c00318{bottom:877.979649px;}
.yd_c00318{bottom:898.679641px;}
.yc_c00318{bottom:929.459628px;}
.yb_c00318{bottom:960.599616px;}
.ya_c00318{bottom:991.559603px;}
.y9_c00318{bottom:1022.699591px;}
.y8_c00318{bottom:1053.659579px;}
.y7_c00318{bottom:1079.939568px;}
.y6_c00318{bottom:1105.499558px;}
.y5_c00318{bottom:1136.459545px;}
.y2_c00318{bottom:1176.059530px;}
.y1_c00318{bottom:1196.219522px;}
.h7_c00318{height:38.158578px;}
.h6_c00318{height:47.321348px;}
.h4_c00318{height:47.344903px;}
.h8_c00318{height:49.284472px;}
.h2_c00318{height:54.628572px;}
.h1_c00318{height:58.651148px;}
.h3_c00318{height:70.628878px;}
.h5_c00318{height:70.664034px;}
.h0_c00318{height:1263.000000px;}
.w0_c00318{width:892.500000px;}
.x0_c00318{left:0.000000px;}
.x5_c00318{left:127.620262px;}
.xd_c00318{left:137.339945px;}
.x6_c00318{left:180.719928px;}
.x1_c00318{left:181.799927px;}
.x9_c00318{left:223.019911px;}
.xa_c00318{left:235.259906px;}
.x2_c00318{left:329.039408px;}
.x4_c00318{left:433.979826px;}
.x7_c00318{left:456.119818px;}
.x8_c00318{left:468.359813px;}
.xb_c00318{left:736.919705px;}
.xc_c00318{left:741.419703px;}
.x3_c00318{left:765.359694px;}
@media print{
.v1_c00318{vertical-align:-74.239970pt;}
.v0_c00318{vertical-align:0.000000pt;}
.ls2_c00318{letter-spacing:0.000000pt;}
.ls1_c00318{letter-spacing:0.168267pt;}
.ls0_c00318{letter-spacing:172.911398pt;}
.ws1_c00318{word-spacing:-15.999994pt;}
.ws3_c00318{word-spacing:-13.279995pt;}
.ws0_c00318{word-spacing:-10.719996pt;}
.ws2_c00318{word-spacing:-8.639997pt;}
.ws4_c00318{word-spacing:0.000000pt;}
._10_c00318{margin-left:-8.182739pt;}
._1_c00318{margin-left:-0.982555pt;}
._0_c00318{width:1.314126pt;}
._3_c00318{width:2.650173pt;}
._12_c00318{width:3.607051pt;}
._7_c00318{width:4.589736pt;}
._c_c00318{width:5.551319pt;}
._d_c00318{width:7.226777pt;}
._6_c00318{width:8.184251pt;}
._5_c00318{width:9.623458pt;}
._2_c00318{width:11.359818pt;}
._4_c00318{width:12.794975pt;}
._e_c00318{width:13.693596pt;}
._f_c00318{width:14.981539pt;}
._11_c00318{width:20.020442pt;}
._a_c00318{width:21.816957pt;}
._b_c00318{width:25.722201pt;}
._8_c00318{width:31.587378pt;}
._9_c00318{width:32.647842pt;}
.fs4_c00318{font-size:34.559986pt;}
.fs3_c00318{font-size:42.879983pt;}
.fs0_c00318{font-size:53.119979pt;}
.fs1_c00318{font-size:58.879976pt;}
.fs2_c00318{font-size:63.999974pt;}
.y0_c00318{bottom:0.000000pt;}
.y4_c00318{bottom:67.466906pt;}
.y3_c00318{bottom:101.386893pt;}
.y2c_c00318{bottom:118.826619pt;}
.y2b_c00318{bottom:134.826613pt;}
.y2a_c00318{bottom:140.906610pt;}
.y29_c00318{bottom:150.986606pt;}
.y28_c00318{bottom:168.106599pt;}
.y27_c00318{bottom:183.466593pt;}
.y26_c00318{bottom:198.826587pt;}
.y25_c00318{bottom:204.906585pt;}
.y24_c00318{bottom:214.826581pt;}
.y23_c00318{bottom:237.546572pt;}
.y22_c00318{bottom:265.066561pt;}
.y21_c00318{bottom:292.746550pt;}
.y20_c00318{bottom:320.266539pt;}
.y1f_c00318{bottom:347.946527pt;}
.y1e_c00318{bottom:375.466516pt;}
.y1d_c00318{bottom:403.146505pt;}
.y1c_c00318{bottom:430.666494pt;}
.y1b_c00318{bottom:458.346483pt;}
.y1a_c00318{bottom:485.866472pt;}
.y19_c00318{bottom:513.546461pt;}
.y18_c00318{bottom:541.066450pt;}
.y16_c00318{bottom:568.746439pt;}
.y17_c00318{bottom:576.106436pt;}
.y15_c00318{bottom:596.266428pt;}
.y14_c00318{bottom:623.946417pt;}
.y13_c00318{bottom:651.466406pt;}
.y12_c00318{bottom:679.146395pt;}
.y10_c00318{bottom:706.666384pt;}
.y11_c00318{bottom:714.026381pt;}
.yf_c00318{bottom:734.186373pt;}
.ye_c00318{bottom:780.426354pt;}
.yd_c00318{bottom:798.826347pt;}
.yc_c00318{bottom:826.186336pt;}
.yb_c00318{bottom:853.866325pt;}
.ya_c00318{bottom:881.386314pt;}
.y9_c00318{bottom:909.066303pt;}
.y8_c00318{bottom:936.586292pt;}
.y7_c00318{bottom:959.946283pt;}
.y6_c00318{bottom:982.666274pt;}
.y5_c00318{bottom:1010.186263pt;}
.y2_c00318{bottom:1045.386249pt;}
.y1_c00318{bottom:1063.306241pt;}
.h7_c00318{height:33.918736pt;}
.h6_c00318{height:42.063421pt;}
.h4_c00318{height:42.084358pt;}
.h8_c00318{height:43.808420pt;}
.h2_c00318{height:48.558731pt;}
.h1_c00318{height:52.134354pt;}
.h3_c00318{height:62.781225pt;}
.h5_c00318{height:62.812475pt;}
.h0_c00318{height:1122.666667pt;}
.w0_c00318{width:793.333333pt;}
.x0_c00318{left:0.000000pt;}
.x5_c00318{left:113.440233pt;}
.xd_c00318{left:122.079951pt;}
.x6_c00318{left:160.639936pt;}
.x1_c00318{left:161.599935pt;}
.x9_c00318{left:198.239921pt;}
.xa_c00318{left:209.119916pt;}
.x2_c00318{left:292.479474pt;}
.x4_c00318{left:385.759846pt;}
.x7_c00318{left:405.439838pt;}
.x8_c00318{left:416.319833pt;}
.xb_c00318{left:655.039738pt;}
.xc_c00318{left:659.039736pt;}
.x3_c00318{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_52c57db17efe125db1feab2b.woff2')format("woff");}.ff1_c00319{font-family:ff1_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:ff2_c00319;src:url('chunks/assets/font_9a677f5dc16956119140dfd2.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_3e1d9de5f5becf052468068f.woff2')format("woff");}.ff3_c00319{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls1_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00319{word-spacing:-14.939994px;}
.ws0_c00319{word-spacing:-12.059995px;}
.ws1_c00319{word-spacing:-9.719996px;}
.ws3_c00319{word-spacing:0.000000px;}
._10_c00319{margin-left:-10.328570px;}
._8_c00319{margin-left:-2.551167px;}
._1_c00319{margin-left:-1.105374px;}
._0_c00319{width:1.195563px;}
._2_c00319{width:2.791953px;}
._a_c00319{width:4.210376px;}
._4_c00319{width:6.286441px;}
._3_c00319{width:7.654217px;}
._c_c00319{width:9.058511px;}
._d_c00319{width:13.183844px;}
._b_c00319{width:14.547856px;}
._9_c00319{width:15.574206px;}
._5_c00319{width:16.640611px;}
._e_c00319{width:19.165315px;}
._f_c00319{width:20.279287px;}
._6_c00319{width:25.331895px;}
._7_c00319{width:26.730004px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs4_c00319{font-size:38.879984px;}
.fs3_c00319{font-size:48.239981px;}
.fs0_c00319{font-size:59.759976px;}
.fs1_c00319{font-size:66.239974px;}
.fs2_c00319{font-size:71.999971px;}
.y0_c00319{bottom:0.000000px;}
.y4_c00319{bottom:75.899970px;}
.y3_c00319{bottom:114.059954px;}
.y21_c00319{bottom:133.679947px;}
.y20_c00319{bottom:152.039939px;}
.y1f_c00319{bottom:170.039932px;}
.y1e_c00319{bottom:176.879929px;}
.y1d_c00319{bottom:188.219925px;}
.y1c_c00319{bottom:435.179826px;}
.y1b_c00319{bottom:466.139814px;}
.y1a_c00319{bottom:497.279801px;}
.y19_c00319{bottom:528.239789px;}
.y18_c00319{bottom:559.379776px;}
.y17_c00319{bottom:590.339764px;}
.y16_c00319{bottom:621.479751px;}
.y15_c00319{bottom:652.439739px;}
.y14_c00319{bottom:683.579727px;}
.y13_c00319{bottom:714.539714px;}
.y12_c00319{bottom:745.679702px;}
.y11_c00319{bottom:776.639689px;}
.y10_c00319{bottom:807.779677px;}
.yf_c00319{bottom:838.739665px;}
.ye_c00319{bottom:869.879652px;}
.yd_c00319{bottom:900.839640px;}
.yc_c00319{bottom:931.979627px;}
.yb_c00319{bottom:962.939615px;}
.ya_c00319{bottom:994.079602px;}
.y8_c00319{bottom:1025.039590px;}
.y9_c00319{bottom:1033.319587px;}
.y7_c00319{bottom:1056.179578px;}
.y6_c00319{bottom:1087.139565px;}
.y5_c00319{bottom:1118.279553px;}
.y2_c00319{bottom:1157.159537px;}
.y1_c00319{bottom:1196.039522px;}
.h6_c00319{height:38.158578px;}
.h5_c00319{height:47.344903px;}
.h7_c00319{height:49.284472px;}
.h2_c00319{height:54.628572px;}
.h1_c00319{height:58.651148px;}
.h4_c00319{height:70.628878px;}
.h3_c00319{height:70.664034px;}
.h0_c00319{height:1263.000000px;}
.w0_c00319{width:892.500000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:127.619949px;}
.x6_c00319{left:137.339945px;}
.x5_c00319{left:180.719705px;}
.x3_c00319{left:272.159891px;}
.x4_c00319{left:284.399886px;}
.x2_c00319{left:433.979514px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls1_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:0.168267pt;}
.ws2_c00319{word-spacing:-13.279995pt;}
.ws0_c00319{word-spacing:-10.719996pt;}
.ws1_c00319{word-spacing:-8.639997pt;}
.ws3_c00319{word-spacing:0.000000pt;}
._10_c00319{margin-left:-9.180951pt;}
._8_c00319{margin-left:-2.267704pt;}
._1_c00319{margin-left:-0.982555pt;}
._0_c00319{width:1.062723pt;}
._2_c00319{width:2.481736pt;}
._a_c00319{width:3.742557pt;}
._4_c00319{width:5.587948pt;}
._3_c00319{width:6.803749pt;}
._c_c00319{width:8.052010pt;}
._d_c00319{width:11.718972pt;}
._b_c00319{width:12.931428pt;}
._9_c00319{width:13.843739pt;}
._5_c00319{width:14.791654pt;}
._e_c00319{width:17.035836pt;}
._f_c00319{width:18.026033pt;}
._6_c00319{width:22.517240pt;}
._7_c00319{width:23.760004pt;}
.fs4_c00319{font-size:34.559986pt;}
.fs3_c00319{font-size:42.879983pt;}
.fs0_c00319{font-size:53.119979pt;}
.fs1_c00319{font-size:58.879976pt;}
.fs2_c00319{font-size:63.999974pt;}
.y0_c00319{bottom:0.000000pt;}
.y4_c00319{bottom:67.466640pt;}
.y3_c00319{bottom:101.386626pt;}
.y21_c00319{bottom:118.826619pt;}
.y20_c00319{bottom:135.146613pt;}
.y1f_c00319{bottom:151.146606pt;}
.y1e_c00319{bottom:157.226604pt;}
.y1d_c00319{bottom:167.306600pt;}
.y1c_c00319{bottom:386.826512pt;}
.y1b_c00319{bottom:414.346501pt;}
.y1a_c00319{bottom:442.026490pt;}
.y19_c00319{bottom:469.546479pt;}
.y18_c00319{bottom:497.226468pt;}
.y17_c00319{bottom:524.746457pt;}
.y16_c00319{bottom:552.426446pt;}
.y15_c00319{bottom:579.946435pt;}
.y14_c00319{bottom:607.626424pt;}
.y13_c00319{bottom:635.146413pt;}
.y12_c00319{bottom:662.826402pt;}
.y11_c00319{bottom:690.346391pt;}
.y10_c00319{bottom:718.026379pt;}
.yf_c00319{bottom:745.546368pt;}
.ye_c00319{bottom:773.226357pt;}
.yd_c00319{bottom:800.746346pt;}
.yc_c00319{bottom:828.426335pt;}
.yb_c00319{bottom:855.946324pt;}
.ya_c00319{bottom:883.626313pt;}
.y8_c00319{bottom:911.146302pt;}
.y9_c00319{bottom:918.506299pt;}
.y7_c00319{bottom:938.826291pt;}
.y6_c00319{bottom:966.346280pt;}
.y5_c00319{bottom:994.026269pt;}
.y2_c00319{bottom:1028.586255pt;}
.y1_c00319{bottom:1063.146241pt;}
.h6_c00319{height:33.918736pt;}
.h5_c00319{height:42.084358pt;}
.h7_c00319{height:43.808420pt;}
.h2_c00319{height:48.558731pt;}
.h1_c00319{height:52.134354pt;}
.h4_c00319{height:62.781225pt;}
.h3_c00319{height:62.812475pt;}
.h0_c00319{height:1122.666667pt;}
.w0_c00319{width:793.333333pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:113.439955pt;}
.x6_c00319{left:122.079951pt;}
.x5_c00319{left:160.639738pt;}
.x3_c00319{left:241.919903pt;}
.x4_c00319{left:252.799899pt;}
.x2_c00319{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_accb3c9c0d16debc0b292cf5.woff2')format("woff");}.ff1_c00320{font-family:ff1_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:ff2_c00320;src:url('chunks/assets/font_a2d54454950671ab7003f802.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_66550e4c9f8e0db80d405dc4.woff2')format("woff");}.ff3_c00320{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls2_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.153901px;}
.ls1_c00320{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00320{word-spacing:-14.939994px;}
.ws0_c00320{word-spacing:-12.059995px;}
.ws1_c00320{word-spacing:-9.719996px;}
.ws3_c00320{word-spacing:0.000000px;}
._5_c00320{margin-left:-12.716934px;}
._1_c00320{margin-left:-1.105374px;}
._0_c00320{width:1.478392px;}
._2_c00320{width:6.469662px;}
._3_c00320{width:12.681829px;}
._4_c00320{width:14.552724px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs4_c00320{font-size:38.879984px;}
.fs3_c00320{font-size:48.239981px;}
.fs0_c00320{font-size:59.759976px;}
.fs1_c00320{font-size:66.239974px;}
.fs2_c00320{font-size:71.999971px;}
.y0_c00320{bottom:0.000000px;}
.y4_c00320{bottom:75.720270px;}
.y3_c00320{bottom:113.880254px;}
.y12_c00320{bottom:133.499947px;}
.y11_c00320{bottom:151.499939px;}
.y10_c00320{bottom:158.339937px;}
.yf_c00320{bottom:169.679932px;}
.ye_c00320{bottom:494.039802px;}
.yc_c00320{bottom:524.999790px;}
.yd_c00320{bottom:533.279787px;}
.yb_c00320{bottom:556.139778px;}
.ya_c00320{bottom:587.099765px;}
.y9_c00320{bottom:618.239753px;}
.y8_c00320{bottom:649.199740px;}
.y7_c00320{bottom:672.419731px;}
.y6_c00320{bottom:694.379722px;}
.y5_c00320{bottom:719.579712px;}
.y2_c00320{bottom:1175.879530px;}
.y1_c00320{bottom:1196.039522px;}
.h7_c00320{height:38.158578px;}
.h5_c00320{height:47.344903px;}
.h8_c00320{height:49.284472px;}
.h2_c00320{height:54.628572px;}
.h1_c00320{height:58.651148px;}
.h4_c00320{height:65.010911px;}
.h6_c00320{height:70.628878px;}
.h3_c00320{height:70.664034px;}
.h0_c00320{height:1263.000000px;}
.w0_c00320{width:892.500000px;}
.x0_c00320{left:0.000000px;}
.x5_c00320{left:127.800262px;}
.x7_c00320{left:131.399947px;}
.xd_c00320{left:137.519945px;}
.x9_c00320{left:180.899928px;}
.x1_c00320{left:181.979927px;}
.xa_c00320{left:273.239891px;}
.xb_c00320{left:285.479886px;}
.x2_c00320{left:329.219408px;}
.x8_c00320{left:395.999842px;}
.x4_c00320{left:434.159826px;}
.xc_c00320{left:446.579821px;}
.x6_c00320{left:720.359712px;}
.x3_c00320{left:765.539694px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls2_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.136801pt;}
.ls1_c00320{letter-spacing:0.168267pt;}
.ws2_c00320{word-spacing:-13.279995pt;}
.ws0_c00320{word-spacing:-10.719996pt;}
.ws1_c00320{word-spacing:-8.639997pt;}
.ws3_c00320{word-spacing:0.000000pt;}
._5_c00320{margin-left:-11.303941pt;}
._1_c00320{margin-left:-0.982555pt;}
._0_c00320{width:1.314126pt;}
._2_c00320{width:5.750811pt;}
._3_c00320{width:11.272737pt;}
._4_c00320{width:12.935755pt;}
.fs4_c00320{font-size:34.559986pt;}
.fs3_c00320{font-size:42.879983pt;}
.fs0_c00320{font-size:53.119979pt;}
.fs1_c00320{font-size:58.879976pt;}
.fs2_c00320{font-size:63.999974pt;}
.y0_c00320{bottom:0.000000pt;}
.y4_c00320{bottom:67.306906pt;}
.y3_c00320{bottom:101.226893pt;}
.y12_c00320{bottom:118.666619pt;}
.y11_c00320{bottom:134.666613pt;}
.y10_c00320{bottom:140.746610pt;}
.yf_c00320{bottom:150.826606pt;}
.ye_c00320{bottom:439.146491pt;}
.yc_c00320{bottom:466.666480pt;}
.yd_c00320{bottom:474.026477pt;}
.yb_c00320{bottom:494.346469pt;}
.ya_c00320{bottom:521.866458pt;}
.y9_c00320{bottom:549.546447pt;}
.y8_c00320{bottom:577.066436pt;}
.y7_c00320{bottom:597.706428pt;}
.y6_c00320{bottom:617.226420pt;}
.y5_c00320{bottom:639.626411pt;}
.y2_c00320{bottom:1045.226249pt;}
.y1_c00320{bottom:1063.146241pt;}
.h7_c00320{height:33.918736pt;}
.h5_c00320{height:42.084358pt;}
.h8_c00320{height:43.808420pt;}
.h2_c00320{height:48.558731pt;}
.h1_c00320{height:52.134354pt;}
.h4_c00320{height:57.787477pt;}
.h6_c00320{height:62.781225pt;}
.h3_c00320{height:62.812475pt;}
.h0_c00320{height:1122.666667pt;}
.w0_c00320{width:793.333333pt;}
.x0_c00320{left:0.000000pt;}
.x5_c00320{left:113.600233pt;}
.x7_c00320{left:116.799953pt;}
.xd_c00320{left:122.239951pt;}
.x9_c00320{left:160.799936pt;}
.x1_c00320{left:161.759935pt;}
.xa_c00320{left:242.879903pt;}
.xb_c00320{left:253.759898pt;}
.x2_c00320{left:292.639474pt;}
.x8_c00320{left:351.999859pt;}
.x4_c00320{left:385.919846pt;}
.xc_c00320{left:396.959841pt;}
.x6_c00320{left:640.319744pt;}
.x3_c00320{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95bc882102d08f4649d55165.woff2')format("woff");}.ff1_c00321{font-family:ff1_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:ff2_c00321;src:url('chunks/assets/font_2d9890cc5406fb0cc2da8c37.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_a0e8ec179fda657750dfd030.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;}
.m0_c00321{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls2_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:0.153901px;}
.ls1_c00321{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00321{word-spacing:-17.999993px;}
.ws2_c00321{word-spacing:-16.559993px;}
.ws4_c00321{word-spacing:-14.939994px;}
.ws1_c00321{word-spacing:-12.059995px;}
.ws3_c00321{word-spacing:-9.719996px;}
.ws5_c00321{word-spacing:0.000000px;}
._2_c00321{margin-left:-12.716934px;}
._1_c00321{margin-left:-1.105374px;}
._0_c00321{width:1.195563px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs4_c00321{font-size:38.879984px;}
.fs3_c00321{font-size:48.239981px;}
.fs0_c00321{font-size:59.759976px;}
.fs1_c00321{font-size:66.239974px;}
.fs2_c00321{font-size:71.999971px;}
.y0_c00321{bottom:0.000000px;}
.y4_c00321{bottom:75.719970px;}
.y3_c00321{bottom:113.879954px;}
.y13_c00321{bottom:133.499947px;}
.y12_c00321{bottom:151.859939px;}
.y11_c00321{bottom:169.859932px;}
.y10_c00321{bottom:176.699929px;}
.yf_c00321{bottom:188.039925px;}
.ye_c00321{bottom:209.999916px;}
.yd_c00321{bottom:231.779907px;}
.yc_c00321{bottom:257.159897px;}
.ya_c00321{bottom:661.079736px;}
.yb_c00321{bottom:669.359732px;}
.y9_c00321{bottom:692.039723px;}
.y8_c00321{bottom:723.179711px;}
.y7_c00321{bottom:746.399701px;}
.y6_c00321{bottom:768.179693px;}
.y5_c00321{bottom:793.559683px;}
.y2_c00321{bottom:1156.979537px;}
.y1_c00321{bottom:1195.859522px;}
.h6_c00321{height:38.158578px;}
.h5_c00321{height:47.321348px;}
.h7_c00321{height:49.284472px;}
.h2_c00321{height:54.628572px;}
.h1_c00321{height:58.651148px;}
.h4_c00321{height:65.010911px;}
.h3_c00321{height:70.664034px;}
.h0_c00321{height:1263.000000px;}
.w0_c00321{width:892.500000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:127.799949px;}
.xa_c00321{left:134.459946px;}
.xc_c00321{left:137.519945px;}
.x4_c00321{left:139.679944px;}
.x6_c00321{left:180.899928px;}
.xb_c00321{left:306.359877px;}
.x5_c00321{left:395.999842px;}
.x2_c00321{left:434.159514px;}
.x7_c00321{left:582.659767px;}
.x8_c00321{left:594.899762px;}
.x9_c00321{left:653.579739px;}
.x3_c00321{left:706.499717px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls2_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.136801pt;}
.ls1_c00321{letter-spacing:0.168267pt;}
.ws0_c00321{word-spacing:-15.999994pt;}
.ws2_c00321{word-spacing:-14.719994pt;}
.ws4_c00321{word-spacing:-13.279995pt;}
.ws1_c00321{word-spacing:-10.719996pt;}
.ws3_c00321{word-spacing:-8.639997pt;}
.ws5_c00321{word-spacing:0.000000pt;}
._2_c00321{margin-left:-11.303941pt;}
._1_c00321{margin-left:-0.982555pt;}
._0_c00321{width:1.062723pt;}
.fs4_c00321{font-size:34.559986pt;}
.fs3_c00321{font-size:42.879983pt;}
.fs0_c00321{font-size:53.119979pt;}
.fs1_c00321{font-size:58.879976pt;}
.fs2_c00321{font-size:63.999974pt;}
.y0_c00321{bottom:0.000000pt;}
.y4_c00321{bottom:67.306640pt;}
.y3_c00321{bottom:101.226626pt;}
.y13_c00321{bottom:118.666619pt;}
.y12_c00321{bottom:134.986613pt;}
.y11_c00321{bottom:150.986606pt;}
.y10_c00321{bottom:157.066604pt;}
.yf_c00321{bottom:167.146600pt;}
.ye_c00321{bottom:186.666592pt;}
.yd_c00321{bottom:206.026584pt;}
.yc_c00321{bottom:228.586575pt;}
.ya_c00321{bottom:587.626432pt;}
.yb_c00321{bottom:594.986429pt;}
.y9_c00321{bottom:615.146421pt;}
.y8_c00321{bottom:642.826410pt;}
.y7_c00321{bottom:663.466401pt;}
.y6_c00321{bottom:682.826394pt;}
.y5_c00321{bottom:705.386385pt;}
.y2_c00321{bottom:1028.426255pt;}
.y1_c00321{bottom:1062.986241pt;}
.h6_c00321{height:33.918736pt;}
.h5_c00321{height:42.063421pt;}
.h7_c00321{height:43.808420pt;}
.h2_c00321{height:48.558731pt;}
.h1_c00321{height:52.134354pt;}
.h4_c00321{height:57.787477pt;}
.h3_c00321{height:62.812475pt;}
.h0_c00321{height:1122.666667pt;}
.w0_c00321{width:793.333333pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:113.599955pt;}
.xa_c00321{left:119.519952pt;}
.xc_c00321{left:122.239951pt;}
.x4_c00321{left:124.159950pt;}
.x6_c00321{left:160.799936pt;}
.xb_c00321{left:272.319891pt;}
.x5_c00321{left:351.999859pt;}
.x2_c00321{left:385.919568pt;}
.x7_c00321{left:517.919793pt;}
.x8_c00321{left:528.799788pt;}
.x9_c00321{left:580.959768pt;}
.x3_c00321{left:627.999749pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f383afbc04947deea7e51ef1.woff2')format("woff");}.ff1_c00322{font-family:ff1_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:ff2_c00322;src:url('chunks/assets/font_220ed813de634ee471f71ea9.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_a1b4ba0992b535d1cf64e97e.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;}
.m0_c00322{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls2_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.153901px;}
.ls1_c00322{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00322{word-spacing:-16.559993px;}
.ws3_c00322{word-spacing:-14.939994px;}
.ws0_c00322{word-spacing:-12.059995px;}
.ws2_c00322{word-spacing:-9.719996px;}
.ws4_c00322{word-spacing:0.000000px;}
._5_c00322{margin-left:-12.716934px;}
._1_c00322{margin-left:-1.105374px;}
._0_c00322{width:1.478392px;}
._3_c00322{width:7.190101px;}
._4_c00322{width:8.325063px;}
._2_c00322{width:10.139119px;}
.fc0_c00322{color:rgb(0,0,0);}
.fs4_c00322{font-size:38.879984px;}
.fs3_c00322{font-size:48.239981px;}
.fs0_c00322{font-size:59.759976px;}
.fs1_c00322{font-size:66.239974px;}
.fs2_c00322{font-size:71.999971px;}
.y0_c00322{bottom:0.000000px;}
.y4_c00322{bottom:75.720270px;}
.y3_c00322{bottom:113.880254px;}
.y18_c00322{bottom:133.499947px;}
.y17_c00322{bottom:151.859939px;}
.y16_c00322{bottom:169.859932px;}
.y15_c00322{bottom:176.699929px;}
.y14_c00322{bottom:187.499925px;}
.y13_c00322{bottom:205.319918px;}
.y12_c00322{bottom:212.159915px;}
.y11_c00322{bottom:223.499911px;}
.y10_c00322{bottom:494.939802px;}
.ye_c00322{bottom:525.899790px;}
.yf_c00322{bottom:534.179786px;}
.yd_c00322{bottom:557.039777px;}
.yc_c00322{bottom:587.999765px;}
.yb_c00322{bottom:611.939755px;}
.ya_c00322{bottom:635.159746px;}
.y9_c00322{bottom:656.939737px;}
.y8_c00322{bottom:682.139727px;}
.y6_c00322{bottom:1105.319558px;}
.y7_c00322{bottom:1113.599555px;}
.y5_c00322{bottom:1136.279545px;}
.y2_c00322{bottom:1175.879530px;}
.y1_c00322{bottom:1196.039522px;}
.h6_c00322{height:38.158578px;}
.h4_c00322{height:47.344903px;}
.h7_c00322{height:49.284472px;}
.h2_c00322{height:54.628572px;}
.h1_c00322{height:58.651148px;}
.h5_c00322{height:65.010911px;}
.h3_c00322{height:70.664034px;}
.h0_c00322{height:1263.000000px;}
.w0_c00322{width:892.500000px;}
.x0_c00322{left:0.000000px;}
.x5_c00322{left:127.800262px;}
.xe_c00322{left:137.519945px;}
.xa_c00322{left:147.599941px;}
.x6_c00322{left:180.899928px;}
.x1_c00322{left:181.979927px;}
.x2_c00322{left:329.219408px;}
.xb_c00322{left:332.459867px;}
.xc_c00322{left:371.159852px;}
.xd_c00322{left:383.399847px;}
.x4_c00322{left:434.159826px;}
.x9_c00322{left:680.579728px;}
.x7_c00322{left:723.599711px;}
.x8_c00322{left:735.839706px;}
.x3_c00322{left:765.539694px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls2_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.136801pt;}
.ls1_c00322{letter-spacing:0.168267pt;}
.ws1_c00322{word-spacing:-14.719994pt;}
.ws3_c00322{word-spacing:-13.279995pt;}
.ws0_c00322{word-spacing:-10.719996pt;}
.ws2_c00322{word-spacing:-8.639997pt;}
.ws4_c00322{word-spacing:0.000000pt;}
._5_c00322{margin-left:-11.303941pt;}
._1_c00322{margin-left:-0.982555pt;}
._0_c00322{width:1.314126pt;}
._3_c00322{width:6.391201pt;}
._4_c00322{width:7.400056pt;}
._2_c00322{width:9.012551pt;}
.fs4_c00322{font-size:34.559986pt;}
.fs3_c00322{font-size:42.879983pt;}
.fs0_c00322{font-size:53.119979pt;}
.fs1_c00322{font-size:58.879976pt;}
.fs2_c00322{font-size:63.999974pt;}
.y0_c00322{bottom:0.000000pt;}
.y4_c00322{bottom:67.306906pt;}
.y3_c00322{bottom:101.226893pt;}
.y18_c00322{bottom:118.666619pt;}
.y17_c00322{bottom:134.986613pt;}
.y16_c00322{bottom:150.986606pt;}
.y15_c00322{bottom:157.066604pt;}
.y14_c00322{bottom:166.666600pt;}
.y13_c00322{bottom:182.506594pt;}
.y12_c00322{bottom:188.586591pt;}
.y11_c00322{bottom:198.666587pt;}
.y10_c00322{bottom:439.946491pt;}
.ye_c00322{bottom:467.466480pt;}
.yf_c00322{bottom:474.826477pt;}
.yd_c00322{bottom:495.146469pt;}
.yc_c00322{bottom:522.666458pt;}
.yb_c00322{bottom:543.946449pt;}
.ya_c00322{bottom:564.586441pt;}
.y9_c00322{bottom:583.946433pt;}
.y8_c00322{bottom:606.346424pt;}
.y6_c00322{bottom:982.506274pt;}
.y7_c00322{bottom:989.866271pt;}
.y5_c00322{bottom:1010.026263pt;}
.y2_c00322{bottom:1045.226249pt;}
.y1_c00322{bottom:1063.146241pt;}
.h6_c00322{height:33.918736pt;}
.h4_c00322{height:42.084358pt;}
.h7_c00322{height:43.808420pt;}
.h2_c00322{height:48.558731pt;}
.h1_c00322{height:52.134354pt;}
.h5_c00322{height:57.787477pt;}
.h3_c00322{height:62.812475pt;}
.h0_c00322{height:1122.666667pt;}
.w0_c00322{width:793.333333pt;}
.x0_c00322{left:0.000000pt;}
.x5_c00322{left:113.600233pt;}
.xe_c00322{left:122.239951pt;}
.xa_c00322{left:131.199948pt;}
.x6_c00322{left:160.799936pt;}
.x1_c00322{left:161.759935pt;}
.x2_c00322{left:292.639474pt;}
.xb_c00322{left:295.519882pt;}
.xc_c00322{left:329.919868pt;}
.xd_c00322{left:340.799864pt;}
.x4_c00322{left:385.919846pt;}
.x9_c00322{left:604.959758pt;}
.x7_c00322{left:643.199743pt;}
.x8_c00322{left:654.079738pt;}
.x3_c00322{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aef236b41521103731820da.woff2')format("woff");}.ff1_c00323{font-family:ff1_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:ff2_c00323;src:url('chunks/assets/font_e93bd31560f9ffcdfba87114.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_3202a99ed682273816682b54.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00323{font-family:ff4_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;}
.m0_c00323{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls1_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:2.171879px;}
.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:-17.999993px;}
.ws1_c00323{word-spacing:0.000000px;}
._1_c00323{margin-left:-1.105374px;}
._0_c00323{width:1.195563px;}
._4_c00323{width:2.842799px;}
._6_c00323{width:8.499621px;}
._5_c00323{width:9.511037px;}
._2_c00323{width:13.762482px;}
._3_c00323{width:14.929960px;}
._9_c00323{width:16.168336px;}
._a_c00323{width:19.681997px;}
._7_c00323{width:22.816213px;}
._8_c00323{width:24.257120px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs0_c00323{font-size:59.759976px;}
.fs1_c00323{font-size:66.239974px;}
.fs2_c00323{font-size:71.999971px;}
.y0_c00323{bottom:0.000000px;}
.y4_c00323{bottom:75.719970px;}
.y3_c00323{bottom:113.879954px;}
.y12_c00323{bottom:214.679914px;}
.y11_c00323{bottom:245.639902px;}
.y10_c00323{bottom:276.779889px;}
.yf_c00323{bottom:307.739877px;}
.ye_c00323{bottom:338.879864px;}
.yd_c00323{bottom:369.839852px;}
.yc_c00323{bottom:400.979840px;}
.yb_c00323{bottom:431.939827px;}
.ya_c00323{bottom:463.079815px;}
.y9_c00323{bottom:494.039802px;}
.y8_c00323{bottom:525.179790px;}
.y7_c00323{bottom:548.399781px;}
.y6_c00323{bottom:570.179772px;}
.y5_c00323{bottom:595.559762px;}
.y2_c00323{bottom:1156.979537px;}
.y1_c00323{bottom:1195.859522px;}
.h2_c00323{height:54.628572px;}
.h1_c00323{height:58.651148px;}
.h4_c00323{height:65.010911px;}
.h5_c00323{height:70.628878px;}
.h3_c00323{height:70.664034px;}
.h0_c00323{height:1263.000000px;}
.w0_c00323{width:892.500000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:127.799949px;}
.x4_c00323{left:138.599945px;}
.x6_c00323{left:180.899930px;}
.x5_c00323{left:422.999831px;}
.x2_c00323{left:434.159514px;}
.x3_c00323{left:682.919727px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls1_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:1.930559pt;}
.ws0_c00323{word-spacing:-15.999994pt;}
.ws1_c00323{word-spacing:0.000000pt;}
._1_c00323{margin-left:-0.982555pt;}
._0_c00323{width:1.062723pt;}
._4_c00323{width:2.526932pt;}
._6_c00323{width:7.555219pt;}
._5_c00323{width:8.454255pt;}
._2_c00323{width:12.233317pt;}
._3_c00323{width:13.271076pt;}
._9_c00323{width:14.371854pt;}
._a_c00323{width:17.495108pt;}
._7_c00323{width:20.281078pt;}
._8_c00323{width:21.561884pt;}
.fs0_c00323{font-size:53.119979pt;}
.fs1_c00323{font-size:58.879976pt;}
.fs2_c00323{font-size:63.999974pt;}
.y0_c00323{bottom:0.000000pt;}
.y4_c00323{bottom:67.306640pt;}
.y3_c00323{bottom:101.226626pt;}
.y12_c00323{bottom:190.826590pt;}
.y11_c00323{bottom:218.346579pt;}
.y10_c00323{bottom:246.026568pt;}
.yf_c00323{bottom:273.546557pt;}
.ye_c00323{bottom:301.226546pt;}
.yd_c00323{bottom:328.746535pt;}
.yc_c00323{bottom:356.426524pt;}
.yb_c00323{bottom:383.946513pt;}
.ya_c00323{bottom:411.626502pt;}
.y9_c00323{bottom:439.146491pt;}
.y8_c00323{bottom:466.826480pt;}
.y7_c00323{bottom:487.466472pt;}
.y6_c00323{bottom:506.826464pt;}
.y5_c00323{bottom:529.386455pt;}
.y2_c00323{bottom:1028.426255pt;}
.y1_c00323{bottom:1062.986241pt;}
.h2_c00323{height:48.558731pt;}
.h1_c00323{height:52.134354pt;}
.h4_c00323{height:57.787477pt;}
.h5_c00323{height:62.781225pt;}
.h3_c00323{height:62.812475pt;}
.h0_c00323{height:1122.666667pt;}
.w0_c00323{width:793.333333pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:113.599955pt;}
.x4_c00323{left:123.199951pt;}
.x6_c00323{left:160.799938pt;}
.x5_c00323{left:375.999850pt;}
.x2_c00323{left:385.919568pt;}
.x3_c00323{left:607.039757pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16564c9d143dec869de6de9e.woff2')format("woff");}.ff1_c00324{font-family:ff1_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:ff2_c00324;src:url('chunks/assets/font_e93bd31560f9ffcdfba87114.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_91f1534e600c91aed772d861.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00324{font-family:ff4_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;}
.m0_c00324{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls3_c00324{letter-spacing:0.000000px;}
.ls1_c00324{letter-spacing:0.153901px;}
.ls2_c00324{letter-spacing:0.189300px;}
.ls0_c00324{letter-spacing:8.655717px;}
.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;}
}
.ws0_c00324{word-spacing:-17.999993px;}
.ws3_c00324{word-spacing:-14.939994px;}
.ws1_c00324{word-spacing:-12.059995px;}
.ws2_c00324{word-spacing:-9.719996px;}
.ws4_c00324{word-spacing:0.000000px;}
._c_c00324{margin-left:-12.716934px;}
._1_c00324{margin-left:-1.105374px;}
._0_c00324{width:1.478392px;}
._a_c00324{width:7.813264px;}
._5_c00324{width:9.416276px;}
._6_c00324{width:10.587892px;}
._7_c00324{width:11.663830px;}
._4_c00324{width:12.838242px;}
._2_c00324{width:13.912596px;}
._3_c00324{width:15.144019px;}
._b_c00324{width:23.046578px;}
._9_c00324{width:29.567070px;}
._8_c00324{width:30.601626px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs4_c00324{font-size:38.879984px;}
.fs3_c00324{font-size:48.239981px;}
.fs0_c00324{font-size:59.759976px;}
.fs1_c00324{font-size:66.239974px;}
.fs2_c00324{font-size:71.999971px;}
.y0_c00324{bottom:0.000000px;}
.y4_c00324{bottom:75.720270px;}
.y3_c00324{bottom:113.880254px;}
.y1e_c00324{bottom:133.499947px;}
.y1d_c00324{bottom:151.859939px;}
.y1c_c00324{bottom:169.859932px;}
.y1b_c00324{bottom:176.699929px;}
.y1a_c00324{bottom:187.139925px;}
.y19_c00324{bottom:204.419918px;}
.y18_c00324{bottom:211.259915px;}
.y17_c00324{bottom:222.419911px;}
.y16_c00324{bottom:354.359858px;}
.y14_c00324{bottom:385.319846px;}
.y15_c00324{bottom:393.599843px;}
.y13_c00324{bottom:416.459833px;}
.y12_c00324{bottom:447.419821px;}
.y11_c00324{bottom:478.559809px;}
.y10_c00324{bottom:509.519796px;}
.yf_c00324{bottom:540.659784px;}
.ye_c00324{bottom:571.619771px;}
.yd_c00324{bottom:602.579759px;}
.yc_c00324{bottom:633.719747px;}
.yb_c00324{bottom:656.939737px;}
.ya_c00324{bottom:678.719729px;}
.y9_c00324{bottom:708.419717px;}
.y8_c00324{bottom:735.059706px;}
.y6_c00324{bottom:1105.319558px;}
.y7_c00324{bottom:1113.599555px;}
.y5_c00324{bottom:1136.279545px;}
.y2_c00324{bottom:1175.879530px;}
.y1_c00324{bottom:1196.039522px;}
.h7_c00324{height:38.158578px;}
.h4_c00324{height:47.321348px;}
.h8_c00324{height:49.284472px;}
.h2_c00324{height:54.628572px;}
.h1_c00324{height:58.651148px;}
.h6_c00324{height:65.010911px;}
.h3_c00324{height:70.628878px;}
.h5_c00324{height:70.664034px;}
.h0_c00324{height:1263.000000px;}
.w0_c00324{width:892.500000px;}
.x0_c00324{left:0.000000px;}
.x5_c00324{left:127.800262px;}
.xa_c00324{left:135.179946px;}
.xe_c00324{left:137.519945px;}
.x6_c00324{left:180.899928px;}
.x1_c00324{left:181.979927px;}
.x7_c00324{left:234.359906px;}
.x8_c00324{left:246.599901px;}
.x2_c00324{left:329.219408px;}
.xb_c00324{left:413.099835px;}
.x4_c00324{left:434.159826px;}
.xc_c00324{left:510.839796px;}
.xd_c00324{left:523.079791px;}
.x9_c00324{left:698.579721px;}
.x3_c00324{left:765.539694px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls3_c00324{letter-spacing:0.000000pt;}
.ls1_c00324{letter-spacing:0.136801pt;}
.ls2_c00324{letter-spacing:0.168267pt;}
.ls0_c00324{letter-spacing:7.693970pt;}
.ws0_c00324{word-spacing:-15.999994pt;}
.ws3_c00324{word-spacing:-13.279995pt;}
.ws1_c00324{word-spacing:-10.719996pt;}
.ws2_c00324{word-spacing:-8.639997pt;}
.ws4_c00324{word-spacing:0.000000pt;}
._c_c00324{margin-left:-11.303941pt;}
._1_c00324{margin-left:-0.982555pt;}
._0_c00324{width:1.314126pt;}
._a_c00324{width:6.945124pt;}
._5_c00324{width:8.370023pt;}
._6_c00324{width:9.411460pt;}
._7_c00324{width:10.367849pt;}
._4_c00324{width:11.411771pt;}
._2_c00324{width:12.366752pt;}
._3_c00324{width:13.461350pt;}
._b_c00324{width:20.485847pt;}
._9_c00324{width:26.281840pt;}
._8_c00324{width:27.201445pt;}
.fs4_c00324{font-size:34.559986pt;}
.fs3_c00324{font-size:42.879983pt;}
.fs0_c00324{font-size:53.119979pt;}
.fs1_c00324{font-size:58.879976pt;}
.fs2_c00324{font-size:63.999974pt;}
.y0_c00324{bottom:0.000000pt;}
.y4_c00324{bottom:67.306906pt;}
.y3_c00324{bottom:101.226893pt;}
.y1e_c00324{bottom:118.666619pt;}
.y1d_c00324{bottom:134.986613pt;}
.y1c_c00324{bottom:150.986606pt;}
.y1b_c00324{bottom:157.066604pt;}
.y1a_c00324{bottom:166.346600pt;}
.y19_c00324{bottom:181.706594pt;}
.y18_c00324{bottom:187.786592pt;}
.y17_c00324{bottom:197.706588pt;}
.y16_c00324{bottom:314.986541pt;}
.y14_c00324{bottom:342.506530pt;}
.y15_c00324{bottom:349.866527pt;}
.y13_c00324{bottom:370.186519pt;}
.y12_c00324{bottom:397.706508pt;}
.y11_c00324{bottom:425.386497pt;}
.y10_c00324{bottom:452.906486pt;}
.yf_c00324{bottom:480.586474pt;}
.ye_c00324{bottom:508.106463pt;}
.yd_c00324{bottom:535.626452pt;}
.yc_c00324{bottom:563.306441pt;}
.yb_c00324{bottom:583.946433pt;}
.ya_c00324{bottom:603.306425pt;}
.y9_c00324{bottom:629.706415pt;}
.y8_c00324{bottom:653.386405pt;}
.y6_c00324{bottom:982.506274pt;}
.y7_c00324{bottom:989.866271pt;}
.y5_c00324{bottom:1010.026263pt;}
.y2_c00324{bottom:1045.226249pt;}
.y1_c00324{bottom:1063.146241pt;}
.h7_c00324{height:33.918736pt;}
.h4_c00324{height:42.063421pt;}
.h8_c00324{height:43.808420pt;}
.h2_c00324{height:48.558731pt;}
.h1_c00324{height:52.134354pt;}
.h6_c00324{height:57.787477pt;}
.h3_c00324{height:62.781225pt;}
.h5_c00324{height:62.812475pt;}
.h0_c00324{height:1122.666667pt;}
.w0_c00324{width:793.333333pt;}
.x0_c00324{left:0.000000pt;}
.x5_c00324{left:113.600233pt;}
.xa_c00324{left:120.159952pt;}
.xe_c00324{left:122.239951pt;}
.x6_c00324{left:160.799936pt;}
.x1_c00324{left:161.759935pt;}
.x7_c00324{left:208.319917pt;}
.x8_c00324{left:219.199912pt;}
.x2_c00324{left:292.639474pt;}
.xb_c00324{left:367.199853pt;}
.x4_c00324{left:385.919846pt;}
.xc_c00324{left:454.079818pt;}
.xd_c00324{left:464.959814pt;}
.x9_c00324{left:620.959752pt;}
.x3_c00324{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8663cbd8014df2300b75d65c.woff2')format("woff");}.ff1_c00325{font-family:ff1_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:ff2_c00325;src:url('chunks/assets/font_5983cad38ae0b4e23ed44d7b.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_35c97becba83cdbb60d353a0.woff2')format("woff");}.ff3_c00325{font-family:ff3_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;}
.m0_c00325{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls2_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.153901px;}
.ls1_c00325{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00325{word-spacing:-14.939994px;}
.ws0_c00325{word-spacing:-12.059995px;}
.ws1_c00325{word-spacing:-9.719996px;}
.ws3_c00325{word-spacing:0.000000px;}
._e_c00325{margin-left:-12.716934px;}
._1_c00325{margin-left:-1.105374px;}
._0_c00325{width:1.195563px;}
._8_c00325{width:5.683018px;}
._7_c00325{width:7.100473px;}
._9_c00325{width:9.529311px;}
._6_c00325{width:10.666221px;}
._4_c00325{width:11.708644px;}
._5_c00325{width:12.912003px;}
._a_c00325{width:19.927406px;}
._b_c00325{width:21.056741px;}
._c_c00325{width:23.778795px;}
._d_c00325{width:25.028616px;}
._3_c00325{width:34.662311px;}
._2_c00325{width:36.007082px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs4_c00325{font-size:38.879984px;}
.fs3_c00325{font-size:48.239981px;}
.fs0_c00325{font-size:59.759976px;}
.fs1_c00325{font-size:66.239974px;}
.fs2_c00325{font-size:71.999971px;}
.y0_c00325{bottom:0.000000px;}
.y4_c00325{bottom:75.719970px;}
.y3_c00325{bottom:113.879954px;}
.y1c_c00325{bottom:133.499947px;}
.y1b_c00325{bottom:151.499939px;}
.y1a_c00325{bottom:158.339937px;}
.y19_c00325{bottom:169.679932px;}
.y18_c00325{bottom:218.099913px;}
.y17_c00325{bottom:249.059900px;}
.y15_c00325{bottom:280.199888px;}
.y16_c00325{bottom:288.479885px;}
.y14_c00325{bottom:311.159876px;}
.y13_c00325{bottom:342.299863px;}
.y12_c00325{bottom:373.259851px;}
.y11_c00325{bottom:404.399838px;}
.y10_c00325{bottom:435.359826px;}
.yf_c00325{bottom:466.499813px;}
.ye_c00325{bottom:497.459801px;}
.yd_c00325{bottom:528.599789px;}
.yc_c00325{bottom:559.559776px;}
.yb_c00325{bottom:590.699764px;}
.ya_c00325{bottom:621.659751px;}
.y9_c00325{bottom:652.799739px;}
.y8_c00325{bottom:676.019730px;}
.y7_c00325{bottom:697.799721px;}
.y6_c00325{bottom:727.499709px;}
.y5_c00325{bottom:754.319698px;}
.y2_c00325{bottom:1156.979537px;}
.y1_c00325{bottom:1195.859522px;}
.h7_c00325{height:38.158578px;}
.h6_c00325{height:47.321348px;}
.h8_c00325{height:49.284472px;}
.h2_c00325{height:54.628572px;}
.h1_c00325{height:58.651148px;}
.h4_c00325{height:65.010911px;}
.h5_c00325{height:70.628878px;}
.h3_c00325{height:70.664034px;}
.h0_c00325{height:1263.000000px;}
.w0_c00325{width:892.500000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:127.799949px;}
.x4_c00325{left:134.639946px;}
.x9_c00325{left:137.519945px;}
.x6_c00325{left:180.899928px;}
.x5_c00325{left:386.099846px;}
.x2_c00325{left:434.159514px;}
.x3_c00325{left:690.659724px;}
.x7_c00325{left:749.339700px;}
.x8_c00325{left:761.579695px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls2_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.136801pt;}
.ls1_c00325{letter-spacing:0.168267pt;}
.ws2_c00325{word-spacing:-13.279995pt;}
.ws0_c00325{word-spacing:-10.719996pt;}
.ws1_c00325{word-spacing:-8.639997pt;}
.ws3_c00325{word-spacing:0.000000pt;}
._e_c00325{margin-left:-11.303941pt;}
._1_c00325{margin-left:-0.982555pt;}
._0_c00325{width:1.062723pt;}
._8_c00325{width:5.051572pt;}
._7_c00325{width:6.311531pt;}
._9_c00325{width:8.470499pt;}
._6_c00325{width:9.481085pt;}
._4_c00325{width:10.407683pt;}
._5_c00325{width:11.477336pt;}
._a_c00325{width:17.713250pt;}
._b_c00325{width:18.717104pt;}
._c_c00325{width:21.136707pt;}
._d_c00325{width:22.247659pt;}
._3_c00325{width:30.810943pt;}
._2_c00325{width:32.006295pt;}
.fs4_c00325{font-size:34.559986pt;}
.fs3_c00325{font-size:42.879983pt;}
.fs0_c00325{font-size:53.119979pt;}
.fs1_c00325{font-size:58.879976pt;}
.fs2_c00325{font-size:63.999974pt;}
.y0_c00325{bottom:0.000000pt;}
.y4_c00325{bottom:67.306640pt;}
.y3_c00325{bottom:101.226626pt;}
.y1c_c00325{bottom:118.666619pt;}
.y1b_c00325{bottom:134.666613pt;}
.y1a_c00325{bottom:140.746610pt;}
.y19_c00325{bottom:150.826606pt;}
.y18_c00325{bottom:193.866589pt;}
.y17_c00325{bottom:221.386578pt;}
.y15_c00325{bottom:249.066567pt;}
.y16_c00325{bottom:256.426564pt;}
.y14_c00325{bottom:276.586556pt;}
.y13_c00325{bottom:304.266545pt;}
.y12_c00325{bottom:331.786534pt;}
.y11_c00325{bottom:359.466523pt;}
.y10_c00325{bottom:386.986512pt;}
.yf_c00325{bottom:414.666501pt;}
.ye_c00325{bottom:442.186490pt;}
.yd_c00325{bottom:469.866479pt;}
.yc_c00325{bottom:497.386468pt;}
.yb_c00325{bottom:525.066457pt;}
.ya_c00325{bottom:552.586446pt;}
.y9_c00325{bottom:580.266435pt;}
.y8_c00325{bottom:600.906426pt;}
.y7_c00325{bottom:620.266419pt;}
.y6_c00325{bottom:646.666408pt;}
.y5_c00325{bottom:670.506398pt;}
.y2_c00325{bottom:1028.426255pt;}
.y1_c00325{bottom:1062.986241pt;}
.h7_c00325{height:33.918736pt;}
.h6_c00325{height:42.063421pt;}
.h8_c00325{height:43.808420pt;}
.h2_c00325{height:48.558731pt;}
.h1_c00325{height:52.134354pt;}
.h4_c00325{height:57.787477pt;}
.h5_c00325{height:62.781225pt;}
.h3_c00325{height:62.812475pt;}
.h0_c00325{height:1122.666667pt;}
.w0_c00325{width:793.333333pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:113.599955pt;}
.x4_c00325{left:119.679952pt;}
.x9_c00325{left:122.239951pt;}
.x6_c00325{left:160.799936pt;}
.x5_c00325{left:343.199863pt;}
.x2_c00325{left:385.919568pt;}
.x3_c00325{left:613.919754pt;}
.x7_c00325{left:666.079734pt;}
.x8_c00325{left:676.959729pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88f9d791b5439868a1a0172d.woff2')format("woff");}.ff1_c00326{font-family:ff1_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:ff2_c00326;src:url('chunks/assets/font_8d5e0afbe0dbfa3039540a38.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_808d1f9763a8780c8bfdd685.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;}
.m0_c00326{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls4_c00326{letter-spacing:0.000000px;}
.ls2_c00326{letter-spacing:0.011169px;}
.ls1_c00326{letter-spacing:0.153901px;}
.ls3_c00326{letter-spacing:0.189300px;}
.ls0_c00326{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00326{word-spacing:-14.939994px;}
.ws0_c00326{word-spacing:-12.434276px;}
.ws1_c00326{word-spacing:-9.731165px;}
.ws3_c00326{word-spacing:0.000000px;}
._d_c00326{margin-left:-12.716934px;}
._b_c00326{margin-left:-2.236666px;}
._1_c00326{margin-left:-1.105374px;}
._0_c00326{width:1.478392px;}
._9_c00326{width:4.018997px;}
._8_c00326{width:5.029955px;}
._5_c00326{width:10.388268px;}
._6_c00326{width:11.832839px;}
._7_c00326{width:13.256498px;}
._a_c00326{width:15.094683px;}
._c_c00326{width:16.153935px;}
._2_c00326{width:21.598592px;}
._3_c00326{width:27.494333px;}
._4_c00326{width:28.597396px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs4_c00326{font-size:38.879984px;}
.fs3_c00326{font-size:48.239981px;}
.fs0_c00326{font-size:59.759976px;}
.fs1_c00326{font-size:66.239974px;}
.fs2_c00326{font-size:71.999971px;}
.y0_c00326{bottom:0.000000px;}
.y4_c00326{bottom:75.720270px;}
.y3_c00326{bottom:113.880254px;}
.y1c_c00326{bottom:133.499947px;}
.y1b_c00326{bottom:151.859939px;}
.y1a_c00326{bottom:169.859932px;}
.y19_c00326{bottom:176.699929px;}
.y18_c00326{bottom:188.039925px;}
.y17_c00326{bottom:221.699911px;}
.y16_c00326{bottom:252.839899px;}
.y15_c00326{bottom:283.799886px;}
.y14_c00326{bottom:314.939874px;}
.y13_c00326{bottom:345.899862px;}
.y12_c00326{bottom:377.039849px;}
.y11_c00326{bottom:407.999837px;}
.y10_c00326{bottom:439.139824px;}
.yf_c00326{bottom:470.099812px;}
.ye_c00326{bottom:493.319803px;}
.yd_c00326{bottom:515.279794px;}
.yc_c00326{bottom:540.479784px;}
.yb_c00326{bottom:816.419673px;}
.y9_c00326{bottom:1012.079595px;}
.ya_c00326{bottom:1020.359592px;}
.y8_c00326{bottom:1043.219583px;}
.y7_c00326{bottom:1074.179570px;}
.y6_c00326{bottom:1105.319558px;}
.y5_c00326{bottom:1136.279545px;}
.y2_c00326{bottom:1175.879530px;}
.y1_c00326{bottom:1196.039522px;}
.h7_c00326{height:38.158578px;}
.h5_c00326{height:47.321348px;}
.h8_c00326{height:49.284472px;}
.h2_c00326{height:54.628572px;}
.h1_c00326{height:58.651148px;}
.h6_c00326{height:65.010911px;}
.h4_c00326{height:70.628878px;}
.h3_c00326{height:70.664034px;}
.h0_c00326{height:1263.000000px;}
.w0_c00326{width:892.500000px;}
.x0_c00326{left:0.000000px;}
.x5_c00326{left:127.800262px;}
.xa_c00326{left:140.939944px;}
.xc_c00326{left:142.379943px;}
.x6_c00326{left:180.899630px;}
.x1_c00326{left:181.979927px;}
.x2_c00326{left:329.219408px;}
.x7_c00326{left:348.299861px;}
.xb_c00326{left:395.999842px;}
.x4_c00326{left:434.159826px;}
.x9_c00326{left:710.999716px;}
.x8_c00326{left:731.159708px;}
.x3_c00326{left:765.539694px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls4_c00326{letter-spacing:0.000000pt;}
.ls2_c00326{letter-spacing:0.009928pt;}
.ls1_c00326{letter-spacing:0.136801pt;}
.ls3_c00326{letter-spacing:0.168267pt;}
.ls0_c00326{letter-spacing:0.332694pt;}
.ws2_c00326{word-spacing:-13.279995pt;}
.ws0_c00326{word-spacing:-11.052689pt;}
.ws1_c00326{word-spacing:-8.649924pt;}
.ws3_c00326{word-spacing:0.000000pt;}
._d_c00326{margin-left:-11.303941pt;}
._b_c00326{margin-left:-1.988148pt;}
._1_c00326{margin-left:-0.982555pt;}
._0_c00326{width:1.314126pt;}
._9_c00326{width:3.572442pt;}
._8_c00326{width:4.471071pt;}
._5_c00326{width:9.234016pt;}
._6_c00326{width:10.518079pt;}
._7_c00326{width:11.783554pt;}
._a_c00326{width:13.417496pt;}
._c_c00326{width:14.359053pt;}
._2_c00326{width:19.198748pt;}
._3_c00326{width:24.439407pt;}
._4_c00326{width:25.419908pt;}
.fs4_c00326{font-size:34.559986pt;}
.fs3_c00326{font-size:42.879983pt;}
.fs0_c00326{font-size:53.119979pt;}
.fs1_c00326{font-size:58.879976pt;}
.fs2_c00326{font-size:63.999974pt;}
.y0_c00326{bottom:0.000000pt;}
.y4_c00326{bottom:67.306906pt;}
.y3_c00326{bottom:101.226893pt;}
.y1c_c00326{bottom:118.666619pt;}
.y1b_c00326{bottom:134.986613pt;}
.y1a_c00326{bottom:150.986606pt;}
.y19_c00326{bottom:157.066604pt;}
.y18_c00326{bottom:167.146600pt;}
.y17_c00326{bottom:197.066588pt;}
.y16_c00326{bottom:224.746577pt;}
.y15_c00326{bottom:252.266566pt;}
.y14_c00326{bottom:279.946555pt;}
.y13_c00326{bottom:307.466544pt;}
.y12_c00326{bottom:335.146533pt;}
.y11_c00326{bottom:362.666522pt;}
.y10_c00326{bottom:390.346511pt;}
.yf_c00326{bottom:417.866500pt;}
.ye_c00326{bottom:438.506491pt;}
.yd_c00326{bottom:458.026483pt;}
.yc_c00326{bottom:480.426474pt;}
.yb_c00326{bottom:725.706376pt;}
.y9_c00326{bottom:899.626307pt;}
.ya_c00326{bottom:906.986304pt;}
.y8_c00326{bottom:927.306296pt;}
.y7_c00326{bottom:954.826285pt;}
.y6_c00326{bottom:982.506274pt;}
.y5_c00326{bottom:1010.026263pt;}
.y2_c00326{bottom:1045.226249pt;}
.y1_c00326{bottom:1063.146241pt;}
.h7_c00326{height:33.918736pt;}
.h5_c00326{height:42.063421pt;}
.h8_c00326{height:43.808420pt;}
.h2_c00326{height:48.558731pt;}
.h1_c00326{height:52.134354pt;}
.h6_c00326{height:57.787477pt;}
.h4_c00326{height:62.781225pt;}
.h3_c00326{height:62.812475pt;}
.h0_c00326{height:1122.666667pt;}
.w0_c00326{width:793.333333pt;}
.x0_c00326{left:0.000000pt;}
.x5_c00326{left:113.600233pt;}
.xa_c00326{left:125.279950pt;}
.xc_c00326{left:126.559949pt;}
.x6_c00326{left:160.799671pt;}
.x1_c00326{left:161.759935pt;}
.x2_c00326{left:292.639474pt;}
.x7_c00326{left:309.599876pt;}
.xb_c00326{left:351.999859pt;}
.x4_c00326{left:385.919846pt;}
.x9_c00326{left:631.999747pt;}
.x8_c00326{left:649.919740pt;}
.x3_c00326{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39948b421f572aef165ad6b7.woff2')format("woff");}.ff1_c00327{font-family:ff1_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:ff2_c00327;src:url('chunks/assets/font_0d4d5dfd2ac4b7dd69d3cae6.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_4aaf6ad998b1df897e249a7c.woff2')format("woff");}.ff3_c00327{font-family:ff3_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:ff4_c00327;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00327{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00327{vertical-align:-33.119987px;}
.v0_c00327{vertical-align:0.000000px;}
.ls3_c00327{letter-spacing:0.000000px;}
.ls1_c00327{letter-spacing:0.011169px;}
.ls2_c00327{letter-spacing:0.189300px;}
.ls0_c00327{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00327{word-spacing:-17.999993px;}
.ws3_c00327{word-spacing:-14.939994px;}
.ws1_c00327{word-spacing:-12.434276px;}
.ws2_c00327{word-spacing:-9.731165px;}
.ws4_c00327{word-spacing:0.000000px;}
._f_c00327{margin-left:-10.014520px;}
._a_c00327{margin-left:-2.372514px;}
._1_c00327{margin-left:-1.105374px;}
._0_c00327{width:1.195563px;}
._3_c00327{width:2.233254px;}
._b_c00327{width:3.381714px;}
._2_c00327{width:4.382788px;}
._4_c00327{width:5.972391px;}
._c_c00327{width:7.995485px;}
._d_c00327{width:9.116671px;}
._e_c00327{width:14.067111px;}
._9_c00327{width:15.132474px;}
._8_c00327{width:16.846159px;}
._5_c00327{width:20.108084px;}
._7_c00327{width:21.660550px;}
._6_c00327{width:22.705178px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs4_c00327{font-size:38.879984px;}
.fs3_c00327{font-size:48.239981px;}
.fs0_c00327{font-size:59.759976px;}
.fs1_c00327{font-size:66.239974px;}
.fs2_c00327{font-size:71.999971px;}
.y0_c00327{bottom:0.000000px;}
.y4_c00327{bottom:75.899970px;}
.y3_c00327{bottom:114.059954px;}
.y2d_c00327{bottom:133.679947px;}
.y2c_c00327{bottom:152.039939px;}
.y2b_c00327{bottom:170.399932px;}
.y2a_c00327{bottom:188.399925px;}
.y29_c00327{bottom:195.239922px;}
.y28_c00327{bottom:205.499918px;}
.y27_c00327{bottom:222.779911px;}
.y26_c00327{bottom:229.619908px;}
.y25_c00327{bottom:240.059904px;}
.y24_c00327{bottom:257.339897px;}
.y23_c00327{bottom:264.179894px;}
.y22_c00327{bottom:275.519890px;}
.y21_c00327{bottom:341.579863px;}
.y20_c00327{bottom:372.719851px;}
.y1f_c00327{bottom:404.039838px;}
.y1e_c00327{bottom:435.179826px;}
.y1d_c00327{bottom:466.139814px;}
.y1c_c00327{bottom:497.279801px;}
.y1b_c00327{bottom:528.239789px;}
.y1a_c00327{bottom:559.379776px;}
.y19_c00327{bottom:590.339764px;}
.y18_c00327{bottom:621.479751px;}
.y16_c00327{bottom:652.439739px;}
.y17_c00327{bottom:660.719736px;}
.y15_c00327{bottom:683.579727px;}
.y14_c00327{bottom:714.539714px;}
.y13_c00327{bottom:745.679702px;}
.y11_c00327{bottom:776.639689px;}
.y12_c00327{bottom:784.919686px;}
.y10_c00327{bottom:807.779677px;}
.yf_c00327{bottom:838.739665px;}
.ye_c00327{bottom:869.879652px;}
.yd_c00327{bottom:900.839640px;}
.yc_c00327{bottom:931.979627px;}
.ya_c00327{bottom:962.939615px;}
.yb_c00327{bottom:971.219612px;}
.y9_c00327{bottom:994.079602px;}
.y8_c00327{bottom:1025.039590px;}
.y7_c00327{bottom:1056.179578px;}
.y6_c00327{bottom:1087.139565px;}
.y5_c00327{bottom:1118.279553px;}
.y2_c00327{bottom:1157.159537px;}
.y1_c00327{bottom:1196.039522px;}
.h8_c00327{height:38.158578px;}
.h5_c00327{height:47.321348px;}
.h6_c00327{height:47.344903px;}
.h9_c00327{height:49.284472px;}
.h2_c00327{height:54.628572px;}
.h1_c00327{height:58.651148px;}
.h4_c00327{height:70.628878px;}
.h3_c00327{height:70.664034px;}
.h7_c00327{height:72.562471px;}
.h0_c00327{height:1263.000000px;}
.w0_c00327{width:892.500000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:127.619949px;}
.x9_c00327{left:142.199943px;}
.x5_c00327{left:180.719880px;}
.x3_c00327{left:194.039922px;}
.x4_c00327{left:212.399915px;}
.x7_c00327{left:341.639863px;}
.x8_c00327{left:359.999856px;}
.x2_c00327{left:433.979514px;}
.x6_c00327{left:661.139736px;}
@media print{
.v1_c00327{vertical-align:-29.439988pt;}
.v0_c00327{vertical-align:0.000000pt;}
.ls3_c00327{letter-spacing:0.000000pt;}
.ls1_c00327{letter-spacing:0.009928pt;}
.ls2_c00327{letter-spacing:0.168267pt;}
.ls0_c00327{letter-spacing:0.332694pt;}
.ws0_c00327{word-spacing:-15.999994pt;}
.ws3_c00327{word-spacing:-13.279995pt;}
.ws1_c00327{word-spacing:-11.052689pt;}
.ws2_c00327{word-spacing:-8.649924pt;}
.ws4_c00327{word-spacing:0.000000pt;}
._f_c00327{margin-left:-8.901796pt;}
._a_c00327{margin-left:-2.108901pt;}
._1_c00327{margin-left:-0.982555pt;}
._0_c00327{width:1.062723pt;}
._3_c00327{width:1.985115pt;}
._b_c00327{width:3.005968pt;}
._2_c00327{width:3.895811pt;}
._4_c00327{width:5.308792pt;}
._c_c00327{width:7.107098pt;}
._d_c00327{width:8.103707pt;}
._e_c00327{width:12.504099pt;}
._9_c00327{width:13.451088pt;}
._8_c00327{width:14.974364pt;}
._5_c00327{width:17.873852pt;}
._7_c00327{width:19.253822pt;}
._6_c00327{width:20.182381pt;}
.fs4_c00327{font-size:34.559986pt;}
.fs3_c00327{font-size:42.879983pt;}
.fs0_c00327{font-size:53.119979pt;}
.fs1_c00327{font-size:58.879976pt;}
.fs2_c00327{font-size:63.999974pt;}
.y0_c00327{bottom:0.000000pt;}
.y4_c00327{bottom:67.466640pt;}
.y3_c00327{bottom:101.386626pt;}
.y2d_c00327{bottom:118.826619pt;}
.y2c_c00327{bottom:135.146613pt;}
.y2b_c00327{bottom:151.466606pt;}
.y2a_c00327{bottom:167.466600pt;}
.y29_c00327{bottom:173.546597pt;}
.y28_c00327{bottom:182.666594pt;}
.y27_c00327{bottom:198.026587pt;}
.y26_c00327{bottom:204.106585pt;}
.y25_c00327{bottom:213.386581pt;}
.y24_c00327{bottom:228.746575pt;}
.y23_c00327{bottom:234.826573pt;}
.y22_c00327{bottom:244.906569pt;}
.y21_c00327{bottom:303.626545pt;}
.y20_c00327{bottom:331.306534pt;}
.y1f_c00327{bottom:359.146523pt;}
.y1e_c00327{bottom:386.826512pt;}
.y1d_c00327{bottom:414.346501pt;}
.y1c_c00327{bottom:442.026490pt;}
.y1b_c00327{bottom:469.546479pt;}
.y1a_c00327{bottom:497.226468pt;}
.y19_c00327{bottom:524.746457pt;}
.y18_c00327{bottom:552.426446pt;}
.y16_c00327{bottom:579.946435pt;}
.y17_c00327{bottom:587.306432pt;}
.y15_c00327{bottom:607.626424pt;}
.y14_c00327{bottom:635.146413pt;}
.y13_c00327{bottom:662.826402pt;}
.y11_c00327{bottom:690.346391pt;}
.y12_c00327{bottom:697.706388pt;}
.y10_c00327{bottom:718.026379pt;}
.yf_c00327{bottom:745.546368pt;}
.ye_c00327{bottom:773.226357pt;}
.yd_c00327{bottom:800.746346pt;}
.yc_c00327{bottom:828.426335pt;}
.ya_c00327{bottom:855.946324pt;}
.yb_c00327{bottom:863.306321pt;}
.y9_c00327{bottom:883.626313pt;}
.y8_c00327{bottom:911.146302pt;}
.y7_c00327{bottom:938.826291pt;}
.y6_c00327{bottom:966.346280pt;}
.y5_c00327{bottom:994.026269pt;}
.y2_c00327{bottom:1028.586255pt;}
.y1_c00327{bottom:1063.146241pt;}
.h8_c00327{height:33.918736pt;}
.h5_c00327{height:42.063421pt;}
.h6_c00327{height:42.084358pt;}
.h9_c00327{height:43.808420pt;}
.h2_c00327{height:48.558731pt;}
.h1_c00327{height:52.134354pt;}
.h4_c00327{height:62.781225pt;}
.h3_c00327{height:62.812475pt;}
.h7_c00327{height:64.499974pt;}
.h0_c00327{height:1122.666667pt;}
.w0_c00327{width:793.333333pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:113.439955pt;}
.x9_c00327{left:126.399949pt;}
.x5_c00327{left:160.639893pt;}
.x3_c00327{left:172.479931pt;}
.x4_c00327{left:188.799924pt;}
.x7_c00327{left:303.679879pt;}
.x8_c00327{left:319.999872pt;}
.x2_c00327{left:385.759568pt;}
.x6_c00327{left:587.679765pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fef2a76e593b88c67cdd7b5a.woff2')format("woff");}.ff1_c00328{font-family:ff1_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:ff2_c00328;src:url('chunks/assets/font_b8d7b5cb8bdb16d600108047.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_0cde07da5459d08e372bda48.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.311035;font-style:normal;font-weight:normal;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_c7688062f2fd32bfc3b99e05.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_80f9ba04ca06107d5b011531.woff2')format("woff");}.ff5_c00328{font-family:ff5_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;}
.m0_c00328{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls7_c00328{letter-spacing:0.000000px;}
.ls6_c00328{letter-spacing:0.011169px;}
.ls0_c00328{letter-spacing:0.021238px;}
.ls1_c00328{letter-spacing:0.042600px;}
.ls5_c00328{letter-spacing:0.153901px;}
.ls4_c00328{letter-spacing:0.374281px;}
.ls2_c00328{letter-spacing:8.655717px;}
.ls3_c00328{letter-spacing:10.096556px;}
.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.021231px;}
.ws0_c00328{word-spacing:-17.999993px;}
.ws2_c00328{word-spacing:-12.434276px;}
.ws3_c00328{word-spacing:-9.731165px;}
.ws4_c00328{word-spacing:0.000000px;}
._a_c00328{margin-left:-12.716934px;}
._1_c00328{margin-left:-1.105374px;}
._0_c00328{width:1.478392px;}
._5_c00328{width:2.596887px;}
._6_c00328{width:4.130230px;}
._b_c00328{width:5.952841px;}
._3_c00328{width:7.034289px;}
._2_c00328{width:8.052333px;}
._9_c00328{width:9.855556px;}
._7_c00328{width:11.623653px;}
._8_c00328{width:13.472037px;}
._4_c00328{width:16.500867px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs4_c00328{font-size:38.879984px;}
.fs3_c00328{font-size:48.239981px;}
.fs0_c00328{font-size:59.759976px;}
.fs1_c00328{font-size:66.239974px;}
.fs2_c00328{font-size:71.999971px;}
.y0_c00328{bottom:0.000000px;}
.y4_c00328{bottom:75.720270px;}
.y3_c00328{bottom:113.880254px;}
.y1c_c00328{bottom:134.220246px;}
.y1b_c00328{bottom:155.819938px;}
.y1a_c00328{bottom:175.619930px;}
.y19_c00328{bottom:182.459927px;}
.y18_c00328{bottom:193.979922px;}
.y16_c00328{bottom:244.739902px;}
.y17_c00328{bottom:253.019899px;}
.y15_c00328{bottom:275.879890px;}
.y14_c00328{bottom:306.839877px;}
.y13_c00328{bottom:337.979865px;}
.y12_c00328{bottom:368.939852px;}
.y11_c00328{bottom:400.079840px;}
.y10_c00328{bottom:431.039828px;}
.yf_c00328{bottom:462.179815px;}
.ye_c00328{bottom:493.139803px;}
.yd_c00328{bottom:524.279790px;}
.yc_c00328{bottom:555.239778px;}
.yb_c00328{bottom:586.379765px;}
.ya_c00328{bottom:617.339753px;}
.y9_c00328{bottom:648.479741px;}
.y8_c00328{bottom:678.359729px;}
.y7_c00328{bottom:703.559719px;}
.y6_c00328{bottom:1104.959558px;}
.y5_c00328{bottom:1135.919546px;}
.y2_c00328{bottom:1175.879530px;}
.y1_c00328{bottom:1196.039522px;}
.h8_c00328{height:38.158578px;}
.h7_c00328{height:47.321348px;}
.h2_c00328{height:54.628572px;}
.h1_c00328{height:58.651148px;}
.h5_c00328{height:65.010911px;}
.h6_c00328{height:70.628878px;}
.h4_c00328{height:70.664034px;}
.h3_c00328{height:72.562471px;}
.h0_c00328{height:1263.000000px;}
.w0_c00328{width:892.500000px;}
.x0_c00328{left:0.000000px;}
.x5_c00328{left:127.800262px;}
.xa_c00328{left:142.379943px;}
.x7_c00328{left:180.899930px;}
.x1_c00328{left:181.979927px;}
.x8_c00328{left:255.419898px;}
.x9_c00328{left:273.779890px;}
.x2_c00328{left:329.219408px;}
.x4_c00328{left:434.159826px;}
.x6_c00328{left:597.419761px;}
.x3_c00328{left:765.539694px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls7_c00328{letter-spacing:0.000000pt;}
.ls6_c00328{letter-spacing:0.009928pt;}
.ls0_c00328{letter-spacing:0.018878pt;}
.ls1_c00328{letter-spacing:0.037867pt;}
.ls5_c00328{letter-spacing:0.136801pt;}
.ls4_c00328{letter-spacing:0.332694pt;}
.ls2_c00328{letter-spacing:7.693970pt;}
.ls3_c00328{letter-spacing:8.974716pt;}
.ws1_c00328{word-spacing:-16.018872pt;}
.ws0_c00328{word-spacing:-15.999994pt;}
.ws2_c00328{word-spacing:-11.052689pt;}
.ws3_c00328{word-spacing:-8.649924pt;}
.ws4_c00328{word-spacing:0.000000pt;}
._a_c00328{margin-left:-11.303941pt;}
._1_c00328{margin-left:-0.982555pt;}
._0_c00328{width:1.314126pt;}
._5_c00328{width:2.308344pt;}
._6_c00328{width:3.671315pt;}
._b_c00328{width:5.291414pt;}
._3_c00328{width:6.252701pt;}
._2_c00328{width:7.157629pt;}
._9_c00328{width:8.760495pt;}
._7_c00328{width:10.332136pt;}
._8_c00328{width:11.975144pt;}
._4_c00328{width:14.667438pt;}
.fs4_c00328{font-size:34.559986pt;}
.fs3_c00328{font-size:42.879983pt;}
.fs0_c00328{font-size:53.119979pt;}
.fs1_c00328{font-size:58.879976pt;}
.fs2_c00328{font-size:63.999974pt;}
.y0_c00328{bottom:0.000000pt;}
.y4_c00328{bottom:67.306906pt;}
.y3_c00328{bottom:101.226893pt;}
.y1c_c00328{bottom:119.306886pt;}
.y1b_c00328{bottom:138.506611pt;}
.y1a_c00328{bottom:156.106604pt;}
.y19_c00328{bottom:162.186602pt;}
.y18_c00328{bottom:172.426598pt;}
.y16_c00328{bottom:217.546580pt;}
.y17_c00328{bottom:224.906577pt;}
.y15_c00328{bottom:245.226569pt;}
.y14_c00328{bottom:272.746558pt;}
.y13_c00328{bottom:300.426546pt;}
.y12_c00328{bottom:327.946535pt;}
.y11_c00328{bottom:355.626524pt;}
.y10_c00328{bottom:383.146513pt;}
.yf_c00328{bottom:410.826502pt;}
.ye_c00328{bottom:438.346491pt;}
.yd_c00328{bottom:466.026480pt;}
.yc_c00328{bottom:493.546469pt;}
.yb_c00328{bottom:521.226458pt;}
.ya_c00328{bottom:548.746447pt;}
.y9_c00328{bottom:576.426436pt;}
.y8_c00328{bottom:602.986425pt;}
.y7_c00328{bottom:625.386417pt;}
.y6_c00328{bottom:982.186274pt;}
.y5_c00328{bottom:1009.706263pt;}
.y2_c00328{bottom:1045.226249pt;}
.y1_c00328{bottom:1063.146241pt;}
.h8_c00328{height:33.918736pt;}
.h7_c00328{height:42.063421pt;}
.h2_c00328{height:48.558731pt;}
.h1_c00328{height:52.134354pt;}
.h5_c00328{height:57.787477pt;}
.h6_c00328{height:62.781225pt;}
.h4_c00328{height:62.812475pt;}
.h3_c00328{height:64.499974pt;}
.h0_c00328{height:1122.666667pt;}
.w0_c00328{width:793.333333pt;}
.x0_c00328{left:0.000000pt;}
.x5_c00328{left:113.600233pt;}
.xa_c00328{left:126.559949pt;}
.x7_c00328{left:160.799938pt;}
.x1_c00328{left:161.759935pt;}
.x8_c00328{left:227.039909pt;}
.x9_c00328{left:243.359903pt;}
.x2_c00328{left:292.639474pt;}
.x4_c00328{left:385.919846pt;}
.x6_c00328{left:531.039788pt;}
.x3_c00328{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16a8c3bbd8cf04e0d41245eb.woff2')format("woff");}.ff1_c00329{font-family:ff1_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:ff2_c00329;src:url('chunks/assets/font_b19d5318ea21d1532753876f.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_c939610595cc7f830141a249.woff2')format("woff");}.ff3_c00329{font-family:ff3_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:ff4_c00329;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls3_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:0.011169px;}
.ls2_c00329{letter-spacing:0.189300px;}
.ls0_c00329{letter-spacing:0.374281px;}
.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:-17.999993px;}
.ws3_c00329{word-spacing:-14.939994px;}
.ws0_c00329{word-spacing:-12.434276px;}
.ws2_c00329{word-spacing:-9.731165px;}
.ws4_c00329{word-spacing:0.000000px;}
._15_c00329{margin-left:-9.702808px;}
._1_c00329{margin-left:-1.105374px;}
._0_c00329{width:1.195563px;}
._10_c00329{width:2.253582px;}
._5_c00329{width:3.311736px;}
._6_c00329{width:4.599604px;}
._2_c00329{width:5.660679px;}
._12_c00329{width:6.771333px;}
._11_c00329{width:8.560171px;}
._13_c00329{width:9.822170px;}
._a_c00329{width:11.029719px;}
._3_c00329{width:12.112613px;}
._4_c00329{width:13.753062px;}
._b_c00329{width:15.188034px;}
._7_c00329{width:16.934910px;}
._14_c00329{width:19.274426px;}
._c_c00329{width:20.441341px;}
._e_c00329{width:21.982467px;}
._f_c00329{width:23.215795px;}
._d_c00329{width:25.059002px;}
._9_c00329{width:27.508903px;}
._8_c00329{width:28.955328px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs4_c00329{font-size:38.879984px;}
.fs3_c00329{font-size:48.239981px;}
.fs0_c00329{font-size:59.759976px;}
.fs1_c00329{font-size:66.239974px;}
.fs2_c00329{font-size:71.999971px;}
.y0_c00329{bottom:0.000000px;}
.y4_c00329{bottom:75.899970px;}
.y3_c00329{bottom:114.059954px;}
.y2a_c00329{bottom:133.679947px;}
.y29_c00329{bottom:151.679939px;}
.y28_c00329{bottom:158.519937px;}
.y27_c00329{bottom:168.959932px;}
.y26_c00329{bottom:186.239926px;}
.y25_c00329{bottom:193.079923px;}
.y24_c00329{bottom:204.419918px;}
.y22_c00329{bottom:248.879900px;}
.y23_c00329{bottom:257.159897px;}
.y21_c00329{bottom:279.839888px;}
.y20_c00329{bottom:310.979876px;}
.y1f_c00329{bottom:341.939863px;}
.y1e_c00329{bottom:373.079851px;}
.y1d_c00329{bottom:404.039838px;}
.y1c_c00329{bottom:435.179826px;}
.y1b_c00329{bottom:466.139814px;}
.y1a_c00329{bottom:497.279801px;}
.y19_c00329{bottom:528.239789px;}
.y18_c00329{bottom:559.379776px;}
.y17_c00329{bottom:590.339764px;}
.y16_c00329{bottom:621.479751px;}
.y15_c00329{bottom:652.079739px;}
.y13_c00329{bottom:683.579727px;}
.y14_c00329{bottom:691.859723px;}
.y12_c00329{bottom:714.539714px;}
.y11_c00329{bottom:745.679702px;}
.y10_c00329{bottom:776.639689px;}
.yf_c00329{bottom:807.779677px;}
.ye_c00329{bottom:838.739665px;}
.yd_c00329{bottom:869.879652px;}
.yc_c00329{bottom:900.839640px;}
.yb_c00329{bottom:931.979627px;}
.ya_c00329{bottom:962.939615px;}
.y9_c00329{bottom:994.079602px;}
.y8_c00329{bottom:1025.039590px;}
.y7_c00329{bottom:1056.179578px;}
.y6_c00329{bottom:1087.139565px;}
.y5_c00329{bottom:1118.279553px;}
.y2_c00329{bottom:1157.159537px;}
.y1_c00329{bottom:1196.039522px;}
.h7_c00329{height:38.158578px;}
.h5_c00329{height:47.321348px;}
.h8_c00329{height:49.284472px;}
.h2_c00329{height:54.628572px;}
.h1_c00329{height:58.651148px;}
.h4_c00329{height:70.628878px;}
.h3_c00329{height:70.664034px;}
.h6_c00329{height:72.562471px;}
.h0_c00329{height:1263.000000px;}
.w0_c00329{width:892.500000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:127.619949px;}
.x8_c00329{left:142.199943px;}
.x3_c00329{left:180.719928px;}
.x6_c00329{left:234.179906px;}
.x7_c00329{left:252.539899px;}
.x4_c00329{left:402.299839px;}
.x5_c00329{left:420.659832px;}
.x2_c00329{left:433.979514px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls3_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:0.009928pt;}
.ls2_c00329{letter-spacing:0.168267pt;}
.ls0_c00329{letter-spacing:0.332694pt;}
.ws1_c00329{word-spacing:-15.999994pt;}
.ws3_c00329{word-spacing:-13.279995pt;}
.ws0_c00329{word-spacing:-11.052689pt;}
.ws2_c00329{word-spacing:-8.649924pt;}
.ws4_c00329{word-spacing:0.000000pt;}
._15_c00329{margin-left:-8.624718pt;}
._1_c00329{margin-left:-0.982555pt;}
._0_c00329{width:1.062723pt;}
._10_c00329{width:2.003184pt;}
._5_c00329{width:2.943766pt;}
._6_c00329{width:4.088537pt;}
._2_c00329{width:5.031715pt;}
._12_c00329{width:6.018963pt;}
._11_c00329{width:7.609041pt;}
._13_c00329{width:8.730818pt;}
._a_c00329{width:9.804194pt;}
._3_c00329{width:10.766767pt;}
._4_c00329{width:12.224944pt;}
._b_c00329{width:13.500474pt;}
._7_c00329{width:15.053253pt;}
._14_c00329{width:17.132824pt;}
._c_c00329{width:18.170081pt;}
._e_c00329{width:19.539971pt;}
._f_c00329{width:20.636263pt;}
._d_c00329{width:22.274669pt;}
._9_c00329{width:24.452358pt;}
._8_c00329{width:25.738070pt;}
.fs4_c00329{font-size:34.559986pt;}
.fs3_c00329{font-size:42.879983pt;}
.fs0_c00329{font-size:53.119979pt;}
.fs1_c00329{font-size:58.879976pt;}
.fs2_c00329{font-size:63.999974pt;}
.y0_c00329{bottom:0.000000pt;}
.y4_c00329{bottom:67.466640pt;}
.y3_c00329{bottom:101.386626pt;}
.y2a_c00329{bottom:118.826619pt;}
.y29_c00329{bottom:134.826613pt;}
.y28_c00329{bottom:140.906610pt;}
.y27_c00329{bottom:150.186607pt;}
.y26_c00329{bottom:165.546600pt;}
.y25_c00329{bottom:171.626598pt;}
.y24_c00329{bottom:181.706594pt;}
.y22_c00329{bottom:221.226578pt;}
.y23_c00329{bottom:228.586575pt;}
.y21_c00329{bottom:248.746567pt;}
.y20_c00329{bottom:276.426556pt;}
.y1f_c00329{bottom:303.946545pt;}
.y1e_c00329{bottom:331.626534pt;}
.y1d_c00329{bottom:359.146523pt;}
.y1c_c00329{bottom:386.826512pt;}
.y1b_c00329{bottom:414.346501pt;}
.y1a_c00329{bottom:442.026490pt;}
.y19_c00329{bottom:469.546479pt;}
.y18_c00329{bottom:497.226468pt;}
.y17_c00329{bottom:524.746457pt;}
.y16_c00329{bottom:552.426446pt;}
.y15_c00329{bottom:579.626435pt;}
.y13_c00329{bottom:607.626424pt;}
.y14_c00329{bottom:614.986421pt;}
.y12_c00329{bottom:635.146413pt;}
.y11_c00329{bottom:662.826402pt;}
.y10_c00329{bottom:690.346391pt;}
.yf_c00329{bottom:718.026379pt;}
.ye_c00329{bottom:745.546368pt;}
.yd_c00329{bottom:773.226357pt;}
.yc_c00329{bottom:800.746346pt;}
.yb_c00329{bottom:828.426335pt;}
.ya_c00329{bottom:855.946324pt;}
.y9_c00329{bottom:883.626313pt;}
.y8_c00329{bottom:911.146302pt;}
.y7_c00329{bottom:938.826291pt;}
.y6_c00329{bottom:966.346280pt;}
.y5_c00329{bottom:994.026269pt;}
.y2_c00329{bottom:1028.586255pt;}
.y1_c00329{bottom:1063.146241pt;}
.h7_c00329{height:33.918736pt;}
.h5_c00329{height:42.063421pt;}
.h8_c00329{height:43.808420pt;}
.h2_c00329{height:48.558731pt;}
.h1_c00329{height:52.134354pt;}
.h4_c00329{height:62.781225pt;}
.h3_c00329{height:62.812475pt;}
.h6_c00329{height:64.499974pt;}
.h0_c00329{height:1122.666667pt;}
.w0_c00329{width:793.333333pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:113.439955pt;}
.x8_c00329{left:126.399949pt;}
.x3_c00329{left:160.639936pt;}
.x6_c00329{left:208.159917pt;}
.x7_c00329{left:224.479910pt;}
.x4_c00329{left:357.599857pt;}
.x5_c00329{left:373.919850pt;}
.x2_c00329{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aec1827b3ad289228cccb32.woff2')format("woff");}.ff1_c00330{font-family:ff1_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:ff2_c00330;src:url('chunks/assets/font_2858248321c1e0b79730a4af.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.311035;font-style:normal;font-weight:normal;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_091b21fec700c15a9de46828.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;}
.m0_c00330{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls5_c00330{letter-spacing:0.000000px;}
.ls2_c00330{letter-spacing:0.011169px;}
.ls1_c00330{letter-spacing:0.153901px;}
.ls4_c00330{letter-spacing:0.189257px;}
.ls3_c00330{letter-spacing:0.189300px;}
.ls0_c00330{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00330{word-spacing:-14.939994px;}
.ws0_c00330{word-spacing:-12.434276px;}
.ws1_c00330{word-spacing:-9.731165px;}
.ws3_c00330{word-spacing:0.000000px;}
._3_c00330{margin-left:-12.716934px;}
._1_c00330{margin-left:-1.105374px;}
._0_c00330{width:1.478392px;}
._2_c00330{width:2.670233px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs4_c00330{font-size:38.879984px;}
.fs3_c00330{font-size:48.239981px;}
.fs0_c00330{font-size:59.759976px;}
.fs1_c00330{font-size:66.239974px;}
.fs2_c00330{font-size:71.999971px;}
.y0_c00330{bottom:0.000000px;}
.y4_c00330{bottom:75.720270px;}
.y3_c00330{bottom:113.880254px;}
.y1d_c00330{bottom:133.499947px;}
.y1c_c00330{bottom:151.859939px;}
.y1b_c00330{bottom:169.859932px;}
.y1a_c00330{bottom:176.699929px;}
.y19_c00330{bottom:187.139925px;}
.y18_c00330{bottom:204.419918px;}
.y17_c00330{bottom:211.259915px;}
.y16_c00330{bottom:222.419911px;}
.y15_c00330{bottom:298.199881px;}
.y14_c00330{bottom:329.519868px;}
.y13_c00330{bottom:360.659856px;}
.y12_c00330{bottom:391.619843px;}
.y11_c00330{bottom:422.759831px;}
.y10_c00330{bottom:445.979822px;}
.yf_c00330{bottom:467.759813px;}
.ye_c00330{bottom:493.139803px;}
.yc_c00330{bottom:811.379675px;}
.yd_c00330{bottom:819.659672px;}
.yb_c00330{bottom:842.519663px;}
.ya_c00330{bottom:873.479651px;}
.y9_c00330{bottom:896.879641px;}
.y8_c00330{bottom:918.659633px;}
.y7_c00330{bottom:944.039622px;}
.y5_c00330{bottom:1136.279545px;}
.y6_c00330{bottom:1144.559542px;}
.y2_c00330{bottom:1175.879530px;}
.y1_c00330{bottom:1196.039522px;}
.h9_c00330{height:38.158578px;}
.h4_c00330{height:47.344903px;}
.ha_c00330{height:49.284472px;}
.h2_c00330{height:54.628572px;}
.h1_c00330{height:58.651148px;}
.h6_c00330{height:65.010911px;}
.h7_c00330{height:66.757473px;}
.h8_c00330{height:70.628878px;}
.h3_c00330{height:70.664034px;}
.h5_c00330{height:72.562471px;}
.h0_c00330{height:1263.000000px;}
.w0_c00330{width:892.500000px;}
.x0_c00330{left:0.000000px;}
.x5_c00330{left:127.800262px;}
.x11_c00330{left:142.379943px;}
.xf_c00330{left:146.519941px;}
.x9_c00330{left:155.159938px;}
.xb_c00330{left:180.899928px;}
.x1_c00330{left:181.979927px;}
.xc_c00330{left:240.839904px;}
.xd_c00330{left:259.199896px;}
.x2_c00330{left:329.219408px;}
.x10_c00330{left:384.119846px;}
.xa_c00330{left:414.719834px;}
.x4_c00330{left:434.159826px;}
.x6_c00330{left:625.679750px;}
.x7_c00330{left:644.039742px;}
.xe_c00330{left:674.999730px;}
.x8_c00330{left:752.759699px;}
.x3_c00330{left:765.539694px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls5_c00330{letter-spacing:0.000000pt;}
.ls2_c00330{letter-spacing:0.009928pt;}
.ls1_c00330{letter-spacing:0.136801pt;}
.ls4_c00330{letter-spacing:0.168228pt;}
.ls3_c00330{letter-spacing:0.168267pt;}
.ls0_c00330{letter-spacing:0.332694pt;}
.ws2_c00330{word-spacing:-13.279995pt;}
.ws0_c00330{word-spacing:-11.052689pt;}
.ws1_c00330{word-spacing:-8.649924pt;}
.ws3_c00330{word-spacing:0.000000pt;}
._3_c00330{margin-left:-11.303941pt;}
._1_c00330{margin-left:-0.982555pt;}
._0_c00330{width:1.314126pt;}
._2_c00330{width:2.373540pt;}
.fs4_c00330{font-size:34.559986pt;}
.fs3_c00330{font-size:42.879983pt;}
.fs0_c00330{font-size:53.119979pt;}
.fs1_c00330{font-size:58.879976pt;}
.fs2_c00330{font-size:63.999974pt;}
.y0_c00330{bottom:0.000000pt;}
.y4_c00330{bottom:67.306906pt;}
.y3_c00330{bottom:101.226893pt;}
.y1d_c00330{bottom:118.666619pt;}
.y1c_c00330{bottom:134.986613pt;}
.y1b_c00330{bottom:150.986606pt;}
.y1a_c00330{bottom:157.066604pt;}
.y19_c00330{bottom:166.346600pt;}
.y18_c00330{bottom:181.706594pt;}
.y17_c00330{bottom:187.786592pt;}
.y16_c00330{bottom:197.706588pt;}
.y15_c00330{bottom:265.066561pt;}
.y14_c00330{bottom:292.906550pt;}
.y13_c00330{bottom:320.586538pt;}
.y12_c00330{bottom:348.106527pt;}
.y11_c00330{bottom:375.786516pt;}
.y10_c00330{bottom:396.426508pt;}
.yf_c00330{bottom:415.786500pt;}
.ye_c00330{bottom:438.346491pt;}
.yc_c00330{bottom:721.226378pt;}
.yd_c00330{bottom:728.586375pt;}
.yb_c00330{bottom:748.906367pt;}
.ya_c00330{bottom:776.426356pt;}
.y9_c00330{bottom:797.226348pt;}
.y8_c00330{bottom:816.586340pt;}
.y7_c00330{bottom:839.146331pt;}
.y5_c00330{bottom:1010.026263pt;}
.y6_c00330{bottom:1017.386260pt;}
.y2_c00330{bottom:1045.226249pt;}
.y1_c00330{bottom:1063.146241pt;}
.h9_c00330{height:33.918736pt;}
.h4_c00330{height:42.084358pt;}
.ha_c00330{height:43.808420pt;}
.h2_c00330{height:48.558731pt;}
.h1_c00330{height:52.134354pt;}
.h6_c00330{height:57.787477pt;}
.h7_c00330{height:59.339976pt;}
.h8_c00330{height:62.781225pt;}
.h3_c00330{height:62.812475pt;}
.h5_c00330{height:64.499974pt;}
.h0_c00330{height:1122.666667pt;}
.w0_c00330{width:793.333333pt;}
.x0_c00330{left:0.000000pt;}
.x5_c00330{left:113.600233pt;}
.x11_c00330{left:126.559949pt;}
.xf_c00330{left:130.239948pt;}
.x9_c00330{left:137.919945pt;}
.xb_c00330{left:160.799936pt;}
.x1_c00330{left:161.759935pt;}
.xc_c00330{left:214.079914pt;}
.xd_c00330{left:230.399908pt;}
.x2_c00330{left:292.639474pt;}
.x10_c00330{left:341.439863pt;}
.xa_c00330{left:368.639853pt;}
.x4_c00330{left:385.919846pt;}
.x6_c00330{left:556.159778pt;}
.x7_c00330{left:572.479771pt;}
.xe_c00330{left:599.999760pt;}
.x8_c00330{left:669.119732pt;}
.x3_c00330{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c064183fcb300eed20aaa202.woff2')format("woff");}.ff1_c00331{font-family:ff1_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:ff2_c00331;src:url('chunks/assets/font_4b82d9f627fb0ac681bd2f27.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_c0467d5a24bb919af2ee22ca.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.311035;font-style:normal;font-weight:normal;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_7bd41909916faa1d735c2d5f.woff2')format("woff");}.ff4_c00331{font-family:ff4_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:ff5_c00331;src:url('chunks/assets/font_8a6c454d99aeea1dd59d8f82.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;}
.m0_c00331{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls2_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:0.021238px;}
.ls1_c00331{letter-spacing:10.816976px;}
.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;}
}
.ws0_c00331{word-spacing:-17.999993px;}
.ws1_c00331{word-spacing:0.000000px;}
._1_c00331{margin-left:-1.105374px;}
._0_c00331{width:1.195563px;}
._e_c00331{width:3.005698px;}
._5_c00331{width:4.056785px;}
._6_c00331{width:5.312431px;}
._b_c00331{width:10.418372px;}
._2_c00331{width:11.654419px;}
._7_c00331{width:14.863262px;}
._8_c00331{width:16.140018px;}
._d_c00331{width:21.093467px;}
._c_c00331{width:22.180821px;}
._4_c00331{width:23.565405px;}
._3_c00331{width:25.154663px;}
._9_c00331{width:40.014238px;}
._a_c00331{width:41.262075px;}
.fc0_c00331{color:rgb(0,0,0);}
.fs0_c00331{font-size:59.759976px;}
.fs1_c00331{font-size:66.239974px;}
.fs2_c00331{font-size:71.999971px;}
.y0_c00331{bottom:0.000000px;}
.y4_c00331{bottom:75.719970px;}
.y3_c00331{bottom:113.879954px;}
.y1a_c00331{bottom:145.199942px;}
.y19_c00331{bottom:176.159930px;}
.y18_c00331{bottom:207.299917px;}
.y17_c00331{bottom:238.259905px;}
.y16_c00331{bottom:269.399892px;}
.y15_c00331{bottom:300.359880px;}
.y14_c00331{bottom:331.499867px;}
.y13_c00331{bottom:362.459855px;}
.y12_c00331{bottom:393.599843px;}
.y11_c00331{bottom:424.559830px;}
.y10_c00331{bottom:455.699818px;}
.yf_c00331{bottom:486.659805px;}
.ye_c00331{bottom:517.799793px;}
.yd_c00331{bottom:548.759780px;}
.yc_c00331{bottom:579.899768px;}
.yb_c00331{bottom:610.859756px;}
.ya_c00331{bottom:641.999743px;}
.y9_c00331{bottom:665.219734px;}
.y8_c00331{bottom:686.999725px;}
.y7_c00331{bottom:712.379715px;}
.y6_c00331{bottom:1086.599565px;}
.y5_c00331{bottom:1117.739553px;}
.y2_c00331{bottom:1156.979537px;}
.y1_c00331{bottom:1195.859522px;}
.h2_c00331{height:54.628572px;}
.h1_c00331{height:58.651148px;}
.h4_c00331{height:65.010911px;}
.h5_c00331{height:70.664034px;}
.h3_c00331{height:72.562471px;}
.h0_c00331{height:1263.000000px;}
.w0_c00331{width:892.500000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:127.799949px;}
.x6_c00331{left:180.899928px;}
.x4_c00331{left:217.439913px;}
.x5_c00331{left:409.320373px;}
.x2_c00331{left:434.159514px;}
.x3_c00331{left:578.159769px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls2_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:0.018878pt;}
.ls1_c00331{letter-spacing:9.615089pt;}
.ws0_c00331{word-spacing:-15.999994pt;}
.ws1_c00331{word-spacing:0.000000pt;}
._1_c00331{margin-left:-0.982555pt;}
._0_c00331{width:1.062723pt;}
._e_c00331{width:2.671732pt;}
._5_c00331{width:3.606031pt;}
._6_c00331{width:4.722161pt;}
._b_c00331{width:9.260775pt;}
._2_c00331{width:10.359484pt;}
._7_c00331{width:13.211788pt;}
._8_c00331{width:14.346682pt;}
._d_c00331{width:18.749748pt;}
._c_c00331{width:19.716285pt;}
._4_c00331{width:20.947027pt;}
._3_c00331{width:22.359700pt;}
._9_c00331{width:35.568212pt;}
._a_c00331{width:36.677400pt;}
.fs0_c00331{font-size:53.119979pt;}
.fs1_c00331{font-size:58.879976pt;}
.fs2_c00331{font-size:63.999974pt;}
.y0_c00331{bottom:0.000000pt;}
.y4_c00331{bottom:67.306640pt;}
.y3_c00331{bottom:101.226626pt;}
.y1a_c00331{bottom:129.066615pt;}
.y19_c00331{bottom:156.586604pt;}
.y18_c00331{bottom:184.266593pt;}
.y17_c00331{bottom:211.786582pt;}
.y16_c00331{bottom:239.466571pt;}
.y15_c00331{bottom:266.986560pt;}
.y14_c00331{bottom:294.666549pt;}
.y13_c00331{bottom:322.186538pt;}
.y12_c00331{bottom:349.866527pt;}
.y11_c00331{bottom:377.386516pt;}
.y10_c00331{bottom:405.066505pt;}
.yf_c00331{bottom:432.586494pt;}
.ye_c00331{bottom:460.266483pt;}
.yd_c00331{bottom:487.786472pt;}
.yc_c00331{bottom:515.466460pt;}
.yb_c00331{bottom:542.986449pt;}
.ya_c00331{bottom:570.666438pt;}
.y9_c00331{bottom:591.306430pt;}
.y8_c00331{bottom:610.666422pt;}
.y7_c00331{bottom:633.226413pt;}
.y6_c00331{bottom:965.866280pt;}
.y5_c00331{bottom:993.546269pt;}
.y2_c00331{bottom:1028.426255pt;}
.y1_c00331{bottom:1062.986241pt;}
.h2_c00331{height:48.558731pt;}
.h1_c00331{height:52.134354pt;}
.h4_c00331{height:57.787477pt;}
.h5_c00331{height:62.812475pt;}
.h3_c00331{height:64.499974pt;}
.h0_c00331{height:1122.666667pt;}
.w0_c00331{width:793.333333pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:113.599955pt;}
.x6_c00331{left:160.799936pt;}
.x4_c00331{left:193.279923pt;}
.x5_c00331{left:363.840332pt;}
.x2_c00331{left:385.919568pt;}
.x3_c00331{left:513.919794pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_345152b626c3904e4608d1d3.woff2')format("woff");}.ff1_c00332{font-family:ff1_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:ff2_c00332;src:url('chunks/assets/font_73ebf263a76ca0e87d40050c.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_2fb2bed632480f1075838eb3.woff2')format("woff");}.ff3_c00332{font-family:ff3_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;}
.m0_c00332{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls2_c00332{letter-spacing:0.000000px;}
.ls1_c00332{letter-spacing:0.011169px;}
.ls0_c00332{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00332{word-spacing:-17.999993px;}
.ws0_c00332{word-spacing:-12.434276px;}
.ws2_c00332{word-spacing:-9.731165px;}
.ws3_c00332{word-spacing:0.000000px;}
._14_c00332{margin-left:-10.291055px;}
._12_c00332{margin-left:-2.131169px;}
._1_c00332{margin-left:-1.105374px;}
._0_c00332{width:1.478392px;}
._4_c00332{width:3.520688px;}
._5_c00332{width:4.593078px;}
._a_c00332{width:6.248926px;}
._8_c00332{width:7.964976px;}
._9_c00332{width:9.411806px;}
._2_c00332{width:10.566616px;}
._3_c00332{width:11.603356px;}
._b_c00332{width:13.354991px;}
._13_c00332{width:14.379169px;}
._6_c00332{width:15.385296px;}
._7_c00332{width:16.492063px;}
._e_c00332{width:19.372308px;}
._c_c00332{width:20.785959px;}
._d_c00332{width:22.230459px;}
._f_c00332{width:23.848454px;}
._11_c00332{width:25.150852px;}
._10_c00332{width:26.655866px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs4_c00332{font-size:38.879984px;}
.fs3_c00332{font-size:48.239981px;}
.fs0_c00332{font-size:59.759976px;}
.fs1_c00332{font-size:66.239974px;}
.fs2_c00332{font-size:71.999971px;}
.y0_c00332{bottom:0.000000px;}
.y4_c00332{bottom:75.900270px;}
.y3_c00332{bottom:114.060254px;}
.y28_c00332{bottom:133.320247px;}
.y27_c00332{bottom:140.160244px;}
.y26_c00332{bottom:151.499939px;}
.y25_c00332{bottom:173.999930px;}
.y24_c00332{bottom:205.139918px;}
.y23_c00332{bottom:236.099906px;}
.y22_c00332{bottom:267.239893px;}
.y21_c00332{bottom:298.199881px;}
.y20_c00332{bottom:329.339868px;}
.y1f_c00332{bottom:360.299856px;}
.y1e_c00332{bottom:391.439843px;}
.y1d_c00332{bottom:422.399831px;}
.y1c_c00332{bottom:453.539819px;}
.y1b_c00332{bottom:484.499806px;}
.y1a_c00332{bottom:515.639794px;}
.y19_c00332{bottom:546.599781px;}
.y18_c00332{bottom:577.739769px;}
.y17_c00332{bottom:608.699757px;}
.y16_c00332{bottom:639.839744px;}
.y15_c00332{bottom:670.799732px;}
.y14_c00332{bottom:701.939719px;}
.y13_c00332{bottom:732.899707px;}
.y12_c00332{bottom:764.039694px;}
.y11_c00332{bottom:794.999682px;}
.y10_c00332{bottom:825.959670px;}
.yf_c00332{bottom:857.099657px;}
.ye_c00332{bottom:888.059645px;}
.yc_c00332{bottom:919.199632px;}
.yd_c00332{bottom:927.479629px;}
.yb_c00332{bottom:950.159620px;}
.ya_c00332{bottom:981.299607px;}
.y9_c00332{bottom:1012.259595px;}
.y8_c00332{bottom:1043.399583px;}
.y7_c00332{bottom:1074.359570px;}
.y6_c00332{bottom:1105.499558px;}
.y5_c00332{bottom:1136.459545px;}
.y2_c00332{bottom:1176.059530px;}
.y1_c00332{bottom:1196.219522px;}
.h7_c00332{height:38.158578px;}
.h5_c00332{height:47.321348px;}
.h6_c00332{height:47.344903px;}
.h2_c00332{height:54.628572px;}
.h1_c00332{height:58.651148px;}
.h4_c00332{height:70.628878px;}
.h3_c00332{height:70.664034px;}
.h0_c00332{height:1263.000000px;}
.w0_c00332{width:892.500000px;}
.x0_c00332{left:0.000000px;}
.x5_c00332{left:127.620262px;}
.xb_c00332{left:142.199943px;}
.x6_c00332{left:180.719928px;}
.x1_c00332{left:181.799927px;}
.x2_c00332{left:329.039408px;}
.x4_c00332{left:433.979826px;}
.x9_c00332{left:479.339808px;}
.xa_c00332{left:483.839806px;}
.x7_c00332{left:672.659731px;}
.x8_c00332{left:691.019724px;}
.x3_c00332{left:765.359694px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls2_c00332{letter-spacing:0.000000pt;}
.ls1_c00332{letter-spacing:0.009928pt;}
.ls0_c00332{letter-spacing:0.332694pt;}
.ws1_c00332{word-spacing:-15.999994pt;}
.ws0_c00332{word-spacing:-11.052689pt;}
.ws2_c00332{word-spacing:-8.649924pt;}
.ws3_c00332{word-spacing:0.000000pt;}
._14_c00332{margin-left:-9.147604pt;}
._12_c00332{margin-left:-1.894372pt;}
._1_c00332{margin-left:-0.982555pt;}
._0_c00332{width:1.314126pt;}
._4_c00332{width:3.129501pt;}
._5_c00332{width:4.082736pt;}
._a_c00332{width:5.554601pt;}
._8_c00332{width:7.079978pt;}
._9_c00332{width:8.366049pt;}
._2_c00332{width:9.392547pt;}
._3_c00332{width:10.314094pt;}
._b_c00332{width:11.871103pt;}
._13_c00332{width:12.781484pt;}
._6_c00332{width:13.675819pt;}
._7_c00332{width:14.659611pt;}
._e_c00332{width:17.219829pt;}
._c_c00332{width:18.476408pt;}
._d_c00332{width:19.760408pt;}
._f_c00332{width:21.198625pt;}
._11_c00332{width:22.356313pt;}
._10_c00332{width:23.694103pt;}
.fs4_c00332{font-size:34.559986pt;}
.fs3_c00332{font-size:42.879983pt;}
.fs0_c00332{font-size:53.119979pt;}
.fs1_c00332{font-size:58.879976pt;}
.fs2_c00332{font-size:63.999974pt;}
.y0_c00332{bottom:0.000000pt;}
.y4_c00332{bottom:67.466906pt;}
.y3_c00332{bottom:101.386893pt;}
.y28_c00332{bottom:118.506886pt;}
.y27_c00332{bottom:124.586883pt;}
.y26_c00332{bottom:134.666613pt;}
.y25_c00332{bottom:154.666605pt;}
.y24_c00332{bottom:182.346594pt;}
.y23_c00332{bottom:209.866583pt;}
.y22_c00332{bottom:237.546572pt;}
.y21_c00332{bottom:265.066561pt;}
.y20_c00332{bottom:292.746550pt;}
.y1f_c00332{bottom:320.266539pt;}
.y1e_c00332{bottom:347.946527pt;}
.y1d_c00332{bottom:375.466516pt;}
.y1c_c00332{bottom:403.146505pt;}
.y1b_c00332{bottom:430.666494pt;}
.y1a_c00332{bottom:458.346483pt;}
.y19_c00332{bottom:485.866472pt;}
.y18_c00332{bottom:513.546461pt;}
.y17_c00332{bottom:541.066450pt;}
.y16_c00332{bottom:568.746439pt;}
.y15_c00332{bottom:596.266428pt;}
.y14_c00332{bottom:623.946417pt;}
.y13_c00332{bottom:651.466406pt;}
.y12_c00332{bottom:679.146395pt;}
.y11_c00332{bottom:706.666384pt;}
.y10_c00332{bottom:734.186373pt;}
.yf_c00332{bottom:761.866362pt;}
.ye_c00332{bottom:789.386351pt;}
.yc_c00332{bottom:817.066340pt;}
.yd_c00332{bottom:824.426337pt;}
.yb_c00332{bottom:844.586329pt;}
.ya_c00332{bottom:872.266318pt;}
.y9_c00332{bottom:899.786307pt;}
.y8_c00332{bottom:927.466296pt;}
.y7_c00332{bottom:954.986285pt;}
.y6_c00332{bottom:982.666274pt;}
.y5_c00332{bottom:1010.186263pt;}
.y2_c00332{bottom:1045.386249pt;}
.y1_c00332{bottom:1063.306241pt;}
.h7_c00332{height:33.918736pt;}
.h5_c00332{height:42.063421pt;}
.h6_c00332{height:42.084358pt;}
.h2_c00332{height:48.558731pt;}
.h1_c00332{height:52.134354pt;}
.h4_c00332{height:62.781225pt;}
.h3_c00332{height:62.812475pt;}
.h0_c00332{height:1122.666667pt;}
.w0_c00332{width:793.333333pt;}
.x0_c00332{left:0.000000pt;}
.x5_c00332{left:113.440233pt;}
.xb_c00332{left:126.399949pt;}
.x6_c00332{left:160.639936pt;}
.x1_c00332{left:161.599935pt;}
.x2_c00332{left:292.479474pt;}
.x4_c00332{left:385.759846pt;}
.x9_c00332{left:426.079830pt;}
.xa_c00332{left:430.079828pt;}
.x7_c00332{left:597.919761pt;}
.x8_c00332{left:614.239754pt;}
.x3_c00332{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6990aebabba85bfe1cac3a7c.woff2')format("woff");}.ff1_c00333{font-family:ff1_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:ff2_c00333;src:url('chunks/assets/font_e93bd31560f9ffcdfba87114.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_266dbfae9f0753290f82adda.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;}
.m0_c00333{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls4_c00333{letter-spacing:0.000000px;}
.ls2_c00333{letter-spacing:0.011169px;}
.ls1_c00333{letter-spacing:0.153901px;}
.ls3_c00333{letter-spacing:0.189300px;}
.ls0_c00333{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00333{word-spacing:-14.939994px;}
.ws0_c00333{word-spacing:-12.434276px;}
.ws1_c00333{word-spacing:-9.731165px;}
.ws3_c00333{word-spacing:0.000000px;}
._6_c00333{margin-left:-12.716934px;}
._1_c00333{margin-left:-1.105374px;}
._0_c00333{width:1.195563px;}
._4_c00333{width:2.405313px;}
._5_c00333{width:3.541621px;}
._3_c00333{width:5.022861px;}
._2_c00333{width:6.195722px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs4_c00333{font-size:38.879984px;}
.fs3_c00333{font-size:48.239981px;}
.fs0_c00333{font-size:59.759976px;}
.fs1_c00333{font-size:66.239974px;}
.fs2_c00333{font-size:71.999971px;}
.y0_c00333{bottom:0.000000px;}
.y4_c00333{bottom:75.719970px;}
.y3_c00333{bottom:113.879954px;}
.y1d_c00333{bottom:133.499947px;}
.y1c_c00333{bottom:151.859939px;}
.y1b_c00333{bottom:169.859932px;}
.y1a_c00333{bottom:176.699929px;}
.y19_c00333{bottom:187.139925px;}
.y18_c00333{bottom:204.419918px;}
.y17_c00333{bottom:211.259915px;}
.y16_c00333{bottom:222.419911px;}
.y15_c00333{bottom:378.299849px;}
.y13_c00333{bottom:409.259836px;}
.y14_c00333{bottom:417.539833px;}
.y12_c00333{bottom:440.399824px;}
.y11_c00333{bottom:471.359811px;}
.y10_c00333{bottom:502.499799px;}
.yf_c00333{bottom:533.459787px;}
.ye_c00333{bottom:556.679777px;}
.yd_c00333{bottom:578.639769px;}
.yc_c00333{bottom:604.019758px;}
.yb_c00333{bottom:962.759615px;}
.y9_c00333{bottom:993.899602px;}
.ya_c00333{bottom:1002.179599px;}
.y8_c00333{bottom:1024.859590px;}
.y7_c00333{bottom:1055.999578px;}
.y6_c00333{bottom:1086.959565px;}
.y5_c00333{bottom:1118.099553px;}
.y2_c00333{bottom:1156.979537px;}
.y1_c00333{bottom:1195.859522px;}
.h8_c00333{height:38.158578px;}
.h4_c00333{height:47.321348px;}
.h7_c00333{height:47.344903px;}
.h9_c00333{height:49.284472px;}
.h2_c00333{height:54.628572px;}
.h1_c00333{height:58.651148px;}
.h6_c00333{height:65.010911px;}
.h3_c00333{height:70.628878px;}
.h5_c00333{height:70.664034px;}
.h0_c00333{height:1263.000000px;}
.w0_c00333{width:892.500000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:127.799949px;}
.x6_c00333{left:141.479943px;}
.x3_c00333{left:180.899928px;}
.x8_c00333{left:273.239891px;}
.x9_c00333{left:291.599883px;}
.x7_c00333{left:409.320072px;}
.x4_c00333{left:416.339833px;}
.x2_c00333{left:434.159514px;}
.x5_c00333{left:687.959725px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls4_c00333{letter-spacing:0.000000pt;}
.ls2_c00333{letter-spacing:0.009928pt;}
.ls1_c00333{letter-spacing:0.136801pt;}
.ls3_c00333{letter-spacing:0.168267pt;}
.ls0_c00333{letter-spacing:0.332694pt;}
.ws2_c00333{word-spacing:-13.279995pt;}
.ws0_c00333{word-spacing:-11.052689pt;}
.ws1_c00333{word-spacing:-8.649924pt;}
.ws3_c00333{word-spacing:0.000000pt;}
._6_c00333{margin-left:-11.303941pt;}
._1_c00333{margin-left:-0.982555pt;}
._0_c00333{width:1.062723pt;}
._4_c00333{width:2.138056pt;}
._5_c00333{width:3.148108pt;}
._3_c00333{width:4.464766pt;}
._2_c00333{width:5.507308pt;}
.fs4_c00333{font-size:34.559986pt;}
.fs3_c00333{font-size:42.879983pt;}
.fs0_c00333{font-size:53.119979pt;}
.fs1_c00333{font-size:58.879976pt;}
.fs2_c00333{font-size:63.999974pt;}
.y0_c00333{bottom:0.000000pt;}
.y4_c00333{bottom:67.306640pt;}
.y3_c00333{bottom:101.226626pt;}
.y1d_c00333{bottom:118.666619pt;}
.y1c_c00333{bottom:134.986613pt;}
.y1b_c00333{bottom:150.986606pt;}
.y1a_c00333{bottom:157.066604pt;}
.y19_c00333{bottom:166.346600pt;}
.y18_c00333{bottom:181.706594pt;}
.y17_c00333{bottom:187.786592pt;}
.y16_c00333{bottom:197.706588pt;}
.y15_c00333{bottom:336.266532pt;}
.y13_c00333{bottom:363.786521pt;}
.y14_c00333{bottom:371.146518pt;}
.y12_c00333{bottom:391.466510pt;}
.y11_c00333{bottom:418.986499pt;}
.y10_c00333{bottom:446.666488pt;}
.yf_c00333{bottom:474.186477pt;}
.ye_c00333{bottom:494.826469pt;}
.yd_c00333{bottom:514.346461pt;}
.yc_c00333{bottom:536.906452pt;}
.yb_c00333{bottom:855.786324pt;}
.y9_c00333{bottom:883.466313pt;}
.ya_c00333{bottom:890.826310pt;}
.y8_c00333{bottom:910.986302pt;}
.y7_c00333{bottom:938.666291pt;}
.y6_c00333{bottom:966.186280pt;}
.y5_c00333{bottom:993.866269pt;}
.y2_c00333{bottom:1028.426255pt;}
.y1_c00333{bottom:1062.986241pt;}
.h8_c00333{height:33.918736pt;}
.h4_c00333{height:42.063421pt;}
.h7_c00333{height:42.084358pt;}
.h9_c00333{height:43.808420pt;}
.h2_c00333{height:48.558731pt;}
.h1_c00333{height:52.134354pt;}
.h6_c00333{height:57.787477pt;}
.h3_c00333{height:62.781225pt;}
.h5_c00333{height:62.812475pt;}
.h0_c00333{height:1122.666667pt;}
.w0_c00333{width:793.333333pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:113.599955pt;}
.x6_c00333{left:125.759950pt;}
.x3_c00333{left:160.799936pt;}
.x8_c00333{left:242.879903pt;}
.x9_c00333{left:259.199896pt;}
.x7_c00333{left:363.840064pt;}
.x4_c00333{left:370.079852pt;}
.x2_c00333{left:385.919568pt;}
.x5_c00333{left:611.519755pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2c0e0c330653457165970e6.woff2')format("woff");}.ff1_c00334{font-family:ff1_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:ff2_c00334;src:url('chunks/assets/font_faf2a464ec90d60d34ccc152.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_b142439064345386c1ea1df2.woff2')format("woff");}.ff3_c00334{font-family:ff3_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;}
.m0_c00334{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls0_c00334{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00334{word-spacing:0.000000px;}
._1_c00334{margin-left:-1.105374px;}
._0_c00334{width:1.478392px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs0_c00334{font-size:59.759976px;}
.fs1_c00334{font-size:66.239974px;}
.fs2_c00334{font-size:71.999971px;}
.y0_c00334{bottom:0.000000px;}
.y4_c00334{bottom:75.720270px;}
.y3_c00334{bottom:113.880254px;}
.yc_c00334{bottom:285.599886px;}
.yb_c00334{bottom:316.739873px;}
.ya_c00334{bottom:347.699861px;}
.y9_c00334{bottom:378.839848px;}
.y8_c00334{bottom:402.059839px;}
.y7_c00334{bottom:423.839830px;}
.y6_c00334{bottom:445.619822px;}
.y5_c00334{bottom:470.999812px;}
.y2_c00334{bottom:1175.879530px;}
.y1_c00334{bottom:1196.039522px;}
.h2_c00334{height:54.628572px;}
.h1_c00334{height:58.651148px;}
.h4_c00334{height:65.010911px;}
.h3_c00334{height:70.664034px;}
.h0_c00334{height:1263.000000px;}
.w0_c00334{width:892.500000px;}
.x0_c00334{left:0.000000px;}
.x5_c00334{left:127.800262px;}
.x7_c00334{left:143.819942px;}
.x9_c00334{left:180.899928px;}
.x1_c00334{left:181.979927px;}
.x2_c00334{left:329.219408px;}
.x8_c00334{left:409.319972px;}
.x4_c00334{left:434.159826px;}
.x6_c00334{left:701.099720px;}
.x3_c00334{left:765.539694px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
._1_c00334{margin-left:-0.982555pt;}
._0_c00334{width:1.314126pt;}
.fs0_c00334{font-size:53.119979pt;}
.fs1_c00334{font-size:58.879976pt;}
.fs2_c00334{font-size:63.999974pt;}
.y0_c00334{bottom:0.000000pt;}
.y4_c00334{bottom:67.306906pt;}
.y3_c00334{bottom:101.226893pt;}
.yc_c00334{bottom:253.866565pt;}
.yb_c00334{bottom:281.546554pt;}
.ya_c00334{bottom:309.066543pt;}
.y9_c00334{bottom:336.746532pt;}
.y8_c00334{bottom:357.386524pt;}
.y7_c00334{bottom:376.746516pt;}
.y6_c00334{bottom:396.106508pt;}
.y5_c00334{bottom:418.666499pt;}
.y2_c00334{bottom:1045.226249pt;}
.y1_c00334{bottom:1063.146241pt;}
.h2_c00334{height:48.558731pt;}
.h1_c00334{height:52.134354pt;}
.h4_c00334{height:57.787477pt;}
.h3_c00334{height:62.812475pt;}
.h0_c00334{height:1122.666667pt;}
.w0_c00334{width:793.333333pt;}
.x0_c00334{left:0.000000pt;}
.x5_c00334{left:113.600233pt;}
.x7_c00334{left:127.839949pt;}
.x9_c00334{left:160.799936pt;}
.x1_c00334{left:161.759935pt;}
.x2_c00334{left:292.639474pt;}
.x8_c00334{left:363.839975pt;}
.x4_c00334{left:385.919846pt;}
.x6_c00334{left:623.199751pt;}
.x3_c00334{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_839b03b28dbc8bc67c3eb2bb.woff2')format("woff");}.ff1_c00335{font-family:ff1_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:ff2_c00335;src:url('chunks/assets/font_ebd52e5080591d0dfd17dd6e.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_481052c373359058a1f085eb.woff2')format("woff");}.ff3_c00335{font-family:ff3_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;}
.m0_c00335{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00335{word-spacing:-16.559993px;}
.ws1_c00335{word-spacing:0.000000px;}
._1_c00335{margin-left:-1.105374px;}
._0_c00335{width:1.195563px;}
._2_c00335{width:8.630965px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs0_c00335{font-size:59.759976px;}
.fs1_c00335{font-size:66.239974px;}
.fs2_c00335{font-size:71.999971px;}
.y0_c00335{bottom:0.000000px;}
.y4_c00335{bottom:75.719970px;}
.y3_c00335{bottom:113.879954px;}
.ye_c00335{bottom:142.140243px;}
.yd_c00335{bottom:165.359934px;}
.yc_c00335{bottom:187.139925px;}
.yb_c00335{bottom:212.519915px;}
.ya_c00335{bottom:656.939737px;}
.y9_c00335{bottom:687.899725px;}
.y8_c00335{bottom:717.779713px;}
.y7_c00335{bottom:739.739704px;}
.y6_c00335{bottom:761.519695px;}
.y5_c00335{bottom:786.899685px;}
.y2_c00335{bottom:1156.979537px;}
.y1_c00335{bottom:1195.859522px;}
.h2_c00335{height:54.628572px;}
.h1_c00335{height:58.651148px;}
.h4_c00335{height:65.010911px;}
.h3_c00335{height:70.664034px;}
.h0_c00335{height:1263.000000px;}
.w0_c00335{width:892.500000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:127.799949px;}
.x8_c00335{left:142.919943px;}
.x4_c00335{left:153.899938px;}
.x6_c00335{left:180.899928px;}
.x5_c00335{left:309.419370px;}
.x2_c00335{left:434.159514px;}
.x9_c00335{left:446.579821px;}
.x7_c00335{left:667.619733px;}
.x3_c00335{left:686.159726px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws0_c00335{word-spacing:-14.719994pt;}
.ws1_c00335{word-spacing:0.000000pt;}
._1_c00335{margin-left:-0.982555pt;}
._0_c00335{width:1.062723pt;}
._2_c00335{width:7.671969pt;}
.fs0_c00335{font-size:53.119979pt;}
.fs1_c00335{font-size:58.879976pt;}
.fs2_c00335{font-size:63.999974pt;}
.y0_c00335{bottom:0.000000pt;}
.y4_c00335{bottom:67.306640pt;}
.y3_c00335{bottom:101.226626pt;}
.ye_c00335{bottom:126.346883pt;}
.yd_c00335{bottom:146.986608pt;}
.yc_c00335{bottom:166.346600pt;}
.yb_c00335{bottom:188.906591pt;}
.ya_c00335{bottom:583.946433pt;}
.y9_c00335{bottom:611.466422pt;}
.y8_c00335{bottom:638.026411pt;}
.y7_c00335{bottom:657.546404pt;}
.y6_c00335{bottom:676.906396pt;}
.y5_c00335{bottom:699.466387pt;}
.y2_c00335{bottom:1028.426255pt;}
.y1_c00335{bottom:1062.986241pt;}
.h2_c00335{height:48.558731pt;}
.h1_c00335{height:52.134354pt;}
.h4_c00335{height:57.787477pt;}
.h3_c00335{height:62.812475pt;}
.h0_c00335{height:1122.666667pt;}
.w0_c00335{width:793.333333pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:113.599955pt;}
.x8_c00335{left:127.039949pt;}
.x4_c00335{left:136.799945pt;}
.x6_c00335{left:160.799936pt;}
.x5_c00335{left:275.039440pt;}
.x2_c00335{left:385.919568pt;}
.x9_c00335{left:396.959841pt;}
.x7_c00335{left:593.439763pt;}
.x3_c00335{left:609.919756pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e6b9d58fda0f04e6606367b.woff2')format("woff");}.ff1_c00336{font-family:ff1_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:ff2_c00336;src:url('chunks/assets/font_89600bc1ba934012f28c9b5e.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_1055e4a6c142bebf9610c5da.woff2')format("woff");}.ff3_c00336{font-family:ff3_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:ff4_c00336;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00336{font-family:ff4_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;}
.m0_c00336{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls1_c00336{letter-spacing:0.000000px;}
.ls0_c00336{letter-spacing:2.171879px;}
.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;}
}
.ws0_c00336{word-spacing:-17.999993px;}
.ws1_c00336{word-spacing:0.000000px;}
._1_c00336{margin-left:-1.105374px;}
._0_c00336{width:1.478392px;}
._2_c00336{width:3.441627px;}
._6_c00336{width:4.588163px;}
._5_c00336{width:5.762165px;}
._3_c00336{width:7.662491px;}
._4_c00336{width:8.783495px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs0_c00336{font-size:59.759976px;}
.fs1_c00336{font-size:66.239974px;}
.fs2_c00336{font-size:71.999971px;}
.y0_c00336{bottom:0.000000px;}
.y4_c00336{bottom:75.900270px;}
.y3_c00336{bottom:114.060254px;}
.y24_c00336{bottom:173.639931px;}
.y23_c00336{bottom:204.779918px;}
.y22_c00336{bottom:235.739906px;}
.y21_c00336{bottom:266.879893px;}
.y20_c00336{bottom:297.839881px;}
.y1f_c00336{bottom:328.979868px;}
.y1e_c00336{bottom:359.939856px;}
.y1d_c00336{bottom:391.079844px;}
.y1c_c00336{bottom:422.039831px;}
.y1b_c00336{bottom:453.179819px;}
.y1a_c00336{bottom:484.139806px;}
.y19_c00336{bottom:515.279794px;}
.y18_c00336{bottom:546.239782px;}
.y17_c00336{bottom:577.379769px;}
.y16_c00336{bottom:608.339757px;}
.y15_c00336{bottom:639.479744px;}
.y14_c00336{bottom:670.439732px;}
.y13_c00336{bottom:701.579719px;}
.y12_c00336{bottom:732.539707px;}
.y11_c00336{bottom:763.679695px;}
.y10_c00336{bottom:794.639682px;}
.yf_c00336{bottom:825.599670px;}
.ye_c00336{bottom:856.739657px;}
.yd_c00336{bottom:887.699645px;}
.yc_c00336{bottom:918.839632px;}
.yb_c00336{bottom:950.159620px;}
.ya_c00336{bottom:981.299607px;}
.y9_c00336{bottom:1012.259595px;}
.y8_c00336{bottom:1043.399583px;}
.y7_c00336{bottom:1074.359570px;}
.y6_c00336{bottom:1105.499558px;}
.y5_c00336{bottom:1136.459545px;}
.y2_c00336{bottom:1176.059530px;}
.y1_c00336{bottom:1196.219522px;}
.h2_c00336{height:54.628572px;}
.h1_c00336{height:58.651148px;}
.h4_c00336{height:70.628878px;}
.h3_c00336{height:70.664034px;}
.h0_c00336{height:1263.000000px;}
.w0_c00336{width:892.500000px;}
.x0_c00336{left:0.000000px;}
.x5_c00336{left:127.620262px;}
.x6_c00336{left:180.719928px;}
.x1_c00336{left:181.799927px;}
.x2_c00336{left:329.039408px;}
.x4_c00336{left:433.979826px;}
.x3_c00336{left:765.359694px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls1_c00336{letter-spacing:0.000000pt;}
.ls0_c00336{letter-spacing:1.930559pt;}
.ws0_c00336{word-spacing:-15.999994pt;}
.ws1_c00336{word-spacing:0.000000pt;}
._1_c00336{margin-left:-0.982555pt;}
._0_c00336{width:1.314126pt;}
._2_c00336{width:3.059224pt;}
._6_c00336{width:4.078367pt;}
._5_c00336{width:5.121925pt;}
._3_c00336{width:6.811103pt;}
._4_c00336{width:7.807551pt;}
.fs0_c00336{font-size:53.119979pt;}
.fs1_c00336{font-size:58.879976pt;}
.fs2_c00336{font-size:63.999974pt;}
.y0_c00336{bottom:0.000000pt;}
.y4_c00336{bottom:67.466906pt;}
.y3_c00336{bottom:101.386893pt;}
.y24_c00336{bottom:154.346605pt;}
.y23_c00336{bottom:182.026594pt;}
.y22_c00336{bottom:209.546583pt;}
.y21_c00336{bottom:237.226572pt;}
.y20_c00336{bottom:264.746561pt;}
.y1f_c00336{bottom:292.426550pt;}
.y1e_c00336{bottom:319.946539pt;}
.y1d_c00336{bottom:347.626528pt;}
.y1c_c00336{bottom:375.146517pt;}
.y1b_c00336{bottom:402.826506pt;}
.y1a_c00336{bottom:430.346495pt;}
.y19_c00336{bottom:458.026483pt;}
.y18_c00336{bottom:485.546472pt;}
.y17_c00336{bottom:513.226461pt;}
.y16_c00336{bottom:540.746450pt;}
.y15_c00336{bottom:568.426439pt;}
.y14_c00336{bottom:595.946428pt;}
.y13_c00336{bottom:623.626417pt;}
.y12_c00336{bottom:651.146406pt;}
.y11_c00336{bottom:678.826395pt;}
.y10_c00336{bottom:706.346384pt;}
.yf_c00336{bottom:733.866373pt;}
.ye_c00336{bottom:761.546362pt;}
.yd_c00336{bottom:789.066351pt;}
.yc_c00336{bottom:816.746340pt;}
.yb_c00336{bottom:844.586329pt;}
.ya_c00336{bottom:872.266318pt;}
.y9_c00336{bottom:899.786307pt;}
.y8_c00336{bottom:927.466296pt;}
.y7_c00336{bottom:954.986285pt;}
.y6_c00336{bottom:982.666274pt;}
.y5_c00336{bottom:1010.186263pt;}
.y2_c00336{bottom:1045.386249pt;}
.y1_c00336{bottom:1063.306241pt;}
.h2_c00336{height:48.558731pt;}
.h1_c00336{height:52.134354pt;}
.h4_c00336{height:62.781225pt;}
.h3_c00336{height:62.812475pt;}
.h0_c00336{height:1122.666667pt;}
.w0_c00336{width:793.333333pt;}
.x0_c00336{left:0.000000pt;}
.x5_c00336{left:113.440233pt;}
.x6_c00336{left:160.639936pt;}
.x1_c00336{left:161.599935pt;}
.x2_c00336{left:292.479474pt;}
.x4_c00336{left:385.759846pt;}
.x3_c00336{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09cb687036c8363eee9aa986.woff2')format("woff");}.ff1_c00337{font-family:ff1_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:ff2_c00337;src:url('chunks/assets/font_434339f66ce21f2d5623f5da.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_2a584a967f0fb6e97ef56903.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.311035;font-style:normal;font-weight:normal;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_bd0a8aef7c92fc34920045ba.woff2')format("woff");}.ff4_c00337{font-family:ff4_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:ff5_c00337;src:url('chunks/assets/font_1303ab16b295ae6fa70a3aec.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;}
.m0_c00337{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls4_c00337{letter-spacing:0.000000px;}
.ls3_c00337{letter-spacing:0.011169px;}
.ls0_c00337{letter-spacing:0.021238px;}
.ls2_c00337{letter-spacing:0.153901px;}
.ls1_c00337{letter-spacing:0.374281px;}
.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:-17.999993px;}
.ws1_c00337{word-spacing:-12.434276px;}
.ws2_c00337{word-spacing:-9.731165px;}
.ws3_c00337{word-spacing:0.000000px;}
._c_c00337{margin-left:-12.716934px;}
._1_c00337{margin-left:-1.105374px;}
._0_c00337{width:1.195563px;}
._9_c00337{width:2.622914px;}
._b_c00337{width:5.868006px;}
._3_c00337{width:7.751118px;}
._2_c00337{width:8.772764px;}
._6_c00337{width:10.919703px;}
._8_c00337{width:11.928418px;}
._7_c00337{width:13.724709px;}
._a_c00337{width:15.267094px;}
._4_c00337{width:26.368743px;}
._5_c00337{width:27.408064px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs4_c00337{font-size:38.879984px;}
.fs3_c00337{font-size:48.239981px;}
.fs0_c00337{font-size:59.759976px;}
.fs1_c00337{font-size:66.239974px;}
.fs2_c00337{font-size:71.999971px;}
.y0_c00337{bottom:0.000000px;}
.y4_c00337{bottom:75.719970px;}
.y3_c00337{bottom:113.879954px;}
.y1c_c00337{bottom:134.220246px;}
.y1b_c00337{bottom:155.819938px;}
.y1a_c00337{bottom:175.619930px;}
.y19_c00337{bottom:182.459927px;}
.y18_c00337{bottom:193.979922px;}
.y16_c00337{bottom:240.059904px;}
.y17_c00337{bottom:248.339901px;}
.y15_c00337{bottom:271.019892px;}
.y14_c00337{bottom:302.159879px;}
.y13_c00337{bottom:333.119867px;}
.y12_c00337{bottom:364.259854px;}
.y11_c00337{bottom:395.219842px;}
.y10_c00337{bottom:426.359829px;}
.yf_c00337{bottom:457.319817px;}
.ye_c00337{bottom:488.459805px;}
.yd_c00337{bottom:519.419792px;}
.yc_c00337{bottom:550.559780px;}
.yb_c00337{bottom:581.519767px;}
.ya_c00337{bottom:612.479755px;}
.y9_c00337{bottom:643.619743px;}
.y8_c00337{bottom:673.499731px;}
.y7_c00337{bottom:698.879720px;}
.y6_c00337{bottom:1086.599565px;}
.y5_c00337{bottom:1117.739553px;}
.y2_c00337{bottom:1156.979537px;}
.y1_c00337{bottom:1195.859522px;}
.h8_c00337{height:38.158578px;}
.h7_c00337{height:47.344903px;}
.h2_c00337{height:54.628572px;}
.h1_c00337{height:58.651148px;}
.h4_c00337{height:65.010911px;}
.h6_c00337{height:70.628878px;}
.h5_c00337{height:70.664034px;}
.h3_c00337{height:72.562471px;}
.h0_c00337{height:1263.000000px;}
.w0_c00337{width:892.500000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:127.799949px;}
.x9_c00337{left:142.379943px;}
.x4_c00337{left:148.679941px;}
.x6_c00337{left:180.899636px;}
.x7_c00337{left:229.859908px;}
.x8_c00337{left:248.219901px;}
.x2_c00337{left:434.159514px;}
.x3_c00337{left:593.099763px;}
.x5_c00337{left:744.479702px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls4_c00337{letter-spacing:0.000000pt;}
.ls3_c00337{letter-spacing:0.009928pt;}
.ls0_c00337{letter-spacing:0.018878pt;}
.ls2_c00337{letter-spacing:0.136801pt;}
.ls1_c00337{letter-spacing:0.332694pt;}
.ws0_c00337{word-spacing:-15.999994pt;}
.ws1_c00337{word-spacing:-11.052689pt;}
.ws2_c00337{word-spacing:-8.649924pt;}
.ws3_c00337{word-spacing:0.000000pt;}
._c_c00337{margin-left:-11.303941pt;}
._1_c00337{margin-left:-0.982555pt;}
._0_c00337{width:1.062723pt;}
._9_c00337{width:2.331479pt;}
._b_c00337{width:5.216005pt;}
._3_c00337{width:6.889883pt;}
._2_c00337{width:7.798013pt;}
._6_c00337{width:9.706403pt;}
._8_c00337{width:10.603038pt;}
._7_c00337{width:12.199741pt;}
._a_c00337{width:13.570751pt;}
._4_c00337{width:23.438883pt;}
._5_c00337{width:24.362724pt;}
.fs4_c00337{font-size:34.559986pt;}
.fs3_c00337{font-size:42.879983pt;}
.fs0_c00337{font-size:53.119979pt;}
.fs1_c00337{font-size:58.879976pt;}
.fs2_c00337{font-size:63.999974pt;}
.y0_c00337{bottom:0.000000pt;}
.y4_c00337{bottom:67.306640pt;}
.y3_c00337{bottom:101.226626pt;}
.y1c_c00337{bottom:119.306886pt;}
.y1b_c00337{bottom:138.506611pt;}
.y1a_c00337{bottom:156.106604pt;}
.y19_c00337{bottom:162.186602pt;}
.y18_c00337{bottom:172.426598pt;}
.y16_c00337{bottom:213.386581pt;}
.y17_c00337{bottom:220.746578pt;}
.y15_c00337{bottom:240.906570pt;}
.y14_c00337{bottom:268.586559pt;}
.y13_c00337{bottom:296.106548pt;}
.y12_c00337{bottom:323.786537pt;}
.y11_c00337{bottom:351.306526pt;}
.y10_c00337{bottom:378.986515pt;}
.yf_c00337{bottom:406.506504pt;}
.ye_c00337{bottom:434.186493pt;}
.yd_c00337{bottom:461.706482pt;}
.yc_c00337{bottom:489.386471pt;}
.yb_c00337{bottom:516.906460pt;}
.ya_c00337{bottom:544.426449pt;}
.y9_c00337{bottom:572.106438pt;}
.y8_c00337{bottom:598.666427pt;}
.y7_c00337{bottom:621.226418pt;}
.y6_c00337{bottom:965.866280pt;}
.y5_c00337{bottom:993.546269pt;}
.y2_c00337{bottom:1028.426255pt;}
.y1_c00337{bottom:1062.986241pt;}
.h8_c00337{height:33.918736pt;}
.h7_c00337{height:42.084358pt;}
.h2_c00337{height:48.558731pt;}
.h1_c00337{height:52.134354pt;}
.h4_c00337{height:57.787477pt;}
.h6_c00337{height:62.781225pt;}
.h5_c00337{height:62.812475pt;}
.h3_c00337{height:64.499974pt;}
.h0_c00337{height:1122.666667pt;}
.w0_c00337{width:793.333333pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:113.599955pt;}
.x9_c00337{left:126.559949pt;}
.x4_c00337{left:132.159947pt;}
.x6_c00337{left:160.799677pt;}
.x7_c00337{left:204.319918pt;}
.x8_c00337{left:220.639912pt;}
.x2_c00337{left:385.919568pt;}
.x3_c00337{left:527.199789pt;}
.x5_c00337{left:661.759735pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97ce7f5c1f45ecf6b1984b60.woff2')format("woff");}.ff1_c00338{font-family:ff1_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:ff2_c00338;src:url('chunks/assets/font_0a3e1809690fd1f4c543d083.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_1b599af47328b9be8a191d79.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;}
.m0_c00338{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls3_c00338{letter-spacing:0.000000px;}
.ls1_c00338{letter-spacing:0.011169px;}
.ls2_c00338{letter-spacing:0.189300px;}
.ls0_c00338{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00338{word-spacing:-17.999993px;}
.ws3_c00338{word-spacing:-14.939994px;}
.ws0_c00338{word-spacing:-12.434276px;}
.ws2_c00338{word-spacing:-9.731165px;}
.ws4_c00338{word-spacing:0.000000px;}
._11_c00338{margin-left:-9.543325px;}
._1_c00338{margin-left:-1.105374px;}
._0_c00338{width:1.478392px;}
._6_c00338{width:2.507555px;}
._7_c00338{width:4.375752px;}
._4_c00338{width:5.501196px;}
._5_c00338{width:6.736021px;}
._2_c00338{width:7.843257px;}
._3_c00338{width:8.877805px;}
._8_c00338{width:10.636266px;}
._d_c00338{width:12.162692px;}
._c_c00338{width:14.437972px;}
._9_c00338{width:16.399719px;}
._10_c00338{width:22.940267px;}
._f_c00338{width:23.961890px;}
._b_c00338{width:25.965719px;}
._a_c00338{width:26.987464px;}
._e_c00338{width:28.293454px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs4_c00338{font-size:38.879984px;}
.fs3_c00338{font-size:48.239981px;}
.fs0_c00338{font-size:59.759976px;}
.fs1_c00338{font-size:66.239974px;}
.fs2_c00338{font-size:71.999971px;}
.y0_c00338{bottom:0.000000px;}
.y4_c00338{bottom:75.900270px;}
.y3_c00338{bottom:114.060254px;}
.y28_c00338{bottom:134.400246px;}
.y27_c00338{bottom:153.479939px;}
.y26_c00338{bottom:160.319936px;}
.y25_c00338{bottom:171.659931px;}
.y24_c00338{bottom:205.139918px;}
.y23_c00338{bottom:236.099906px;}
.y22_c00338{bottom:267.239893px;}
.y21_c00338{bottom:298.199881px;}
.y20_c00338{bottom:329.339868px;}
.y1f_c00338{bottom:360.299856px;}
.y1e_c00338{bottom:391.439843px;}
.y1d_c00338{bottom:422.399831px;}
.y1c_c00338{bottom:453.539819px;}
.y1b_c00338{bottom:484.499806px;}
.y1a_c00338{bottom:515.639794px;}
.y19_c00338{bottom:546.599781px;}
.y18_c00338{bottom:577.739769px;}
.y17_c00338{bottom:608.699757px;}
.y16_c00338{bottom:639.839744px;}
.y15_c00338{bottom:670.799732px;}
.y14_c00338{bottom:701.939719px;}
.y13_c00338{bottom:732.899707px;}
.y12_c00338{bottom:764.039694px;}
.y11_c00338{bottom:794.999682px;}
.y10_c00338{bottom:825.959670px;}
.yf_c00338{bottom:857.099657px;}
.ye_c00338{bottom:888.059645px;}
.yd_c00338{bottom:919.199632px;}
.yc_c00338{bottom:950.159620px;}
.yb_c00338{bottom:981.299607px;}
.ya_c00338{bottom:1012.259595px;}
.y8_c00338{bottom:1043.399583px;}
.y9_c00338{bottom:1051.679579px;}
.y7_c00338{bottom:1074.359570px;}
.y6_c00338{bottom:1105.499558px;}
.y5_c00338{bottom:1136.459545px;}
.y2_c00338{bottom:1176.059530px;}
.y1_c00338{bottom:1196.219522px;}
.h6_c00338{height:38.158578px;}
.h5_c00338{height:47.344903px;}
.h2_c00338{height:54.628572px;}
.h1_c00338{height:58.651148px;}
.h4_c00338{height:70.628878px;}
.h3_c00338{height:70.664034px;}
.h0_c00338{height:1263.000000px;}
.w0_c00338{width:892.500000px;}
.x0_c00338{left:0.000000px;}
.x5_c00338{left:127.620262px;}
.x9_c00338{left:142.199943px;}
.x6_c00338{left:180.719928px;}
.x1_c00338{left:181.799927px;}
.x2_c00338{left:329.039408px;}
.x4_c00338{left:433.979826px;}
.x7_c00338{left:557.639777px;}
.x8_c00338{left:575.999770px;}
.x3_c00338{left:765.359694px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls3_c00338{letter-spacing:0.000000pt;}
.ls1_c00338{letter-spacing:0.009928pt;}
.ls2_c00338{letter-spacing:0.168267pt;}
.ls0_c00338{letter-spacing:0.332694pt;}
.ws1_c00338{word-spacing:-15.999994pt;}
.ws3_c00338{word-spacing:-13.279995pt;}
.ws0_c00338{word-spacing:-11.052689pt;}
.ws2_c00338{word-spacing:-8.649924pt;}
.ws4_c00338{word-spacing:0.000000pt;}
._11_c00338{margin-left:-8.482955pt;}
._1_c00338{margin-left:-0.982555pt;}
._0_c00338{width:1.314126pt;}
._6_c00338{width:2.228938pt;}
._7_c00338{width:3.889557pt;}
._4_c00338{width:4.889952pt;}
._5_c00338{width:5.987574pt;}
._2_c00338{width:6.971784pt;}
._3_c00338{width:7.891383pt;}
._8_c00338{width:9.454459pt;}
._d_c00338{width:10.811282pt;}
._c_c00338{width:12.833753pt;}
._9_c00338{width:14.577528pt;}
._10_c00338{width:20.391348pt;}
._f_c00338{width:21.299458pt;}
._b_c00338{width:23.080639pt;}
._a_c00338{width:23.988857pt;}
._e_c00338{width:25.149737pt;}
.fs4_c00338{font-size:34.559986pt;}
.fs3_c00338{font-size:42.879983pt;}
.fs0_c00338{font-size:53.119979pt;}
.fs1_c00338{font-size:58.879976pt;}
.fs2_c00338{font-size:63.999974pt;}
.y0_c00338{bottom:0.000000pt;}
.y4_c00338{bottom:67.466906pt;}
.y3_c00338{bottom:101.386893pt;}
.y28_c00338{bottom:119.466886pt;}
.y27_c00338{bottom:136.426612pt;}
.y26_c00338{bottom:142.506610pt;}
.y25_c00338{bottom:152.586606pt;}
.y24_c00338{bottom:182.346594pt;}
.y23_c00338{bottom:209.866583pt;}
.y22_c00338{bottom:237.546572pt;}
.y21_c00338{bottom:265.066561pt;}
.y20_c00338{bottom:292.746550pt;}
.y1f_c00338{bottom:320.266539pt;}
.y1e_c00338{bottom:347.946527pt;}
.y1d_c00338{bottom:375.466516pt;}
.y1c_c00338{bottom:403.146505pt;}
.y1b_c00338{bottom:430.666494pt;}
.y1a_c00338{bottom:458.346483pt;}
.y19_c00338{bottom:485.866472pt;}
.y18_c00338{bottom:513.546461pt;}
.y17_c00338{bottom:541.066450pt;}
.y16_c00338{bottom:568.746439pt;}
.y15_c00338{bottom:596.266428pt;}
.y14_c00338{bottom:623.946417pt;}
.y13_c00338{bottom:651.466406pt;}
.y12_c00338{bottom:679.146395pt;}
.y11_c00338{bottom:706.666384pt;}
.y10_c00338{bottom:734.186373pt;}
.yf_c00338{bottom:761.866362pt;}
.ye_c00338{bottom:789.386351pt;}
.yd_c00338{bottom:817.066340pt;}
.yc_c00338{bottom:844.586329pt;}
.yb_c00338{bottom:872.266318pt;}
.ya_c00338{bottom:899.786307pt;}
.y8_c00338{bottom:927.466296pt;}
.y9_c00338{bottom:934.826293pt;}
.y7_c00338{bottom:954.986285pt;}
.y6_c00338{bottom:982.666274pt;}
.y5_c00338{bottom:1010.186263pt;}
.y2_c00338{bottom:1045.386249pt;}
.y1_c00338{bottom:1063.306241pt;}
.h6_c00338{height:33.918736pt;}
.h5_c00338{height:42.084358pt;}
.h2_c00338{height:48.558731pt;}
.h1_c00338{height:52.134354pt;}
.h4_c00338{height:62.781225pt;}
.h3_c00338{height:62.812475pt;}
.h0_c00338{height:1122.666667pt;}
.w0_c00338{width:793.333333pt;}
.x0_c00338{left:0.000000pt;}
.x5_c00338{left:113.440233pt;}
.x9_c00338{left:126.399949pt;}
.x6_c00338{left:160.639936pt;}
.x1_c00338{left:161.599935pt;}
.x2_c00338{left:292.479474pt;}
.x4_c00338{left:385.759846pt;}
.x7_c00338{left:495.679802pt;}
.x8_c00338{left:511.999795pt;}
.x3_c00338{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_871eebf3d730bd94d398f038.woff2')format("woff");}.ff1_c00339{font-family:ff1_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:ff2_c00339;src:url('chunks/assets/font_383e8ecac171db80295d172d.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_3fd03b5bfcd43ddc8f28780a.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;}
.m0_c00339{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls5_c00339{letter-spacing:0.000000px;}
.ls3_c00339{letter-spacing:0.011169px;}
.ls0_c00339{letter-spacing:0.021282px;}
.ls2_c00339{letter-spacing:0.153901px;}
.ls4_c00339{letter-spacing:0.189300px;}
.ls1_c00339{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00339{word-spacing:-12.434276px;}
.ws1_c00339{word-spacing:-9.731165px;}
.ws2_c00339{word-spacing:0.000000px;}
._c_c00339{margin-left:-12.716934px;}
._1_c00339{margin-left:-1.105374px;}
._0_c00339{width:1.195563px;}
._9_c00339{width:2.435302px;}
._2_c00339{width:3.467570px;}
._b_c00339{width:4.564740px;}
._3_c00339{width:6.062224px;}
._4_c00339{width:7.162074px;}
._6_c00339{width:8.286223px;}
._7_c00339{width:14.525564px;}
._8_c00339{width:15.834050px;}
._5_c00339{width:19.185827px;}
._a_c00339{width:21.012799px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs4_c00339{font-size:38.879984px;}
.fs3_c00339{font-size:48.239981px;}
.fs0_c00339{font-size:59.759976px;}
.fs1_c00339{font-size:66.239974px;}
.fs2_c00339{font-size:71.999971px;}
.y0_c00339{bottom:0.000000px;}
.y4_c00339{bottom:75.719970px;}
.y3_c00339{bottom:113.879954px;}
.y28_c00339{bottom:133.499947px;}
.y27_c00339{bottom:151.859939px;}
.y26_c00339{bottom:169.859932px;}
.y25_c00339{bottom:176.699929px;}
.y24_c00339{bottom:187.139925px;}
.y23_c00339{bottom:204.419918px;}
.y22_c00339{bottom:211.259915px;}
.y21_c00339{bottom:222.419911px;}
.y20_c00339{bottom:265.079894px;}
.y1f_c00339{bottom:296.219882px;}
.y1e_c00339{bottom:327.179869px;}
.y1d_c00339{bottom:358.319857px;}
.y1c_c00339{bottom:381.539847px;}
.y1b_c00339{bottom:403.319839px;}
.y1a_c00339{bottom:428.519829px;}
.y19_c00339{bottom:559.199776px;}
.y17_c00339{bottom:590.159764px;}
.y18_c00339{bottom:598.439761px;}
.y16_c00339{bottom:621.299751px;}
.y15_c00339{bottom:652.259739px;}
.y14_c00339{bottom:683.399727px;}
.y13_c00339{bottom:714.359714px;}
.y12_c00339{bottom:745.499702px;}
.y11_c00339{bottom:776.459689px;}
.y10_c00339{bottom:807.599677px;}
.yf_c00339{bottom:838.559665px;}
.ye_c00339{bottom:869.699652px;}
.yd_c00339{bottom:900.659640px;}
.yb_c00339{bottom:931.799627px;}
.yc_c00339{bottom:940.079624px;}
.ya_c00339{bottom:962.759615px;}
.y9_c00339{bottom:993.899602px;}
.y8_c00339{bottom:1024.859590px;}
.y7_c00339{bottom:1055.999578px;}
.y6_c00339{bottom:1086.959565px;}
.y5_c00339{bottom:1118.099553px;}
.y2_c00339{bottom:1156.979537px;}
.y1_c00339{bottom:1195.859522px;}
.h8_c00339{height:38.158578px;}
.h6_c00339{height:47.321348px;}
.h5_c00339{height:47.344903px;}
.h9_c00339{height:49.284472px;}
.h2_c00339{height:54.628572px;}
.h1_c00339{height:58.651148px;}
.h7_c00339{height:65.010911px;}
.h3_c00339{height:70.628878px;}
.h4_c00339{height:70.664034px;}
.h0_c00339{height:1263.000000px;}
.w0_c00339{width:892.500000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:127.799949px;}
.x9_c00339{left:129.959948px;}
.xb_c00339{left:142.379943px;}
.x3_c00339{left:180.899928px;}
.xa_c00339{left:245.699902px;}
.x4_c00339{left:321.839871px;}
.x5_c00339{left:340.199864px;}
.x2_c00339{left:434.159514px;}
.x6_c00339{left:499.859800px;}
.x7_c00339{left:518.219793px;}
.x8_c00339{left:762.119709px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls5_c00339{letter-spacing:0.000000pt;}
.ls3_c00339{letter-spacing:0.009928pt;}
.ls0_c00339{letter-spacing:0.018917pt;}
.ls2_c00339{letter-spacing:0.136801pt;}
.ls4_c00339{letter-spacing:0.168267pt;}
.ls1_c00339{letter-spacing:0.332694pt;}
.ws0_c00339{word-spacing:-11.052689pt;}
.ws1_c00339{word-spacing:-8.649924pt;}
.ws2_c00339{word-spacing:0.000000pt;}
._c_c00339{margin-left:-11.303941pt;}
._1_c00339{margin-left:-0.982555pt;}
._0_c00339{width:1.062723pt;}
._9_c00339{width:2.164713pt;}
._2_c00339{width:3.082285pt;}
._b_c00339{width:4.057546pt;}
._3_c00339{width:5.388644pt;}
._4_c00339{width:6.366288pt;}
._6_c00339{width:7.365531pt;}
._7_c00339{width:12.911612pt;}
._8_c00339{width:14.074711pt;}
._5_c00339{width:17.054068pt;}
._a_c00339{width:18.678044pt;}
.fs4_c00339{font-size:34.559986pt;}
.fs3_c00339{font-size:42.879983pt;}
.fs0_c00339{font-size:53.119979pt;}
.fs1_c00339{font-size:58.879976pt;}
.fs2_c00339{font-size:63.999974pt;}
.y0_c00339{bottom:0.000000pt;}
.y4_c00339{bottom:67.306640pt;}
.y3_c00339{bottom:101.226626pt;}
.y28_c00339{bottom:118.666619pt;}
.y27_c00339{bottom:134.986613pt;}
.y26_c00339{bottom:150.986606pt;}
.y25_c00339{bottom:157.066604pt;}
.y24_c00339{bottom:166.346600pt;}
.y23_c00339{bottom:181.706594pt;}
.y22_c00339{bottom:187.786592pt;}
.y21_c00339{bottom:197.706588pt;}
.y20_c00339{bottom:235.626572pt;}
.y1f_c00339{bottom:263.306561pt;}
.y1e_c00339{bottom:290.826550pt;}
.y1d_c00339{bottom:318.506539pt;}
.y1c_c00339{bottom:339.146531pt;}
.y1b_c00339{bottom:358.506523pt;}
.y1a_c00339{bottom:380.906514pt;}
.y19_c00339{bottom:497.066468pt;}
.y17_c00339{bottom:524.586457pt;}
.y18_c00339{bottom:531.946454pt;}
.y16_c00339{bottom:552.266446pt;}
.y15_c00339{bottom:579.786435pt;}
.y14_c00339{bottom:607.466424pt;}
.y13_c00339{bottom:634.986413pt;}
.y12_c00339{bottom:662.666402pt;}
.y11_c00339{bottom:690.186391pt;}
.y10_c00339{bottom:717.866380pt;}
.yf_c00339{bottom:745.386369pt;}
.ye_c00339{bottom:773.066357pt;}
.yd_c00339{bottom:800.586346pt;}
.yb_c00339{bottom:828.266335pt;}
.yc_c00339{bottom:835.626332pt;}
.ya_c00339{bottom:855.786324pt;}
.y9_c00339{bottom:883.466313pt;}
.y8_c00339{bottom:910.986302pt;}
.y7_c00339{bottom:938.666291pt;}
.y6_c00339{bottom:966.186280pt;}
.y5_c00339{bottom:993.866269pt;}
.y2_c00339{bottom:1028.426255pt;}
.y1_c00339{bottom:1062.986241pt;}
.h8_c00339{height:33.918736pt;}
.h6_c00339{height:42.063421pt;}
.h5_c00339{height:42.084358pt;}
.h9_c00339{height:43.808420pt;}
.h2_c00339{height:48.558731pt;}
.h1_c00339{height:52.134354pt;}
.h7_c00339{height:57.787477pt;}
.h3_c00339{height:62.781225pt;}
.h4_c00339{height:62.812475pt;}
.h0_c00339{height:1122.666667pt;}
.w0_c00339{width:793.333333pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:113.599955pt;}
.x9_c00339{left:115.519954pt;}
.xb_c00339{left:126.559949pt;}
.x3_c00339{left:160.799936pt;}
.xa_c00339{left:218.399913pt;}
.x4_c00339{left:286.079886pt;}
.x5_c00339{left:302.399879pt;}
.x2_c00339{left:385.919568pt;}
.x6_c00339{left:444.319822pt;}
.x7_c00339{left:460.639816pt;}
.x8_c00339{left:677.439742pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac112b7eb519cde590b4f607.woff2')format("woff");}.ff1_c00340{font-family:ff1_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:ff2_c00340;src:url('chunks/assets/font_7b1f10f844bfece5b50ad933.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_768f775eaf50b7d982b2d93f.woff2')format("woff");}.ff3_c00340{font-family:ff3_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:ff4_c00340;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00340{font-family:ff4_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:ff5_c00340;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls4_c00340{letter-spacing:0.000000px;}
.ls2_c00340{letter-spacing:0.011169px;}
.ls1_c00340{letter-spacing:0.153901px;}
.ls3_c00340{letter-spacing:0.189300px;}
.ls0_c00340{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00340{word-spacing:-17.999993px;}
.ws0_c00340{word-spacing:-12.434276px;}
.ws2_c00340{word-spacing:-9.731165px;}
.ws3_c00340{word-spacing:0.000000px;}
._5_c00340{margin-left:-12.716934px;}
._1_c00340{margin-left:-1.105374px;}
._0_c00340{width:1.478392px;}
._2_c00340{width:2.977365px;}
._3_c00340{width:4.359712px;}
._4_c00340{width:5.660679px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs4_c00340{font-size:38.879984px;}
.fs3_c00340{font-size:48.239981px;}
.fs0_c00340{font-size:59.759976px;}
.fs1_c00340{font-size:66.239974px;}
.fs2_c00340{font-size:71.999971px;}
.y0_c00340{bottom:0.000000px;}
.y4_c00340{bottom:75.720270px;}
.y3_c00340{bottom:113.880254px;}
.y22_c00340{bottom:133.139947px;}
.y21_c00340{bottom:150.419940px;}
.y20_c00340{bottom:157.259937px;}
.y1f_c00340{bottom:168.059933px;}
.y1e_c00340{bottom:186.059926px;}
.y1d_c00340{bottom:192.899923px;}
.y1c_c00340{bottom:203.339919px;}
.y1b_c00340{bottom:220.439912px;}
.y1a_c00340{bottom:227.279909px;}
.y19_c00340{bottom:238.619905px;}
.y17_c00340{bottom:323.219871px;}
.y18_c00340{bottom:331.499867px;}
.y16_c00340{bottom:354.359858px;}
.y15_c00340{bottom:385.319846px;}
.y14_c00340{bottom:416.459833px;}
.y13_c00340{bottom:447.419821px;}
.y12_c00340{bottom:478.559809px;}
.y11_c00340{bottom:509.159796px;}
.y10_c00340{bottom:532.739787px;}
.yf_c00340{bottom:554.519778px;}
.ye_c00340{bottom:579.899768px;}
.yd_c00340{bottom:949.979620px;}
.yb_c00340{bottom:981.119608px;}
.yc_c00340{bottom:989.399604px;}
.ya_c00340{bottom:1012.079595px;}
.y9_c00340{bottom:1042.859583px;}
.y7_c00340{bottom:1074.179570px;}
.y8_c00340{bottom:1082.459567px;}
.y6_c00340{bottom:1105.319558px;}
.y5_c00340{bottom:1136.279545px;}
.y2_c00340{bottom:1175.879530px;}
.y1_c00340{bottom:1196.039522px;}
.h9_c00340{height:38.158578px;}
.h4_c00340{height:47.321348px;}
.h6_c00340{height:47.344903px;}
.ha_c00340{height:49.284472px;}
.h2_c00340{height:54.628572px;}
.h1_c00340{height:58.651148px;}
.h7_c00340{height:65.010911px;}
.h3_c00340{height:70.628878px;}
.h5_c00340{height:70.664034px;}
.h8_c00340{height:72.562471px;}
.h0_c00340{height:1263.000000px;}
.w0_c00340{width:892.500000px;}
.x0_c00340{left:0.000000px;}
.x5_c00340{left:127.800262px;}
.xc_c00340{left:136.799945px;}
.x10_c00340{left:142.379943px;}
.x6_c00340{left:180.899928px;}
.x1_c00340{left:181.979927px;}
.xe_c00340{left:231.479907px;}
.xf_c00340{left:249.839900px;}
.xd_c00340{left:289.619884px;}
.x2_c00340{left:329.219408px;}
.x9_c00340{left:403.199839px;}
.x7_c00340{left:407.879837px;}
.xa_c00340{left:421.559831px;}
.x8_c00340{left:426.239830px;}
.x4_c00340{left:434.159826px;}
.xb_c00340{left:683.459727px;}
.x3_c00340{left:765.539694px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls4_c00340{letter-spacing:0.000000pt;}
.ls2_c00340{letter-spacing:0.009928pt;}
.ls1_c00340{letter-spacing:0.136801pt;}
.ls3_c00340{letter-spacing:0.168267pt;}
.ls0_c00340{letter-spacing:0.332694pt;}
.ws1_c00340{word-spacing:-15.999994pt;}
.ws0_c00340{word-spacing:-11.052689pt;}
.ws2_c00340{word-spacing:-8.649924pt;}
.ws3_c00340{word-spacing:0.000000pt;}
._5_c00340{margin-left:-11.303941pt;}
._1_c00340{margin-left:-0.982555pt;}
._0_c00340{width:1.314126pt;}
._2_c00340{width:2.646546pt;}
._3_c00340{width:3.875300pt;}
._4_c00340{width:5.031715pt;}
.fs4_c00340{font-size:34.559986pt;}
.fs3_c00340{font-size:42.879983pt;}
.fs0_c00340{font-size:53.119979pt;}
.fs1_c00340{font-size:58.879976pt;}
.fs2_c00340{font-size:63.999974pt;}
.y0_c00340{bottom:0.000000pt;}
.y4_c00340{bottom:67.306906pt;}
.y3_c00340{bottom:101.226893pt;}
.y22_c00340{bottom:118.346619pt;}
.y21_c00340{bottom:133.706613pt;}
.y20_c00340{bottom:139.786611pt;}
.y1f_c00340{bottom:149.386607pt;}
.y1e_c00340{bottom:165.386601pt;}
.y1d_c00340{bottom:171.466598pt;}
.y1c_c00340{bottom:180.746594pt;}
.y1b_c00340{bottom:195.946588pt;}
.y1a_c00340{bottom:202.026586pt;}
.y19_c00340{bottom:212.106582pt;}
.y17_c00340{bottom:287.306552pt;}
.y18_c00340{bottom:294.666549pt;}
.y16_c00340{bottom:314.986541pt;}
.y15_c00340{bottom:342.506530pt;}
.y14_c00340{bottom:370.186519pt;}
.y13_c00340{bottom:397.706508pt;}
.y12_c00340{bottom:425.386497pt;}
.y11_c00340{bottom:452.586486pt;}
.y10_c00340{bottom:473.546477pt;}
.yf_c00340{bottom:492.906470pt;}
.ye_c00340{bottom:515.466460pt;}
.yd_c00340{bottom:844.426329pt;}
.yb_c00340{bottom:872.106318pt;}
.yc_c00340{bottom:879.466315pt;}
.ya_c00340{bottom:899.626307pt;}
.y9_c00340{bottom:926.986296pt;}
.y7_c00340{bottom:954.826285pt;}
.y8_c00340{bottom:962.186282pt;}
.y6_c00340{bottom:982.506274pt;}
.y5_c00340{bottom:1010.026263pt;}
.y2_c00340{bottom:1045.226249pt;}
.y1_c00340{bottom:1063.146241pt;}
.h9_c00340{height:33.918736pt;}
.h4_c00340{height:42.063421pt;}
.h6_c00340{height:42.084358pt;}
.ha_c00340{height:43.808420pt;}
.h2_c00340{height:48.558731pt;}
.h1_c00340{height:52.134354pt;}
.h7_c00340{height:57.787477pt;}
.h3_c00340{height:62.781225pt;}
.h5_c00340{height:62.812475pt;}
.h8_c00340{height:64.499974pt;}
.h0_c00340{height:1122.666667pt;}
.w0_c00340{width:793.333333pt;}
.x0_c00340{left:0.000000pt;}
.x5_c00340{left:113.600233pt;}
.xc_c00340{left:121.599951pt;}
.x10_c00340{left:126.559949pt;}
.x6_c00340{left:160.799936pt;}
.x1_c00340{left:161.759935pt;}
.xe_c00340{left:205.759918pt;}
.xf_c00340{left:222.079911pt;}
.xd_c00340{left:257.439897pt;}
.x2_c00340{left:292.639474pt;}
.x9_c00340{left:358.399857pt;}
.x7_c00340{left:362.559855pt;}
.xa_c00340{left:374.719850pt;}
.x8_c00340{left:378.879848pt;}
.x4_c00340{left:385.919846pt;}
.xb_c00340{left:607.519757pt;}
.x3_c00340{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6642bc1b6561880b1accb8a4.woff2')format("woff");}.ff1_c00341{font-family:ff1_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:ff2_c00341;src:url('chunks/assets/font_4570fa660d8e7ffae65f6ea0.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.311035;font-style:normal;font-weight:normal;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_e6af69bcd1738d5feecca24b.woff2')format("woff");}.ff4_c00341{font-family:ff4_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;}
.m0_c00341{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls4_c00341{letter-spacing:0.000000px;}
.ls2_c00341{letter-spacing:0.011169px;}
.ls1_c00341{letter-spacing:0.153901px;}
.ls3_c00341{letter-spacing:0.189300px;}
.ls0_c00341{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00341{word-spacing:-12.434276px;}
.ws1_c00341{word-spacing:-9.731165px;}
.ws2_c00341{word-spacing:0.000000px;}
._8_c00341{margin-left:-12.716934px;}
._1_c00341{margin-left:-1.105374px;}
._0_c00341{width:1.195563px;}
._6_c00341{width:6.424811px;}
._7_c00341{width:7.750045px;}
._5_c00341{width:10.206396px;}
._4_c00341{width:11.512620px;}
._2_c00341{width:14.394346px;}
._3_c00341{width:15.691241px;}
.fc0_c00341{color:rgb(0,0,0);}
.fs4_c00341{font-size:38.879984px;}
.fs3_c00341{font-size:48.239981px;}
.fs0_c00341{font-size:59.759976px;}
.fs1_c00341{font-size:66.239974px;}
.fs2_c00341{font-size:71.999971px;}
.y0_c00341{bottom:0.000000px;}
.y4_c00341{bottom:75.719970px;}
.y3_c00341{bottom:113.879954px;}
.y1c_c00341{bottom:133.499947px;}
.y1b_c00341{bottom:151.499939px;}
.y1a_c00341{bottom:158.339937px;}
.y19_c00341{bottom:169.139932px;}
.y18_c00341{bottom:187.139925px;}
.y17_c00341{bottom:193.979922px;}
.y16_c00341{bottom:205.319918px;}
.y15_c00341{bottom:289.379884px;}
.y14_c00341{bottom:316.199874px;}
.y13_c00341{bottom:588.359765px;}
.y11_c00341{bottom:619.499752px;}
.y12_c00341{bottom:627.779749px;}
.y10_c00341{bottom:650.459740px;}
.yf_c00341{bottom:681.599727px;}
.ye_c00341{bottom:712.559715px;}
.yd_c00341{bottom:743.699703px;}
.yc_c00341{bottom:773.579691px;}
.yb_c00341{bottom:795.359682px;}
.ya_c00341{bottom:817.139673px;}
.y9_c00341{bottom:842.519663px;}
.y8_c00341{bottom:1055.999578px;}
.y6_c00341{bottom:1086.959565px;}
.y7_c00341{bottom:1095.239562px;}
.y5_c00341{bottom:1118.099553px;}
.y2_c00341{bottom:1156.979537px;}
.y1_c00341{bottom:1195.859522px;}
.h9_c00341{height:38.158578px;}
.h8_c00341{height:47.321348px;}
.h4_c00341{height:47.344903px;}
.ha_c00341{height:49.284472px;}
.h2_c00341{height:54.628572px;}
.h1_c00341{height:58.651148px;}
.h6_c00341{height:65.010911px;}
.h7_c00341{height:70.628878px;}
.h3_c00341{height:70.664034px;}
.h5_c00341{height:72.562471px;}
.h0_c00341{height:1263.000000px;}
.w0_c00341{width:892.500000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:127.799949px;}
.x7_c00341{left:137.339945px;}
.xc_c00341{left:142.379943px;}
.x3_c00341{left:180.899928px;}
.x8_c00341{left:410.219836px;}
.x2_c00341{left:434.159514px;}
.x9_c00341{left:514.259794px;}
.xa_c00341{left:532.619787px;}
.x4_c00341{left:594.179762px;}
.x5_c00341{left:612.539755px;}
.xb_c00341{left:712.079715px;}
.x6_c00341{left:730.079708px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls4_c00341{letter-spacing:0.000000pt;}
.ls2_c00341{letter-spacing:0.009928pt;}
.ls1_c00341{letter-spacing:0.136801pt;}
.ls3_c00341{letter-spacing:0.168267pt;}
.ls0_c00341{letter-spacing:0.332694pt;}
.ws0_c00341{word-spacing:-11.052689pt;}
.ws1_c00341{word-spacing:-8.649924pt;}
.ws2_c00341{word-spacing:0.000000pt;}
._8_c00341{margin-left:-11.303941pt;}
._1_c00341{margin-left:-0.982555pt;}
._0_c00341{width:1.062723pt;}
._6_c00341{width:5.710943pt;}
._7_c00341{width:6.888929pt;}
._5_c00341{width:9.072352pt;}
._4_c00341{width:10.233440pt;}
._2_c00341{width:12.794975pt;}
._3_c00341{width:13.947770pt;}
.fs4_c00341{font-size:34.559986pt;}
.fs3_c00341{font-size:42.879983pt;}
.fs0_c00341{font-size:53.119979pt;}
.fs1_c00341{font-size:58.879976pt;}
.fs2_c00341{font-size:63.999974pt;}
.y0_c00341{bottom:0.000000pt;}
.y4_c00341{bottom:67.306640pt;}
.y3_c00341{bottom:101.226626pt;}
.y1c_c00341{bottom:118.666619pt;}
.y1b_c00341{bottom:134.666613pt;}
.y1a_c00341{bottom:140.746610pt;}
.y19_c00341{bottom:150.346607pt;}
.y18_c00341{bottom:166.346600pt;}
.y17_c00341{bottom:172.426598pt;}
.y16_c00341{bottom:182.506594pt;}
.y15_c00341{bottom:257.226564pt;}
.y14_c00341{bottom:281.066554pt;}
.y13_c00341{bottom:522.986457pt;}
.y11_c00341{bottom:550.666446pt;}
.y12_c00341{bottom:558.026443pt;}
.y10_c00341{bottom:578.186435pt;}
.yf_c00341{bottom:605.866424pt;}
.ye_c00341{bottom:633.386413pt;}
.yd_c00341{bottom:661.066402pt;}
.yc_c00341{bottom:687.626392pt;}
.yb_c00341{bottom:706.986384pt;}
.ya_c00341{bottom:726.346376pt;}
.y9_c00341{bottom:748.906367pt;}
.y8_c00341{bottom:938.666291pt;}
.y6_c00341{bottom:966.186280pt;}
.y7_c00341{bottom:973.546277pt;}
.y5_c00341{bottom:993.866269pt;}
.y2_c00341{bottom:1028.426255pt;}
.y1_c00341{bottom:1062.986241pt;}
.h9_c00341{height:33.918736pt;}
.h8_c00341{height:42.063421pt;}
.h4_c00341{height:42.084358pt;}
.ha_c00341{height:43.808420pt;}
.h2_c00341{height:48.558731pt;}
.h1_c00341{height:52.134354pt;}
.h6_c00341{height:57.787477pt;}
.h7_c00341{height:62.781225pt;}
.h3_c00341{height:62.812475pt;}
.h5_c00341{height:64.499974pt;}
.h0_c00341{height:1122.666667pt;}
.w0_c00341{width:793.333333pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:113.599955pt;}
.x7_c00341{left:122.079951pt;}
.xc_c00341{left:126.559949pt;}
.x3_c00341{left:160.799936pt;}
.x8_c00341{left:364.639854pt;}
.x2_c00341{left:385.919568pt;}
.x9_c00341{left:457.119817pt;}
.xa_c00341{left:473.439811pt;}
.x4_c00341{left:528.159789pt;}
.x5_c00341{left:544.479782pt;}
.xb_c00341{left:632.959747pt;}
.x6_c00341{left:648.959740pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a67fce6aa7abd01d71213514.woff2')format("woff");}.ff1_c00342{font-family:ff1_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:ff2_c00342;src:url('chunks/assets/font_584f97fb2bbaa3c25142c8b4.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_38710d23ae9f6f1d4382b27f.woff2')format("woff");}.ff3_c00342{font-family:ff3_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;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls5_c00342{letter-spacing:0.000000px;}
.ls3_c00342{letter-spacing:0.011169px;}
.ls0_c00342{letter-spacing:0.012664px;}
.ls2_c00342{letter-spacing:0.153901px;}
.ls4_c00342{letter-spacing:0.189300px;}
.ls1_c00342{letter-spacing:0.374281px;}
.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:-12.434276px;}
.ws0_c00342{word-spacing:-10.452660px;}
.ws2_c00342{word-spacing:-9.731165px;}
.ws3_c00342{word-spacing:0.000000px;}
._a_c00342{margin-left:-12.716934px;}
._1_c00342{margin-left:-1.105374px;}
._0_c00342{width:1.478392px;}
._7_c00342{width:2.886209px;}
._8_c00342{width:9.731595px;}
._9_c00342{width:10.908202px;}
._4_c00342{width:19.254620px;}
._6_c00342{width:20.880888px;}
._5_c00342{width:22.062927px;}
._3_c00342{width:28.876131px;}
._2_c00342{width:29.881194px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs5_c00342{font-size:38.879984px;}
.fs3_c00342{font-size:41.759983px;}
.fs4_c00342{font-size:48.239981px;}
.fs0_c00342{font-size:59.759976px;}
.fs1_c00342{font-size:66.239974px;}
.fs2_c00342{font-size:71.999971px;}
.y0_c00342{bottom:0.000000px;}
.y4_c00342{bottom:75.720270px;}
.y3_c00342{bottom:113.880254px;}
.y21_c00342{bottom:133.139947px;}
.y20_c00342{bottom:150.419940px;}
.y1f_c00342{bottom:157.259937px;}
.y1e_c00342{bottom:168.059933px;}
.y1d_c00342{bottom:186.059926px;}
.y1c_c00342{bottom:192.899923px;}
.y1b_c00342{bottom:203.339919px;}
.y1a_c00342{bottom:220.439912px;}
.y19_c00342{bottom:227.279909px;}
.y18_c00342{bottom:238.079905px;}
.y17_c00342{bottom:256.979897px;}
.y15_c00342{bottom:522.659791px;}
.y16_c00342{bottom:530.939788px;}
.y14_c00342{bottom:553.619779px;}
.y13_c00342{bottom:584.759766px;}
.y11_c00342{bottom:615.719754px;}
.y12_c00342{bottom:623.999750px;}
.y10_c00342{bottom:646.859741px;}
.yf_c00342{bottom:677.819729px;}
.ye_c00342{bottom:708.779716px;}
.yd_c00342{bottom:739.919704px;}
.yc_c00342{bottom:770.879692px;}
.yb_c00342{bottom:802.019679px;}
.ya_c00342{bottom:832.979667px;}
.y8_c00342{bottom:856.379657px;}
.y9_c00342{bottom:863.939654px;}
.y7_c00342{bottom:878.159649px;}
.y6_c00342{bottom:907.679637px;}
.y5_c00342{bottom:934.499626px;}
.y2_c00342{bottom:1175.879530px;}
.y1_c00342{bottom:1196.039522px;}
.hb_c00342{height:38.158578px;}
.h5_c00342{height:40.985140px;}
.h8_c00342{height:47.321348px;}
.h9_c00342{height:47.344903px;}
.ha_c00342{height:49.284472px;}
.h2_c00342{height:54.628572px;}
.h1_c00342{height:58.651148px;}
.h4_c00342{height:65.010911px;}
.h7_c00342{height:70.628878px;}
.h3_c00342{height:70.664034px;}
.h6_c00342{height:72.562471px;}
.h0_c00342{height:1263.000000px;}
.w0_c00342{width:892.500000px;}
.x0_c00342{left:0.000000px;}
.x5_c00342{left:127.800262px;}
.x7_c00342{left:141.659943px;}
.xb_c00342{left:180.899928px;}
.x1_c00342{left:181.979927px;}
.x2_c00342{left:329.219408px;}
.x8_c00342{left:367.019853px;}
.x4_c00342{left:434.159826px;}
.x9_c00342{left:510.479796px;}
.xe_c00342{left:524.699790px;}
.xa_c00342{left:526.139790px;}
.xf_c00342{left:543.059783px;}
.xc_c00342{left:614.159754px;}
.xd_c00342{left:632.519747px;}
.x6_c00342{left:709.919716px;}
.x3_c00342{left:765.539694px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls5_c00342{letter-spacing:0.000000pt;}
.ls3_c00342{letter-spacing:0.009928pt;}
.ls0_c00342{letter-spacing:0.011257pt;}
.ls2_c00342{letter-spacing:0.136801pt;}
.ls4_c00342{letter-spacing:0.168267pt;}
.ls1_c00342{letter-spacing:0.332694pt;}
.ws1_c00342{word-spacing:-11.052689pt;}
.ws0_c00342{word-spacing:-9.291253pt;}
.ws2_c00342{word-spacing:-8.649924pt;}
.ws3_c00342{word-spacing:0.000000pt;}
._a_c00342{margin-left:-11.303941pt;}
._1_c00342{margin-left:-0.982555pt;}
._0_c00342{width:1.314126pt;}
._7_c00342{width:2.565519pt;}
._8_c00342{width:8.650307pt;}
._9_c00342{width:9.696179pt;}
._4_c00342{width:17.115217pt;}
._6_c00342{width:18.560790pt;}
._5_c00342{width:19.611491pt;}
._3_c00342{width:25.667672pt;}
._2_c00342{width:26.561062pt;}
.fs5_c00342{font-size:34.559986pt;}
.fs3_c00342{font-size:37.119985pt;}
.fs4_c00342{font-size:42.879983pt;}
.fs0_c00342{font-size:53.119979pt;}
.fs1_c00342{font-size:58.879976pt;}
.fs2_c00342{font-size:63.999974pt;}
.y0_c00342{bottom:0.000000pt;}
.y4_c00342{bottom:67.306906pt;}
.y3_c00342{bottom:101.226893pt;}
.y21_c00342{bottom:118.346619pt;}
.y20_c00342{bottom:133.706613pt;}
.y1f_c00342{bottom:139.786611pt;}
.y1e_c00342{bottom:149.386607pt;}
.y1d_c00342{bottom:165.386601pt;}
.y1c_c00342{bottom:171.466598pt;}
.y1b_c00342{bottom:180.746594pt;}
.y1a_c00342{bottom:195.946588pt;}
.y19_c00342{bottom:202.026586pt;}
.y18_c00342{bottom:211.626582pt;}
.y17_c00342{bottom:228.426575pt;}
.y15_c00342{bottom:464.586481pt;}
.y16_c00342{bottom:471.946478pt;}
.y14_c00342{bottom:492.106470pt;}
.y13_c00342{bottom:519.786459pt;}
.y11_c00342{bottom:547.306448pt;}
.y12_c00342{bottom:554.666445pt;}
.y10_c00342{bottom:574.986437pt;}
.yf_c00342{bottom:602.506426pt;}
.ye_c00342{bottom:630.026415pt;}
.yd_c00342{bottom:657.706404pt;}
.yc_c00342{bottom:685.226393pt;}
.yb_c00342{bottom:712.906382pt;}
.ya_c00342{bottom:740.426370pt;}
.y8_c00342{bottom:761.226362pt;}
.y9_c00342{bottom:767.946359pt;}
.y7_c00342{bottom:780.586354pt;}
.y6_c00342{bottom:806.826344pt;}
.y5_c00342{bottom:830.666334pt;}
.y2_c00342{bottom:1045.226249pt;}
.y1_c00342{bottom:1063.146241pt;}
.hb_c00342{height:33.918736pt;}
.h5_c00342{height:36.431235pt;}
.h8_c00342{height:42.063421pt;}
.h9_c00342{height:42.084358pt;}
.ha_c00342{height:43.808420pt;}
.h2_c00342{height:48.558731pt;}
.h1_c00342{height:52.134354pt;}
.h4_c00342{height:57.787477pt;}
.h7_c00342{height:62.781225pt;}
.h3_c00342{height:62.812475pt;}
.h6_c00342{height:64.499974pt;}
.h0_c00342{height:1122.666667pt;}
.w0_c00342{width:793.333333pt;}
.x0_c00342{left:0.000000pt;}
.x5_c00342{left:113.600233pt;}
.x7_c00342{left:125.919950pt;}
.xb_c00342{left:160.799936pt;}
.x1_c00342{left:161.759935pt;}
.x2_c00342{left:292.639474pt;}
.x8_c00342{left:326.239870pt;}
.x4_c00342{left:385.919846pt;}
.x9_c00342{left:453.759818pt;}
.xe_c00342{left:466.399813pt;}
.xa_c00342{left:467.679813pt;}
.xf_c00342{left:482.719807pt;}
.xc_c00342{left:545.919782pt;}
.xd_c00342{left:562.239775pt;}
.x6_c00342{left:631.039748pt;}
.x3_c00342{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79e647c0c309975e84495ad1.woff2')format("woff");}.ff1_c00343{font-family:ff1_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:ff2_c00343;src:url('chunks/assets/font_5983cad38ae0b4e23ed44d7b.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c00343{font-family:ff3_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:ff4_c00343;src:url('chunks/assets/font_87ab2c70208054446faf68c8.woff2')format("woff");}.ff4_c00343{font-family:ff4_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:ff5_c00343;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00343{font-family:ff5_c00343;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls4_c00343{letter-spacing:0.000000px;}
.ls2_c00343{letter-spacing:0.011169px;}
.ls1_c00343{letter-spacing:0.153901px;}
.ls3_c00343{letter-spacing:0.189300px;}
.ls0_c00343{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00343{word-spacing:-17.999993px;}
.ws1_c00343{word-spacing:-12.434276px;}
.ws2_c00343{word-spacing:-9.731165px;}
.ws3_c00343{word-spacing:0.000000px;}
._6_c00343{margin-left:-12.716934px;}
._1_c00343{margin-left:-1.105374px;}
._0_c00343{width:1.195563px;}
._2_c00343{width:2.289685px;}
._5_c00343{width:3.601196px;}
._3_c00343{width:4.784333px;}
._4_c00343{width:6.212125px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs4_c00343{font-size:38.879984px;}
.fs3_c00343{font-size:48.239981px;}
.fs0_c00343{font-size:59.759976px;}
.fs1_c00343{font-size:66.239974px;}
.fs2_c00343{font-size:71.999971px;}
.y0_c00343{bottom:0.000000px;}
.y4_c00343{bottom:75.719970px;}
.y3_c00343{bottom:113.879954px;}
.y1d_c00343{bottom:133.499947px;}
.y1c_c00343{bottom:151.859939px;}
.y1b_c00343{bottom:169.859932px;}
.y1a_c00343{bottom:176.699929px;}
.y19_c00343{bottom:188.039925px;}
.y18_c00343{bottom:225.839910px;}
.y17_c00343{bottom:256.799897px;}
.y16_c00343{bottom:287.939885px;}
.y15_c00343{bottom:319.259872px;}
.y14_c00343{bottom:350.399860px;}
.y13_c00343{bottom:381.359847px;}
.y12_c00343{bottom:412.499835px;}
.y11_c00343{bottom:443.459823px;}
.y10_c00343{bottom:474.599810px;}
.yf_c00343{bottom:498.359801px;}
.ye_c00343{bottom:522.119791px;}
.yd_c00343{bottom:548.939780px;}
.yc_c00343{bottom:732.359707px;}
.ya_c00343{bottom:763.319695px;}
.yb_c00343{bottom:771.599691px;}
.y9_c00343{bottom:794.459682px;}
.y8_c00343{bottom:825.059670px;}
.y7_c00343{bottom:848.639661px;}
.y6_c00343{bottom:870.599652px;}
.y5_c00343{bottom:895.979642px;}
.y2_c00343{bottom:1156.979537px;}
.y1_c00343{bottom:1195.859522px;}
.h8_c00343{height:38.158578px;}
.h7_c00343{height:47.344903px;}
.h9_c00343{height:49.284472px;}
.h2_c00343{height:54.628572px;}
.h1_c00343{height:58.651148px;}
.h4_c00343{height:65.010911px;}
.h3_c00343{height:70.628878px;}
.h6_c00343{height:70.664034px;}
.h5_c00343{height:72.562471px;}
.h0_c00343{height:1263.000000px;}
.w0_c00343{width:892.500000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:127.799949px;}
.x4_c00343{left:132.299947px;}
.xa_c00343{left:135.179946px;}
.xc_c00343{left:142.379943px;}
.x6_c00343{left:180.899928px;}
.xb_c00343{left:325.979870px;}
.x5_c00343{left:335.879866px;}
.x2_c00343{left:434.159514px;}
.x7_c00343{left:650.519740px;}
.x3_c00343{left:666.539733px;}
.x8_c00343{left:668.879732px;}
.x9_c00343{left:727.919709px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls4_c00343{letter-spacing:0.000000pt;}
.ls2_c00343{letter-spacing:0.009928pt;}
.ls1_c00343{letter-spacing:0.136801pt;}
.ls3_c00343{letter-spacing:0.168267pt;}
.ls0_c00343{letter-spacing:0.332694pt;}
.ws0_c00343{word-spacing:-15.999994pt;}
.ws1_c00343{word-spacing:-11.052689pt;}
.ws2_c00343{word-spacing:-8.649924pt;}
.ws3_c00343{word-spacing:0.000000pt;}
._6_c00343{margin-left:-11.303941pt;}
._1_c00343{margin-left:-0.982555pt;}
._0_c00343{width:1.062723pt;}
._2_c00343{width:2.035276pt;}
._5_c00343{width:3.201063pt;}
._3_c00343{width:4.252741pt;}
._4_c00343{width:5.521889pt;}
.fs4_c00343{font-size:34.559986pt;}
.fs3_c00343{font-size:42.879983pt;}
.fs0_c00343{font-size:53.119979pt;}
.fs1_c00343{font-size:58.879976pt;}
.fs2_c00343{font-size:63.999974pt;}
.y0_c00343{bottom:0.000000pt;}
.y4_c00343{bottom:67.306640pt;}
.y3_c00343{bottom:101.226626pt;}
.y1d_c00343{bottom:118.666619pt;}
.y1c_c00343{bottom:134.986613pt;}
.y1b_c00343{bottom:150.986606pt;}
.y1a_c00343{bottom:157.066604pt;}
.y19_c00343{bottom:167.146600pt;}
.y18_c00343{bottom:200.746586pt;}
.y17_c00343{bottom:228.266575pt;}
.y16_c00343{bottom:255.946564pt;}
.y15_c00343{bottom:283.786553pt;}
.y14_c00343{bottom:311.466542pt;}
.y13_c00343{bottom:338.986531pt;}
.y12_c00343{bottom:366.666520pt;}
.y11_c00343{bottom:394.186509pt;}
.y10_c00343{bottom:421.866498pt;}
.yf_c00343{bottom:442.986489pt;}
.ye_c00343{bottom:464.106481pt;}
.yd_c00343{bottom:487.946471pt;}
.yc_c00343{bottom:650.986406pt;}
.ya_c00343{bottom:678.506395pt;}
.yb_c00343{bottom:685.866392pt;}
.y9_c00343{bottom:706.186384pt;}
.y8_c00343{bottom:733.386373pt;}
.y7_c00343{bottom:754.346365pt;}
.y6_c00343{bottom:773.866357pt;}
.y5_c00343{bottom:796.426348pt;}
.y2_c00343{bottom:1028.426255pt;}
.y1_c00343{bottom:1062.986241pt;}
.h8_c00343{height:33.918736pt;}
.h7_c00343{height:42.084358pt;}
.h9_c00343{height:43.808420pt;}
.h2_c00343{height:48.558731pt;}
.h1_c00343{height:52.134354pt;}
.h4_c00343{height:57.787477pt;}
.h3_c00343{height:62.781225pt;}
.h6_c00343{height:62.812475pt;}
.h5_c00343{height:64.499974pt;}
.h0_c00343{height:1122.666667pt;}
.w0_c00343{width:793.333333pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:113.599955pt;}
.x4_c00343{left:117.599953pt;}
.xa_c00343{left:120.159952pt;}
.xc_c00343{left:126.559949pt;}
.x6_c00343{left:160.799936pt;}
.xb_c00343{left:289.759884pt;}
.x5_c00343{left:298.559881pt;}
.x2_c00343{left:385.919568pt;}
.x7_c00343{left:578.239769pt;}
.x3_c00343{left:592.479763pt;}
.x8_c00343{left:594.559762pt;}
.x9_c00343{left:647.039741pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dbb1458db24b08547ae1029.woff2')format("woff");}.ff1_c00344{font-family:ff1_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:ff2_c00344;src:url('chunks/assets/font_ebd52e5080591d0dfd17dd6e.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_c17d07c85be5ab1dfb7e743d.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.311035;font-style:normal;font-weight:normal;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_9e245c7970a8cbeb0963fd03.woff2')format("woff");}.ff4_c00344{font-family:ff4_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:ff5_c00344;src:url('chunks/assets/font_b3394fe5766b8b997546e4cf.woff2')format("woff");}.ff5_c00344{font-family:ff5_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;}
.m0_c00344{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls4_c00344{letter-spacing:0.000000px;}
.ls2_c00344{letter-spacing:0.010620px;}
.ls0_c00344{letter-spacing:0.021238px;}
.ls3_c00344{letter-spacing:0.021282px;}
.ls1_c00344{letter-spacing:19.462072px;}
.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.021231px;}
.ws1_c00344{word-spacing:-17.999993px;}
.ws2_c00344{word-spacing:0.000000px;}
._8_c00344{margin-left:-2.139990px;}
._1_c00344{margin-left:-1.105374px;}
._0_c00344{width:1.478392px;}
._9_c00344{width:2.925767px;}
._3_c00344{width:5.933416px;}
._2_c00344{width:7.144007px;}
._4_c00344{width:8.238725px;}
._f_c00344{width:10.880755px;}
._10_c00344{width:12.144792px;}
._5_c00344{width:19.164498px;}
._6_c00344{width:20.203993px;}
._7_c00344{width:21.777033px;}
._c_c00344{width:22.889153px;}
._a_c00344{width:26.368743px;}
._b_c00344{width:27.386481px;}
._e_c00344{width:30.228609px;}
._d_c00344{width:31.458947px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs0_c00344{font-size:59.759976px;}
.fs1_c00344{font-size:66.239974px;}
.fs2_c00344{font-size:71.999971px;}
.y0_c00344{bottom:0.000000px;}
.y4_c00344{bottom:75.720270px;}
.y3_c00344{bottom:113.880254px;}
.y1b_c00344{bottom:136.919945px;}
.y1a_c00344{bottom:167.879933px;}
.y19_c00344{bottom:199.019920px;}
.y18_c00344{bottom:229.979908px;}
.y17_c00344{bottom:260.939896px;}
.y16_c00344{bottom:292.079883px;}
.y15_c00344{bottom:323.039871px;}
.y14_c00344{bottom:354.179858px;}
.y13_c00344{bottom:385.139846px;}
.y12_c00344{bottom:416.279833px;}
.y11_c00344{bottom:447.239821px;}
.y10_c00344{bottom:478.379809px;}
.yf_c00344{bottom:509.339796px;}
.ye_c00344{bottom:540.479784px;}
.yd_c00344{bottom:571.439771px;}
.yc_c00344{bottom:602.579759px;}
.yb_c00344{bottom:633.539747px;}
.ya_c00344{bottom:664.679734px;}
.y9_c00344{bottom:695.639722px;}
.y8_c00344{bottom:725.519710px;}
.y7_c00344{bottom:750.899700px;}
.y6_c00344{bottom:1104.959558px;}
.y5_c00344{bottom:1135.919546px;}
.y2_c00344{bottom:1175.879530px;}
.y1_c00344{bottom:1196.039522px;}
.h2_c00344{height:54.628572px;}
.h1_c00344{height:58.651148px;}
.h5_c00344{height:65.010911px;}
.h4_c00344{height:70.628878px;}
.h6_c00344{height:70.664034px;}
.h3_c00344{height:72.562471px;}
.h0_c00344{height:1263.000000px;}
.w0_c00344{width:892.500000px;}
.x0_c00344{left:0.000000px;}
.x5_c00344{left:127.800262px;}
.x6_c00344{left:154.799938px;}
.xa_c00344{left:180.899272px;}
.x1_c00344{left:181.979927px;}
.x8_c00344{left:239.399904px;}
.x2_c00344{left:329.219408px;}
.x4_c00344{left:434.159826px;}
.x9_c00344{left:446.579821px;}
.x7_c00344{left:577.079769px;}
.x3_c00344{left:765.539694px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls4_c00344{letter-spacing:0.000000pt;}
.ls2_c00344{letter-spacing:0.009440pt;}
.ls0_c00344{letter-spacing:0.018878pt;}
.ls3_c00344{letter-spacing:0.018917pt;}
.ls1_c00344{letter-spacing:17.299620pt;}
.ws0_c00344{word-spacing:-16.018872pt;}
.ws1_c00344{word-spacing:-15.999994pt;}
.ws2_c00344{word-spacing:0.000000pt;}
._8_c00344{margin-left:-1.902214pt;}
._1_c00344{margin-left:-0.982555pt;}
._0_c00344{width:1.314126pt;}
._9_c00344{width:2.600682pt;}
._3_c00344{width:5.274148pt;}
._2_c00344{width:6.350228pt;}
._4_c00344{width:7.323311pt;}
._f_c00344{width:9.671782pt;}
._10_c00344{width:10.795371pt;}
._5_c00344{width:17.035110pt;}
._6_c00344{width:17.959105pt;}
._7_c00344{width:19.357363pt;}
._c_c00344{width:20.345914pt;}
._a_c00344{width:23.438883pt;}
._b_c00344{width:24.343539pt;}
._e_c00344{width:26.869874pt;}
._d_c00344{width:27.963508pt;}
.fs0_c00344{font-size:53.119979pt;}
.fs1_c00344{font-size:58.879976pt;}
.fs2_c00344{font-size:63.999974pt;}
.y0_c00344{bottom:0.000000pt;}
.y4_c00344{bottom:67.306906pt;}
.y3_c00344{bottom:101.226893pt;}
.y1b_c00344{bottom:121.706618pt;}
.y1a_c00344{bottom:149.226607pt;}
.y19_c00344{bottom:176.906596pt;}
.y18_c00344{bottom:204.426585pt;}
.y17_c00344{bottom:231.946574pt;}
.y16_c00344{bottom:259.626563pt;}
.y15_c00344{bottom:287.146552pt;}
.y14_c00344{bottom:314.826541pt;}
.y13_c00344{bottom:342.346530pt;}
.y12_c00344{bottom:370.026519pt;}
.y11_c00344{bottom:397.546508pt;}
.y10_c00344{bottom:425.226497pt;}
.yf_c00344{bottom:452.746486pt;}
.ye_c00344{bottom:480.426474pt;}
.yd_c00344{bottom:507.946463pt;}
.yc_c00344{bottom:535.626452pt;}
.yb_c00344{bottom:563.146441pt;}
.ya_c00344{bottom:590.826430pt;}
.y9_c00344{bottom:618.346419pt;}
.y8_c00344{bottom:644.906409pt;}
.y7_c00344{bottom:667.466400pt;}
.y6_c00344{bottom:982.186274pt;}
.y5_c00344{bottom:1009.706263pt;}
.y2_c00344{bottom:1045.226249pt;}
.y1_c00344{bottom:1063.146241pt;}
.h2_c00344{height:48.558731pt;}
.h1_c00344{height:52.134354pt;}
.h5_c00344{height:57.787477pt;}
.h4_c00344{height:62.781225pt;}
.h6_c00344{height:62.812475pt;}
.h3_c00344{height:64.499974pt;}
.h0_c00344{height:1122.666667pt;}
.w0_c00344{width:793.333333pt;}
.x0_c00344{left:0.000000pt;}
.x5_c00344{left:113.600233pt;}
.x6_c00344{left:137.599945pt;}
.xa_c00344{left:160.799353pt;}
.x1_c00344{left:161.759935pt;}
.x8_c00344{left:212.799915pt;}
.x2_c00344{left:292.639474pt;}
.x4_c00344{left:385.919846pt;}
.x9_c00344{left:396.959841pt;}
.x7_c00344{left:512.959795pt;}
.x3_c00344{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f158a1ce67c738ea4414d98a.woff2')format("woff");}.ff1_c00345{font-family:ff1_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:ff2_c00345;src:url('chunks/assets/font_ebd52e5080591d0dfd17dd6e.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_64ab93bdb8a005e24db1f60b.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;}
.m0_c00345{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls1_c00345{letter-spacing:0.000000px;}
.ls0_c00345{letter-spacing:0.010620px;}
.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;}
}
.ws0_c00345{word-spacing:-17.999993px;}
.ws1_c00345{word-spacing:0.000000px;}
._1_c00345{margin-left:-1.105374px;}
._0_c00345{width:1.195563px;}
._2_c00345{width:9.720776px;}
._3_c00345{width:11.350435px;}
._4_c00345{width:12.769330px;}
._5_c00345{width:14.259663px;}
._6_c00345{width:29.018911px;}
._7_c00345{width:30.074964px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs0_c00345{font-size:59.759976px;}
.fs1_c00345{font-size:66.239974px;}
.fs2_c00345{font-size:71.999971px;}
.y0_c00345{bottom:0.000000px;}
.y4_c00345{bottom:75.899970px;}
.y3_c00345{bottom:114.059954px;}
.y10_c00345{bottom:776.639689px;}
.yf_c00345{bottom:807.779677px;}
.ye_c00345{bottom:838.739665px;}
.yd_c00345{bottom:869.879652px;}
.yc_c00345{bottom:900.839640px;}
.yb_c00345{bottom:931.979627px;}
.ya_c00345{bottom:962.939615px;}
.y9_c00345{bottom:994.079602px;}
.y8_c00345{bottom:1025.039590px;}
.y7_c00345{bottom:1056.179578px;}
.y6_c00345{bottom:1087.139565px;}
.y5_c00345{bottom:1118.279553px;}
.y2_c00345{bottom:1157.159537px;}
.y1_c00345{bottom:1196.039522px;}
.h2_c00345{height:54.628572px;}
.h1_c00345{height:58.651148px;}
.h3_c00345{height:70.664034px;}
.h0_c00345{height:1263.000000px;}
.w0_c00345{width:892.500000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:127.619949px;}
.x3_c00345{left:180.721040px;}
.x2_c00345{left:433.979514px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls1_c00345{letter-spacing:0.000000pt;}
.ls0_c00345{letter-spacing:0.009440pt;}
.ws0_c00345{word-spacing:-15.999994pt;}
.ws1_c00345{word-spacing:0.000000pt;}
._1_c00345{margin-left:-0.982555pt;}
._0_c00345{width:1.062723pt;}
._2_c00345{width:8.640690pt;}
._3_c00345{width:10.089276pt;}
._4_c00345{width:11.350516pt;}
._5_c00345{width:12.675256pt;}
._6_c00345{width:25.794587pt;}
._7_c00345{width:26.733301pt;}
.fs0_c00345{font-size:53.119979pt;}
.fs1_c00345{font-size:58.879976pt;}
.fs2_c00345{font-size:63.999974pt;}
.y0_c00345{bottom:0.000000pt;}
.y4_c00345{bottom:67.466640pt;}
.y3_c00345{bottom:101.386626pt;}
.y10_c00345{bottom:690.346391pt;}
.yf_c00345{bottom:718.026379pt;}
.ye_c00345{bottom:745.546368pt;}
.yd_c00345{bottom:773.226357pt;}
.yc_c00345{bottom:800.746346pt;}
.yb_c00345{bottom:828.426335pt;}
.ya_c00345{bottom:855.946324pt;}
.y9_c00345{bottom:883.626313pt;}
.y8_c00345{bottom:911.146302pt;}
.y7_c00345{bottom:938.826291pt;}
.y6_c00345{bottom:966.346280pt;}
.y5_c00345{bottom:994.026269pt;}
.y2_c00345{bottom:1028.586255pt;}
.y1_c00345{bottom:1063.146241pt;}
.h2_c00345{height:48.558731pt;}
.h1_c00345{height:52.134354pt;}
.h3_c00345{height:62.812475pt;}
.h0_c00345{height:1122.666667pt;}
.w0_c00345{width:793.333333pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:113.439955pt;}
.x3_c00345{left:160.640924pt;}
.x2_c00345{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93b9cc6ac9043a05d0acbf7b.woff2')format("woff");}.ff1_c00346{font-family:ff1_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:ff2_c00346;src:url('chunks/assets/font_b9a98e06c50f208490394263.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_b329949b7393b24a1177382d.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.284180;font-style:normal;font-weight:normal;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_e849af301284289c02f05d3c.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:0.666504;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1_c00346{vertical-align:-83.519967px;}
.v0_c00346{vertical-align:0.000000px;}
.ls5_c00346{letter-spacing:0.000000px;}
.ls4_c00346{letter-spacing:0.011169px;}
.ls0_c00346{letter-spacing:0.012664px;}
.ls3_c00346{letter-spacing:0.153901px;}
.ls2_c00346{letter-spacing:0.731040px;}
.ls1_c00346{letter-spacing:194.525322px;}
.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;}
}
.ws1_c00346{word-spacing:-17.999993px;}
.ws0_c00346{word-spacing:-10.452660px;}
.ws2_c00346{word-spacing:-9.731165px;}
.ws3_c00346{word-spacing:0.000000px;}
._2_c00346{margin-left:-12.716934px;}
._1_c00346{margin-left:-1.105374px;}
._0_c00346{width:1.478392px;}
._3_c00346{width:3.071071px;}
.fc1_c00346{color:rgb(54,95,145);}
.fc0_c00346{color:rgb(0,0,0);}
.fs4_c00346{font-size:38.879984px;}
.fs2_c00346{font-size:41.759983px;}
.fs0_c00346{font-size:59.759976px;}
.fs1_c00346{font-size:66.239974px;}
.fs3_c00346{font-size:71.999971px;}
.fs5_c00346{font-size:84.239966px;}
.y0_c00346{bottom:0.000000px;}
.y4_c00346{bottom:75.720270px;}
.y3_c00346{bottom:113.880254px;}
.yf_c00346{bottom:138.000245px;}
.ye_c00346{bottom:199.919920px;}
.yd_c00346{bottom:219.719912px;}
.yc_c00346{bottom:226.559909px;}
.yb_c00346{bottom:274.079890px;}
.ya_c00346{bottom:318.179873px;}
.y9_c00346{bottom:370.019852px;}
.y8_c00346{bottom:400.979840px;}
.y6_c00346{bottom:430.859828px;}
.y7_c00346{bottom:438.419825px;}
.y5_c00346{bottom:455.339818px;}
.y2_c00346{bottom:1175.879530px;}
.y1_c00346{bottom:1196.039522px;}
.h6_c00346{height:38.158578px;}
.h4_c00346{height:40.985140px;}
.h2_c00346{height:54.628572px;}
.h7_c00346{height:56.146267px;}
.h1_c00346{height:58.651148px;}
.h3_c00346{height:65.010911px;}
.h5_c00346{height:70.664034px;}
.h0_c00346{height:1263.000000px;}
.w0_c00346{width:892.500000px;}
.x0_c00346{left:0.000000px;}
.x5_c00346{left:127.800262px;}
.x7_c00346{left:135.539946px;}
.xa_c00346{left:142.379943px;}
.x1_c00346{left:181.979927px;}
.x2_c00346{left:329.219408px;}
.x4_c00346{left:434.159826px;}
.x6_c00346{left:725.759710px;}
.x8_c00346{left:742.139703px;}
.x9_c00346{left:757.799697px;}
.x3_c00346{left:765.539694px;}
@media print{
.v1_c00346{vertical-align:-74.239970pt;}
.v0_c00346{vertical-align:0.000000pt;}
.ls5_c00346{letter-spacing:0.000000pt;}
.ls4_c00346{letter-spacing:0.009928pt;}
.ls0_c00346{letter-spacing:0.011257pt;}
.ls3_c00346{letter-spacing:0.136801pt;}
.ls2_c00346{letter-spacing:0.649813pt;}
.ls1_c00346{letter-spacing:172.911398pt;}
.ws1_c00346{word-spacing:-15.999994pt;}
.ws0_c00346{word-spacing:-9.291253pt;}
.ws2_c00346{word-spacing:-8.649924pt;}
.ws3_c00346{word-spacing:0.000000pt;}
._2_c00346{margin-left:-11.303941pt;}
._1_c00346{margin-left:-0.982555pt;}
._0_c00346{width:1.314126pt;}
._3_c00346{width:2.729841pt;}
.fs4_c00346{font-size:34.559986pt;}
.fs2_c00346{font-size:37.119985pt;}
.fs0_c00346{font-size:53.119979pt;}
.fs1_c00346{font-size:58.879976pt;}
.fs3_c00346{font-size:63.999974pt;}
.fs5_c00346{font-size:74.879970pt;}
.y0_c00346{bottom:0.000000pt;}
.y4_c00346{bottom:67.306906pt;}
.y3_c00346{bottom:101.226893pt;}
.yf_c00346{bottom:122.666884pt;}
.ye_c00346{bottom:177.706596pt;}
.yd_c00346{bottom:195.306589pt;}
.yc_c00346{bottom:201.386586pt;}
.yb_c00346{bottom:243.626569pt;}
.ya_c00346{bottom:282.826554pt;}
.y9_c00346{bottom:328.906535pt;}
.y8_c00346{bottom:356.426524pt;}
.y6_c00346{bottom:382.986513pt;}
.y7_c00346{bottom:389.706511pt;}
.y5_c00346{bottom:404.746505pt;}
.y2_c00346{bottom:1045.226249pt;}
.y1_c00346{bottom:1063.146241pt;}
.h6_c00346{height:33.918736pt;}
.h4_c00346{height:36.431235pt;}
.h2_c00346{height:48.558731pt;}
.h7_c00346{height:49.907793pt;}
.h1_c00346{height:52.134354pt;}
.h3_c00346{height:57.787477pt;}
.h5_c00346{height:62.812475pt;}
.h0_c00346{height:1122.666667pt;}
.w0_c00346{width:793.333333pt;}
.x0_c00346{left:0.000000pt;}
.x5_c00346{left:113.600233pt;}
.x7_c00346{left:120.479952pt;}
.xa_c00346{left:126.559949pt;}
.x1_c00346{left:161.759935pt;}
.x2_c00346{left:292.639474pt;}
.x4_c00346{left:385.919846pt;}
.x6_c00346{left:645.119742pt;}
.x8_c00346{left:659.679736pt;}
.x9_c00346{left:673.599731pt;}
.x3_c00346{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9220a9bab91ec5d0a4c11462.woff2')format("woff");}.ff1_c00347{font-family:ff1_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:ff2_c00347;src:url('chunks/assets/font_e7fbffe10c6ca8c1a3b836c1.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_afc786e7741065680608ef72.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00347{word-spacing:0.000000px;}
._e_c00347{margin-left:-2.691029px;}
._1_c00347{margin-left:-1.105374px;}
._0_c00347{width:1.195563px;}
._6_c00347{width:2.602672px;}
._7_c00347{width:3.773464px;}
._d_c00347{width:5.543672px;}
._4_c00347{width:7.010654px;}
._5_c00347{width:8.300258px;}
._2_c00347{width:11.601134px;}
._3_c00347{width:16.347508px;}
._c_c00347{width:20.088084px;}
._b_c00347{width:24.241703px;}
._8_c00347{width:25.898645px;}
._9_c00347{width:27.020458px;}
._a_c00347{width:28.374038px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs0_c00347{font-size:59.759976px;}
.fs1_c00347{font-size:66.239974px;}
.fs2_c00347{font-size:71.999971px;}
.y0_c00347{bottom:0.000000px;}
.y4_c00347{bottom:75.719970px;}
.y3_c00347{bottom:113.879954px;}
.y1d_c00347{bottom:152.759939px;}
.y1c_c00347{bottom:183.899926px;}
.y1b_c00347{bottom:214.859914px;}
.y1a_c00347{bottom:245.999902px;}
.y19_c00347{bottom:276.959889px;}
.y18_c00347{bottom:308.099877px;}
.y17_c00347{bottom:339.059864px;}
.y16_c00347{bottom:370.559852px;}
.y15_c00347{bottom:401.519839px;}
.y14_c00347{bottom:432.659827px;}
.y13_c00347{bottom:463.619815px;}
.y12_c00347{bottom:494.759802px;}
.y11_c00347{bottom:525.719790px;}
.y10_c00347{bottom:556.859777px;}
.yf_c00347{bottom:587.819765px;}
.ye_c00347{bottom:618.959752px;}
.yd_c00347{bottom:649.919740px;}
.yc_c00347{bottom:681.059728px;}
.yb_c00347{bottom:710.939716px;}
.ya_c00347{bottom:736.139706px;}
.y9_c00347{bottom:993.899602px;}
.y8_c00347{bottom:1024.859590px;}
.y7_c00347{bottom:1055.999578px;}
.y6_c00347{bottom:1086.959565px;}
.y5_c00347{bottom:1118.099553px;}
.y2_c00347{bottom:1156.979537px;}
.y1_c00347{bottom:1195.859522px;}
.h2_c00347{height:54.628572px;}
.h1_c00347{height:58.651148px;}
.h4_c00347{height:65.010911px;}
.h5_c00347{height:70.628878px;}
.h3_c00347{height:70.664034px;}
.h6_c00347{height:72.562471px;}
.h0_c00347{height:1263.000000px;}
.w0_c00347{width:892.500000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:127.799949px;}
.x4_c00347{left:158.219937px;}
.x5_c00347{left:180.899930px;}
.x2_c00347{left:434.159514px;}
.x6_c00347{left:446.579821px;}
.x3_c00347{left:668.159733px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:-15.999994pt;}
.ws1_c00347{word-spacing:0.000000pt;}
._e_c00347{margin-left:-2.392026pt;}
._1_c00347{margin-left:-0.982555pt;}
._0_c00347{width:1.062723pt;}
._6_c00347{width:2.313486pt;}
._7_c00347{width:3.354190pt;}
._d_c00347{width:4.927708pt;}
._4_c00347{width:6.231692pt;}
._5_c00347{width:7.378007pt;}
._2_c00347{width:10.312119pt;}
._3_c00347{width:14.531118pt;}
._c_c00347{width:17.856074pt;}
._b_c00347{width:21.548180pt;}
._8_c00347{width:23.021018pt;}
._9_c00347{width:24.018185pt;}
._a_c00347{width:25.221367pt;}
.fs0_c00347{font-size:53.119979pt;}
.fs1_c00347{font-size:58.879976pt;}
.fs2_c00347{font-size:63.999974pt;}
.y0_c00347{bottom:0.000000pt;}
.y4_c00347{bottom:67.306640pt;}
.y3_c00347{bottom:101.226626pt;}
.y1d_c00347{bottom:135.786612pt;}
.y1c_c00347{bottom:163.466601pt;}
.y1b_c00347{bottom:190.986590pt;}
.y1a_c00347{bottom:218.666579pt;}
.y19_c00347{bottom:246.186568pt;}
.y18_c00347{bottom:273.866557pt;}
.y17_c00347{bottom:301.386546pt;}
.y16_c00347{bottom:329.386535pt;}
.y15_c00347{bottom:356.906524pt;}
.y14_c00347{bottom:384.586513pt;}
.y13_c00347{bottom:412.106502pt;}
.y12_c00347{bottom:439.786491pt;}
.y11_c00347{bottom:467.306480pt;}
.y10_c00347{bottom:494.986469pt;}
.yf_c00347{bottom:522.506458pt;}
.ye_c00347{bottom:550.186447pt;}
.yd_c00347{bottom:577.706436pt;}
.yc_c00347{bottom:605.386425pt;}
.yb_c00347{bottom:631.946414pt;}
.ya_c00347{bottom:654.346405pt;}
.y9_c00347{bottom:883.466313pt;}
.y8_c00347{bottom:910.986302pt;}
.y7_c00347{bottom:938.666291pt;}
.y6_c00347{bottom:966.186280pt;}
.y5_c00347{bottom:993.866269pt;}
.y2_c00347{bottom:1028.426255pt;}
.y1_c00347{bottom:1062.986241pt;}
.h2_c00347{height:48.558731pt;}
.h1_c00347{height:52.134354pt;}
.h4_c00347{height:57.787477pt;}
.h5_c00347{height:62.781225pt;}
.h3_c00347{height:62.812475pt;}
.h6_c00347{height:64.499974pt;}
.h0_c00347{height:1122.666667pt;}
.w0_c00347{width:793.333333pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:113.599955pt;}
.x4_c00347{left:140.639944pt;}
.x5_c00347{left:160.799938pt;}
.x2_c00347{left:385.919568pt;}
.x6_c00347{left:396.959841pt;}
.x3_c00347{left:593.919762pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd76160dcb9d1ca3b5165f9f.woff2')format("woff");}.ff1_c00348{font-family:ff1_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:ff2_c00348;src:url('chunks/assets/font_389634518e7a4e1a468c4583.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_1e5158eec4e2ca9c02257273.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.311035;font-style:normal;font-weight:normal;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_3a7f8500f5e6f3214b326f72.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_e338f48dc56f5c6632965af9.woff2')format("woff");}.ff5_c00348{font-family:ff5_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;}
.m0_c00348{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls3_c00348{letter-spacing:0.000000px;}
.ls2_c00348{letter-spacing:0.011169px;}
.ls1_c00348{letter-spacing:0.153901px;}
.ls0_c00348{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00348{word-spacing:-17.999993px;}
.ws1_c00348{word-spacing:-12.434276px;}
.ws2_c00348{word-spacing:-9.731165px;}
.ws3_c00348{word-spacing:0.000000px;}
._7_c00348{margin-left:-12.716934px;}
._1_c00348{margin-left:-1.105374px;}
._0_c00348{width:1.478392px;}
._3_c00348{width:2.530712px;}
._2_c00348{width:3.604770px;}
._6_c00348{width:9.106916px;}
._5_c00348{width:10.153345px;}
._4_c00348{width:12.864925px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs4_c00348{font-size:38.879984px;}
.fs3_c00348{font-size:48.239981px;}
.fs0_c00348{font-size:59.759976px;}
.fs1_c00348{font-size:66.239974px;}
.fs2_c00348{font-size:71.999971px;}
.y0_c00348{bottom:0.000000px;}
.y4_c00348{bottom:75.720270px;}
.y3_c00348{bottom:113.880254px;}
.y1a_c00348{bottom:144.120242px;}
.y19_c00348{bottom:172.019931px;}
.y18_c00348{bottom:178.859928px;}
.y17_c00348{bottom:190.199924px;}
.y16_c00348{bottom:257.879897px;}
.y15_c00348{bottom:296.579881px;}
.y14_c00348{bottom:335.459866px;}
.y13_c00348{bottom:374.159850px;}
.y12_c00348{bottom:413.039835px;}
.y10_c00348{bottom:451.919819px;}
.y11_c00348{bottom:460.199816px;}
.yf_c00348{bottom:475.679810px;}
.ye_c00348{bottom:506.639797px;}
.yd_c00348{bottom:537.779785px;}
.yc_c00348{bottom:568.739773px;}
.yb_c00348{bottom:599.879760px;}
.ya_c00348{bottom:630.479748px;}
.y9_c00348{bottom:660.719736px;}
.y8_c00348{bottom:690.059724px;}
.y7_c00348{bottom:717.059713px;}
.y6_c00348{bottom:1104.959558px;}
.y5_c00348{bottom:1135.919546px;}
.y2_c00348{bottom:1175.879530px;}
.y1_c00348{bottom:1196.039522px;}
.h7_c00348{height:38.158578px;}
.h6_c00348{height:47.344903px;}
.h2_c00348{height:54.628572px;}
.h1_c00348{height:58.651148px;}
.h4_c00348{height:65.010911px;}
.h5_c00348{height:70.664034px;}
.h3_c00348{height:72.562471px;}
.h0_c00348{height:1263.000000px;}
.w0_c00348{width:892.500000px;}
.x0_c00348{left:0.000000px;}
.x5_c00348{left:127.800262px;}
.xc_c00348{left:142.379943px;}
.x9_c00348{left:180.899928px;}
.x1_c00348{left:181.979927px;}
.x8_c00348{left:204.479918px;}
.xa_c00348{left:275.219890px;}
.xb_c00348{left:293.579883px;}
.x2_c00348{left:329.219408px;}
.x4_c00348{left:434.159826px;}
.x7_c00348{left:446.579821px;}
.x6_c00348{left:584.999766px;}
.x3_c00348{left:765.539694px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls3_c00348{letter-spacing:0.000000pt;}
.ls2_c00348{letter-spacing:0.009928pt;}
.ls1_c00348{letter-spacing:0.136801pt;}
.ls0_c00348{letter-spacing:0.332694pt;}
.ws0_c00348{word-spacing:-15.999994pt;}
.ws1_c00348{word-spacing:-11.052689pt;}
.ws2_c00348{word-spacing:-8.649924pt;}
.ws3_c00348{word-spacing:0.000000pt;}
._7_c00348{margin-left:-11.303941pt;}
._1_c00348{margin-left:-0.982555pt;}
._0_c00348{width:1.314126pt;}
._3_c00348{width:2.249521pt;}
._2_c00348{width:3.204240pt;}
._6_c00348{width:8.095037pt;}
._5_c00348{width:9.025195pt;}
._4_c00348{width:11.435489pt;}
.fs4_c00348{font-size:34.559986pt;}
.fs3_c00348{font-size:42.879983pt;}
.fs0_c00348{font-size:53.119979pt;}
.fs1_c00348{font-size:58.879976pt;}
.fs2_c00348{font-size:63.999974pt;}
.y0_c00348{bottom:0.000000pt;}
.y4_c00348{bottom:67.306906pt;}
.y3_c00348{bottom:101.226893pt;}
.y1a_c00348{bottom:128.106882pt;}
.y19_c00348{bottom:152.906606pt;}
.y18_c00348{bottom:158.986603pt;}
.y17_c00348{bottom:169.066599pt;}
.y16_c00348{bottom:229.226575pt;}
.y15_c00348{bottom:263.626561pt;}
.y14_c00348{bottom:298.186547pt;}
.y13_c00348{bottom:332.586534pt;}
.y12_c00348{bottom:367.146520pt;}
.y10_c00348{bottom:401.706506pt;}
.y11_c00348{bottom:409.066503pt;}
.yf_c00348{bottom:422.826498pt;}
.ye_c00348{bottom:450.346487pt;}
.yd_c00348{bottom:478.026475pt;}
.yc_c00348{bottom:505.546464pt;}
.yb_c00348{bottom:533.226453pt;}
.ya_c00348{bottom:560.426442pt;}
.y9_c00348{bottom:587.306432pt;}
.y8_c00348{bottom:613.386421pt;}
.y7_c00348{bottom:637.386412pt;}
.y6_c00348{bottom:982.186274pt;}
.y5_c00348{bottom:1009.706263pt;}
.y2_c00348{bottom:1045.226249pt;}
.y1_c00348{bottom:1063.146241pt;}
.h7_c00348{height:33.918736pt;}
.h6_c00348{height:42.084358pt;}
.h2_c00348{height:48.558731pt;}
.h1_c00348{height:52.134354pt;}
.h4_c00348{height:57.787477pt;}
.h5_c00348{height:62.812475pt;}
.h3_c00348{height:64.499974pt;}
.h0_c00348{height:1122.666667pt;}
.w0_c00348{width:793.333333pt;}
.x0_c00348{left:0.000000pt;}
.x5_c00348{left:113.600233pt;}
.xc_c00348{left:126.559949pt;}
.x9_c00348{left:160.799936pt;}
.x1_c00348{left:161.759935pt;}
.x8_c00348{left:181.759927pt;}
.xa_c00348{left:244.639902pt;}
.xb_c00348{left:260.959896pt;}
.x2_c00348{left:292.639474pt;}
.x4_c00348{left:385.919846pt;}
.x7_c00348{left:396.959841pt;}
.x6_c00348{left:519.999792pt;}
.x3_c00348{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9862e55c15a6483b191ce472.woff2')format("woff");}.ff1_c00349{font-family:ff1_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:ff2_c00349;src:url('chunks/assets/font_4474da9ccf17bb2cf3b40e4e.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_e265a541e62b47332068b0df.woff2')format("woff");}.ff3_c00349{font-family:ff3_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:ff4_c00349;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls4_c00349{letter-spacing:0.000000px;}
.ls2_c00349{letter-spacing:0.011169px;}
.ls1_c00349{letter-spacing:0.153901px;}
.ls3_c00349{letter-spacing:0.189300px;}
.ls0_c00349{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00349{word-spacing:-12.434276px;}
.ws1_c00349{word-spacing:-9.731165px;}
.ws2_c00349{word-spacing:0.000000px;}
._5_c00349{margin-left:-12.716934px;}
._1_c00349{margin-left:-1.105374px;}
._0_c00349{width:1.195563px;}
._3_c00349{width:5.028813px;}
._4_c00349{width:6.178426px;}
._2_c00349{width:342.212263px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs4_c00349{font-size:38.879984px;}
.fs3_c00349{font-size:48.239981px;}
.fs0_c00349{font-size:59.759976px;}
.fs1_c00349{font-size:66.239974px;}
.fs2_c00349{font-size:71.999971px;}
.y0_c00349{bottom:0.000000px;}
.y4_c00349{bottom:75.719970px;}
.y3_c00349{bottom:113.879954px;}
.y13_c00349{bottom:133.499947px;}
.y12_c00349{bottom:151.499939px;}
.y11_c00349{bottom:158.339937px;}
.y10_c00349{bottom:169.679932px;}
.ye_c00349{bottom:353.099859px;}
.yf_c00349{bottom:361.379855px;}
.yd_c00349{bottom:384.059846px;}
.yc_c00349{bottom:430.139828px;}
.yb_c00349{bottom:453.359819px;}
.ya_c00349{bottom:475.139810px;}
.y9_c00349{bottom:500.519800px;}
.y8_c00349{bottom:853.499659px;}
.y7_c00349{bottom:877.079649px;}
.y6_c00349{bottom:898.859640px;}
.y5_c00349{bottom:931.979627px;}
.y2_c00349{bottom:1156.979537px;}
.y1_c00349{bottom:1195.859522px;}
.h7_c00349{height:38.158578px;}
.h6_c00349{height:47.344903px;}
.h8_c00349{height:49.284472px;}
.h2_c00349{height:54.628572px;}
.h1_c00349{height:58.651148px;}
.h4_c00349{height:65.010911px;}
.h3_c00349{height:70.664034px;}
.h5_c00349{height:72.562471px;}
.h0_c00349{height:1263.000000px;}
.w0_c00349{width:892.500000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:127.799949px;}
.x4_c00349{left:132.299947px;}
.x9_c00349{left:142.379943px;}
.x5_c00349{left:397.619841px;}
.x2_c00349{left:434.159514px;}
.x7_c00349{left:465.119814px;}
.x8_c00349{left:483.479807px;}
.x6_c00349{left:713.699715px;}
.x3_c00349{left:742.499703px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls4_c00349{letter-spacing:0.000000pt;}
.ls2_c00349{letter-spacing:0.009928pt;}
.ls1_c00349{letter-spacing:0.136801pt;}
.ls3_c00349{letter-spacing:0.168267pt;}
.ls0_c00349{letter-spacing:0.332694pt;}
.ws0_c00349{word-spacing:-11.052689pt;}
.ws1_c00349{word-spacing:-8.649924pt;}
.ws2_c00349{word-spacing:0.000000pt;}
._5_c00349{margin-left:-11.303941pt;}
._1_c00349{margin-left:-0.982555pt;}
._0_c00349{width:1.062723pt;}
._3_c00349{width:4.470056pt;}
._4_c00349{width:5.491934pt;}
._2_c00349{width:304.188678pt;}
.fs4_c00349{font-size:34.559986pt;}
.fs3_c00349{font-size:42.879983pt;}
.fs0_c00349{font-size:53.119979pt;}
.fs1_c00349{font-size:58.879976pt;}
.fs2_c00349{font-size:63.999974pt;}
.y0_c00349{bottom:0.000000pt;}
.y4_c00349{bottom:67.306640pt;}
.y3_c00349{bottom:101.226626pt;}
.y13_c00349{bottom:118.666619pt;}
.y12_c00349{bottom:134.666613pt;}
.y11_c00349{bottom:140.746610pt;}
.y10_c00349{bottom:150.826606pt;}
.ye_c00349{bottom:313.866541pt;}
.yf_c00349{bottom:321.226538pt;}
.yd_c00349{bottom:341.386530pt;}
.yc_c00349{bottom:382.346514pt;}
.yb_c00349{bottom:402.986505pt;}
.ya_c00349{bottom:422.346498pt;}
.y9_c00349{bottom:444.906489pt;}
.y8_c00349{bottom:758.666363pt;}
.y7_c00349{bottom:779.626355pt;}
.y6_c00349{bottom:798.986347pt;}
.y5_c00349{bottom:828.426335pt;}
.y2_c00349{bottom:1028.426255pt;}
.y1_c00349{bottom:1062.986241pt;}
.h7_c00349{height:33.918736pt;}
.h6_c00349{height:42.084358pt;}
.h8_c00349{height:43.808420pt;}
.h2_c00349{height:48.558731pt;}
.h1_c00349{height:52.134354pt;}
.h4_c00349{height:57.787477pt;}
.h3_c00349{height:62.812475pt;}
.h5_c00349{height:64.499974pt;}
.h0_c00349{height:1122.666667pt;}
.w0_c00349{width:793.333333pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:113.599955pt;}
.x4_c00349{left:117.599953pt;}
.x9_c00349{left:126.559949pt;}
.x5_c00349{left:353.439859pt;}
.x2_c00349{left:385.919568pt;}
.x7_c00349{left:413.439835pt;}
.x8_c00349{left:429.759828pt;}
.x6_c00349{left:634.399746pt;}
.x3_c00349{left:659.999736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5af7ee6fcbb8578d978ae72.woff2')format("woff");}.ff1_c00350{font-family:ff1_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:ff2_c00350;src:url('chunks/assets/font_f85a7eb22a4093bb97166649.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.311035;font-style:normal;font-weight:normal;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_3c48a530cf230ddca05c5996.woff2')format("woff");}.ff4_c00350{font-family:ff4_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;}
.m0_c00350{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls4_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:0.011169px;}
.ls1_c00350{letter-spacing:0.153901px;}
.ls3_c00350{letter-spacing:0.189300px;}
.ls0_c00350{letter-spacing:0.374281px;}
.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:-12.434276px;}
.ws1_c00350{word-spacing:-9.731165px;}
.ws2_c00350{word-spacing:0.000000px;}
._5_c00350{margin-left:-12.716934px;}
._1_c00350{margin-left:-1.105374px;}
._0_c00350{width:1.478392px;}
._3_c00350{width:10.903177px;}
._4_c00350{width:12.258988px;}
._2_c00350{width:13.673915px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs4_c00350{font-size:38.879984px;}
.fs3_c00350{font-size:48.239981px;}
.fs0_c00350{font-size:59.759976px;}
.fs1_c00350{font-size:66.239974px;}
.fs2_c00350{font-size:71.999971px;}
.y0_c00350{bottom:0.000000px;}
.y4_c00350{bottom:75.720270px;}
.y3_c00350{bottom:113.880254px;}
.y1b_c00350{bottom:133.499947px;}
.y1a_c00350{bottom:151.499939px;}
.y19_c00350{bottom:158.339937px;}
.y18_c00350{bottom:168.779932px;}
.y17_c00350{bottom:186.059926px;}
.y16_c00350{bottom:192.899923px;}
.y15_c00350{bottom:204.239918px;}
.y14_c00350{bottom:260.219896px;}
.y13_c00350{bottom:290.999884px;}
.y11_c00350{bottom:322.319871px;}
.y12_c00350{bottom:330.599868px;}
.y10_c00350{bottom:353.459859px;}
.yf_c00350{bottom:384.059846px;}
.ye_c00350{bottom:414.299834px;}
.yd_c00350{bottom:439.679824px;}
.yc_c00350{bottom:646.319741px;}
.ya_c00350{bottom:677.819729px;}
.yb_c00350{bottom:686.099726px;}
.y9_c00350{bottom:708.779716px;}
.y8_c00350{bottom:739.919704px;}
.y7_c00350{bottom:785.819686px;}
.y6_c00350{bottom:815.879674px;}
.y5_c00350{bottom:841.079664px;}
.y2_c00350{bottom:1175.879530px;}
.y1_c00350{bottom:1196.039522px;}
.h7_c00350{height:38.158578px;}
.h6_c00350{height:47.344903px;}
.h8_c00350{height:49.284472px;}
.h2_c00350{height:54.628572px;}
.h1_c00350{height:58.651148px;}
.h4_c00350{height:65.010911px;}
.h5_c00350{height:70.664034px;}
.h3_c00350{height:72.562471px;}
.h0_c00350{height:1263.000000px;}
.w0_c00350{width:892.500000px;}
.x0_c00350{left:0.000000px;}
.x5_c00350{left:127.800262px;}
.x10_c00350{left:142.379943px;}
.x7_c00350{left:153.719939px;}
.x8_c00350{left:180.899928px;}
.x1_c00350{left:181.979927px;}
.xd_c00350{left:202.319919px;}
.xe_c00350{left:291.779883px;}
.xf_c00350{left:310.139876px;}
.x2_c00350{left:329.219408px;}
.x4_c00350{left:434.159826px;}
.xb_c00350{left:446.579821px;}
.x9_c00350{left:522.179791px;}
.xa_c00350{left:540.539784px;}
.x6_c00350{left:700.199720px;}
.xc_c00350{left:761.399695px;}
.x3_c00350{left:765.539694px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls4_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:0.009928pt;}
.ls1_c00350{letter-spacing:0.136801pt;}
.ls3_c00350{letter-spacing:0.168267pt;}
.ls0_c00350{letter-spacing:0.332694pt;}
.ws0_c00350{word-spacing:-11.052689pt;}
.ws1_c00350{word-spacing:-8.649924pt;}
.ws2_c00350{word-spacing:0.000000pt;}
._5_c00350{margin-left:-11.303941pt;}
._1_c00350{margin-left:-0.982555pt;}
._0_c00350{width:1.314126pt;}
._3_c00350{width:9.691713pt;}
._4_c00350{width:10.896878pt;}
._2_c00350{width:12.154591pt;}
.fs4_c00350{font-size:34.559986pt;}
.fs3_c00350{font-size:42.879983pt;}
.fs0_c00350{font-size:53.119979pt;}
.fs1_c00350{font-size:58.879976pt;}
.fs2_c00350{font-size:63.999974pt;}
.y0_c00350{bottom:0.000000pt;}
.y4_c00350{bottom:67.306906pt;}
.y3_c00350{bottom:101.226893pt;}
.y1b_c00350{bottom:118.666619pt;}
.y1a_c00350{bottom:134.666613pt;}
.y19_c00350{bottom:140.746610pt;}
.y18_c00350{bottom:150.026607pt;}
.y17_c00350{bottom:165.386601pt;}
.y16_c00350{bottom:171.466598pt;}
.y15_c00350{bottom:181.546594pt;}
.y14_c00350{bottom:231.306574pt;}
.y13_c00350{bottom:258.666563pt;}
.y11_c00350{bottom:286.506552pt;}
.y12_c00350{bottom:293.866549pt;}
.y10_c00350{bottom:314.186541pt;}
.yf_c00350{bottom:341.386530pt;}
.ye_c00350{bottom:368.266519pt;}
.yd_c00350{bottom:390.826510pt;}
.yc_c00350{bottom:574.506437pt;}
.ya_c00350{bottom:602.506426pt;}
.yb_c00350{bottom:609.866423pt;}
.y9_c00350{bottom:630.026415pt;}
.y8_c00350{bottom:657.706404pt;}
.y7_c00350{bottom:698.506387pt;}
.y6_c00350{bottom:725.226377pt;}
.y5_c00350{bottom:747.626368pt;}
.y2_c00350{bottom:1045.226249pt;}
.y1_c00350{bottom:1063.146241pt;}
.h7_c00350{height:33.918736pt;}
.h6_c00350{height:42.084358pt;}
.h8_c00350{height:43.808420pt;}
.h2_c00350{height:48.558731pt;}
.h1_c00350{height:52.134354pt;}
.h4_c00350{height:57.787477pt;}
.h5_c00350{height:62.812475pt;}
.h3_c00350{height:64.499974pt;}
.h0_c00350{height:1122.666667pt;}
.w0_c00350{width:793.333333pt;}
.x0_c00350{left:0.000000pt;}
.x5_c00350{left:113.600233pt;}
.x10_c00350{left:126.559949pt;}
.x7_c00350{left:136.639945pt;}
.x8_c00350{left:160.799936pt;}
.x1_c00350{left:161.759935pt;}
.xd_c00350{left:179.839928pt;}
.xe_c00350{left:259.359896pt;}
.xf_c00350{left:275.679890pt;}
.x2_c00350{left:292.639474pt;}
.x4_c00350{left:385.919846pt;}
.xb_c00350{left:396.959841pt;}
.x9_c00350{left:464.159814pt;}
.xa_c00350{left:480.479808pt;}
.x6_c00350{left:622.399751pt;}
.xc_c00350{left:676.799729pt;}
.x3_c00350{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d91ec5ed4aba0460385ff042.woff2')format("woff");}.ff1_c00351{font-family:ff1_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:ff2_c00351;src:url('chunks/assets/font_071fbabe3f427fc8ab9c4dce.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00351{font-family:ff3_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:ff4_c00351;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00351{font-family:ff4_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;}
.m0_c00351{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00351{margin-left:-1.105374px;}
._0_c00351{width:1.195563px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs0_c00351{font-size:59.759976px;}
.fs1_c00351{font-size:66.239974px;}
.fs2_c00351{font-size:71.999971px;}
.y0_c00351{bottom:0.000000px;}
.y4_c00351{bottom:75.719970px;}
.y3_c00351{bottom:113.879954px;}
.y1a_c00351{bottom:178.499929px;}
.y19_c00351{bottom:209.459916px;}
.y18_c00351{bottom:240.599904px;}
.y17_c00351{bottom:271.559891px;}
.y16_c00351{bottom:302.699879px;}
.y15_c00351{bottom:333.659867px;}
.y14_c00351{bottom:364.799854px;}
.y13_c00351{bottom:395.759842px;}
.y12_c00351{bottom:426.899829px;}
.y11_c00351{bottom:457.859817px;}
.y10_c00351{bottom:488.999804px;}
.yf_c00351{bottom:519.959792px;}
.ye_c00351{bottom:551.099780px;}
.yd_c00351{bottom:582.059767px;}
.yc_c00351{bottom:613.199755px;}
.yb_c00351{bottom:644.159742px;}
.ya_c00351{bottom:675.119730px;}
.y9_c00351{bottom:706.259717px;}
.y8_c00351{bottom:737.219705px;}
.y7_c00351{bottom:768.359693px;}
.y6_c00351{bottom:798.599681px;}
.y5_c00351{bottom:823.979670px;}
.y2_c00351{bottom:1156.979537px;}
.y1_c00351{bottom:1195.859522px;}
.h2_c00351{height:54.628572px;}
.h1_c00351{height:58.651148px;}
.h4_c00351{height:65.010911px;}
.h5_c00351{height:70.628878px;}
.h3_c00351{height:72.562471px;}
.h0_c00351{height:1263.000000px;}
.w0_c00351{width:892.500000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:127.799949px;}
.x4_c00351{left:212.219915px;}
.x2_c00351{left:434.159514px;}
.x3_c00351{left:712.079715px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.000000pt;}
._1_c00351{margin-left:-0.982555pt;}
._0_c00351{width:1.062723pt;}
.fs0_c00351{font-size:53.119979pt;}
.fs1_c00351{font-size:58.879976pt;}
.fs2_c00351{font-size:63.999974pt;}
.y0_c00351{bottom:0.000000pt;}
.y4_c00351{bottom:67.306640pt;}
.y3_c00351{bottom:101.226626pt;}
.y1a_c00351{bottom:158.666603pt;}
.y19_c00351{bottom:186.186592pt;}
.y18_c00351{bottom:213.866581pt;}
.y17_c00351{bottom:241.386570pt;}
.y16_c00351{bottom:269.066559pt;}
.y15_c00351{bottom:296.586548pt;}
.y14_c00351{bottom:324.266537pt;}
.y13_c00351{bottom:351.786526pt;}
.y12_c00351{bottom:379.466515pt;}
.y11_c00351{bottom:406.986504pt;}
.y10_c00351{bottom:434.666493pt;}
.yf_c00351{bottom:462.186482pt;}
.ye_c00351{bottom:489.866471pt;}
.yd_c00351{bottom:517.386460pt;}
.yc_c00351{bottom:545.066449pt;}
.yb_c00351{bottom:572.586438pt;}
.ya_c00351{bottom:600.106427pt;}
.y9_c00351{bottom:627.786416pt;}
.y8_c00351{bottom:655.306405pt;}
.y7_c00351{bottom:682.986393pt;}
.y6_c00351{bottom:709.866383pt;}
.y5_c00351{bottom:732.426374pt;}
.y2_c00351{bottom:1028.426255pt;}
.y1_c00351{bottom:1062.986241pt;}
.h2_c00351{height:48.558731pt;}
.h1_c00351{height:52.134354pt;}
.h4_c00351{height:57.787477pt;}
.h5_c00351{height:62.781225pt;}
.h3_c00351{height:64.499974pt;}
.h0_c00351{height:1122.666667pt;}
.w0_c00351{width:793.333333pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:113.599955pt;}
.x4_c00351{left:188.639925pt;}
.x2_c00351{left:385.919568pt;}
.x3_c00351{left:632.959747pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dc2bb14ddce14cead95e3d5.woff2')format("woff");}.ff1_c00352{font-family:ff1_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:ff2_c00352;src:url('chunks/assets/font_0041419fb10f95a51dcb6353.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_e81980f59c995d8f08014659.woff2')format("woff");}.ff3_c00352{font-family:ff3_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:ff4_c00352;src:url('chunks/assets/font_1e66ef01f1bd6de915eb3f30.woff2')format("woff");}.ff4_c00352{font-family:ff4_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:ff5_c00352;src:url('chunks/assets/font_47b27e644d7dabbfe728dc37.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:0.734375;font-style:normal;font-weight:normal;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_68df8775cd189e88f9ecc7fd.woff2')format("woff");}.ff6_c00352{font-family:ff6_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;}
.m0_c00352{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls1_c00352{letter-spacing:0.000000px;}
.ls0_c00352{letter-spacing:0.021282px;}
.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;}
}
.ws0_c00352{word-spacing:-17.999993px;}
.ws1_c00352{word-spacing:0.000000px;}
._1_c00352{margin-left:-1.105374px;}
._0_c00352{width:1.478392px;}
._3_c00352{width:3.354000px;}
._2_c00352{width:4.450189px;}
._6_c00352{width:5.566820px;}
._4_c00352{width:6.605460px;}
._5_c00352{width:7.865683px;}
._7_c00352{width:8.878048px;}
._8_c00352{width:10.104930px;}
._a_c00352{width:11.199800px;}
._b_c00352{width:12.531699px;}
._9_c00352{width:27.510842px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs0_c00352{font-size:59.759976px;}
.fs1_c00352{font-size:66.239974px;}
.fs2_c00352{font-size:71.999971px;}
.y0_c00352{bottom:0.000000px;}
.y4_c00352{bottom:75.720270px;}
.y3_c00352{bottom:113.880254px;}
.y1b_c00352{bottom:148.259941px;}
.y1a_c00352{bottom:179.399928px;}
.y19_c00352{bottom:210.359916px;}
.y18_c00352{bottom:241.499903px;}
.y17_c00352{bottom:272.459891px;}
.y16_c00352{bottom:303.599879px;}
.y15_c00352{bottom:334.559866px;}
.y14_c00352{bottom:365.699854px;}
.y13_c00352{bottom:396.659841px;}
.y12_c00352{bottom:427.619829px;}
.y11_c00352{bottom:458.759816px;}
.y10_c00352{bottom:489.719804px;}
.yf_c00352{bottom:520.859792px;}
.ye_c00352{bottom:551.819779px;}
.yd_c00352{bottom:582.959767px;}
.yc_c00352{bottom:604.739758px;}
.yb_c00352{bottom:626.699749px;}
.ya_c00352{bottom:647.039741px;}
.y9_c00352{bottom:670.259732px;}
.y8_c00352{bottom:688.439725px;}
.y7_c00352{bottom:1073.819570px;}
.y6_c00352{bottom:1104.959558px;}
.y5_c00352{bottom:1135.919546px;}
.y2_c00352{bottom:1175.879530px;}
.y1_c00352{bottom:1196.039522px;}
.h5_c00352{height:52.312479px;}
.h2_c00352{height:54.628572px;}
.h1_c00352{height:58.651148px;}
.h6_c00352{height:65.010911px;}
.h4_c00352{height:70.628878px;}
.h7_c00352{height:70.664034px;}
.h3_c00352{height:72.562471px;}
.h0_c00352{height:1263.000000px;}
.w0_c00352{width:892.500000px;}
.x0_c00352{left:0.000000px;}
.x5_c00352{left:127.800262px;}
.x7_c00352{left:180.899928px;}
.x1_c00352{left:181.979927px;}
.x2_c00352{left:329.219408px;}
.x4_c00352{left:434.159826px;}
.x6_c00352{left:588.419765px;}
.x3_c00352{left:765.539694px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls1_c00352{letter-spacing:0.000000pt;}
.ls0_c00352{letter-spacing:0.018917pt;}
.ws0_c00352{word-spacing:-15.999994pt;}
.ws1_c00352{word-spacing:0.000000pt;}
._1_c00352{margin-left:-0.982555pt;}
._0_c00352{width:1.314126pt;}
._3_c00352{width:2.981334pt;}
._2_c00352{width:3.955723pt;}
._6_c00352{width:4.948284pt;}
._4_c00352{width:5.871520pt;}
._5_c00352{width:6.991718pt;}
._7_c00352{width:7.891598pt;}
._8_c00352{width:8.982160pt;}
._a_c00352{width:9.955378pt;}
._b_c00352{width:11.139288pt;}
._9_c00352{width:24.454082pt;}
.fs0_c00352{font-size:53.119979pt;}
.fs1_c00352{font-size:58.879976pt;}
.fs2_c00352{font-size:63.999974pt;}
.y0_c00352{bottom:0.000000pt;}
.y4_c00352{bottom:67.306906pt;}
.y3_c00352{bottom:101.226893pt;}
.y1b_c00352{bottom:131.786614pt;}
.y1a_c00352{bottom:159.466603pt;}
.y19_c00352{bottom:186.986592pt;}
.y18_c00352{bottom:214.666581pt;}
.y17_c00352{bottom:242.186570pt;}
.y16_c00352{bottom:269.866559pt;}
.y15_c00352{bottom:297.386548pt;}
.y14_c00352{bottom:325.066537pt;}
.y13_c00352{bottom:352.586526pt;}
.y12_c00352{bottom:380.106515pt;}
.y11_c00352{bottom:407.786504pt;}
.y10_c00352{bottom:435.306493pt;}
.yf_c00352{bottom:462.986481pt;}
.ye_c00352{bottom:490.506470pt;}
.yd_c00352{bottom:518.186459pt;}
.yc_c00352{bottom:537.546452pt;}
.yb_c00352{bottom:557.066444pt;}
.ya_c00352{bottom:575.146437pt;}
.y9_c00352{bottom:595.786428pt;}
.y8_c00352{bottom:611.946422pt;}
.y7_c00352{bottom:954.506285pt;}
.y6_c00352{bottom:982.186274pt;}
.y5_c00352{bottom:1009.706263pt;}
.y2_c00352{bottom:1045.226249pt;}
.y1_c00352{bottom:1063.146241pt;}
.h5_c00352{height:46.499981pt;}
.h2_c00352{height:48.558731pt;}
.h1_c00352{height:52.134354pt;}
.h6_c00352{height:57.787477pt;}
.h4_c00352{height:62.781225pt;}
.h7_c00352{height:62.812475pt;}
.h3_c00352{height:64.499974pt;}
.h0_c00352{height:1122.666667pt;}
.w0_c00352{width:793.333333pt;}
.x0_c00352{left:0.000000pt;}
.x5_c00352{left:113.600233pt;}
.x7_c00352{left:160.799936pt;}
.x1_c00352{left:161.759935pt;}
.x2_c00352{left:292.639474pt;}
.x4_c00352{left:385.919846pt;}
.x6_c00352{left:523.039791pt;}
.x3_c00352{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_863d02a7b2b2ff6ec1efe675.woff2')format("woff");}.ff1_c00353{font-family:ff1_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:ff2_c00353;src:url('chunks/assets/font_8d5e0afbe0dbfa3039540a38.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_adf77f663cb0a779c1b994ea.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;}
.m0_c00353{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls2_c00353{letter-spacing:0.000000px;}
.ls1_c00353{letter-spacing:0.011169px;}
.ls0_c00353{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00353{word-spacing:-12.434276px;}
.ws1_c00353{word-spacing:-9.731165px;}
.ws2_c00353{word-spacing:0.000000px;}
._e_c00353{margin-left:-9.564650px;}
._1_c00353{margin-left:-1.105374px;}
._0_c00353{width:1.195563px;}
._2_c00353{width:2.381972px;}
._c_c00353{width:3.788898px;}
._8_c00353{width:5.522522px;}
._3_c00353{width:6.671666px;}
._4_c00353{width:7.931822px;}
._7_c00353{width:11.365146px;}
._6_c00353{width:12.679535px;}
._9_c00353{width:14.912862px;}
._a_c00353{width:19.973575px;}
._d_c00353{width:21.140484px;}
._b_c00353{width:28.774607px;}
._5_c00353{width:33.167919px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs4_c00353{font-size:38.879984px;}
.fs3_c00353{font-size:48.239981px;}
.fs0_c00353{font-size:59.759976px;}
.fs1_c00353{font-size:66.239974px;}
.fs2_c00353{font-size:71.999971px;}
.y0_c00353{bottom:0.000000px;}
.y4_c00353{bottom:75.899970px;}
.y3_c00353{bottom:114.059954px;}
.y1e_c00353{bottom:134.400246px;}
.y1d_c00353{bottom:153.479939px;}
.y1c_c00353{bottom:170.759932px;}
.y1b_c00353{bottom:177.599929px;}
.y1a_c00353{bottom:188.939924px;}
.y19_c00353{bottom:528.239789px;}
.y18_c00353{bottom:559.379776px;}
.y17_c00353{bottom:590.339764px;}
.y15_c00353{bottom:621.479751px;}
.y16_c00353{bottom:629.759748px;}
.y14_c00353{bottom:652.439739px;}
.y13_c00353{bottom:683.579727px;}
.y12_c00353{bottom:714.539714px;}
.y11_c00353{bottom:745.679702px;}
.y10_c00353{bottom:776.639689px;}
.yf_c00353{bottom:807.779677px;}
.ye_c00353{bottom:838.739665px;}
.yd_c00353{bottom:869.879652px;}
.yc_c00353{bottom:900.839640px;}
.yb_c00353{bottom:931.979627px;}
.ya_c00353{bottom:962.939615px;}
.y9_c00353{bottom:994.079602px;}
.y8_c00353{bottom:1025.039590px;}
.y7_c00353{bottom:1056.179578px;}
.y6_c00353{bottom:1087.139565px;}
.y5_c00353{bottom:1118.279553px;}
.y2_c00353{bottom:1157.159537px;}
.y1_c00353{bottom:1196.039522px;}
.h6_c00353{height:38.158578px;}
.h4_c00353{height:47.321348px;}
.h2_c00353{height:54.628572px;}
.h1_c00353{height:58.651148px;}
.h3_c00353{height:70.628878px;}
.h5_c00353{height:70.664034px;}
.h0_c00353{height:1263.000000px;}
.w0_c00353{width:892.500000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:127.619949px;}
.x6_c00353{left:142.199943px;}
.x3_c00353{left:180.719928px;}
.x2_c00353{left:433.979514px;}
.x4_c00353{left:712.979715px;}
.x5_c00353{left:731.339707px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls2_c00353{letter-spacing:0.000000pt;}
.ls1_c00353{letter-spacing:0.009928pt;}
.ls0_c00353{letter-spacing:0.332694pt;}
.ws0_c00353{word-spacing:-11.052689pt;}
.ws1_c00353{word-spacing:-8.649924pt;}
.ws2_c00353{word-spacing:0.000000pt;}
._e_c00353{margin-left:-8.501911pt;}
._1_c00353{margin-left:-0.982555pt;}
._0_c00353{width:1.062723pt;}
._2_c00353{width:2.117309pt;}
._c_c00353{width:3.367909pt;}
._8_c00353{width:4.908908pt;}
._3_c00353{width:5.930370pt;}
._4_c00353{width:7.050509pt;}
._7_c00353{width:10.102352pt;}
._6_c00353{width:11.270698pt;}
._9_c00353{width:13.255878pt;}
._a_c00353{width:17.754289pt;}
._d_c00353{width:18.791541pt;}
._b_c00353{width:25.577428pt;}
._5_c00353{width:29.482594pt;}
.fs4_c00353{font-size:34.559986pt;}
.fs3_c00353{font-size:42.879983pt;}
.fs0_c00353{font-size:53.119979pt;}
.fs1_c00353{font-size:58.879976pt;}
.fs2_c00353{font-size:63.999974pt;}
.y0_c00353{bottom:0.000000pt;}
.y4_c00353{bottom:67.466640pt;}
.y3_c00353{bottom:101.386626pt;}
.y1e_c00353{bottom:119.466886pt;}
.y1d_c00353{bottom:136.426612pt;}
.y1c_c00353{bottom:151.786606pt;}
.y1b_c00353{bottom:157.866604pt;}
.y1a_c00353{bottom:167.946599pt;}
.y19_c00353{bottom:469.546479pt;}
.y18_c00353{bottom:497.226468pt;}
.y17_c00353{bottom:524.746457pt;}
.y15_c00353{bottom:552.426446pt;}
.y16_c00353{bottom:559.786443pt;}
.y14_c00353{bottom:579.946435pt;}
.y13_c00353{bottom:607.626424pt;}
.y12_c00353{bottom:635.146413pt;}
.y11_c00353{bottom:662.826402pt;}
.y10_c00353{bottom:690.346391pt;}
.yf_c00353{bottom:718.026379pt;}
.ye_c00353{bottom:745.546368pt;}
.yd_c00353{bottom:773.226357pt;}
.yc_c00353{bottom:800.746346pt;}
.yb_c00353{bottom:828.426335pt;}
.ya_c00353{bottom:855.946324pt;}
.y9_c00353{bottom:883.626313pt;}
.y8_c00353{bottom:911.146302pt;}
.y7_c00353{bottom:938.826291pt;}
.y6_c00353{bottom:966.346280pt;}
.y5_c00353{bottom:994.026269pt;}
.y2_c00353{bottom:1028.586255pt;}
.y1_c00353{bottom:1063.146241pt;}
.h6_c00353{height:33.918736pt;}
.h4_c00353{height:42.063421pt;}
.h2_c00353{height:48.558731pt;}
.h1_c00353{height:52.134354pt;}
.h3_c00353{height:62.781225pt;}
.h5_c00353{height:62.812475pt;}
.h0_c00353{height:1122.666667pt;}
.w0_c00353{width:793.333333pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:113.439955pt;}
.x6_c00353{left:126.399949pt;}
.x3_c00353{left:160.639936pt;}
.x2_c00353{left:385.759568pt;}
.x4_c00353{left:633.759746pt;}
.x5_c00353{left:650.079740pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_989c84624ba42eeb43c91b0e.woff2')format("woff");}.ff1_c00354{font-family:ff1_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:ff2_c00354;src:url('chunks/assets/font_89600bc1ba934012f28c9b5e.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_0e76f17c8691e8a81b14f129.woff2')format("woff");}.ff3_c00354{font-family:ff3_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;}
.m0_c00354{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00354{margin-left:-1.105374px;}
._0_c00354{width:1.478392px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs0_c00354{font-size:59.759976px;}
.fs1_c00354{font-size:66.239974px;}
.fs2_c00354{font-size:71.999971px;}
.y0_c00354{bottom:0.000000px;}
.y4_c00354{bottom:75.720270px;}
.y3_c00354{bottom:113.880254px;}
.yb_c00354{bottom:393.419843px;}
.ya_c00354{bottom:418.799832px;}
.y9_c00354{bottom:746.219702px;}
.y8_c00354{bottom:766.559693px;}
.y7_c00354{bottom:785.639686px;}
.y6_c00354{bottom:804.539678px;}
.y5_c00354{bottom:829.739668px;}
.y2_c00354{bottom:1175.879530px;}
.y1_c00354{bottom:1196.039522px;}
.h2_c00354{height:54.628572px;}
.h1_c00354{height:58.651148px;}
.h4_c00354{height:65.010911px;}
.h3_c00354{height:70.664034px;}
.h0_c00354{height:1263.000000px;}
.w0_c00354{width:892.500000px;}
.x0_c00354{left:0.000000px;}
.x5_c00354{left:127.800262px;}
.x7_c00354{left:166.139934px;}
.x1_c00354{left:181.979927px;}
.x2_c00354{left:329.219408px;}
.x4_c00354{left:434.159826px;}
.x8_c00354{left:446.579868px;}
.x9_c00354{left:664.919146px;}
.x6_c00354{left:678.779728px;}
.x3_c00354{left:765.539694px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.000000pt;}
._1_c00354{margin-left:-0.982555pt;}
._0_c00354{width:1.314126pt;}
.fs0_c00354{font-size:53.119979pt;}
.fs1_c00354{font-size:58.879976pt;}
.fs2_c00354{font-size:63.999974pt;}
.y0_c00354{bottom:0.000000pt;}
.y4_c00354{bottom:67.306906pt;}
.y3_c00354{bottom:101.226893pt;}
.yb_c00354{bottom:349.706527pt;}
.ya_c00354{bottom:372.266518pt;}
.y9_c00354{bottom:663.306401pt;}
.y8_c00354{bottom:681.386394pt;}
.y7_c00354{bottom:698.346387pt;}
.y6_c00354{bottom:715.146381pt;}
.y5_c00354{bottom:737.546372pt;}
.y2_c00354{bottom:1045.226249pt;}
.y1_c00354{bottom:1063.146241pt;}
.h2_c00354{height:48.558731pt;}
.h1_c00354{height:52.134354pt;}
.h4_c00354{height:57.787477pt;}
.h3_c00354{height:62.812475pt;}
.h0_c00354{height:1122.666667pt;}
.w0_c00354{width:793.333333pt;}
.x0_c00354{left:0.000000pt;}
.x5_c00354{left:113.600233pt;}
.x7_c00354{left:147.679941pt;}
.x1_c00354{left:161.759935pt;}
.x2_c00354{left:292.639474pt;}
.x4_c00354{left:385.919846pt;}
.x8_c00354{left:396.959883pt;}
.x9_c00354{left:591.039241pt;}
.x6_c00354{left:603.359759pt;}
.x3_c00354{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90e3e7e624dc5ffa9f69d377.woff2')format("woff");}.ff1_c00355{font-family:ff1_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:ff2_c00355;src:url('chunks/assets/font_b9a98e06c50f208490394263.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00355{font-family:ff3_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:ff4_c00355;src:url('chunks/assets/font_fc298e4bc777c66f05327acb.woff2')format("woff");}.ff4_c00355{font-family:ff4_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;}
.m0_c00355{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00355{word-spacing:0.000000px;}
._1_c00355{margin-left:-1.105374px;}
._0_c00355{width:1.195563px;}
._6_c00355{width:2.647859px;}
._2_c00355{width:3.900951px;}
._3_c00355{width:5.204933px;}
._7_c00355{width:10.227678px;}
._8_c00355{width:11.474480px;}
._5_c00355{width:19.533065px;}
._4_c00355{width:24.277426px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs0_c00355{font-size:59.759976px;}
.fs1_c00355{font-size:66.239974px;}
.fs2_c00355{font-size:71.999971px;}
.y0_c00355{bottom:0.000000px;}
.y4_c00355{bottom:75.719970px;}
.y3_c00355{bottom:113.879954px;}
.y11_c00355{bottom:202.259919px;}
.y10_c00355{bottom:233.219907px;}
.yf_c00355{bottom:264.359894px;}
.ye_c00355{bottom:295.319882px;}
.yd_c00355{bottom:326.459869px;}
.yc_c00355{bottom:357.419857px;}
.yb_c00355{bottom:388.559845px;}
.ya_c00355{bottom:419.519832px;}
.y9_c00355{bottom:450.659820px;}
.y8_c00355{bottom:481.619807px;}
.y7_c00355{bottom:512.399795px;}
.y6_c00355{bottom:533.099787px;}
.y5_c00355{bottom:558.479777px;}
.y2_c00355{bottom:1156.979537px;}
.y1_c00355{bottom:1195.859522px;}
.h2_c00355{height:54.628572px;}
.h1_c00355{height:58.651148px;}
.h4_c00355{height:65.010911px;}
.h6_c00355{height:70.628878px;}
.h5_c00355{height:70.664034px;}
.h3_c00355{height:72.562471px;}
.h0_c00355{height:1263.000000px;}
.w0_c00355{width:892.500000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:127.799949px;}
.x4_c00355{left:161.999935px;}
.x5_c00355{left:180.899930px;}
.x2_c00355{left:434.159514px;}
.x3_c00355{left:676.079730px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
._1_c00355{margin-left:-0.982555pt;}
._0_c00355{width:1.062723pt;}
._6_c00355{width:2.353653pt;}
._2_c00355{width:3.467512pt;}
._3_c00355{width:4.626607pt;}
._7_c00355{width:9.091269pt;}
._8_c00355{width:10.199538pt;}
._5_c00355{width:17.362724pt;}
._4_c00355{width:21.579935pt;}
.fs0_c00355{font-size:53.119979pt;}
.fs1_c00355{font-size:58.879976pt;}
.fs2_c00355{font-size:63.999974pt;}
.y0_c00355{bottom:0.000000pt;}
.y4_c00355{bottom:67.306640pt;}
.y3_c00355{bottom:101.226626pt;}
.y11_c00355{bottom:179.786595pt;}
.y10_c00355{bottom:207.306584pt;}
.yf_c00355{bottom:234.986573pt;}
.ye_c00355{bottom:262.506562pt;}
.yd_c00355{bottom:290.186551pt;}
.yc_c00355{bottom:317.706540pt;}
.yb_c00355{bottom:345.386529pt;}
.ya_c00355{bottom:372.906518pt;}
.y9_c00355{bottom:400.586506pt;}
.y8_c00355{bottom:428.106495pt;}
.y7_c00355{bottom:455.466484pt;}
.y6_c00355{bottom:473.866477pt;}
.y5_c00355{bottom:496.426468pt;}
.y2_c00355{bottom:1028.426255pt;}
.y1_c00355{bottom:1062.986241pt;}
.h2_c00355{height:48.558731pt;}
.h1_c00355{height:52.134354pt;}
.h4_c00355{height:57.787477pt;}
.h6_c00355{height:62.781225pt;}
.h5_c00355{height:62.812475pt;}
.h3_c00355{height:64.499974pt;}
.h0_c00355{height:1122.666667pt;}
.w0_c00355{width:793.333333pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:113.599955pt;}
.x4_c00355{left:143.999942pt;}
.x5_c00355{left:160.799938pt;}
.x2_c00355{left:385.919568pt;}
.x3_c00355{left:600.959760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28f5add8c27c961231356f8c.woff2')format("woff");}.ff1_c00356{font-family:ff1_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:ff2_c00356;src:url('chunks/assets/font_89600bc1ba934012f28c9b5e.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_48f0dedc61d7468c0df0d997.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_a481112e71ffec083e0afca0.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;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_7c328bdfef0bdab3c73bd317.woff2')format("woff");}.ff5_c00356{font-family:ff5_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;}
.m0_c00356{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v1_c00356{vertical-align:-83.519967px;}
.v0_c00356{vertical-align:0.000000px;}
.ls4_c00356{letter-spacing:0.000000px;}
.ls3_c00356{letter-spacing:0.011169px;}
.ls2_c00356{letter-spacing:0.153901px;}
.ls0_c00356{letter-spacing:0.374281px;}
.ls1_c00356{letter-spacing:194.525322px;}
.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;}
}
.ws1_c00356{word-spacing:-17.999993px;}
.ws0_c00356{word-spacing:-12.434276px;}
.ws2_c00356{word-spacing:-9.731165px;}
.ws3_c00356{word-spacing:0.000000px;}
._b_c00356{margin-left:-12.716934px;}
._8_c00356{margin-left:-2.382453px;}
._1_c00356{margin-left:-1.105374px;}
._0_c00356{width:1.478392px;}
._3_c00356{width:4.156097px;}
._4_c00356{width:5.250755px;}
._a_c00356{width:8.080355px;}
._7_c00356{width:9.128154px;}
._9_c00356{width:10.252588px;}
._2_c00356{width:11.643829px;}
._5_c00356{width:13.556907px;}
._6_c00356{width:14.615402px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs4_c00356{font-size:38.879984px;}
.fs3_c00356{font-size:48.239981px;}
.fs0_c00356{font-size:59.759976px;}
.fs1_c00356{font-size:66.239974px;}
.fs2_c00356{font-size:71.999971px;}
.y0_c00356{bottom:0.000000px;}
.y4_c00356{bottom:75.720270px;}
.y3_c00356{bottom:113.880254px;}
.y1a_c00356{bottom:133.140247px;}
.y19_c00356{bottom:139.980244px;}
.y18_c00356{bottom:151.319939px;}
.y17_c00356{bottom:198.299921px;}
.y16_c00356{bottom:229.259908px;}
.y15_c00356{bottom:260.219896px;}
.y14_c00356{bottom:291.359883px;}
.y13_c00356{bottom:322.319871px;}
.y12_c00356{bottom:353.459859px;}
.y11_c00356{bottom:384.419846px;}
.y10_c00356{bottom:415.559834px;}
.yf_c00356{bottom:446.519821px;}
.ye_c00356{bottom:498.539801px;}
.yd_c00356{bottom:518.879792px;}
.yc_c00356{bottom:539.399784px;}
.yb_c00356{bottom:579.719768px;}
.ya_c00356{bottom:1011.719595px;}
.y9_c00356{bottom:1042.859583px;}
.y8_c00356{bottom:1073.819570px;}
.y6_c00356{bottom:1105.319558px;}
.y7_c00356{bottom:1113.599555px;}
.y5_c00356{bottom:1136.279545px;}
.y2_c00356{bottom:1175.879530px;}
.y1_c00356{bottom:1196.039522px;}
.h8_c00356{height:38.158578px;}
.h4_c00356{height:47.321348px;}
.h2_c00356{height:54.628572px;}
.h1_c00356{height:58.651148px;}
.h6_c00356{height:65.010911px;}
.h3_c00356{height:70.628878px;}
.h7_c00356{height:70.664034px;}
.h5_c00356{height:72.562471px;}
.h0_c00356{height:1263.000000px;}
.w0_c00356{width:892.500000px;}
.x0_c00356{left:0.000000px;}
.x5_c00356{left:127.800262px;}
.xb_c00356{left:142.379943px;}
.xa_c00356{left:169.559932px;}
.x6_c00356{left:180.899928px;}
.x1_c00356{left:181.979927px;}
.x2_c00356{left:329.219408px;}
.x4_c00356{left:434.159826px;}
.x7_c00356{left:569.339772px;}
.x9_c00356{left:586.079972px;}
.x8_c00356{left:587.699765px;}
.x3_c00356{left:765.539694px;}
@media print{
.v1_c00356{vertical-align:-74.239970pt;}
.v0_c00356{vertical-align:0.000000pt;}
.ls4_c00356{letter-spacing:0.000000pt;}
.ls3_c00356{letter-spacing:0.009928pt;}
.ls2_c00356{letter-spacing:0.136801pt;}
.ls0_c00356{letter-spacing:0.332694pt;}
.ls1_c00356{letter-spacing:172.911398pt;}
.ws1_c00356{word-spacing:-15.999994pt;}
.ws0_c00356{word-spacing:-11.052689pt;}
.ws2_c00356{word-spacing:-8.649924pt;}
.ws3_c00356{word-spacing:0.000000pt;}
._b_c00356{margin-left:-11.303941pt;}
._8_c00356{margin-left:-2.117736pt;}
._1_c00356{margin-left:-0.982555pt;}
._0_c00356{width:1.314126pt;}
._3_c00356{width:3.694308pt;}
._4_c00356{width:4.667338pt;}
._a_c00356{width:7.182538pt;}
._7_c00356{width:8.113915pt;}
._9_c00356{width:9.113411pt;}
._2_c00356{width:10.350070pt;}
._5_c00356{width:12.050584pt;}
._6_c00356{width:12.991468pt;}
.fs4_c00356{font-size:34.559986pt;}
.fs3_c00356{font-size:42.879983pt;}
.fs0_c00356{font-size:53.119979pt;}
.fs1_c00356{font-size:58.879976pt;}
.fs2_c00356{font-size:63.999974pt;}
.y0_c00356{bottom:0.000000pt;}
.y4_c00356{bottom:67.306906pt;}
.y3_c00356{bottom:101.226893pt;}
.y1a_c00356{bottom:118.346886pt;}
.y19_c00356{bottom:124.426884pt;}
.y18_c00356{bottom:134.506613pt;}
.y17_c00356{bottom:176.266596pt;}
.y16_c00356{bottom:203.786585pt;}
.y15_c00356{bottom:231.306574pt;}
.y14_c00356{bottom:258.986563pt;}
.y13_c00356{bottom:286.506552pt;}
.y12_c00356{bottom:314.186541pt;}
.y11_c00356{bottom:341.706530pt;}
.y10_c00356{bottom:369.386519pt;}
.yf_c00356{bottom:396.906508pt;}
.ye_c00356{bottom:443.146489pt;}
.yd_c00356{bottom:461.226482pt;}
.yc_c00356{bottom:479.466475pt;}
.yb_c00356{bottom:515.306461pt;}
.ya_c00356{bottom:899.306307pt;}
.y9_c00356{bottom:926.986296pt;}
.y8_c00356{bottom:954.506285pt;}
.y6_c00356{bottom:982.506274pt;}
.y7_c00356{bottom:989.866271pt;}
.y5_c00356{bottom:1010.026263pt;}
.y2_c00356{bottom:1045.226249pt;}
.y1_c00356{bottom:1063.146241pt;}
.h8_c00356{height:33.918736pt;}
.h4_c00356{height:42.063421pt;}
.h2_c00356{height:48.558731pt;}
.h1_c00356{height:52.134354pt;}
.h6_c00356{height:57.787477pt;}
.h3_c00356{height:62.781225pt;}
.h7_c00356{height:62.812475pt;}
.h5_c00356{height:64.499974pt;}
.h0_c00356{height:1122.666667pt;}
.w0_c00356{width:793.333333pt;}
.x0_c00356{left:0.000000pt;}
.x5_c00356{left:113.600233pt;}
.xb_c00356{left:126.559949pt;}
.xa_c00356{left:150.719940pt;}
.x6_c00356{left:160.799936pt;}
.x1_c00356{left:161.759935pt;}
.x2_c00356{left:292.639474pt;}
.x4_c00356{left:385.919846pt;}
.x7_c00356{left:506.079798pt;}
.x9_c00356{left:520.959975pt;}
.x8_c00356{left:522.399791pt;}
.x3_c00356{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c223dd0c73d27ff881f5b5a.woff2')format("woff");}.ff1_c00357{font-family:ff1_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:ff2_c00357;src:url('chunks/assets/font_f9537e7c3fcc26d80cf4b722.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_00417130366cc1d16fb17293.woff2')format("woff");}.ff3_c00357{font-family:ff3_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;}
.m0_c00357{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls2_c00357{letter-spacing:0.000000px;}
.ls1_c00357{letter-spacing:0.011169px;}
.ls0_c00357{letter-spacing:0.374281px;}
.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:-17.999993px;}
.ws3_c00357{word-spacing:-14.939994px;}
.ws0_c00357{word-spacing:-12.434276px;}
.ws2_c00357{word-spacing:-9.731165px;}
.ws4_c00357{word-spacing:0.000000px;}
._e_c00357{margin-left:-10.197710px;}
._1_c00357{margin-left:-1.105374px;}
._0_c00357{width:1.195563px;}
._3_c00357{width:2.292147px;}
._5_c00357{width:3.751326px;}
._4_c00357{width:4.818718px;}
._d_c00357{width:6.155581px;}
._b_c00357{width:8.609683px;}
._7_c00357{width:9.983198px;}
._8_c00357{width:11.451403px;}
._6_c00357{width:12.953483px;}
._c_c00357{width:15.203424px;}
._9_c00357{width:19.366503px;}
._a_c00357{width:20.469571px;}
._2_c00357{width:22.492709px;}
.fc0_c00357{color:rgb(0,0,0);}
.fs4_c00357{font-size:38.879984px;}
.fs3_c00357{font-size:48.239981px;}
.fs0_c00357{font-size:59.759976px;}
.fs1_c00357{font-size:66.239974px;}
.fs2_c00357{font-size:71.999971px;}
.y0_c00357{bottom:0.000000px;}
.y4_c00357{bottom:75.899970px;}
.y3_c00357{bottom:114.059954px;}
.y27_c00357{bottom:148.259941px;}
.y28_c00357{bottom:148.260241px;}
.y26_c00357{bottom:165.719934px;}
.y25_c00357{bottom:172.559931px;}
.y24_c00357{bottom:183.719927px;}
.y23_c00357{bottom:217.739913px;}
.y22_c00357{bottom:248.879900px;}
.y21_c00357{bottom:279.839888px;}
.y20_c00357{bottom:310.979876px;}
.y1f_c00357{bottom:341.939863px;}
.y1e_c00357{bottom:373.079851px;}
.y1d_c00357{bottom:404.039838px;}
.y1c_c00357{bottom:435.179826px;}
.y1b_c00357{bottom:466.139814px;}
.y1a_c00357{bottom:497.279801px;}
.y18_c00357{bottom:528.239789px;}
.y19_c00357{bottom:536.519785px;}
.y17_c00357{bottom:559.379776px;}
.y16_c00357{bottom:590.339764px;}
.y15_c00357{bottom:621.479751px;}
.y14_c00357{bottom:652.439739px;}
.y13_c00357{bottom:683.579727px;}
.y12_c00357{bottom:714.539714px;}
.y11_c00357{bottom:745.679702px;}
.y10_c00357{bottom:776.639689px;}
.yf_c00357{bottom:807.779677px;}
.ye_c00357{bottom:838.739665px;}
.yd_c00357{bottom:869.879652px;}
.yc_c00357{bottom:900.839640px;}
.yb_c00357{bottom:931.979627px;}
.ya_c00357{bottom:962.939615px;}
.y9_c00357{bottom:994.079602px;}
.y8_c00357{bottom:1025.039590px;}
.y7_c00357{bottom:1056.179578px;}
.y6_c00357{bottom:1087.139565px;}
.y5_c00357{bottom:1118.279553px;}
.y2_c00357{bottom:1157.159537px;}
.y1_c00357{bottom:1196.039522px;}
.h6_c00357{height:38.158578px;}
.h4_c00357{height:47.321348px;}
.h2_c00357{height:54.628572px;}
.h1_c00357{height:58.651148px;}
.h3_c00357{height:70.628878px;}
.h5_c00357{height:70.664034px;}
.h0_c00357{height:1263.000000px;}
.w0_c00357{width:892.500000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:127.619949px;}
.x6_c00357{left:142.199943px;}
.x3_c00357{left:180.719928px;}
.x7_c00357{left:190.439924px;}
.x2_c00357{left:433.979514px;}
.x4_c00357{left:479.699808px;}
.x5_c00357{left:498.059801px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls2_c00357{letter-spacing:0.000000pt;}
.ls1_c00357{letter-spacing:0.009928pt;}
.ls0_c00357{letter-spacing:0.332694pt;}
.ws1_c00357{word-spacing:-15.999994pt;}
.ws3_c00357{word-spacing:-13.279995pt;}
.ws0_c00357{word-spacing:-11.052689pt;}
.ws2_c00357{word-spacing:-8.649924pt;}
.ws4_c00357{word-spacing:0.000000pt;}
._e_c00357{margin-left:-9.064631pt;}
._1_c00357{margin-left:-0.982555pt;}
._0_c00357{width:1.062723pt;}
._3_c00357{width:2.037464pt;}
._5_c00357{width:3.334512pt;}
._4_c00357{width:4.283305pt;}
._d_c00357{width:5.471628pt;}
._b_c00357{width:7.653051pt;}
._7_c00357{width:8.873954pt;}
._8_c00357{width:10.179025pt;}
._6_c00357{width:11.514207pt;}
._c_c00357{width:13.514155pt;}
._9_c00357{width:17.214669pt;}
._a_c00357{width:18.195174pt;}
._2_c00357{width:19.993519pt;}
.fs4_c00357{font-size:34.559986pt;}
.fs3_c00357{font-size:42.879983pt;}
.fs0_c00357{font-size:53.119979pt;}
.fs1_c00357{font-size:58.879976pt;}
.fs2_c00357{font-size:63.999974pt;}
.y0_c00357{bottom:0.000000pt;}
.y4_c00357{bottom:67.466640pt;}
.y3_c00357{bottom:101.386626pt;}
.y27_c00357{bottom:131.786614pt;}
.y28_c00357{bottom:131.786881pt;}
.y26_c00357{bottom:147.306608pt;}
.y25_c00357{bottom:153.386605pt;}
.y24_c00357{bottom:163.306601pt;}
.y23_c00357{bottom:193.546589pt;}
.y22_c00357{bottom:221.226578pt;}
.y21_c00357{bottom:248.746567pt;}
.y20_c00357{bottom:276.426556pt;}
.y1f_c00357{bottom:303.946545pt;}
.y1e_c00357{bottom:331.626534pt;}
.y1d_c00357{bottom:359.146523pt;}
.y1c_c00357{bottom:386.826512pt;}
.y1b_c00357{bottom:414.346501pt;}
.y1a_c00357{bottom:442.026490pt;}
.y18_c00357{bottom:469.546479pt;}
.y19_c00357{bottom:476.906476pt;}
.y17_c00357{bottom:497.226468pt;}
.y16_c00357{bottom:524.746457pt;}
.y15_c00357{bottom:552.426446pt;}
.y14_c00357{bottom:579.946435pt;}
.y13_c00357{bottom:607.626424pt;}
.y12_c00357{bottom:635.146413pt;}
.y11_c00357{bottom:662.826402pt;}
.y10_c00357{bottom:690.346391pt;}
.yf_c00357{bottom:718.026379pt;}
.ye_c00357{bottom:745.546368pt;}
.yd_c00357{bottom:773.226357pt;}
.yc_c00357{bottom:800.746346pt;}
.yb_c00357{bottom:828.426335pt;}
.ya_c00357{bottom:855.946324pt;}
.y9_c00357{bottom:883.626313pt;}
.y8_c00357{bottom:911.146302pt;}
.y7_c00357{bottom:938.826291pt;}
.y6_c00357{bottom:966.346280pt;}
.y5_c00357{bottom:994.026269pt;}
.y2_c00357{bottom:1028.586255pt;}
.y1_c00357{bottom:1063.146241pt;}
.h6_c00357{height:33.918736pt;}
.h4_c00357{height:42.063421pt;}
.h2_c00357{height:48.558731pt;}
.h1_c00357{height:52.134354pt;}
.h3_c00357{height:62.781225pt;}
.h5_c00357{height:62.812475pt;}
.h0_c00357{height:1122.666667pt;}
.w0_c00357{width:793.333333pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:113.439955pt;}
.x6_c00357{left:126.399949pt;}
.x3_c00357{left:160.639936pt;}
.x7_c00357{left:169.279932pt;}
.x2_c00357{left:385.759568pt;}
.x4_c00357{left:426.399829pt;}
.x5_c00357{left:442.719823pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ebdf2bbfc71d9e3052bdd12.woff2')format("woff");}.ff1_c00358{font-family:ff1_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:ff2_c00358;src:url('chunks/assets/font_c95c3ac7db4d9245e516e470.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_2c808126ba6457808bd7b6b3.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;}
.m0_c00358{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:0.021282px;}
.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;}
}
.ws0_c00358{word-spacing:-18.021275px;}
.ws1_c00358{word-spacing:0.000000px;}
._1_c00358{margin-left:-1.105374px;}
._0_c00358{width:1.478392px;}
._2_c00358{width:2.821457px;}
._3_c00358{width:3.829130px;}
._8_c00358{width:5.137480px;}
._6_c00358{width:6.827588px;}
._7_c00358{width:8.762182px;}
._9_c00358{width:12.077129px;}
._a_c00358{width:13.253623px;}
._4_c00358{width:14.958856px;}
._5_c00358{width:16.304256px;}
.fc0_c00358{color:rgb(0,0,0);}
.fs0_c00358{font-size:59.759976px;}
.fs1_c00358{font-size:66.239974px;}
.fs2_c00358{font-size:71.999971px;}
.y0_c00358{bottom:0.000000px;}
.y4_c00358{bottom:75.900270px;}
.y3_c00358{bottom:114.060254px;}
.y23_c00358{bottom:205.139918px;}
.y22_c00358{bottom:236.099906px;}
.y21_c00358{bottom:267.239893px;}
.y20_c00358{bottom:298.199881px;}
.y1f_c00358{bottom:329.339868px;}
.y1e_c00358{bottom:360.299856px;}
.y1d_c00358{bottom:391.439843px;}
.y1c_c00358{bottom:422.399831px;}
.y1b_c00358{bottom:453.539819px;}
.y1a_c00358{bottom:484.499806px;}
.y19_c00358{bottom:515.639794px;}
.y18_c00358{bottom:546.599781px;}
.y17_c00358{bottom:577.739769px;}
.y16_c00358{bottom:608.699757px;}
.y15_c00358{bottom:639.839744px;}
.y14_c00358{bottom:670.799732px;}
.y13_c00358{bottom:701.939719px;}
.y12_c00358{bottom:732.899707px;}
.y11_c00358{bottom:764.039694px;}
.y10_c00358{bottom:794.999682px;}
.yf_c00358{bottom:825.959670px;}
.ye_c00358{bottom:857.099657px;}
.yd_c00358{bottom:888.059645px;}
.yc_c00358{bottom:919.199632px;}
.yb_c00358{bottom:950.159620px;}
.ya_c00358{bottom:981.299607px;}
.y9_c00358{bottom:1012.259595px;}
.y8_c00358{bottom:1043.399583px;}
.y7_c00358{bottom:1074.359570px;}
.y6_c00358{bottom:1105.499558px;}
.y5_c00358{bottom:1136.459545px;}
.y2_c00358{bottom:1176.059530px;}
.y1_c00358{bottom:1196.219522px;}
.h2_c00358{height:54.628572px;}
.h1_c00358{height:58.651148px;}
.h3_c00358{height:70.628878px;}
.h4_c00358{height:70.664034px;}
.h0_c00358{height:1263.000000px;}
.w0_c00358{width:892.500000px;}
.x0_c00358{left:0.000000px;}
.x5_c00358{left:127.620262px;}
.x6_c00358{left:180.719930px;}
.x1_c00358{left:181.799927px;}
.x2_c00358{left:329.039408px;}
.x4_c00358{left:433.979826px;}
.x3_c00358{left:765.359694px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:0.018917pt;}
.ws0_c00358{word-spacing:-16.018911pt;}
.ws1_c00358{word-spacing:0.000000pt;}
._1_c00358{margin-left:-0.982555pt;}
._0_c00358{width:1.314126pt;}
._2_c00358{width:2.507962pt;}
._3_c00358{width:3.403671pt;}
._8_c00358{width:4.566649pt;}
._6_c00358{width:6.068967pt;}
._7_c00358{width:7.788606pt;}
._9_c00358{width:10.735226pt;}
._a_c00358{width:11.780998pt;}
._4_c00358{width:13.296761pt;}
._5_c00358{width:14.492672pt;}
.fs0_c00358{font-size:53.119979pt;}
.fs1_c00358{font-size:58.879976pt;}
.fs2_c00358{font-size:63.999974pt;}
.y0_c00358{bottom:0.000000pt;}
.y4_c00358{bottom:67.466906pt;}
.y3_c00358{bottom:101.386893pt;}
.y23_c00358{bottom:182.346594pt;}
.y22_c00358{bottom:209.866583pt;}
.y21_c00358{bottom:237.546572pt;}
.y20_c00358{bottom:265.066561pt;}
.y1f_c00358{bottom:292.746550pt;}
.y1e_c00358{bottom:320.266539pt;}
.y1d_c00358{bottom:347.946527pt;}
.y1c_c00358{bottom:375.466516pt;}
.y1b_c00358{bottom:403.146505pt;}
.y1a_c00358{bottom:430.666494pt;}
.y19_c00358{bottom:458.346483pt;}
.y18_c00358{bottom:485.866472pt;}
.y17_c00358{bottom:513.546461pt;}
.y16_c00358{bottom:541.066450pt;}
.y15_c00358{bottom:568.746439pt;}
.y14_c00358{bottom:596.266428pt;}
.y13_c00358{bottom:623.946417pt;}
.y12_c00358{bottom:651.466406pt;}
.y11_c00358{bottom:679.146395pt;}
.y10_c00358{bottom:706.666384pt;}
.yf_c00358{bottom:734.186373pt;}
.ye_c00358{bottom:761.866362pt;}
.yd_c00358{bottom:789.386351pt;}
.yc_c00358{bottom:817.066340pt;}
.yb_c00358{bottom:844.586329pt;}
.ya_c00358{bottom:872.266318pt;}
.y9_c00358{bottom:899.786307pt;}
.y8_c00358{bottom:927.466296pt;}
.y7_c00358{bottom:954.986285pt;}
.y6_c00358{bottom:982.666274pt;}
.y5_c00358{bottom:1010.186263pt;}
.y2_c00358{bottom:1045.386249pt;}
.y1_c00358{bottom:1063.306241pt;}
.h2_c00358{height:48.558731pt;}
.h1_c00358{height:52.134354pt;}
.h3_c00358{height:62.781225pt;}
.h4_c00358{height:62.812475pt;}
.h0_c00358{height:1122.666667pt;}
.w0_c00358{width:793.333333pt;}
.x0_c00358{left:0.000000pt;}
.x5_c00358{left:113.440233pt;}
.x6_c00358{left:160.639938pt;}
.x1_c00358{left:161.599935pt;}
.x2_c00358{left:292.479474pt;}
.x4_c00358{left:385.759846pt;}
.x3_c00358{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38210c97cef0e5cfac3fe8a7.woff2')format("woff");}.ff1_c00359{font-family:ff1_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:ff2_c00359;src:url('chunks/assets/font_15d1b1dff52f719f700d8f6d.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_6b5c938184b25fd75fbf09d4.woff2')format("woff");}.ff3_c00359{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls3_c00359{letter-spacing:0.000000px;}
.ls1_c00359{letter-spacing:0.011169px;}
.ls2_c00359{letter-spacing:0.189300px;}
.ls0_c00359{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00359{word-spacing:-14.939994px;}
.ws0_c00359{word-spacing:-12.434276px;}
.ws1_c00359{word-spacing:-9.731165px;}
.ws3_c00359{word-spacing:0.000000px;}
._f_c00359{margin-left:-9.758385px;}
._8_c00359{margin-left:-2.139990px;}
._1_c00359{margin-left:-1.105374px;}
._0_c00359{width:1.195563px;}
._6_c00359{width:2.989252px;}
._5_c00359{width:4.152467px;}
._7_c00359{width:5.716257px;}
._a_c00359{width:6.803857px;}
._b_c00359{width:8.031036px;}
._d_c00359{width:10.724912px;}
._9_c00359{width:11.884615px;}
._c_c00359{width:13.604272px;}
._3_c00359{width:14.707296px;}
._4_c00359{width:16.510144px;}
._2_c00359{width:19.188971px;}
._e_c00359{width:28.870201px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs4_c00359{font-size:38.879984px;}
.fs3_c00359{font-size:48.239981px;}
.fs0_c00359{font-size:59.759976px;}
.fs1_c00359{font-size:66.239974px;}
.fs2_c00359{font-size:71.999971px;}
.y0_c00359{bottom:0.000000px;}
.y4_c00359{bottom:75.899970px;}
.y3_c00359{bottom:114.059954px;}
.y27_c00359{bottom:133.319947px;}
.y26_c00359{bottom:150.599940px;}
.y25_c00359{bottom:157.439937px;}
.y24_c00359{bottom:168.779932px;}
.y22_c00359{bottom:217.739913px;}
.y23_c00359{bottom:226.019910px;}
.y21_c00359{bottom:248.879900px;}
.y20_c00359{bottom:279.839888px;}
.y1f_c00359{bottom:310.979876px;}
.y1e_c00359{bottom:341.939863px;}
.y1d_c00359{bottom:373.079851px;}
.y1c_c00359{bottom:404.039838px;}
.y1b_c00359{bottom:435.179826px;}
.y1a_c00359{bottom:466.139814px;}
.y19_c00359{bottom:497.279801px;}
.y18_c00359{bottom:528.239789px;}
.y17_c00359{bottom:559.379776px;}
.y16_c00359{bottom:590.339764px;}
.y15_c00359{bottom:621.479751px;}
.y14_c00359{bottom:652.439739px;}
.y13_c00359{bottom:683.579727px;}
.y12_c00359{bottom:714.539714px;}
.y11_c00359{bottom:745.679702px;}
.y10_c00359{bottom:776.639689px;}
.yf_c00359{bottom:807.779677px;}
.ye_c00359{bottom:838.739665px;}
.yd_c00359{bottom:869.879652px;}
.yc_c00359{bottom:900.839640px;}
.yb_c00359{bottom:931.979627px;}
.ya_c00359{bottom:962.939615px;}
.y9_c00359{bottom:994.079602px;}
.y8_c00359{bottom:1025.039590px;}
.y7_c00359{bottom:1056.179578px;}
.y6_c00359{bottom:1087.139565px;}
.y5_c00359{bottom:1118.279553px;}
.y2_c00359{bottom:1157.159537px;}
.y1_c00359{bottom:1196.039522px;}
.h6_c00359{height:38.158578px;}
.h5_c00359{height:47.344903px;}
.h2_c00359{height:54.628572px;}
.h1_c00359{height:58.651148px;}
.h4_c00359{height:70.628878px;}
.h3_c00359{height:70.664034px;}
.h0_c00359{height:1263.000000px;}
.w0_c00359{width:892.500000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:127.619949px;}
.x6_c00359{left:142.199943px;}
.x3_c00359{left:180.719928px;}
.x2_c00359{left:433.979514px;}
.x4_c00359{left:710.639716px;}
.x5_c00359{left:728.999708px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls3_c00359{letter-spacing:0.000000pt;}
.ls1_c00359{letter-spacing:0.009928pt;}
.ls2_c00359{letter-spacing:0.168267pt;}
.ls0_c00359{letter-spacing:0.332694pt;}
.ws2_c00359{word-spacing:-13.279995pt;}
.ws0_c00359{word-spacing:-11.052689pt;}
.ws1_c00359{word-spacing:-8.649924pt;}
.ws3_c00359{word-spacing:0.000000pt;}
._f_c00359{margin-left:-8.674120pt;}
._8_c00359{margin-left:-1.902214pt;}
._1_c00359{margin-left:-0.982555pt;}
._0_c00359{width:1.062723pt;}
._6_c00359{width:2.657113pt;}
._5_c00359{width:3.691081pt;}
._7_c00359{width:5.081117pt;}
._a_c00359{width:6.047873pt;}
._b_c00359{width:7.138699pt;}
._d_c00359{width:9.533255pt;}
._9_c00359{width:10.564102pt;}
._c_c00359{width:12.092686pt;}
._3_c00359{width:13.073152pt;}
._4_c00359{width:14.675683pt;}
._2_c00359{width:17.056864pt;}
._e_c00359{width:25.662401pt;}
.fs4_c00359{font-size:34.559986pt;}
.fs3_c00359{font-size:42.879983pt;}
.fs0_c00359{font-size:53.119979pt;}
.fs1_c00359{font-size:58.879976pt;}
.fs2_c00359{font-size:63.999974pt;}
.y0_c00359{bottom:0.000000pt;}
.y4_c00359{bottom:67.466640pt;}
.y3_c00359{bottom:101.386626pt;}
.y27_c00359{bottom:118.506619pt;}
.y26_c00359{bottom:133.866613pt;}
.y25_c00359{bottom:139.946611pt;}
.y24_c00359{bottom:150.026607pt;}
.y22_c00359{bottom:193.546589pt;}
.y23_c00359{bottom:200.906586pt;}
.y21_c00359{bottom:221.226578pt;}
.y20_c00359{bottom:248.746567pt;}
.y1f_c00359{bottom:276.426556pt;}
.y1e_c00359{bottom:303.946545pt;}
.y1d_c00359{bottom:331.626534pt;}
.y1c_c00359{bottom:359.146523pt;}
.y1b_c00359{bottom:386.826512pt;}
.y1a_c00359{bottom:414.346501pt;}
.y19_c00359{bottom:442.026490pt;}
.y18_c00359{bottom:469.546479pt;}
.y17_c00359{bottom:497.226468pt;}
.y16_c00359{bottom:524.746457pt;}
.y15_c00359{bottom:552.426446pt;}
.y14_c00359{bottom:579.946435pt;}
.y13_c00359{bottom:607.626424pt;}
.y12_c00359{bottom:635.146413pt;}
.y11_c00359{bottom:662.826402pt;}
.y10_c00359{bottom:690.346391pt;}
.yf_c00359{bottom:718.026379pt;}
.ye_c00359{bottom:745.546368pt;}
.yd_c00359{bottom:773.226357pt;}
.yc_c00359{bottom:800.746346pt;}
.yb_c00359{bottom:828.426335pt;}
.ya_c00359{bottom:855.946324pt;}
.y9_c00359{bottom:883.626313pt;}
.y8_c00359{bottom:911.146302pt;}
.y7_c00359{bottom:938.826291pt;}
.y6_c00359{bottom:966.346280pt;}
.y5_c00359{bottom:994.026269pt;}
.y2_c00359{bottom:1028.586255pt;}
.y1_c00359{bottom:1063.146241pt;}
.h6_c00359{height:33.918736pt;}
.h5_c00359{height:42.084358pt;}
.h2_c00359{height:48.558731pt;}
.h1_c00359{height:52.134354pt;}
.h4_c00359{height:62.781225pt;}
.h3_c00359{height:62.812475pt;}
.h0_c00359{height:1122.666667pt;}
.w0_c00359{width:793.333333pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:113.439955pt;}
.x6_c00359{left:126.399949pt;}
.x3_c00359{left:160.639936pt;}
.x2_c00359{left:385.759568pt;}
.x4_c00359{left:631.679747pt;}
.x5_c00359{left:647.999741pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e44a22a63eb7b2d1ad2aa59e.woff2')format("woff");}.ff1_c00360{font-family:ff1_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:ff2_c00360;src:url('chunks/assets/font_15af48b9f4ef7ca9cfd5241c.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00360{font-family:ff3_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:ff4_c00360;src:url('chunks/assets/font_0794e96dbcacf9327949bb66.woff2')format("woff");}.ff4_c00360{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls4_c00360{letter-spacing:0.000000px;}
.ls2_c00360{letter-spacing:0.011169px;}
.ls1_c00360{letter-spacing:0.153901px;}
.ls3_c00360{letter-spacing:0.189300px;}
.ls0_c00360{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00360{word-spacing:-14.939994px;}
.ws0_c00360{word-spacing:-12.434276px;}
.ws1_c00360{word-spacing:-9.731165px;}
.ws3_c00360{word-spacing:0.000000px;}
._7_c00360{margin-left:-12.716934px;}
._1_c00360{margin-left:-1.105374px;}
._0_c00360{width:1.478392px;}
._6_c00360{width:2.939636px;}
._3_c00360{width:4.063909px;}
._2_c00360{width:5.110337px;}
._5_c00360{width:20.246138px;}
._4_c00360{width:21.761549px;}
.fc0_c00360{color:rgb(0,0,0);}
.fs4_c00360{font-size:38.879984px;}
.fs3_c00360{font-size:48.239981px;}
.fs0_c00360{font-size:59.759976px;}
.fs1_c00360{font-size:66.239974px;}
.fs2_c00360{font-size:71.999971px;}
.y0_c00360{bottom:0.000000px;}
.y4_c00360{bottom:75.720270px;}
.y3_c00360{bottom:113.880254px;}
.y13_c00360{bottom:133.140247px;}
.y12_c00360{bottom:139.980244px;}
.y11_c00360{bottom:151.319939px;}
.y10_c00360{bottom:329.879868px;}
.yf_c00360{bottom:351.119860px;}
.ye_c00360{bottom:374.699850px;}
.yd_c00360{bottom:397.919841px;}
.yc_c00360{bottom:419.879832px;}
.yb_c00360{bottom:460.199816px;}
.y9_c00360{bottom:1012.079595px;}
.ya_c00360{bottom:1020.359592px;}
.y8_c00360{bottom:1043.219583px;}
.y7_c00360{bottom:1074.179570px;}
.y6_c00360{bottom:1105.319558px;}
.y5_c00360{bottom:1136.279545px;}
.y2_c00360{bottom:1175.879530px;}
.y1_c00360{bottom:1196.039522px;}
.h8_c00360{height:38.158578px;}
.h4_c00360{height:47.344903px;}
.h2_c00360{height:54.628572px;}
.h1_c00360{height:58.651148px;}
.h6_c00360{height:65.010911px;}
.h7_c00360{height:70.628878px;}
.h3_c00360{height:70.664034px;}
.h5_c00360{height:72.562471px;}
.h0_c00360{height:1263.000000px;}
.w0_c00360{width:892.500000px;}
.x0_c00360{left:0.000000px;}
.x5_c00360{left:127.800262px;}
.xc_c00360{left:142.379943px;}
.xa_c00360{left:146.339941px;}
.x6_c00360{left:180.899930px;}
.x1_c00360{left:181.979927px;}
.x7_c00360{left:226.799909px;}
.x8_c00360{left:245.159902px;}
.x2_c00360{left:329.219408px;}
.xb_c00360{left:411.120402px;}
.x4_c00360{left:434.159826px;}
.x9_c00360{left:666.539972px;}
.x3_c00360{left:765.539694px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls4_c00360{letter-spacing:0.000000pt;}
.ls2_c00360{letter-spacing:0.009928pt;}
.ls1_c00360{letter-spacing:0.136801pt;}
.ls3_c00360{letter-spacing:0.168267pt;}
.ls0_c00360{letter-spacing:0.332694pt;}
.ws2_c00360{word-spacing:-13.279995pt;}
.ws0_c00360{word-spacing:-11.052689pt;}
.ws1_c00360{word-spacing:-8.649924pt;}
.ws3_c00360{word-spacing:0.000000pt;}
._7_c00360{margin-left:-11.303941pt;}
._1_c00360{margin-left:-0.982555pt;}
._0_c00360{width:1.314126pt;}
._6_c00360{width:2.613010pt;}
._3_c00360{width:3.612363pt;}
._2_c00360{width:4.542522pt;}
._5_c00360{width:17.996567pt;}
._4_c00360{width:19.343599pt;}
.fs4_c00360{font-size:34.559986pt;}
.fs3_c00360{font-size:42.879983pt;}
.fs0_c00360{font-size:53.119979pt;}
.fs1_c00360{font-size:58.879976pt;}
.fs2_c00360{font-size:63.999974pt;}
.y0_c00360{bottom:0.000000pt;}
.y4_c00360{bottom:67.306906pt;}
.y3_c00360{bottom:101.226893pt;}
.y13_c00360{bottom:118.346886pt;}
.y12_c00360{bottom:124.426884pt;}
.y11_c00360{bottom:134.506613pt;}
.y10_c00360{bottom:293.226549pt;}
.yf_c00360{bottom:312.106542pt;}
.ye_c00360{bottom:333.066533pt;}
.yd_c00360{bottom:353.706525pt;}
.yc_c00360{bottom:373.226517pt;}
.yb_c00360{bottom:409.066503pt;}
.y9_c00360{bottom:899.626307pt;}
.ya_c00360{bottom:906.986304pt;}
.y8_c00360{bottom:927.306296pt;}
.y7_c00360{bottom:954.826285pt;}
.y6_c00360{bottom:982.506274pt;}
.y5_c00360{bottom:1010.026263pt;}
.y2_c00360{bottom:1045.226249pt;}
.y1_c00360{bottom:1063.146241pt;}
.h8_c00360{height:33.918736pt;}
.h4_c00360{height:42.084358pt;}
.h2_c00360{height:48.558731pt;}
.h1_c00360{height:52.134354pt;}
.h6_c00360{height:57.787477pt;}
.h7_c00360{height:62.781225pt;}
.h3_c00360{height:62.812475pt;}
.h5_c00360{height:64.499974pt;}
.h0_c00360{height:1122.666667pt;}
.w0_c00360{width:793.333333pt;}
.x0_c00360{left:0.000000pt;}
.x5_c00360{left:113.600233pt;}
.xc_c00360{left:126.559949pt;}
.xa_c00360{left:130.079948pt;}
.x6_c00360{left:160.799938pt;}
.x1_c00360{left:161.759935pt;}
.x7_c00360{left:201.599919pt;}
.x8_c00360{left:217.919913pt;}
.x2_c00360{left:292.639474pt;}
.xb_c00360{left:365.440357pt;}
.x4_c00360{left:385.919846pt;}
.x9_c00360{left:592.479975pt;}
.x3_c00360{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4502a65c1896ca8987d4b2f1.woff2')format("woff");}.ff1_c00361{font-family:ff1_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:ff2_c00361;src:url('chunks/assets/font_a060f080252cfdaff3a234a3.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.311035;font-style:normal;font-weight:normal;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_5e153464799024b00885e831.woff2')format("woff");}.ff4_c00361{font-family:ff4_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;}
.m0_c00361{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00361{margin-left:-1.105374px;}
._0_c00361{width:1.195563px;}
.fc0_c00361{color:rgb(0,0,0);}
.fs0_c00361{font-size:59.759976px;}
.fs1_c00361{font-size:66.239974px;}
.fs2_c00361{font-size:71.999971px;}
.y0_c00361{bottom:0.000000px;}
.y4_c00361{bottom:75.719970px;}
.y3_c00361{bottom:113.879954px;}
.ya_c00361{bottom:386.039846px;}
.y9_c00361{bottom:431.939827px;}
.y8_c00361{bottom:478.019809px;}
.y7_c00361{bottom:524.099790px;}
.y6_c00361{bottom:544.799782px;}
.y5_c00361{bottom:585.119766px;}
.y2_c00361{bottom:1156.979537px;}
.y1_c00361{bottom:1195.859522px;}
.h2_c00361{height:54.628572px;}
.h1_c00361{height:58.651148px;}
.h4_c00361{height:65.010911px;}
.h3_c00361{height:72.562471px;}
.h0_c00361{height:1263.000000px;}
.w0_c00361{width:892.500000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:127.799949px;}
.x4_c00361{left:158.939936px;}
.x2_c00361{left:434.159514px;}
.x5_c00361{left:446.579821px;}
.x3_c00361{left:671.039732px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
._1_c00361{margin-left:-0.982555pt;}
._0_c00361{width:1.062723pt;}
.fs0_c00361{font-size:53.119979pt;}
.fs1_c00361{font-size:58.879976pt;}
.fs2_c00361{font-size:63.999974pt;}
.y0_c00361{bottom:0.000000pt;}
.y4_c00361{bottom:67.306640pt;}
.y3_c00361{bottom:101.226626pt;}
.ya_c00361{bottom:343.146529pt;}
.y9_c00361{bottom:383.946513pt;}
.y8_c00361{bottom:424.906497pt;}
.y7_c00361{bottom:465.866480pt;}
.y6_c00361{bottom:484.266473pt;}
.y5_c00361{bottom:520.106459pt;}
.y2_c00361{bottom:1028.426255pt;}
.y1_c00361{bottom:1062.986241pt;}
.h2_c00361{height:48.558731pt;}
.h1_c00361{height:52.134354pt;}
.h4_c00361{height:57.787477pt;}
.h3_c00361{height:64.499974pt;}
.h0_c00361{height:1122.666667pt;}
.w0_c00361{width:793.333333pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:113.599955pt;}
.x4_c00361{left:141.279943pt;}
.x2_c00361{left:385.919568pt;}
.x5_c00361{left:396.959841pt;}
.x3_c00361{left:596.479761pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c13fa026d67b6e19916954d6.woff2')format("woff");}.ff1_c00362{font-family:ff1_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:ff2_c00362;src:url('chunks/assets/font_2bd8cd01fdda140be1dc8721.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00362{font-family:ff3_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;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_5e153464799024b00885e831.woff2')format("woff");}.ff4_c00362{font-family:ff4_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:ff5_c00362;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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;}
.m0_c00362{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00362{margin-left:-1.105374px;}
._0_c00362{width:1.478392px;}
.fc0_c00362{color:rgb(0,0,0);}
.fs0_c00362{font-size:59.759976px;}
.fs1_c00362{font-size:66.239974px;}
.fs2_c00362{font-size:71.999971px;}
.y0_c00362{bottom:0.000000px;}
.y4_c00362{bottom:75.720270px;}
.y3_c00362{bottom:113.880254px;}
.y1a_c00362{bottom:152.399939px;}
.y19_c00362{bottom:183.359927px;}
.y18_c00362{bottom:214.499914px;}
.y17_c00362{bottom:245.459902px;}
.y16_c00362{bottom:276.599889px;}
.y15_c00362{bottom:307.559877px;}
.y14_c00362{bottom:338.699865px;}
.y13_c00362{bottom:369.659852px;}
.y12_c00362{bottom:400.799840px;}
.y11_c00362{bottom:431.759827px;}
.y10_c00362{bottom:462.899815px;}
.yf_c00362{bottom:493.859802px;}
.ye_c00362{bottom:524.999790px;}
.yd_c00362{bottom:555.959778px;}
.yc_c00362{bottom:587.099765px;}
.yb_c00362{bottom:618.059753px;}
.ya_c00362{bottom:649.199740px;}
.y9_c00362{bottom:680.159728px;}
.y8_c00362{bottom:703.919718px;}
.y7_c00362{bottom:727.679709px;}
.y6_c00362{bottom:749.459700px;}
.y5_c00362{bottom:774.659690px;}
.y2_c00362{bottom:1175.879530px;}
.y1_c00362{bottom:1196.039522px;}
.h2_c00362{height:54.628572px;}
.h1_c00362{height:58.651148px;}
.h4_c00362{height:65.010911px;}
.h5_c00362{height:70.628878px;}
.h3_c00362{height:72.562471px;}
.h0_c00362{height:1263.000000px;}
.w0_c00362{width:892.500000px;}
.x0_c00362{left:0.000000px;}
.x5_c00362{left:127.800262px;}
.x7_c00362{left:142.199943px;}
.x1_c00362{left:181.979927px;}
.x2_c00362{left:329.219408px;}
.x8_c00362{left:411.119425px;}
.x4_c00362{left:434.159826px;}
.x6_c00362{left:688.499725px;}
.x3_c00362{left:765.539694px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
._1_c00362{margin-left:-0.982555pt;}
._0_c00362{width:1.314126pt;}
.fs0_c00362{font-size:53.119979pt;}
.fs1_c00362{font-size:58.879976pt;}
.fs2_c00362{font-size:63.999974pt;}
.y0_c00362{bottom:0.000000pt;}
.y4_c00362{bottom:67.306906pt;}
.y3_c00362{bottom:101.226893pt;}
.y1a_c00362{bottom:135.466612pt;}
.y19_c00362{bottom:162.986601pt;}
.y18_c00362{bottom:190.666590pt;}
.y17_c00362{bottom:218.186579pt;}
.y16_c00362{bottom:245.866568pt;}
.y15_c00362{bottom:273.386557pt;}
.y14_c00362{bottom:301.066546pt;}
.y13_c00362{bottom:328.586535pt;}
.y12_c00362{bottom:356.266524pt;}
.y11_c00362{bottom:383.786513pt;}
.y10_c00362{bottom:411.466502pt;}
.yf_c00362{bottom:438.986491pt;}
.ye_c00362{bottom:466.666480pt;}
.yd_c00362{bottom:494.186469pt;}
.yc_c00362{bottom:521.866458pt;}
.yb_c00362{bottom:549.386447pt;}
.ya_c00362{bottom:577.066436pt;}
.y9_c00362{bottom:604.586425pt;}
.y8_c00362{bottom:625.706416pt;}
.y7_c00362{bottom:646.826408pt;}
.y6_c00362{bottom:666.186400pt;}
.y5_c00362{bottom:688.586391pt;}
.y2_c00362{bottom:1045.226249pt;}
.y1_c00362{bottom:1063.146241pt;}
.h2_c00362{height:48.558731pt;}
.h1_c00362{height:52.134354pt;}
.h4_c00362{height:57.787477pt;}
.h5_c00362{height:62.781225pt;}
.h3_c00362{height:64.499974pt;}
.h0_c00362{height:1122.666667pt;}
.w0_c00362{width:793.333333pt;}
.x0_c00362{left:0.000000pt;}
.x5_c00362{left:113.600233pt;}
.x7_c00362{left:126.399949pt;}
.x1_c00362{left:161.759935pt;}
.x2_c00362{left:292.639474pt;}
.x8_c00362{left:365.439489pt;}
.x4_c00362{left:385.919846pt;}
.x6_c00362{left:611.999755pt;}
.x3_c00362{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d55da5ce96818b4d73e5b21.woff2')format("woff");}.ff1_c00363{font-family:ff1_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:ff2_c00363;src:url('chunks/assets/font_0d4d5dfd2ac4b7dd69d3cae6.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_216b5f8b3b6d931823c547c8.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.311035;font-style:normal;font-weight:normal;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_27ffcf83297f27c787a3f98e.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_aa40e776af67f059d2e143d4.woff2')format("woff");}.ff5_c00363{font-family:ff5_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;}
.m0_c00363{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls3_c00363{letter-spacing:0.000000px;}
.ls2_c00363{letter-spacing:0.011169px;}
.ls1_c00363{letter-spacing:0.153901px;}
.ls0_c00363{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00363{word-spacing:-12.434276px;}
.ws1_c00363{word-spacing:-9.731165px;}
.ws2_c00363{word-spacing:0.000000px;}
._b_c00363{margin-left:-12.716934px;}
._1_c00363{margin-left:-1.105374px;}
._0_c00363{width:1.195563px;}
._3_c00363{width:2.836176px;}
._9_c00363{width:4.552868px;}
._a_c00363{width:5.611168px;}
._5_c00363{width:6.796779px;}
._6_c00363{width:7.945966px;}
._7_c00363{width:9.580633px;}
._4_c00363{width:12.648762px;}
._8_c00363{width:16.509559px;}
._2_c00363{width:33.259995px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs4_c00363{font-size:38.879984px;}
.fs3_c00363{font-size:48.239981px;}
.fs0_c00363{font-size:59.759976px;}
.fs1_c00363{font-size:66.239974px;}
.fs2_c00363{font-size:71.999971px;}
.y0_c00363{bottom:0.000000px;}
.y4_c00363{bottom:75.719970px;}
.y3_c00363{bottom:113.879954px;}
.y1a_c00363{bottom:154.199938px;}
.y19_c00363{bottom:171.479931px;}
.y18_c00363{bottom:178.319929px;}
.y17_c00363{bottom:210.539916px;}
.y15_c00363{bottom:253.379899px;}
.y16_c00363{bottom:261.659895px;}
.y14_c00363{bottom:284.339886px;}
.y13_c00363{bottom:315.479874px;}
.y12_c00363{bottom:346.439861px;}
.y11_c00363{bottom:381.179848px;}
.y10_c00363{bottom:415.739834px;}
.yf_c00363{bottom:446.879821px;}
.ye_c00363{bottom:477.839809px;}
.yd_c00363{bottom:508.979796px;}
.yc_c00363{bottom:539.939784px;}
.yb_c00363{bottom:571.079772px;}
.ya_c00363{bottom:602.039759px;}
.y9_c00363{bottom:635.519746px;}
.y8_c00363{bottom:667.739733px;}
.y7_c00363{bottom:696.719721px;}
.y6_c00363{bottom:1086.959565px;}
.y5_c00363{bottom:1117.739553px;}
.y2_c00363{bottom:1156.979537px;}
.y1_c00363{bottom:1195.859522px;}
.h8_c00363{height:38.158578px;}
.h7_c00363{height:47.321348px;}
.h2_c00363{height:54.628572px;}
.h1_c00363{height:58.651148px;}
.h5_c00363{height:65.010911px;}
.h6_c00363{height:70.628878px;}
.h4_c00363{height:70.664034px;}
.h3_c00363{height:72.562471px;}
.h0_c00363{height:1263.000000px;}
.w0_c00363{width:892.500000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:127.799949px;}
.x9_c00363{left:142.379943px;}
.x6_c00363{left:180.899928px;}
.x5_c00363{left:201.059920px;}
.x2_c00363{left:434.159514px;}
.x3_c00363{left:446.579821px;}
.x7_c00363{left:581.759767px;}
.x4_c00363{left:589.499692px;}
.x8_c00363{left:600.119760px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls3_c00363{letter-spacing:0.000000pt;}
.ls2_c00363{letter-spacing:0.009928pt;}
.ls1_c00363{letter-spacing:0.136801pt;}
.ls0_c00363{letter-spacing:0.332694pt;}
.ws0_c00363{word-spacing:-11.052689pt;}
.ws1_c00363{word-spacing:-8.649924pt;}
.ws2_c00363{word-spacing:0.000000pt;}
._b_c00363{margin-left:-11.303941pt;}
._1_c00363{margin-left:-0.982555pt;}
._0_c00363{width:1.062723pt;}
._3_c00363{width:2.521045pt;}
._9_c00363{width:4.046994pt;}
._a_c00363{width:4.987705pt;}
._5_c00363{width:6.041581pt;}
._6_c00363{width:7.063081pt;}
._7_c00363{width:8.516119pt;}
._4_c00363{width:11.243344pt;}
._8_c00363{width:14.675164pt;}
._2_c00363{width:29.564440pt;}
.fs4_c00363{font-size:34.559986pt;}
.fs3_c00363{font-size:42.879983pt;}
.fs0_c00363{font-size:53.119979pt;}
.fs1_c00363{font-size:58.879976pt;}
.fs2_c00363{font-size:63.999974pt;}
.y0_c00363{bottom:0.000000pt;}
.y4_c00363{bottom:67.306640pt;}
.y3_c00363{bottom:101.226626pt;}
.y1a_c00363{bottom:137.066612pt;}
.y19_c00363{bottom:152.426606pt;}
.y18_c00363{bottom:158.506603pt;}
.y17_c00363{bottom:187.146592pt;}
.y15_c00363{bottom:225.226577pt;}
.y16_c00363{bottom:232.586574pt;}
.y14_c00363{bottom:252.746566pt;}
.y13_c00363{bottom:280.426554pt;}
.y12_c00363{bottom:307.946543pt;}
.y11_c00363{bottom:338.826531pt;}
.y10_c00363{bottom:369.546519pt;}
.yf_c00363{bottom:397.226508pt;}
.ye_c00363{bottom:424.746497pt;}
.yd_c00363{bottom:452.426486pt;}
.yc_c00363{bottom:479.946475pt;}
.yb_c00363{bottom:507.626464pt;}
.ya_c00363{bottom:535.146453pt;}
.y9_c00363{bottom:564.906441pt;}
.y8_c00363{bottom:593.546429pt;}
.y7_c00363{bottom:619.306419pt;}
.y6_c00363{bottom:966.186280pt;}
.y5_c00363{bottom:993.546269pt;}
.y2_c00363{bottom:1028.426255pt;}
.y1_c00363{bottom:1062.986241pt;}
.h8_c00363{height:33.918736pt;}
.h7_c00363{height:42.063421pt;}
.h2_c00363{height:48.558731pt;}
.h1_c00363{height:52.134354pt;}
.h5_c00363{height:57.787477pt;}
.h6_c00363{height:62.781225pt;}
.h4_c00363{height:62.812475pt;}
.h3_c00363{height:64.499974pt;}
.h0_c00363{height:1122.666667pt;}
.w0_c00363{width:793.333333pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:113.599955pt;}
.x9_c00363{left:126.559949pt;}
.x6_c00363{left:160.799936pt;}
.x5_c00363{left:178.719929pt;}
.x2_c00363{left:385.919568pt;}
.x3_c00363{left:396.959841pt;}
.x7_c00363{left:517.119793pt;}
.x4_c00363{left:523.999726pt;}
.x8_c00363{left:533.439787pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c12abc4ee3b2de503952e72.woff2')format("woff");}.ff1_c00364{font-family:ff1_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:ff2_c00364;src:url('chunks/assets/font_0eff2eb99221c836ecef7dbb.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_1ca7fdb66b3d0bd40952d81b.woff2')format("woff");}.ff3_c00364{font-family:ff3_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;}
.m0_c00364{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls2_c00364{letter-spacing:0.000000px;}
.ls1_c00364{letter-spacing:0.182640px;}
.ls0_c00364{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00364{word-spacing:-14.939994px;}
.ws0_c00364{word-spacing:-12.434276px;}
.ws1_c00364{word-spacing:-8.786876px;}
.ws3_c00364{word-spacing:0.000000px;}
._f_c00364{margin-left:-9.926006px;}
._9_c00364{margin-left:-2.139990px;}
._1_c00364{margin-left:-1.105374px;}
._0_c00364{width:1.478392px;}
._6_c00364{width:2.579048px;}
._5_c00364{width:4.708790px;}
._2_c00364{width:5.883878px;}
._b_c00364{width:7.068554px;}
._a_c00364{width:8.201095px;}
._c_c00364{width:10.926828px;}
._4_c00364{width:12.925253px;}
._7_c00364{width:15.611968px;}
._8_c00364{width:16.918090px;}
._3_c00364{width:19.387743px;}
._e_c00364{width:24.068213px;}
._d_c00364{width:25.395734px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs4_c00364{font-size:38.879984px;}
.fs3_c00364{font-size:48.239981px;}
.fs0_c00364{font-size:59.759976px;}
.fs1_c00364{font-size:66.239974px;}
.fs2_c00364{font-size:71.999971px;}
.y0_c00364{bottom:0.000000px;}
.y4_c00364{bottom:75.900270px;}
.y3_c00364{bottom:114.060254px;}
.y2d_c00364{bottom:133.319947px;}
.y2c_c00364{bottom:150.959940px;}
.y2b_c00364{bottom:158.519937px;}
.y2a_c00364{bottom:168.959932px;}
.y29_c00364{bottom:186.599925px;}
.y28_c00364{bottom:194.159922px;}
.y27_c00364{bottom:204.779918px;}
.y26_c00364{bottom:223.139911px;}
.y25_c00364{bottom:230.699908px;}
.y24_c00364{bottom:242.039903px;}
.y23_c00364{bottom:290.999884px;}
.y22_c00364{bottom:322.139871px;}
.y21_c00364{bottom:353.099859px;}
.y20_c00364{bottom:384.239846px;}
.y1f_c00364{bottom:415.199834px;}
.y1e_c00364{bottom:446.339821px;}
.y1d_c00364{bottom:477.299809px;}
.y1b_c00364{bottom:508.439797px;}
.y1c_c00364{bottom:516.719793px;}
.y1a_c00364{bottom:539.399784px;}
.y19_c00364{bottom:570.539772px;}
.y18_c00364{bottom:601.499759px;}
.y17_c00364{bottom:632.639747px;}
.y15_c00364{bottom:667.199733px;}
.y16_c00364{bottom:675.479730px;}
.y14_c00364{bottom:698.339721px;}
.y13_c00364{bottom:729.299708px;}
.y12_c00364{bottom:760.439696px;}
.y11_c00364{bottom:791.399683px;}
.y10_c00364{bottom:822.359671px;}
.yf_c00364{bottom:853.499659px;}
.ye_c00364{bottom:884.459646px;}
.yc_c00364{bottom:915.599634px;}
.yd_c00364{bottom:923.879630px;}
.yb_c00364{bottom:946.559621px;}
.ya_c00364{bottom:977.699609px;}
.y9_c00364{bottom:1008.659597px;}
.y8_c00364{bottom:1039.799584px;}
.y7_c00364{bottom:1070.759572px;}
.y6_c00364{bottom:1101.899559px;}
.y5_c00364{bottom:1136.459545px;}
.y2_c00364{bottom:1176.059530px;}
.y1_c00364{bottom:1196.219522px;}
.h6_c00364{height:32.064597px;}
.h5_c00364{height:47.321348px;}
.h7_c00364{height:49.284472px;}
.h2_c00364{height:54.628572px;}
.h1_c00364{height:58.651148px;}
.h4_c00364{height:70.628878px;}
.h3_c00364{height:70.664034px;}
.h0_c00364{height:1263.000000px;}
.w0_c00364{width:892.500000px;}
.x0_c00364{left:0.000000px;}
.x5_c00364{left:127.620262px;}
.xd_c00364{left:142.199943px;}
.x6_c00364{left:180.719930px;}
.x1_c00364{left:181.799927px;}
.x2_c00364{left:329.039408px;}
.x4_c00364{left:433.979826px;}
.x7_c00364{left:602.459759px;}
.x8_c00364{left:620.819752px;}
.x9_c00364{left:644.579742px;}
.xb_c00364{left:661.319735px;}
.xa_c00364{left:662.939735px;}
.xc_c00364{left:679.679728px;}
.x3_c00364{left:765.359694px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls2_c00364{letter-spacing:0.000000pt;}
.ls1_c00364{letter-spacing:0.162347pt;}
.ls0_c00364{letter-spacing:0.332694pt;}
.ws2_c00364{word-spacing:-13.279995pt;}
.ws0_c00364{word-spacing:-11.052689pt;}
.ws1_c00364{word-spacing:-7.810557pt;}
.ws3_c00364{word-spacing:0.000000pt;}
._f_c00364{margin-left:-8.823117pt;}
._9_c00364{margin-left:-1.902214pt;}
._1_c00364{margin-left:-0.982555pt;}
._0_c00364{width:1.314126pt;}
._6_c00364{width:2.292487pt;}
._5_c00364{width:4.185591pt;}
._2_c00364{width:5.230113pt;}
._b_c00364{width:6.283159pt;}
._a_c00364{width:7.289862pt;}
._c_c00364{width:9.712736pt;}
._4_c00364{width:11.489113pt;}
._7_c00364{width:13.877305pt;}
._8_c00364{width:15.038302pt;}
._3_c00364{width:17.233549pt;}
._e_c00364{width:21.393967pt;}
._d_c00364{width:22.573986pt;}
.fs4_c00364{font-size:34.559986pt;}
.fs3_c00364{font-size:42.879983pt;}
.fs0_c00364{font-size:53.119979pt;}
.fs1_c00364{font-size:58.879976pt;}
.fs2_c00364{font-size:63.999974pt;}
.y0_c00364{bottom:0.000000pt;}
.y4_c00364{bottom:67.466906pt;}
.y3_c00364{bottom:101.386893pt;}
.y2d_c00364{bottom:118.506619pt;}
.y2c_c00364{bottom:134.186613pt;}
.y2b_c00364{bottom:140.906610pt;}
.y2a_c00364{bottom:150.186607pt;}
.y29_c00364{bottom:165.866600pt;}
.y28_c00364{bottom:172.586598pt;}
.y27_c00364{bottom:182.026594pt;}
.y26_c00364{bottom:198.346587pt;}
.y25_c00364{bottom:205.066585pt;}
.y24_c00364{bottom:215.146581pt;}
.y23_c00364{bottom:258.666563pt;}
.y22_c00364{bottom:286.346552pt;}
.y21_c00364{bottom:313.866541pt;}
.y20_c00364{bottom:341.546530pt;}
.y1f_c00364{bottom:369.066519pt;}
.y1e_c00364{bottom:396.746508pt;}
.y1d_c00364{bottom:424.266497pt;}
.y1b_c00364{bottom:451.946486pt;}
.y1c_c00364{bottom:459.306483pt;}
.y1a_c00364{bottom:479.466475pt;}
.y19_c00364{bottom:507.146464pt;}
.y18_c00364{bottom:534.666453pt;}
.y17_c00364{bottom:562.346442pt;}
.y15_c00364{bottom:593.066429pt;}
.y16_c00364{bottom:600.426426pt;}
.y14_c00364{bottom:620.746418pt;}
.y13_c00364{bottom:648.266407pt;}
.y12_c00364{bottom:675.946396pt;}
.y11_c00364{bottom:703.466385pt;}
.y10_c00364{bottom:730.986374pt;}
.yf_c00364{bottom:758.666363pt;}
.ye_c00364{bottom:786.186352pt;}
.yc_c00364{bottom:813.866341pt;}
.yd_c00364{bottom:821.226338pt;}
.yb_c00364{bottom:841.386330pt;}
.ya_c00364{bottom:869.066319pt;}
.y9_c00364{bottom:896.586308pt;}
.y8_c00364{bottom:924.266297pt;}
.y7_c00364{bottom:951.786286pt;}
.y6_c00364{bottom:979.466275pt;}
.y5_c00364{bottom:1010.186263pt;}
.y2_c00364{bottom:1045.386249pt;}
.y1_c00364{bottom:1063.306241pt;}
.h6_c00364{height:28.501864pt;}
.h5_c00364{height:42.063421pt;}
.h7_c00364{height:43.808420pt;}
.h2_c00364{height:48.558731pt;}
.h1_c00364{height:52.134354pt;}
.h4_c00364{height:62.781225pt;}
.h3_c00364{height:62.812475pt;}
.h0_c00364{height:1122.666667pt;}
.w0_c00364{width:793.333333pt;}
.x0_c00364{left:0.000000pt;}
.x5_c00364{left:113.440233pt;}
.xd_c00364{left:126.399949pt;}
.x6_c00364{left:160.639938pt;}
.x1_c00364{left:161.599935pt;}
.x2_c00364{left:292.479474pt;}
.x4_c00364{left:385.759846pt;}
.x7_c00364{left:535.519786pt;}
.x8_c00364{left:551.839779pt;}
.x9_c00364{left:572.959771pt;}
.xb_c00364{left:587.839765pt;}
.xa_c00364{left:589.279764pt;}
.xc_c00364{left:604.159758pt;}
.x3_c00364{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8432635bc10f4d203b404fad.woff2')format("woff");}.ff1_c00365{font-family:ff1_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:ff2_c00365;src:url('chunks/assets/font_d058d8eb7ca9417ebb815dee.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_c11dda85c6d82b042be3aeac.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;}
.m0_c00365{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls2_c00365{letter-spacing:0.000000px;}
.ls1_c00365{letter-spacing:0.182640px;}
.ls0_c00365{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00365{word-spacing:-14.939994px;}
.ws0_c00365{word-spacing:-12.434276px;}
.ws1_c00365{word-spacing:-8.786876px;}
.ws3_c00365{word-spacing:0.000000px;}
._11_c00365{margin-left:-9.855232px;}
._1_c00365{margin-left:-1.105374px;}
._0_c00365{width:1.195563px;}
._4_c00365{width:2.867540px;}
._c_c00365{width:4.220704px;}
._8_c00365{width:5.813103px;}
._9_c00365{width:6.949913px;}
._e_c00365{width:8.723453px;}
._a_c00365{width:11.533901px;}
._d_c00365{width:12.537698px;}
._6_c00365{width:13.586682px;}
._5_c00365{width:14.681478px;}
._7_c00365{width:16.350207px;}
._10_c00365{width:19.008623px;}
._b_c00365{width:20.157728px;}
._f_c00365{width:21.238440px;}
._2_c00365{width:28.381327px;}
._3_c00365{width:29.559899px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs4_c00365{font-size:38.879984px;}
.fs3_c00365{font-size:48.239981px;}
.fs0_c00365{font-size:59.759976px;}
.fs1_c00365{font-size:66.239974px;}
.fs2_c00365{font-size:71.999971px;}
.y0_c00365{bottom:0.000000px;}
.y4_c00365{bottom:75.899970px;}
.y3_c00365{bottom:114.059954px;}
.y2b_c00365{bottom:133.679947px;}
.y2a_c00365{bottom:152.039939px;}
.y29_c00365{bottom:170.399932px;}
.y28_c00365{bottom:177.959929px;}
.y27_c00365{bottom:188.759924px;}
.y26_c00365{bottom:206.939917px;}
.y25_c00365{bottom:214.499914px;}
.y24_c00365{bottom:225.839910px;}
.y23_c00365{bottom:248.879900px;}
.y22_c00365{bottom:279.839888px;}
.y21_c00365{bottom:310.979876px;}
.y20_c00365{bottom:341.939863px;}
.y1f_c00365{bottom:373.079851px;}
.y1e_c00365{bottom:404.039838px;}
.y1d_c00365{bottom:435.179826px;}
.y1c_c00365{bottom:466.139814px;}
.y1b_c00365{bottom:497.279801px;}
.y1a_c00365{bottom:528.239789px;}
.y19_c00365{bottom:559.379776px;}
.y18_c00365{bottom:590.339764px;}
.y17_c00365{bottom:621.479751px;}
.y16_c00365{bottom:652.439739px;}
.y15_c00365{bottom:683.579727px;}
.y14_c00365{bottom:714.539714px;}
.y13_c00365{bottom:745.679702px;}
.y12_c00365{bottom:776.639689px;}
.y10_c00365{bottom:807.779677px;}
.y11_c00365{bottom:816.059674px;}
.yf_c00365{bottom:838.739665px;}
.ye_c00365{bottom:869.879652px;}
.yd_c00365{bottom:900.839640px;}
.yc_c00365{bottom:931.979627px;}
.yb_c00365{bottom:962.939615px;}
.ya_c00365{bottom:994.079602px;}
.y9_c00365{bottom:1025.039590px;}
.y8_c00365{bottom:1056.179578px;}
.y6_c00365{bottom:1087.139565px;}
.y7_c00365{bottom:1095.419562px;}
.y5_c00365{bottom:1118.279553px;}
.y2_c00365{bottom:1157.159537px;}
.y1_c00365{bottom:1196.039522px;}
.h6_c00365{height:32.064597px;}
.h4_c00365{height:47.321348px;}
.h7_c00365{height:49.284472px;}
.h2_c00365{height:54.628572px;}
.h1_c00365{height:58.651148px;}
.h3_c00365{height:70.628878px;}
.h5_c00365{height:70.664034px;}
.h0_c00365{height:1263.000000px;}
.w0_c00365{width:892.500000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:127.619949px;}
.x8_c00365{left:142.199943px;}
.x3_c00365{left:180.719928px;}
.x6_c00365{left:424.619830px;}
.x2_c00365{left:433.979514px;}
.x7_c00365{left:442.979823px;}
.x4_c00365{left:597.599761px;}
.x5_c00365{left:615.959754px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls2_c00365{letter-spacing:0.000000pt;}
.ls1_c00365{letter-spacing:0.162347pt;}
.ls0_c00365{letter-spacing:0.332694pt;}
.ws2_c00365{word-spacing:-13.279995pt;}
.ws0_c00365{word-spacing:-11.052689pt;}
.ws1_c00365{word-spacing:-7.810557pt;}
.ws3_c00365{word-spacing:0.000000pt;}
._11_c00365{margin-left:-8.760206pt;}
._1_c00365{margin-left:-0.982555pt;}
._0_c00365{width:1.062723pt;}
._4_c00365{width:2.548924pt;}
._c_c00365{width:3.751737pt;}
._8_c00365{width:5.167203pt;}
._9_c00365{width:6.177700pt;}
._e_c00365{width:7.754180pt;}
._a_c00365{width:10.252357pt;}
._d_c00365{width:11.144620pt;}
._6_c00365{width:12.077051pt;}
._5_c00365{width:13.050202pt;}
._7_c00365{width:14.533518pt;}
._10_c00365{width:16.896554pt;}
._b_c00365{width:17.917981pt;}
._f_c00365{width:18.878613pt;}
._2_c00365{width:25.227846pt;}
._3_c00365{width:26.275466pt;}
.fs4_c00365{font-size:34.559986pt;}
.fs3_c00365{font-size:42.879983pt;}
.fs0_c00365{font-size:53.119979pt;}
.fs1_c00365{font-size:58.879976pt;}
.fs2_c00365{font-size:63.999974pt;}
.y0_c00365{bottom:0.000000pt;}
.y4_c00365{bottom:67.466640pt;}
.y3_c00365{bottom:101.386626pt;}
.y2b_c00365{bottom:118.826619pt;}
.y2a_c00365{bottom:135.146613pt;}
.y29_c00365{bottom:151.466606pt;}
.y28_c00365{bottom:158.186603pt;}
.y27_c00365{bottom:167.786600pt;}
.y26_c00365{bottom:183.946593pt;}
.y25_c00365{bottom:190.666590pt;}
.y24_c00365{bottom:200.746586pt;}
.y23_c00365{bottom:221.226578pt;}
.y22_c00365{bottom:248.746567pt;}
.y21_c00365{bottom:276.426556pt;}
.y20_c00365{bottom:303.946545pt;}
.y1f_c00365{bottom:331.626534pt;}
.y1e_c00365{bottom:359.146523pt;}
.y1d_c00365{bottom:386.826512pt;}
.y1c_c00365{bottom:414.346501pt;}
.y1b_c00365{bottom:442.026490pt;}
.y1a_c00365{bottom:469.546479pt;}
.y19_c00365{bottom:497.226468pt;}
.y18_c00365{bottom:524.746457pt;}
.y17_c00365{bottom:552.426446pt;}
.y16_c00365{bottom:579.946435pt;}
.y15_c00365{bottom:607.626424pt;}
.y14_c00365{bottom:635.146413pt;}
.y13_c00365{bottom:662.826402pt;}
.y12_c00365{bottom:690.346391pt;}
.y10_c00365{bottom:718.026379pt;}
.y11_c00365{bottom:725.386377pt;}
.yf_c00365{bottom:745.546368pt;}
.ye_c00365{bottom:773.226357pt;}
.yd_c00365{bottom:800.746346pt;}
.yc_c00365{bottom:828.426335pt;}
.yb_c00365{bottom:855.946324pt;}
.ya_c00365{bottom:883.626313pt;}
.y9_c00365{bottom:911.146302pt;}
.y8_c00365{bottom:938.826291pt;}
.y6_c00365{bottom:966.346280pt;}
.y7_c00365{bottom:973.706277pt;}
.y5_c00365{bottom:994.026269pt;}
.y2_c00365{bottom:1028.586255pt;}
.y1_c00365{bottom:1063.146241pt;}
.h6_c00365{height:28.501864pt;}
.h4_c00365{height:42.063421pt;}
.h7_c00365{height:43.808420pt;}
.h2_c00365{height:48.558731pt;}
.h1_c00365{height:52.134354pt;}
.h3_c00365{height:62.781225pt;}
.h5_c00365{height:62.812475pt;}
.h0_c00365{height:1122.666667pt;}
.w0_c00365{width:793.333333pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:113.439955pt;}
.x8_c00365{left:126.399949pt;}
.x3_c00365{left:160.639936pt;}
.x6_c00365{left:377.439849pt;}
.x2_c00365{left:385.759568pt;}
.x7_c00365{left:393.759842pt;}
.x4_c00365{left:531.199788pt;}
.x5_c00365{left:547.519781pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2f9149920c68c757f974b15.woff2')format("woff");}.ff1_c00366{font-family:ff1_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:ff2_c00366;src:url('chunks/assets/font_52c8f4cde2d916127dca18ac.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_6df24a883835f734685bb059.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;}
.m0_c00366{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls3_c00366{letter-spacing:0.000000px;}
.ls1_c00366{letter-spacing:0.153901px;}
.ls2_c00366{letter-spacing:0.182640px;}
.ls0_c00366{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00366{word-spacing:-14.939994px;}
.ws0_c00366{word-spacing:-12.434276px;}
.ws1_c00366{word-spacing:-8.786876px;}
.ws3_c00366{word-spacing:0.000000px;}
._5_c00366{margin-left:-12.716934px;}
._1_c00366{margin-left:-1.105374px;}
._0_c00366{width:1.478392px;}
._2_c00366{width:12.233051px;}
._4_c00366{width:14.228449px;}
._3_c00366{width:15.316782px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs4_c00366{font-size:38.879984px;}
.fs3_c00366{font-size:48.239981px;}
.fs0_c00366{font-size:59.759976px;}
.fs1_c00366{font-size:66.239974px;}
.fs2_c00366{font-size:71.999971px;}
.y0_c00366{bottom:0.000000px;}
.y4_c00366{bottom:75.720270px;}
.y3_c00366{bottom:113.880254px;}
.y1b_c00366{bottom:133.499947px;}
.y1a_c00366{bottom:151.859939px;}
.y19_c00366{bottom:170.219932px;}
.y18_c00366{bottom:177.779929px;}
.y17_c00366{bottom:189.119924px;}
.y16_c00366{bottom:253.559899px;}
.y15_c00366{bottom:280.559888px;}
.y14_c00366{bottom:302.339879px;}
.y13_c00366{bottom:331.859867px;}
.y12_c00366{bottom:358.679857px;}
.y11_c00366{bottom:549.659780px;}
.y10_c00366{bottom:576.479769px;}
.yf_c00366{bottom:598.439761px;}
.ye_c00366{bottom:623.639751px;}
.yd_c00366{bottom:835.139666px;}
.yc_c00366{bottom:868.619653px;}
.yb_c00366{bottom:893.999642px;}
.y9_c00366{bottom:1012.079595px;}
.ya_c00366{bottom:1020.359592px;}
.y8_c00366{bottom:1043.219583px;}
.y7_c00366{bottom:1074.179570px;}
.y6_c00366{bottom:1105.319558px;}
.y5_c00366{bottom:1136.279545px;}
.y2_c00366{bottom:1175.879530px;}
.y1_c00366{bottom:1196.039522px;}
.h7_c00366{height:32.064597px;}
.h5_c00366{height:47.321348px;}
.h8_c00366{height:49.284472px;}
.h2_c00366{height:54.628572px;}
.h1_c00366{height:58.651148px;}
.h6_c00366{height:65.010911px;}
.h3_c00366{height:70.628878px;}
.h4_c00366{height:70.664034px;}
.h0_c00366{height:1263.000000px;}
.w0_c00366{width:892.500000px;}
.x0_c00366{left:0.000000px;}
.x5_c00366{left:127.800262px;}
.x10_c00366{left:142.379943px;}
.xd_c00366{left:143.819942px;}
.xa_c00366{left:153.539939px;}
.x6_c00366{left:180.899928px;}
.x1_c00366{left:181.979927px;}
.x2_c00366{left:329.219408px;}
.xe_c00366{left:422.999282px;}
.x4_c00366{left:434.159826px;}
.xb_c00366{left:446.579821px;}
.x9_c00366{left:609.659810px;}
.xc_c00366{left:634.499808px;}
.xf_c00366{left:661.499667px;}
.x7_c00366{left:733.679707px;}
.x8_c00366{left:752.039699px;}
.x3_c00366{left:765.539694px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls3_c00366{letter-spacing:0.000000pt;}
.ls1_c00366{letter-spacing:0.136801pt;}
.ls2_c00366{letter-spacing:0.162347pt;}
.ls0_c00366{letter-spacing:0.332694pt;}
.ws2_c00366{word-spacing:-13.279995pt;}
.ws0_c00366{word-spacing:-11.052689pt;}
.ws1_c00366{word-spacing:-7.810557pt;}
.ws3_c00366{word-spacing:0.000000pt;}
._5_c00366{margin-left:-11.303941pt;}
._1_c00366{margin-left:-0.982555pt;}
._0_c00366{width:1.314126pt;}
._2_c00366{width:10.873823pt;}
._4_c00366{width:12.647510pt;}
._3_c00366{width:13.614917pt;}
.fs4_c00366{font-size:34.559986pt;}
.fs3_c00366{font-size:42.879983pt;}
.fs0_c00366{font-size:53.119979pt;}
.fs1_c00366{font-size:58.879976pt;}
.fs2_c00366{font-size:63.999974pt;}
.y0_c00366{bottom:0.000000pt;}
.y4_c00366{bottom:67.306906pt;}
.y3_c00366{bottom:101.226893pt;}
.y1b_c00366{bottom:118.666619pt;}
.y1a_c00366{bottom:134.986613pt;}
.y19_c00366{bottom:151.306606pt;}
.y18_c00366{bottom:158.026603pt;}
.y17_c00366{bottom:168.106599pt;}
.y16_c00366{bottom:225.386577pt;}
.y15_c00366{bottom:249.386567pt;}
.y14_c00366{bottom:268.746559pt;}
.y13_c00366{bottom:294.986549pt;}
.y12_c00366{bottom:318.826539pt;}
.y11_c00366{bottom:488.586471pt;}
.y10_c00366{bottom:512.426462pt;}
.yf_c00366{bottom:531.946454pt;}
.ye_c00366{bottom:554.346445pt;}
.yd_c00366{bottom:742.346370pt;}
.yc_c00366{bottom:772.106358pt;}
.yb_c00366{bottom:794.666349pt;}
.y9_c00366{bottom:899.626307pt;}
.ya_c00366{bottom:906.986304pt;}
.y8_c00366{bottom:927.306296pt;}
.y7_c00366{bottom:954.826285pt;}
.y6_c00366{bottom:982.506274pt;}
.y5_c00366{bottom:1010.026263pt;}
.y2_c00366{bottom:1045.226249pt;}
.y1_c00366{bottom:1063.146241pt;}
.h7_c00366{height:28.501864pt;}
.h5_c00366{height:42.063421pt;}
.h8_c00366{height:43.808420pt;}
.h2_c00366{height:48.558731pt;}
.h1_c00366{height:52.134354pt;}
.h6_c00366{height:57.787477pt;}
.h3_c00366{height:62.781225pt;}
.h4_c00366{height:62.812475pt;}
.h0_c00366{height:1122.666667pt;}
.w0_c00366{width:793.333333pt;}
.x0_c00366{left:0.000000pt;}
.x5_c00366{left:113.600233pt;}
.x10_c00366{left:126.559949pt;}
.xd_c00366{left:127.839949pt;}
.xa_c00366{left:136.479945pt;}
.x6_c00366{left:160.799936pt;}
.x1_c00366{left:161.759935pt;}
.x2_c00366{left:292.639474pt;}
.xe_c00366{left:375.999361pt;}
.x4_c00366{left:385.919846pt;}
.xb_c00366{left:396.959841pt;}
.x9_c00366{left:541.919831pt;}
.xc_c00366{left:563.999829pt;}
.xf_c00366{left:587.999704pt;}
.x7_c00366{left:652.159739pt;}
.x8_c00366{left:668.479733pt;}
.x3_c00366{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbc537d6bc43359986cf4127.woff2')format("woff");}.ff1_c00367{font-family:ff1_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:ff2_c00367;src:url('chunks/assets/font_434339f66ce21f2d5623f5da.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_820b1828821f6c37d7154094.woff2')format("woff");}.ff3_c00367{font-family:ff3_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;}
.m0_c00367{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00367{word-spacing:0.000000px;}
._1_c00367{margin-left:-1.105374px;}
._0_c00367{width:1.195563px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs0_c00367{font-size:59.759976px;}
.fs1_c00367{font-size:66.239974px;}
.fs2_c00367{font-size:71.999971px;}
.y0_c00367{bottom:0.000000px;}
.y4_c00367{bottom:75.719970px;}
.y3_c00367{bottom:113.879954px;}
.y17_c00367{bottom:153.839938px;}
.y16_c00367{bottom:179.219928px;}
.y15_c00367{bottom:394.139842px;}
.y14_c00367{bottom:425.099830px;}
.y13_c00367{bottom:458.579817px;}
.y12_c00367{bottom:483.959806px;}
.y11_c00367{bottom:575.039770px;}
.y10_c00367{bottom:606.179758px;}
.yf_c00367{bottom:639.659744px;}
.ye_c00367{bottom:665.039734px;}
.yd_c00367{bottom:758.459697px;}
.yc_c00367{bottom:791.939683px;}
.yb_c00367{bottom:821.459671px;}
.ya_c00367{bottom:848.279661px;}
.y9_c00367{bottom:934.859626px;}
.y8_c00367{bottom:965.999614px;}
.y7_c00367{bottom:992.819603px;}
.y6_c00367{bottom:1014.599594px;}
.y5_c00367{bottom:1039.979584px;}
.y2_c00367{bottom:1156.979537px;}
.y1_c00367{bottom:1195.859522px;}
.h2_c00367{height:54.628572px;}
.h1_c00367{height:58.651148px;}
.h4_c00367{height:65.010911px;}
.h3_c00367{height:70.628878px;}
.h0_c00367{height:1263.000000px;}
.w0_c00367{width:892.500000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:127.799949px;}
.x4_c00367{left:142.559943px;}
.x8_c00367{left:150.479940px;}
.xc_c00367{left:153.539939px;}
.xa_c00367{left:154.979938px;}
.x5_c00367{left:363.239959px;}
.x2_c00367{left:434.159514px;}
.x6_c00367{left:446.579821px;}
.xb_c00367{left:572.579787px;}
.x3_c00367{left:661.499735px;}
.x7_c00367{left:715.499957px;}
.x9_c00367{left:717.660181px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
._1_c00367{margin-left:-0.982555pt;}
._0_c00367{width:1.062723pt;}
.fs0_c00367{font-size:53.119979pt;}
.fs1_c00367{font-size:58.879976pt;}
.fs2_c00367{font-size:63.999974pt;}
.y0_c00367{bottom:0.000000pt;}
.y4_c00367{bottom:67.306640pt;}
.y3_c00367{bottom:101.226626pt;}
.y17_c00367{bottom:136.746612pt;}
.y16_c00367{bottom:159.306603pt;}
.y15_c00367{bottom:350.346527pt;}
.y14_c00367{bottom:377.866516pt;}
.y13_c00367{bottom:407.626504pt;}
.y12_c00367{bottom:430.186495pt;}
.y11_c00367{bottom:511.146462pt;}
.y10_c00367{bottom:538.826451pt;}
.yf_c00367{bottom:568.586439pt;}
.ye_c00367{bottom:591.146430pt;}
.yd_c00367{bottom:674.186397pt;}
.yc_c00367{bottom:703.946385pt;}
.yb_c00367{bottom:730.186375pt;}
.ya_c00367{bottom:754.026365pt;}
.y9_c00367{bottom:830.986334pt;}
.y8_c00367{bottom:858.666323pt;}
.y7_c00367{bottom:882.506314pt;}
.y6_c00367{bottom:901.866306pt;}
.y5_c00367{bottom:924.426297pt;}
.y2_c00367{bottom:1028.426255pt;}
.y1_c00367{bottom:1062.986241pt;}
.h2_c00367{height:48.558731pt;}
.h1_c00367{height:52.134354pt;}
.h4_c00367{height:57.787477pt;}
.h3_c00367{height:62.781225pt;}
.h0_c00367{height:1122.666667pt;}
.w0_c00367{width:793.333333pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:113.599955pt;}
.x4_c00367{left:126.719949pt;}
.x8_c00367{left:133.759946pt;}
.xc_c00367{left:136.479945pt;}
.xa_c00367{left:137.759945pt;}
.x5_c00367{left:322.879964pt;}
.x2_c00367{left:385.919568pt;}
.x6_c00367{left:396.959841pt;}
.xb_c00367{left:508.959811pt;}
.x3_c00367{left:587.999765pt;}
.x7_c00367{left:635.999962pt;}
.x9_c00367{left:637.920161pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad9f3afc145d42462aa6fd93.woff2')format("woff");}.ff1_c00368{font-family:ff1_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:ff2_c00368;src:url('chunks/assets/font_980b40c1234a4034cee1a3c6.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_f281e6a23522c50b67e632a6.woff2')format("woff");}.ff3_c00368{font-family:ff3_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:ff4_c00368;src:url('chunks/assets/font_85e97be8a4dcd01a974f3091.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.311035;font-style:normal;font-weight:normal;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_fd701706307afe632b766ad0.woff2')format("woff");}.ff5_c00368{font-family:ff5_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;}
.m0_c00368{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:1.451459px;}
.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;}
}
.ws0_c00368{word-spacing:0.000000px;}
._1_c00368{margin-left:-1.105374px;}
._0_c00368{width:1.478392px;}
._3_c00368{width:3.451766px;}
._2_c00368{width:4.528070px;}
._4_c00368{width:5.756664px;}
._8_c00368{width:9.262838px;}
._6_c00368{width:10.405989px;}
._7_c00368{width:11.760570px;}
._5_c00368{width:22.319023px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs3_c00368{font-size:48.239981px;}
.fs0_c00368{font-size:59.759976px;}
.fs1_c00368{font-size:66.239974px;}
.fs2_c00368{font-size:71.999971px;}
.y0_c00368{bottom:0.000000px;}
.y4_c00368{bottom:75.720270px;}
.y3_c00368{bottom:113.880254px;}
.y1a_c00368{bottom:134.219946px;}
.y19_c00368{bottom:165.179934px;}
.y18_c00368{bottom:196.139922px;}
.y17_c00368{bottom:227.279909px;}
.y16_c00368{bottom:258.239897px;}
.y15_c00368{bottom:289.379884px;}
.y14_c00368{bottom:320.339872px;}
.y13_c00368{bottom:351.479859px;}
.y12_c00368{bottom:382.439847px;}
.y11_c00368{bottom:412.499835px;}
.y10_c00368{bottom:441.659823px;}
.yf_c00368{bottom:468.659813px;}
.ye_c00368{bottom:856.919657px;}
.yd_c00368{bottom:887.519645px;}
.yc_c00368{bottom:918.659633px;}
.yb_c00368{bottom:949.979620px;}
.ya_c00368{bottom:981.119608px;}
.y9_c00368{bottom:1012.079595px;}
.y8_c00368{bottom:1043.219583px;}
.y7_c00368{bottom:1074.179570px;}
.y6_c00368{bottom:1105.319558px;}
.y5_c00368{bottom:1136.279545px;}
.y2_c00368{bottom:1175.879530px;}
.y1_c00368{bottom:1196.039522px;}
.h7_c00368{height:47.344903px;}
.h2_c00368{height:54.628572px;}
.h1_c00368{height:58.651148px;}
.h6_c00368{height:65.010911px;}
.h4_c00368{height:70.628878px;}
.h3_c00368{height:70.664034px;}
.h5_c00368{height:72.562471px;}
.h0_c00368{height:1263.000000px;}
.w0_c00368{width:892.500000px;}
.x0_c00368{left:0.000000px;}
.x5_c00368{left:127.800262px;}
.x6_c00368{left:180.899928px;}
.x1_c00368{left:181.979927px;}
.x8_c00368{left:225.899910px;}
.xa_c00368{left:311.579875px;}
.xb_c00368{left:317.159873px;}
.x2_c00368{left:329.219408px;}
.x4_c00368{left:434.159826px;}
.x9_c00368{left:446.579821px;}
.x7_c00368{left:581.579767px;}
.x3_c00368{left:765.539694px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:1.290186pt;}
.ws0_c00368{word-spacing:0.000000pt;}
._1_c00368{margin-left:-0.982555pt;}
._0_c00368{width:1.314126pt;}
._3_c00368{width:3.068236pt;}
._2_c00368{width:4.024951pt;}
._4_c00368{width:5.117035pt;}
._8_c00368{width:8.233634pt;}
._6_c00368{width:9.249768pt;}
._7_c00368{width:10.453840pt;}
._5_c00368{width:19.839132pt;}
.fs3_c00368{font-size:42.879983pt;}
.fs0_c00368{font-size:53.119979pt;}
.fs1_c00368{font-size:58.879976pt;}
.fs2_c00368{font-size:63.999974pt;}
.y0_c00368{bottom:0.000000pt;}
.y4_c00368{bottom:67.306906pt;}
.y3_c00368{bottom:101.226893pt;}
.y1a_c00368{bottom:119.306619pt;}
.y19_c00368{bottom:146.826608pt;}
.y18_c00368{bottom:174.346597pt;}
.y17_c00368{bottom:202.026586pt;}
.y16_c00368{bottom:229.546575pt;}
.y15_c00368{bottom:257.226564pt;}
.y14_c00368{bottom:284.746553pt;}
.y13_c00368{bottom:312.426542pt;}
.y12_c00368{bottom:339.946531pt;}
.y11_c00368{bottom:366.666520pt;}
.y10_c00368{bottom:392.586510pt;}
.yf_c00368{bottom:416.586500pt;}
.ye_c00368{bottom:761.706362pt;}
.yd_c00368{bottom:788.906351pt;}
.yc_c00368{bottom:816.586340pt;}
.yb_c00368{bottom:844.426329pt;}
.ya_c00368{bottom:872.106318pt;}
.y9_c00368{bottom:899.626307pt;}
.y8_c00368{bottom:927.306296pt;}
.y7_c00368{bottom:954.826285pt;}
.y6_c00368{bottom:982.506274pt;}
.y5_c00368{bottom:1010.026263pt;}
.y2_c00368{bottom:1045.226249pt;}
.y1_c00368{bottom:1063.146241pt;}
.h7_c00368{height:42.084358pt;}
.h2_c00368{height:48.558731pt;}
.h1_c00368{height:52.134354pt;}
.h6_c00368{height:57.787477pt;}
.h4_c00368{height:62.781225pt;}
.h3_c00368{height:62.812475pt;}
.h5_c00368{height:64.499974pt;}
.h0_c00368{height:1122.666667pt;}
.w0_c00368{width:793.333333pt;}
.x0_c00368{left:0.000000pt;}
.x5_c00368{left:113.600233pt;}
.x6_c00368{left:160.799936pt;}
.x1_c00368{left:161.759935pt;}
.x8_c00368{left:200.799920pt;}
.xa_c00368{left:276.959889pt;}
.xb_c00368{left:281.919887pt;}
.x2_c00368{left:292.639474pt;}
.x4_c00368{left:385.919846pt;}
.x9_c00368{left:396.959841pt;}
.x7_c00368{left:516.959793pt;}
.x3_c00368{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67a2a149573efcac89b19cff.woff2')format("woff");}.ff1_c00369{font-family:ff1_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:ff2_c00369;src:url('chunks/assets/font_f07792f6a979271b181835d1.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_929f9a1afbe553ce7eb48352.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;}
.m0_c00369{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls3_c00369{letter-spacing:0.000000px;}
.ls1_c00369{letter-spacing:0.011169px;}
.ls2_c00369{letter-spacing:0.189300px;}
.ls0_c00369{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00369{word-spacing:-17.999993px;}
.ws3_c00369{word-spacing:-14.939994px;}
.ws0_c00369{word-spacing:-12.434276px;}
.ws2_c00369{word-spacing:-9.731165px;}
.ws4_c00369{word-spacing:0.000000px;}
._13_c00369{margin-left:-10.309787px;}
._1_c00369{margin-left:-1.105374px;}
._0_c00369{width:1.195563px;}
._a_c00369{width:2.324319px;}
._5_c00369{width:4.009648px;}
._d_c00369{width:5.105235px;}
._c_c00369{width:6.267659px;}
._6_c00369{width:8.110257px;}
._7_c00369{width:9.128192px;}
._9_c00369{width:10.672928px;}
._8_c00369{width:11.721658px;}
._f_c00369{width:12.756333px;}
._b_c00369{width:14.327070px;}
._e_c00369{width:15.471443px;}
._10_c00369{width:16.848614px;}
._2_c00369{width:22.404018px;}
._3_c00369{width:38.008937px;}
._4_c00369{width:39.009924px;}
._11_c00369{width:46.590243px;}
._12_c00369{width:48.042350px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs4_c00369{font-size:38.879984px;}
.fs3_c00369{font-size:48.239981px;}
.fs0_c00369{font-size:59.759976px;}
.fs1_c00369{font-size:66.239974px;}
.fs2_c00369{font-size:71.999971px;}
.y0_c00369{bottom:0.000000px;}
.y4_c00369{bottom:75.899970px;}
.y3_c00369{bottom:114.059954px;}
.y2b_c00369{bottom:133.679947px;}
.y2a_c00369{bottom:151.679939px;}
.y29_c00369{bottom:158.519937px;}
.y28_c00369{bottom:168.959932px;}
.y27_c00369{bottom:186.239926px;}
.y26_c00369{bottom:203.519919px;}
.y25_c00369{bottom:210.359916px;}
.y24_c00369{bottom:221.699911px;}
.y23_c00369{bottom:248.879900px;}
.y22_c00369{bottom:279.839888px;}
.y20_c00369{bottom:310.979876px;}
.y21_c00369{bottom:319.259872px;}
.y1f_c00369{bottom:341.939863px;}
.y1e_c00369{bottom:373.079851px;}
.y1d_c00369{bottom:404.039838px;}
.y1c_c00369{bottom:435.179826px;}
.y1b_c00369{bottom:466.139814px;}
.y1a_c00369{bottom:497.279801px;}
.y19_c00369{bottom:528.239789px;}
.y18_c00369{bottom:559.379776px;}
.y17_c00369{bottom:590.339764px;}
.y16_c00369{bottom:621.479751px;}
.y15_c00369{bottom:652.439739px;}
.y14_c00369{bottom:683.579727px;}
.y13_c00369{bottom:714.539714px;}
.y12_c00369{bottom:745.679702px;}
.y11_c00369{bottom:776.639689px;}
.yf_c00369{bottom:807.779677px;}
.y10_c00369{bottom:816.059674px;}
.ye_c00369{bottom:838.739665px;}
.yd_c00369{bottom:869.879652px;}
.yc_c00369{bottom:900.839640px;}
.yb_c00369{bottom:931.979627px;}
.ya_c00369{bottom:962.939615px;}
.y9_c00369{bottom:994.079602px;}
.y8_c00369{bottom:1025.039590px;}
.y7_c00369{bottom:1056.179578px;}
.y6_c00369{bottom:1087.139565px;}
.y5_c00369{bottom:1118.279553px;}
.y2_c00369{bottom:1157.159537px;}
.y1_c00369{bottom:1196.039522px;}
.h7_c00369{height:38.158578px;}
.h6_c00369{height:47.321348px;}
.h5_c00369{height:47.344903px;}
.h8_c00369{height:49.284472px;}
.h2_c00369{height:54.628572px;}
.h1_c00369{height:58.651148px;}
.h4_c00369{height:70.628878px;}
.h3_c00369{height:70.664034px;}
.h0_c00369{height:1263.000000px;}
.w0_c00369{width:892.500000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:127.619949px;}
.x8_c00369{left:142.199943px;}
.x3_c00369{left:180.720230px;}
.x6_c00369{left:239.219904px;}
.x7_c00369{left:257.579897px;}
.x2_c00369{left:433.979514px;}
.x4_c00369{left:733.139707px;}
.x5_c00369{left:751.499699px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls3_c00369{letter-spacing:0.000000pt;}
.ls1_c00369{letter-spacing:0.009928pt;}
.ls2_c00369{letter-spacing:0.168267pt;}
.ls0_c00369{letter-spacing:0.332694pt;}
.ws1_c00369{word-spacing:-15.999994pt;}
.ws3_c00369{word-spacing:-13.279995pt;}
.ws0_c00369{word-spacing:-11.052689pt;}
.ws2_c00369{word-spacing:-8.649924pt;}
.ws4_c00369{word-spacing:0.000000pt;}
._13_c00369{margin-left:-9.164255pt;}
._1_c00369{margin-left:-0.982555pt;}
._0_c00369{width:1.062723pt;}
._a_c00369{width:2.066062pt;}
._5_c00369{width:3.564131pt;}
._d_c00369{width:4.537987pt;}
._c_c00369{width:5.571252pt;}
._6_c00369{width:7.209117pt;}
._7_c00369{width:8.113949pt;}
._9_c00369{width:9.487047pt;}
._8_c00369{width:10.419251pt;}
._f_c00369{width:11.338963pt;}
._b_c00369{width:12.735173pt;}
._e_c00369{width:13.752394pt;}
._10_c00369{width:14.976546pt;}
._2_c00369{width:19.914683pt;}
._3_c00369{width:33.785722pt;}
._4_c00369{width:34.675488pt;}
._11_c00369{width:41.413550pt;}
._12_c00369{width:42.704311pt;}
.fs4_c00369{font-size:34.559986pt;}
.fs3_c00369{font-size:42.879983pt;}
.fs0_c00369{font-size:53.119979pt;}
.fs1_c00369{font-size:58.879976pt;}
.fs2_c00369{font-size:63.999974pt;}
.y0_c00369{bottom:0.000000pt;}
.y4_c00369{bottom:67.466640pt;}
.y3_c00369{bottom:101.386626pt;}
.y2b_c00369{bottom:118.826619pt;}
.y2a_c00369{bottom:134.826613pt;}
.y29_c00369{bottom:140.906610pt;}
.y28_c00369{bottom:150.186607pt;}
.y27_c00369{bottom:165.546600pt;}
.y26_c00369{bottom:180.906594pt;}
.y25_c00369{bottom:186.986592pt;}
.y24_c00369{bottom:197.066588pt;}
.y23_c00369{bottom:221.226578pt;}
.y22_c00369{bottom:248.746567pt;}
.y20_c00369{bottom:276.426556pt;}
.y21_c00369{bottom:283.786553pt;}
.y1f_c00369{bottom:303.946545pt;}
.y1e_c00369{bottom:331.626534pt;}
.y1d_c00369{bottom:359.146523pt;}
.y1c_c00369{bottom:386.826512pt;}
.y1b_c00369{bottom:414.346501pt;}
.y1a_c00369{bottom:442.026490pt;}
.y19_c00369{bottom:469.546479pt;}
.y18_c00369{bottom:497.226468pt;}
.y17_c00369{bottom:524.746457pt;}
.y16_c00369{bottom:552.426446pt;}
.y15_c00369{bottom:579.946435pt;}
.y14_c00369{bottom:607.626424pt;}
.y13_c00369{bottom:635.146413pt;}
.y12_c00369{bottom:662.826402pt;}
.y11_c00369{bottom:690.346391pt;}
.yf_c00369{bottom:718.026379pt;}
.y10_c00369{bottom:725.386377pt;}
.ye_c00369{bottom:745.546368pt;}
.yd_c00369{bottom:773.226357pt;}
.yc_c00369{bottom:800.746346pt;}
.yb_c00369{bottom:828.426335pt;}
.ya_c00369{bottom:855.946324pt;}
.y9_c00369{bottom:883.626313pt;}
.y8_c00369{bottom:911.146302pt;}
.y7_c00369{bottom:938.826291pt;}
.y6_c00369{bottom:966.346280pt;}
.y5_c00369{bottom:994.026269pt;}
.y2_c00369{bottom:1028.586255pt;}
.y1_c00369{bottom:1063.146241pt;}
.h7_c00369{height:33.918736pt;}
.h6_c00369{height:42.063421pt;}
.h5_c00369{height:42.084358pt;}
.h8_c00369{height:43.808420pt;}
.h2_c00369{height:48.558731pt;}
.h1_c00369{height:52.134354pt;}
.h4_c00369{height:62.781225pt;}
.h3_c00369{height:62.812475pt;}
.h0_c00369{height:1122.666667pt;}
.w0_c00369{width:793.333333pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:113.439955pt;}
.x8_c00369{left:126.399949pt;}
.x3_c00369{left:160.640204pt;}
.x6_c00369{left:212.639915pt;}
.x7_c00369{left:228.959908pt;}
.x2_c00369{left:385.759568pt;}
.x4_c00369{left:651.679739pt;}
.x5_c00369{left:667.999733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5457074f0b1c424d6cde07d.woff2')format("woff");}.ff1_c00370{font-family:ff1_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:ff2_c00370;src:url('chunks/assets/font_64b83087fdd2f9fb3fca86d0.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_169a24b9d74de51f02872925.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00370{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls3_c00370{letter-spacing:0.000000px;}
.ls1_c00370{letter-spacing:0.153901px;}
.ls2_c00370{letter-spacing:0.182640px;}
.ls0_c00370{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00370{word-spacing:-17.999993px;}
.ws3_c00370{word-spacing:-14.939994px;}
.ws1_c00370{word-spacing:-12.434276px;}
.ws2_c00370{word-spacing:-8.786876px;}
.ws4_c00370{word-spacing:0.000000px;}
._e_c00370{margin-left:-12.716934px;}
._7_c00370{margin-left:-2.140034px;}
._1_c00370{margin-left:-1.105374px;}
._0_c00370{width:1.478392px;}
._4_c00370{width:3.385961px;}
._5_c00370{width:5.345361px;}
._a_c00370{width:6.469662px;}
._b_c00370{width:7.491767px;}
._2_c00370{width:8.806989px;}
._3_c00370{width:10.165538px;}
._c_c00370{width:11.533901px;}
._d_c00370{width:12.967034px;}
._8_c00370{width:22.722292px;}
._6_c00370{width:23.937046px;}
._9_c00370{width:25.433278px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs4_c00370{font-size:38.879984px;}
.fs3_c00370{font-size:48.239981px;}
.fs0_c00370{font-size:59.759976px;}
.fs1_c00370{font-size:66.239974px;}
.fs2_c00370{font-size:71.999971px;}
.y0_c00370{bottom:0.000000px;}
.y4_c00370{bottom:75.720270px;}
.y3_c00370{bottom:113.880254px;}
.y1b_c00370{bottom:133.499947px;}
.y1a_c00370{bottom:151.859939px;}
.y19_c00370{bottom:159.419936px;}
.y18_c00370{bottom:170.759932px;}
.y17_c00370{bottom:217.559913px;}
.y16_c00370{bottom:242.939903px;}
.y15_c00370{bottom:539.579784px;}
.y14_c00370{bottom:701.759719px;}
.y12_c00370{bottom:732.719707px;}
.y13_c00370{bottom:740.999704px;}
.y11_c00370{bottom:763.859694px;}
.y10_c00370{bottom:794.819682px;}
.yf_c00370{bottom:825.779670px;}
.ye_c00370{bottom:856.919657px;}
.yd_c00370{bottom:887.879645px;}
.yc_c00370{bottom:919.019632px;}
.yb_c00370{bottom:949.979620px;}
.ya_c00370{bottom:981.119608px;}
.y9_c00370{bottom:1012.079595px;}
.y8_c00370{bottom:1043.219583px;}
.y7_c00370{bottom:1074.179570px;}
.y6_c00370{bottom:1105.319558px;}
.y5_c00370{bottom:1136.279545px;}
.y2_c00370{bottom:1175.879530px;}
.y1_c00370{bottom:1196.039522px;}
.h8_c00370{height:32.064597px;}
.h5_c00370{height:47.321348px;}
.h9_c00370{height:49.284472px;}
.h2_c00370{height:54.628572px;}
.h1_c00370{height:58.651148px;}
.h7_c00370{height:66.757473px;}
.h4_c00370{height:70.628878px;}
.h3_c00370{height:70.664034px;}
.h6_c00370{height:72.562471px;}
.h0_c00370{height:1263.000000px;}
.w0_c00370{width:892.500000px;}
.x0_c00370{left:0.000000px;}
.x5_c00370{left:127.800262px;}
.xc_c00370{left:142.379943px;}
.xb_c00370{left:165.779934px;}
.x6_c00370{left:180.899928px;}
.x1_c00370{left:181.979927px;}
.x7_c00370{left:255.419898px;}
.x8_c00370{left:273.779890px;}
.x2_c00370{left:329.219408px;}
.x4_c00370{left:434.159826px;}
.xa_c00370{left:662.039735px;}
.x9_c00370{left:679.679728px;}
.x3_c00370{left:765.539694px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls3_c00370{letter-spacing:0.000000pt;}
.ls1_c00370{letter-spacing:0.136801pt;}
.ls2_c00370{letter-spacing:0.162347pt;}
.ls0_c00370{letter-spacing:0.332694pt;}
.ws0_c00370{word-spacing:-15.999994pt;}
.ws3_c00370{word-spacing:-13.279995pt;}
.ws1_c00370{word-spacing:-11.052689pt;}
.ws2_c00370{word-spacing:-7.810557pt;}
.ws4_c00370{word-spacing:0.000000pt;}
._e_c00370{margin-left:-11.303941pt;}
._7_c00370{margin-left:-1.902252pt;}
._1_c00370{margin-left:-0.982555pt;}
._0_c00370{width:1.314126pt;}
._4_c00370{width:3.009743pt;}
._5_c00370{width:4.751432pt;}
._a_c00370{width:5.750811pt;}
._b_c00370{width:6.659348pt;}
._2_c00370{width:7.828435pt;}
._3_c00370{width:9.036034pt;}
._c_c00370{width:10.252357pt;}
._d_c00370{width:11.526252pt;}
._8_c00370{width:20.197593pt;}
._6_c00370{width:21.277374pt;}
._9_c00370{width:22.607358pt;}
.fs4_c00370{font-size:34.559986pt;}
.fs3_c00370{font-size:42.879983pt;}
.fs0_c00370{font-size:53.119979pt;}
.fs1_c00370{font-size:58.879976pt;}
.fs2_c00370{font-size:63.999974pt;}
.y0_c00370{bottom:0.000000pt;}
.y4_c00370{bottom:67.306906pt;}
.y3_c00370{bottom:101.226893pt;}
.y1b_c00370{bottom:118.666619pt;}
.y1a_c00370{bottom:134.986613pt;}
.y19_c00370{bottom:141.706610pt;}
.y18_c00370{bottom:151.786606pt;}
.y17_c00370{bottom:193.386589pt;}
.y16_c00370{bottom:215.946580pt;}
.y15_c00370{bottom:479.626475pt;}
.y14_c00370{bottom:623.786417pt;}
.y12_c00370{bottom:651.306406pt;}
.y13_c00370{bottom:658.666403pt;}
.y11_c00370{bottom:678.986395pt;}
.y10_c00370{bottom:706.506384pt;}
.yf_c00370{bottom:734.026373pt;}
.ye_c00370{bottom:761.706362pt;}
.yd_c00370{bottom:789.226351pt;}
.yc_c00370{bottom:816.906340pt;}
.yb_c00370{bottom:844.426329pt;}
.ya_c00370{bottom:872.106318pt;}
.y9_c00370{bottom:899.626307pt;}
.y8_c00370{bottom:927.306296pt;}
.y7_c00370{bottom:954.826285pt;}
.y6_c00370{bottom:982.506274pt;}
.y5_c00370{bottom:1010.026263pt;}
.y2_c00370{bottom:1045.226249pt;}
.y1_c00370{bottom:1063.146241pt;}
.h8_c00370{height:28.501864pt;}
.h5_c00370{height:42.063421pt;}
.h9_c00370{height:43.808420pt;}
.h2_c00370{height:48.558731pt;}
.h1_c00370{height:52.134354pt;}
.h7_c00370{height:59.339976pt;}
.h4_c00370{height:62.781225pt;}
.h3_c00370{height:62.812475pt;}
.h6_c00370{height:64.499974pt;}
.h0_c00370{height:1122.666667pt;}
.w0_c00370{width:793.333333pt;}
.x0_c00370{left:0.000000pt;}
.x5_c00370{left:113.600233pt;}
.xc_c00370{left:126.559949pt;}
.xb_c00370{left:147.359941pt;}
.x6_c00370{left:160.799936pt;}
.x1_c00370{left:161.759935pt;}
.x7_c00370{left:227.039909pt;}
.x8_c00370{left:243.359903pt;}
.x2_c00370{left:292.639474pt;}
.x4_c00370{left:385.919846pt;}
.xa_c00370{left:588.479765pt;}
.x9_c00370{left:604.159758pt;}
.x3_c00370{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_472f53e71db402f63a29f5a0.woff2')format("woff");}.ff1_c00371{font-family:ff1_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:ff2_c00371;src:url('chunks/assets/font_7496a863c1783f103f6d28c8.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00371{font-family:ff3_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;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_d38b808d32e51a2dee951637.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;}
.m0_c00371{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls3_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:0.153901px;}
.ls2_c00371{letter-spacing:0.182640px;}
.ls0_c00371{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00371{word-spacing:-14.939994px;}
.ws0_c00371{word-spacing:-12.434276px;}
.ws1_c00371{word-spacing:-8.786876px;}
.ws3_c00371{word-spacing:0.000000px;}
._2_c00371{margin-left:-12.716934px;}
._1_c00371{margin-left:-1.105374px;}
._0_c00371{width:1.195563px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs4_c00371{font-size:38.879984px;}
.fs3_c00371{font-size:48.239981px;}
.fs0_c00371{font-size:59.759976px;}
.fs1_c00371{font-size:66.239974px;}
.fs2_c00371{font-size:71.999971px;}
.y0_c00371{bottom:0.000000px;}
.y4_c00371{bottom:75.719970px;}
.y3_c00371{bottom:113.879954px;}
.y1c_c00371{bottom:133.500247px;}
.y1b_c00371{bottom:141.060244px;}
.y1a_c00371{bottom:152.399939px;}
.y19_c00371{bottom:177.959929px;}
.y18_c00371{bottom:223.859910px;}
.y17_c00371{bottom:269.939892px;}
.y16_c00371{bottom:316.019874px;}
.y15_c00371{bottom:362.099855px;}
.y14_c00371{bottom:408.179837px;}
.y13_c00371{bottom:454.259818px;}
.y12_c00371{bottom:500.159800px;}
.y11_c00371{bottom:546.239782px;}
.y10_c00371{bottom:592.319763px;}
.yf_c00371{bottom:638.399745px;}
.ye_c00371{bottom:684.479726px;}
.yd_c00371{bottom:730.559708px;}
.yc_c00371{bottom:760.439696px;}
.yb_c00371{bottom:789.599684px;}
.ya_c00371{bottom:816.779673px;}
.y9_c00371{bottom:1024.859590px;}
.y7_c00371{bottom:1055.999578px;}
.y8_c00371{bottom:1064.279574px;}
.y6_c00371{bottom:1086.959565px;}
.y5_c00371{bottom:1117.739553px;}
.y2_c00371{bottom:1156.979537px;}
.y1_c00371{bottom:1195.859522px;}
.h7_c00371{height:32.064597px;}
.h5_c00371{height:47.344903px;}
.h2_c00371{height:54.628572px;}
.h1_c00371{height:58.651148px;}
.h6_c00371{height:65.010911px;}
.h4_c00371{height:70.664034px;}
.h3_c00371{height:72.562471px;}
.h0_c00371{height:1263.000000px;}
.w0_c00371{width:892.500000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:127.799949px;}
.x8_c00371{left:137.879945px;}
.x9_c00371{left:142.379943px;}
.x4_c00371{left:180.899928px;}
.x5_c00371{left:313.199875px;}
.x6_c00371{left:331.559867px;}
.x2_c00371{left:434.159514px;}
.x3_c00371{left:446.579821px;}
.x7_c00371{left:691.919723px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls3_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:0.136801pt;}
.ls2_c00371{letter-spacing:0.162347pt;}
.ls0_c00371{letter-spacing:0.332694pt;}
.ws2_c00371{word-spacing:-13.279995pt;}
.ws0_c00371{word-spacing:-11.052689pt;}
.ws1_c00371{word-spacing:-7.810557pt;}
.ws3_c00371{word-spacing:0.000000pt;}
._2_c00371{margin-left:-11.303941pt;}
._1_c00371{margin-left:-0.982555pt;}
._0_c00371{width:1.062723pt;}
.fs4_c00371{font-size:34.559986pt;}
.fs3_c00371{font-size:42.879983pt;}
.fs0_c00371{font-size:53.119979pt;}
.fs1_c00371{font-size:58.879976pt;}
.fs2_c00371{font-size:63.999974pt;}
.y0_c00371{bottom:0.000000pt;}
.y4_c00371{bottom:67.306640pt;}
.y3_c00371{bottom:101.226626pt;}
.y1c_c00371{bottom:118.666886pt;}
.y1b_c00371{bottom:125.386883pt;}
.y1a_c00371{bottom:135.466612pt;}
.y19_c00371{bottom:158.186603pt;}
.y18_c00371{bottom:198.986587pt;}
.y17_c00371{bottom:239.946571pt;}
.y16_c00371{bottom:280.906554pt;}
.y15_c00371{bottom:321.866538pt;}
.y14_c00371{bottom:362.826522pt;}
.y13_c00371{bottom:403.786505pt;}
.y12_c00371{bottom:444.586489pt;}
.y11_c00371{bottom:485.546472pt;}
.y10_c00371{bottom:526.506456pt;}
.yf_c00371{bottom:567.466440pt;}
.ye_c00371{bottom:608.426423pt;}
.yd_c00371{bottom:649.386407pt;}
.yc_c00371{bottom:675.946396pt;}
.yb_c00371{bottom:701.866386pt;}
.ya_c00371{bottom:726.026376pt;}
.y9_c00371{bottom:910.986302pt;}
.y7_c00371{bottom:938.666291pt;}
.y8_c00371{bottom:946.026288pt;}
.y6_c00371{bottom:966.186280pt;}
.y5_c00371{bottom:993.546269pt;}
.y2_c00371{bottom:1028.426255pt;}
.y1_c00371{bottom:1062.986241pt;}
.h7_c00371{height:28.501864pt;}
.h5_c00371{height:42.084358pt;}
.h2_c00371{height:48.558731pt;}
.h1_c00371{height:52.134354pt;}
.h6_c00371{height:57.787477pt;}
.h4_c00371{height:62.812475pt;}
.h3_c00371{height:64.499974pt;}
.h0_c00371{height:1122.666667pt;}
.w0_c00371{width:793.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:113.599955pt;}
.x8_c00371{left:122.559951pt;}
.x9_c00371{left:126.559949pt;}
.x4_c00371{left:160.799936pt;}
.x5_c00371{left:278.399889pt;}
.x6_c00371{left:294.719882pt;}
.x2_c00371{left:385.919568pt;}
.x3_c00371{left:396.959841pt;}
.x7_c00371{left:615.039754pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa5438ba8f552674f6d35887.woff2')format("woff");}.ff1_c00372{font-family:ff1_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:ff2_c00372;src:url('chunks/assets/font_7bb47384ffdf86e5a2a9d865.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_7f9682ff230e39f525ecc54e.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.311035;font-style:normal;font-weight:normal;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_3a581b927f75be5cff0296fd.woff2')format("woff");}.ff4_c00372{font-family:ff4_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:ff5_c00372;src:url('chunks/assets/font_56a0f3666b4175bcb1550591.woff2')format("woff");}.ff5_c00372{font-family:ff5_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;}
.m0_c00372{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls5_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.021238px;}
.ls2_c00372{letter-spacing:0.153901px;}
.ls3_c00372{letter-spacing:0.182640px;}
.ls4_c00372{letter-spacing:0.189257px;}
.ls1_c00372{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00372{word-spacing:-18.021231px;}
.ws3_c00372{word-spacing:-14.939994px;}
.ws1_c00372{word-spacing:-12.434276px;}
.ws2_c00372{word-spacing:-8.786876px;}
.ws4_c00372{word-spacing:0.000000px;}
._9_c00372{margin-left:-12.716934px;}
._6_c00372{margin-left:-2.139990px;}
._1_c00372{margin-left:-1.105374px;}
._0_c00372{width:1.478392px;}
._7_c00372{width:2.759499px;}
._4_c00372{width:3.904425px;}
._5_c00372{width:5.643182px;}
._8_c00372{width:6.731191px;}
._2_c00372{width:9.373689px;}
._3_c00372{width:10.569544px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs4_c00372{font-size:38.879984px;}
.fs3_c00372{font-size:48.239981px;}
.fs0_c00372{font-size:59.759976px;}
.fs1_c00372{font-size:66.239974px;}
.fs2_c00372{font-size:71.999971px;}
.y0_c00372{bottom:0.000000px;}
.y4_c00372{bottom:75.720270px;}
.y3_c00372{bottom:113.880254px;}
.y1b_c00372{bottom:133.500247px;}
.y1a_c00372{bottom:141.060244px;}
.y19_c00372{bottom:152.399939px;}
.y17_c00372{bottom:187.499925px;}
.y18_c00372{bottom:195.779922px;}
.y16_c00372{bottom:218.639913px;}
.y15_c00372{bottom:249.599900px;}
.y14_c00372{bottom:280.739888px;}
.y13_c00372{bottom:311.699875px;}
.y12_c00372{bottom:357.779857px;}
.y11_c00372{bottom:388.739845px;}
.y10_c00372{bottom:419.879832px;}
.yf_c00372{bottom:450.839820px;}
.ye_c00372{bottom:481.979807px;}
.yd_c00372{bottom:512.939795px;}
.yc_c00372{bottom:544.079782px;}
.yb_c00372{bottom:575.039770px;}
.ya_c00372{bottom:606.179758px;}
.y9_c00372{bottom:650.999740px;}
.y8_c00372{bottom:684.119726px;}
.y7_c00372{bottom:1066.439573px;}
.y6_c00372{bottom:1090.019564px;}
.y5_c00372{bottom:1136.279545px;}
.y2_c00372{bottom:1175.879530px;}
.y1_c00372{bottom:1196.039522px;}
.h8_c00372{height:32.064597px;}
.h7_c00372{height:47.344903px;}
.h2_c00372{height:54.628572px;}
.h1_c00372{height:58.651148px;}
.h5_c00372{height:65.010911px;}
.h6_c00372{height:70.628878px;}
.h3_c00372{height:70.664034px;}
.h4_c00372{height:72.562471px;}
.h0_c00372{height:1263.000000px;}
.w0_c00372{width:892.500000px;}
.x0_c00372{left:0.000000px;}
.x5_c00372{left:127.800262px;}
.xc_c00372{left:142.379943px;}
.x6_c00372{left:165.420075px;}
.x9_c00372{left:180.899928px;}
.x1_c00372{left:181.979927px;}
.x8_c00372{left:225.899910px;}
.xa_c00372{left:272.879891px;}
.xb_c00372{left:291.239884px;}
.x2_c00372{left:329.219408px;}
.x4_c00372{left:434.159826px;}
.x7_c00372{left:586.080570px;}
.x3_c00372{left:765.539694px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls5_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.018878pt;}
.ls2_c00372{letter-spacing:0.136801pt;}
.ls3_c00372{letter-spacing:0.162347pt;}
.ls4_c00372{letter-spacing:0.168228pt;}
.ls1_c00372{letter-spacing:0.332694pt;}
.ws0_c00372{word-spacing:-16.018872pt;}
.ws3_c00372{word-spacing:-13.279995pt;}
.ws1_c00372{word-spacing:-11.052689pt;}
.ws2_c00372{word-spacing:-7.810557pt;}
.ws4_c00372{word-spacing:0.000000pt;}
._9_c00372{margin-left:-11.303941pt;}
._6_c00372{margin-left:-1.902214pt;}
._1_c00372{margin-left:-0.982555pt;}
._0_c00372{width:1.314126pt;}
._7_c00372{width:2.452888pt;}
._4_c00372{width:3.470600pt;}
._5_c00372{width:5.016162pt;}
._8_c00372{width:5.983281pt;}
._2_c00372{width:8.332168pt;}
._3_c00372{width:9.395150pt;}
.fs4_c00372{font-size:34.559986pt;}
.fs3_c00372{font-size:42.879983pt;}
.fs0_c00372{font-size:53.119979pt;}
.fs1_c00372{font-size:58.879976pt;}
.fs2_c00372{font-size:63.999974pt;}
.y0_c00372{bottom:0.000000pt;}
.y4_c00372{bottom:67.306906pt;}
.y3_c00372{bottom:101.226893pt;}
.y1b_c00372{bottom:118.666886pt;}
.y1a_c00372{bottom:125.386883pt;}
.y19_c00372{bottom:135.466612pt;}
.y17_c00372{bottom:166.666600pt;}
.y18_c00372{bottom:174.026597pt;}
.y16_c00372{bottom:194.346589pt;}
.y15_c00372{bottom:221.866578pt;}
.y14_c00372{bottom:249.546567pt;}
.y13_c00372{bottom:277.066556pt;}
.y12_c00372{bottom:318.026539pt;}
.y11_c00372{bottom:345.546528pt;}
.y10_c00372{bottom:373.226517pt;}
.yf_c00372{bottom:400.746506pt;}
.ye_c00372{bottom:428.426495pt;}
.yd_c00372{bottom:455.946484pt;}
.yc_c00372{bottom:483.626473pt;}
.yb_c00372{bottom:511.146462pt;}
.ya_c00372{bottom:538.826451pt;}
.y9_c00372{bottom:578.666435pt;}
.y8_c00372{bottom:608.106423pt;}
.y7_c00372{bottom:947.946287pt;}
.y6_c00372{bottom:968.906279pt;}
.y5_c00372{bottom:1010.026263pt;}
.y2_c00372{bottom:1045.226249pt;}
.y1_c00372{bottom:1063.146241pt;}
.h8_c00372{height:28.501864pt;}
.h7_c00372{height:42.084358pt;}
.h2_c00372{height:48.558731pt;}
.h1_c00372{height:52.134354pt;}
.h5_c00372{height:57.787477pt;}
.h6_c00372{height:62.781225pt;}
.h3_c00372{height:62.812475pt;}
.h4_c00372{height:64.499974pt;}
.h0_c00372{height:1122.666667pt;}
.w0_c00372{width:793.333333pt;}
.x0_c00372{left:0.000000pt;}
.x5_c00372{left:113.600233pt;}
.xc_c00372{left:126.559949pt;}
.x6_c00372{left:147.040067pt;}
.x9_c00372{left:160.799936pt;}
.x1_c00372{left:161.759935pt;}
.x8_c00372{left:200.799920pt;}
.xa_c00372{left:242.559903pt;}
.xb_c00372{left:258.879896pt;}
.x2_c00372{left:292.639474pt;}
.x4_c00372{left:385.919846pt;}
.x7_c00372{left:520.960507pt;}
.x3_c00372{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7a95c18a09329ad82fe2dd1.woff2')format("woff");}.ff1_c00373{font-family:ff1_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:ff2_c00373;src:url('chunks/assets/font_38df7869ec5d151b8e95b215.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_6db6bba320c9651679a3e920.woff2')format("woff");}.ff3_c00373{font-family:ff3_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:ff4_c00373;src:url('chunks/assets/font_6f7cfd6f82301543bcd92ef9.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;}
.m0_c00373{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls3_c00373{letter-spacing:0.000000px;}
.ls1_c00373{letter-spacing:0.182640px;}
.ls2_c00373{letter-spacing:0.189257px;}
.ls0_c00373{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00373{word-spacing:-14.939994px;}
.ws0_c00373{word-spacing:-12.434276px;}
.ws1_c00373{word-spacing:-8.786876px;}
.ws3_c00373{word-spacing:0.000000px;}
._1_c00373{margin-left:-1.105374px;}
._0_c00373{width:1.195563px;}
._3_c00373{width:2.341437px;}
._2_c00373{width:3.655240px;}
._7_c00373{width:4.922520px;}
._6_c00373{width:5.926441px;}
._e_c00373{width:7.120681px;}
._c_c00373{width:8.273126px;}
._d_c00373{width:9.288704px;}
._5_c00373{width:10.583039px;}
._4_c00373{width:11.668541px;}
._f_c00373{width:13.020847px;}
._b_c00373{width:15.615450px;}
._a_c00373{width:16.771891px;}
._9_c00373{width:21.376543px;}
._8_c00373{width:22.676949px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs4_c00373{font-size:38.879984px;}
.fs3_c00373{font-size:48.239981px;}
.fs0_c00373{font-size:59.759976px;}
.fs1_c00373{font-size:66.239974px;}
.fs2_c00373{font-size:71.999971px;}
.y0_c00373{bottom:0.000000px;}
.y4_c00373{bottom:75.899970px;}
.y3_c00373{bottom:114.059954px;}
.y2e_c00373{bottom:133.319947px;}
.y2d_c00373{bottom:150.959940px;}
.y2c_c00373{bottom:158.519937px;}
.y2b_c00373{bottom:168.959932px;}
.y2a_c00373{bottom:186.599925px;}
.y29_c00373{bottom:194.159922px;}
.y28_c00373{bottom:204.779918px;}
.y27_c00373{bottom:223.139911px;}
.y26_c00373{bottom:230.699908px;}
.y25_c00373{bottom:241.139904px;}
.y24_c00373{bottom:259.319896px;}
.y22_c00373{bottom:310.979876px;}
.y23_c00373{bottom:319.259872px;}
.y21_c00373{bottom:341.939863px;}
.y20_c00373{bottom:373.079851px;}
.y1e_c00373{bottom:404.039838px;}
.y1f_c00373{bottom:412.319835px;}
.y1d_c00373{bottom:435.179826px;}
.y1c_c00373{bottom:466.139814px;}
.y1b_c00373{bottom:497.279801px;}
.y1a_c00373{bottom:528.239789px;}
.y18_c00373{bottom:559.379776px;}
.y19_c00373{bottom:567.659773px;}
.y17_c00373{bottom:590.339764px;}
.y16_c00373{bottom:621.479751px;}
.y15_c00373{bottom:652.439739px;}
.y14_c00373{bottom:683.579727px;}
.y13_c00373{bottom:714.539714px;}
.y12_c00373{bottom:745.679702px;}
.y10_c00373{bottom:776.639689px;}
.y11_c00373{bottom:784.919686px;}
.yf_c00373{bottom:807.779677px;}
.ye_c00373{bottom:838.739665px;}
.yd_c00373{bottom:869.879652px;}
.yc_c00373{bottom:900.839640px;}
.yb_c00373{bottom:931.979627px;}
.ya_c00373{bottom:962.939615px;}
.y9_c00373{bottom:994.079602px;}
.y8_c00373{bottom:1025.039590px;}
.y7_c00373{bottom:1056.179578px;}
.y6_c00373{bottom:1087.139565px;}
.y5_c00373{bottom:1118.279553px;}
.y2_c00373{bottom:1157.159537px;}
.y1_c00373{bottom:1196.039522px;}
.h6_c00373{height:32.064597px;}
.h5_c00373{height:47.344903px;}
.h7_c00373{height:49.284472px;}
.h2_c00373{height:54.628572px;}
.h1_c00373{height:58.651148px;}
.h4_c00373{height:70.628878px;}
.h3_c00373{height:70.664034px;}
.h0_c00373{height:1263.000000px;}
.w0_c00373{width:892.500000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:127.619949px;}
.xc_c00373{left:142.199943px;}
.x3_c00373{left:180.719930px;}
.x2_c00373{left:433.979514px;}
.xa_c00373{left:475.559810px;}
.xb_c00373{left:493.919802px;}
.x4_c00373{left:503.099799px;}
.x6_c00373{left:512.279795px;}
.x5_c00373{left:521.459791px;}
.x7_c00373{left:530.639788px;}
.x8_c00373{left:710.639716px;}
.x9_c00373{left:728.999708px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls3_c00373{letter-spacing:0.000000pt;}
.ls1_c00373{letter-spacing:0.162347pt;}
.ls2_c00373{letter-spacing:0.168228pt;}
.ls0_c00373{letter-spacing:0.332694pt;}
.ws2_c00373{word-spacing:-13.279995pt;}
.ws0_c00373{word-spacing:-11.052689pt;}
.ws1_c00373{word-spacing:-7.810557pt;}
.ws3_c00373{word-spacing:0.000000pt;}
._1_c00373{margin-left:-0.982555pt;}
._0_c00373{width:1.062723pt;}
._3_c00373{width:2.081277pt;}
._2_c00373{width:3.249102pt;}
._7_c00373{width:4.375574pt;}
._6_c00373{width:5.267948pt;}
._e_c00373{width:6.329494pt;}
._c_c00373{width:7.353890pt;}
._d_c00373{width:8.256626pt;}
._5_c00373{width:9.407145pt;}
._4_c00373{width:10.372037pt;}
._f_c00373{width:11.574086pt;}
._b_c00373{width:13.880400pt;}
._a_c00373{width:14.908348pt;}
._9_c00373{width:19.001372pt;}
._8_c00373{width:20.157288pt;}
.fs4_c00373{font-size:34.559986pt;}
.fs3_c00373{font-size:42.879983pt;}
.fs0_c00373{font-size:53.119979pt;}
.fs1_c00373{font-size:58.879976pt;}
.fs2_c00373{font-size:63.999974pt;}
.y0_c00373{bottom:0.000000pt;}
.y4_c00373{bottom:67.466640pt;}
.y3_c00373{bottom:101.386626pt;}
.y2e_c00373{bottom:118.506619pt;}
.y2d_c00373{bottom:134.186613pt;}
.y2c_c00373{bottom:140.906610pt;}
.y2b_c00373{bottom:150.186607pt;}
.y2a_c00373{bottom:165.866600pt;}
.y29_c00373{bottom:172.586598pt;}
.y28_c00373{bottom:182.026594pt;}
.y27_c00373{bottom:198.346587pt;}
.y26_c00373{bottom:205.066585pt;}
.y25_c00373{bottom:214.346581pt;}
.y24_c00373{bottom:230.506574pt;}
.y22_c00373{bottom:276.426556pt;}
.y23_c00373{bottom:283.786553pt;}
.y21_c00373{bottom:303.946545pt;}
.y20_c00373{bottom:331.626534pt;}
.y1e_c00373{bottom:359.146523pt;}
.y1f_c00373{bottom:366.506520pt;}
.y1d_c00373{bottom:386.826512pt;}
.y1c_c00373{bottom:414.346501pt;}
.y1b_c00373{bottom:442.026490pt;}
.y1a_c00373{bottom:469.546479pt;}
.y18_c00373{bottom:497.226468pt;}
.y19_c00373{bottom:504.586465pt;}
.y17_c00373{bottom:524.746457pt;}
.y16_c00373{bottom:552.426446pt;}
.y15_c00373{bottom:579.946435pt;}
.y14_c00373{bottom:607.626424pt;}
.y13_c00373{bottom:635.146413pt;}
.y12_c00373{bottom:662.826402pt;}
.y10_c00373{bottom:690.346391pt;}
.y11_c00373{bottom:697.706388pt;}
.yf_c00373{bottom:718.026379pt;}
.ye_c00373{bottom:745.546368pt;}
.yd_c00373{bottom:773.226357pt;}
.yc_c00373{bottom:800.746346pt;}
.yb_c00373{bottom:828.426335pt;}
.ya_c00373{bottom:855.946324pt;}
.y9_c00373{bottom:883.626313pt;}
.y8_c00373{bottom:911.146302pt;}
.y7_c00373{bottom:938.826291pt;}
.y6_c00373{bottom:966.346280pt;}
.y5_c00373{bottom:994.026269pt;}
.y2_c00373{bottom:1028.586255pt;}
.y1_c00373{bottom:1063.146241pt;}
.h6_c00373{height:28.501864pt;}
.h5_c00373{height:42.084358pt;}
.h7_c00373{height:43.808420pt;}
.h2_c00373{height:48.558731pt;}
.h1_c00373{height:52.134354pt;}
.h4_c00373{height:62.781225pt;}
.h3_c00373{height:62.812475pt;}
.h0_c00373{height:1122.666667pt;}
.w0_c00373{width:793.333333pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:113.439955pt;}
.xc_c00373{left:126.399949pt;}
.x3_c00373{left:160.639938pt;}
.x2_c00373{left:385.759568pt;}
.xa_c00373{left:422.719831pt;}
.xb_c00373{left:439.039824pt;}
.x4_c00373{left:447.199821pt;}
.x6_c00373{left:455.359818pt;}
.x5_c00373{left:463.519815pt;}
.x7_c00373{left:471.679811pt;}
.x8_c00373{left:631.679747pt;}
.x9_c00373{left:647.999741pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04d7676dea7e0a73b364d6ac.woff2')format("woff");}.ff1_c00374{font-family:ff1_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:ff2_c00374;src:url('chunks/assets/font_f425bc3f6238e57dc35fbc56.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_f7e8ea2c64bac00093dc3c54.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;}
.m0_c00374{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls3_c00374{letter-spacing:0.000000px;}
.ls1_c00374{letter-spacing:0.153901px;}
.ls2_c00374{letter-spacing:0.182640px;}
.ls0_c00374{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00374{word-spacing:-14.939994px;}
.ws0_c00374{word-spacing:-12.434276px;}
.ws1_c00374{word-spacing:-8.786876px;}
.ws3_c00374{word-spacing:0.000000px;}
._2_c00374{margin-left:-3.571519px;}
._1_c00374{margin-left:-1.105374px;}
._0_c00374{width:1.478392px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs4_c00374{font-size:38.879984px;}
.fs3_c00374{font-size:48.239981px;}
.fs0_c00374{font-size:59.759976px;}
.fs1_c00374{font-size:66.239974px;}
.fs2_c00374{font-size:71.999971px;}
.y0_c00374{bottom:0.000000px;}
.y4_c00374{bottom:75.720270px;}
.y3_c00374{bottom:113.880254px;}
.y11_c00374{bottom:133.139947px;}
.y10_c00374{bottom:150.779940px;}
.yf_c00374{bottom:158.339937px;}
.ye_c00374{bottom:169.139932px;}
.yd_c00374{bottom:187.499925px;}
.yc_c00374{bottom:195.059922px;}
.yb_c00374{bottom:206.399917px;}
.y9_c00374{bottom:606.179758px;}
.ya_c00374{bottom:614.459754px;}
.y8_c00374{bottom:637.319745px;}
.y7_c00374{bottom:683.219727px;}
.y6_c00374{bottom:728.219709px;}
.y5_c00374{bottom:761.159696px;}
.y2_c00374{bottom:1175.879530px;}
.y1_c00374{bottom:1196.039522px;}
.h6_c00374{height:32.064597px;}
.h5_c00374{height:47.344903px;}
.h7_c00374{height:49.284472px;}
.h2_c00374{height:54.628572px;}
.h1_c00374{height:58.651148px;}
.h4_c00374{height:65.010911px;}
.h3_c00374{height:70.664034px;}
.h0_c00374{height:1263.000000px;}
.w0_c00374{width:892.500000px;}
.x0_c00374{left:0.000000px;}
.x5_c00374{left:127.800262px;}
.xa_c00374{left:142.379943px;}
.x1_c00374{left:181.979927px;}
.x7_c00374{left:190.799924px;}
.x8_c00374{left:229.859908px;}
.x9_c00374{left:248.219901px;}
.x2_c00374{left:329.219408px;}
.x4_c00374{left:434.159826px;}
.x6_c00374{left:672.659731px;}
.x3_c00374{left:765.539694px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls3_c00374{letter-spacing:0.000000pt;}
.ls1_c00374{letter-spacing:0.136801pt;}
.ls2_c00374{letter-spacing:0.162347pt;}
.ls0_c00374{letter-spacing:0.332694pt;}
.ws2_c00374{word-spacing:-13.279995pt;}
.ws0_c00374{word-spacing:-11.052689pt;}
.ws1_c00374{word-spacing:-7.810557pt;}
.ws3_c00374{word-spacing:0.000000pt;}
._2_c00374{margin-left:-3.174684pt;}
._1_c00374{margin-left:-0.982555pt;}
._0_c00374{width:1.314126pt;}
.fs4_c00374{font-size:34.559986pt;}
.fs3_c00374{font-size:42.879983pt;}
.fs0_c00374{font-size:53.119979pt;}
.fs1_c00374{font-size:58.879976pt;}
.fs2_c00374{font-size:63.999974pt;}
.y0_c00374{bottom:0.000000pt;}
.y4_c00374{bottom:67.306906pt;}
.y3_c00374{bottom:101.226893pt;}
.y11_c00374{bottom:118.346619pt;}
.y10_c00374{bottom:134.026613pt;}
.yf_c00374{bottom:140.746610pt;}
.ye_c00374{bottom:150.346607pt;}
.yd_c00374{bottom:166.666600pt;}
.yc_c00374{bottom:173.386597pt;}
.yb_c00374{bottom:183.466593pt;}
.y9_c00374{bottom:538.826451pt;}
.ya_c00374{bottom:546.186448pt;}
.y8_c00374{bottom:566.506440pt;}
.y7_c00374{bottom:607.306424pt;}
.y6_c00374{bottom:647.306408pt;}
.y5_c00374{bottom:676.586396pt;}
.y2_c00374{bottom:1045.226249pt;}
.y1_c00374{bottom:1063.146241pt;}
.h6_c00374{height:28.501864pt;}
.h5_c00374{height:42.084358pt;}
.h7_c00374{height:43.808420pt;}
.h2_c00374{height:48.558731pt;}
.h1_c00374{height:52.134354pt;}
.h4_c00374{height:57.787477pt;}
.h3_c00374{height:62.812475pt;}
.h0_c00374{height:1122.666667pt;}
.w0_c00374{width:793.333333pt;}
.x0_c00374{left:0.000000pt;}
.x5_c00374{left:113.600233pt;}
.xa_c00374{left:126.559949pt;}
.x1_c00374{left:161.759935pt;}
.x7_c00374{left:169.599932pt;}
.x8_c00374{left:204.319918pt;}
.x9_c00374{left:220.639912pt;}
.x2_c00374{left:292.639474pt;}
.x4_c00374{left:385.919846pt;}
.x6_c00374{left:597.919761pt;}
.x3_c00374{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dce84f5f827b591b029e94f.woff2')format("woff");}.ff1_c00375{font-family:ff1_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:ff2_c00375;src:url('chunks/assets/font_343b7f439cb27f227eaefcec.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_3f9e929f41d070bc259607e2.woff2')format("woff");}.ff3_c00375{font-family:ff3_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;}
.m0_c00375{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls3_c00375{letter-spacing:0.000000px;}
.ls1_c00375{letter-spacing:0.153901px;}
.ls2_c00375{letter-spacing:0.182640px;}
.ls0_c00375{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00375{word-spacing:-17.999993px;}
.ws3_c00375{word-spacing:-14.939994px;}
.ws1_c00375{word-spacing:-12.434276px;}
.ws2_c00375{word-spacing:-8.786876px;}
.ws4_c00375{word-spacing:0.000000px;}
._9_c00375{margin-left:-12.716934px;}
._1_c00375{margin-left:-1.105374px;}
._0_c00375{width:1.195563px;}
._3_c00375{width:8.021511px;}
._2_c00375{width:9.534344px;}
._4_c00375{width:25.921110px;}
._5_c00375{width:27.342042px;}
._6_c00375{width:33.169112px;}
._7_c00375{width:34.343014px;}
._8_c00375{width:35.582979px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs4_c00375{font-size:38.879984px;}
.fs3_c00375{font-size:48.239981px;}
.fs0_c00375{font-size:59.759976px;}
.fs1_c00375{font-size:66.239974px;}
.fs2_c00375{font-size:71.999971px;}
.y0_c00375{bottom:0.000000px;}
.y4_c00375{bottom:75.719970px;}
.y3_c00375{bottom:113.879954px;}
.y14_c00375{bottom:133.499947px;}
.y13_c00375{bottom:151.859939px;}
.y12_c00375{bottom:170.219932px;}
.y11_c00375{bottom:177.779929px;}
.y10_c00375{bottom:189.119924px;}
.yf_c00375{bottom:351.659859px;}
.yd_c00375{bottom:397.739841px;}
.ye_c00375{bottom:406.019838px;}
.yc_c00375{bottom:428.699829px;}
.yb_c00375{bottom:459.839816px;}
.ya_c00375{bottom:490.799804px;}
.y9_c00375{bottom:521.939791px;}
.y8_c00375{bottom:552.899779px;}
.y7_c00375{bottom:584.039766px;}
.y6_c00375{bottom:628.859748px;}
.y5_c00375{bottom:661.979735px;}
.y2_c00375{bottom:1156.979537px;}
.y1_c00375{bottom:1195.859522px;}
.h7_c00375{height:32.064597px;}
.h5_c00375{height:47.344903px;}
.h8_c00375{height:49.284472px;}
.h2_c00375{height:54.628572px;}
.h1_c00375{height:58.651148px;}
.h4_c00375{height:65.010911px;}
.h6_c00375{height:70.628878px;}
.h3_c00375{height:70.664034px;}
.h0_c00375{height:1263.000000px;}
.w0_c00375{width:892.500000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:127.799949px;}
.x8_c00375{left:142.379943px;}
.x4_c00375{left:175.859930px;}
.x5_c00375{left:180.899928px;}
.x6_c00375{left:192.239923px;}
.x7_c00375{left:210.599916px;}
.x2_c00375{left:434.159514px;}
.x3_c00375{left:678.419729px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls3_c00375{letter-spacing:0.000000pt;}
.ls1_c00375{letter-spacing:0.136801pt;}
.ls2_c00375{letter-spacing:0.162347pt;}
.ls0_c00375{letter-spacing:0.332694pt;}
.ws0_c00375{word-spacing:-15.999994pt;}
.ws3_c00375{word-spacing:-13.279995pt;}
.ws1_c00375{word-spacing:-11.052689pt;}
.ws2_c00375{word-spacing:-7.810557pt;}
.ws4_c00375{word-spacing:0.000000pt;}
._9_c00375{margin-left:-11.303941pt;}
._1_c00375{margin-left:-0.982555pt;}
._0_c00375{width:1.062723pt;}
._3_c00375{width:7.130232pt;}
._2_c00375{width:8.474972pt;}
._4_c00375{width:23.040987pt;}
._5_c00375{width:24.304038pt;}
._6_c00375{width:29.483655pt;}
._7_c00375{width:30.527124pt;}
._8_c00375{width:31.629315pt;}
.fs4_c00375{font-size:34.559986pt;}
.fs3_c00375{font-size:42.879983pt;}
.fs0_c00375{font-size:53.119979pt;}
.fs1_c00375{font-size:58.879976pt;}
.fs2_c00375{font-size:63.999974pt;}
.y0_c00375{bottom:0.000000pt;}
.y4_c00375{bottom:67.306640pt;}
.y3_c00375{bottom:101.226626pt;}
.y14_c00375{bottom:118.666619pt;}
.y13_c00375{bottom:134.986613pt;}
.y12_c00375{bottom:151.306606pt;}
.y11_c00375{bottom:158.026603pt;}
.y10_c00375{bottom:168.106599pt;}
.yf_c00375{bottom:312.586542pt;}
.yd_c00375{bottom:353.546525pt;}
.ye_c00375{bottom:360.906522pt;}
.yc_c00375{bottom:381.066514pt;}
.yb_c00375{bottom:408.746503pt;}
.ya_c00375{bottom:436.266492pt;}
.y9_c00375{bottom:463.946481pt;}
.y8_c00375{bottom:491.466470pt;}
.y7_c00375{bottom:519.146459pt;}
.y6_c00375{bottom:558.986443pt;}
.y5_c00375{bottom:588.426431pt;}
.y2_c00375{bottom:1028.426255pt;}
.y1_c00375{bottom:1062.986241pt;}
.h7_c00375{height:28.501864pt;}
.h5_c00375{height:42.084358pt;}
.h8_c00375{height:43.808420pt;}
.h2_c00375{height:48.558731pt;}
.h1_c00375{height:52.134354pt;}
.h4_c00375{height:57.787477pt;}
.h6_c00375{height:62.781225pt;}
.h3_c00375{height:62.812475pt;}
.h0_c00375{height:1122.666667pt;}
.w0_c00375{width:793.333333pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:113.599955pt;}
.x8_c00375{left:126.559949pt;}
.x4_c00375{left:156.319937pt;}
.x5_c00375{left:160.799936pt;}
.x6_c00375{left:170.879932pt;}
.x7_c00375{left:187.199925pt;}
.x2_c00375{left:385.919568pt;}
.x3_c00375{left:603.039759pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b93e8c91e5205b7f5e6dd86a.woff2')format("woff");}.ff1_c00376{font-family:ff1_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:ff2_c00376;src:url('chunks/assets/font_6430559445d3b109d1c64de2.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_4b1a148168af895da8bfa591.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00376{font-family:ff4_c00376;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls3_c00376{letter-spacing:0.000000px;}
.ls1_c00376{letter-spacing:0.153901px;}
.ls2_c00376{letter-spacing:0.182640px;}
.ls0_c00376{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00376{word-spacing:-14.939994px;}
.ws0_c00376{word-spacing:-12.434276px;}
.ws1_c00376{word-spacing:-8.786876px;}
.ws3_c00376{word-spacing:0.000000px;}
._c_c00376{margin-left:-12.716934px;}
._1_c00376{margin-left:-1.105374px;}
._0_c00376{width:1.478392px;}
._3_c00376{width:2.986742px;}
._b_c00376{width:4.479795px;}
._2_c00376{width:5.837796px;}
._a_c00376{width:7.503029px;}
._7_c00376{width:9.827123px;}
._6_c00376{width:10.944680px;}
._8_c00376{width:12.269467px;}
._4_c00376{width:13.429435px;}
._5_c00376{width:14.440184px;}
._9_c00376{width:20.267568px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs4_c00376{font-size:38.879984px;}
.fs3_c00376{font-size:48.239981px;}
.fs0_c00376{font-size:59.759976px;}
.fs1_c00376{font-size:66.239974px;}
.fs2_c00376{font-size:71.999971px;}
.y0_c00376{bottom:0.000000px;}
.y4_c00376{bottom:75.720270px;}
.y3_c00376{bottom:113.880254px;}
.y1b_c00376{bottom:133.499947px;}
.y1a_c00376{bottom:151.859939px;}
.y19_c00376{bottom:170.219932px;}
.y18_c00376{bottom:177.779929px;}
.y17_c00376{bottom:189.119924px;}
.y16_c00376{bottom:217.919913px;}
.y15_c00376{bottom:249.419900px;}
.y14_c00376{bottom:280.379888px;}
.y13_c00376{bottom:311.519875px;}
.y12_c00376{bottom:342.479863px;}
.y11_c00376{bottom:373.619851px;}
.yf_c00376{bottom:404.579838px;}
.y10_c00376{bottom:412.859835px;}
.ye_c00376{bottom:435.719826px;}
.yd_c00376{bottom:466.679813px;}
.yc_c00376{bottom:497.819801px;}
.yb_c00376{bottom:528.779788px;}
.ya_c00376{bottom:559.919776px;}
.y9_c00376{bottom:590.879764px;}
.y8_c00376{bottom:622.019751px;}
.y7_c00376{bottom:660.719736px;}
.y6_c00376{bottom:705.719718px;}
.y5_c00376{bottom:738.659705px;}
.y2_c00376{bottom:1175.879530px;}
.y1_c00376{bottom:1196.039522px;}
.h8_c00376{height:32.064597px;}
.h6_c00376{height:47.321348px;}
.h9_c00376{height:49.284472px;}
.h2_c00376{height:54.628572px;}
.h1_c00376{height:58.651148px;}
.h4_c00376{height:65.010911px;}
.h5_c00376{height:70.628878px;}
.h3_c00376{height:70.664034px;}
.h7_c00376{height:72.562471px;}
.h0_c00376{height:1263.000000px;}
.w0_c00376{width:892.500000px;}
.x0_c00376{left:0.000000px;}
.x5_c00376{left:127.800262px;}
.xb_c00376{left:142.379943px;}
.x8_c00376{left:180.899930px;}
.x1_c00376{left:181.979927px;}
.x7_c00376{left:188.459925px;}
.x2_c00376{left:329.219408px;}
.x9_c00376{left:413.819834px;}
.xa_c00376{left:432.179827px;}
.x4_c00376{left:434.159826px;}
.x6_c00376{left:692.459723px;}
.x3_c00376{left:765.539694px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls3_c00376{letter-spacing:0.000000pt;}
.ls1_c00376{letter-spacing:0.136801pt;}
.ls2_c00376{letter-spacing:0.162347pt;}
.ls0_c00376{letter-spacing:0.332694pt;}
.ws2_c00376{word-spacing:-13.279995pt;}
.ws0_c00376{word-spacing:-11.052689pt;}
.ws1_c00376{word-spacing:-7.810557pt;}
.ws3_c00376{word-spacing:0.000000pt;}
._c_c00376{margin-left:-11.303941pt;}
._1_c00376{margin-left:-0.982555pt;}
._0_c00376{width:1.314126pt;}
._3_c00376{width:2.654882pt;}
._b_c00376{width:3.982040pt;}
._2_c00376{width:5.189152pt;}
._a_c00376{width:6.669359pt;}
._7_c00376{width:8.735220pt;}
._6_c00376{width:9.728604pt;}
._8_c00376{width:10.906193pt;}
._4_c00376{width:11.937275pt;}
._5_c00376{width:12.835719pt;}
._9_c00376{width:18.015616pt;}
.fs4_c00376{font-size:34.559986pt;}
.fs3_c00376{font-size:42.879983pt;}
.fs0_c00376{font-size:53.119979pt;}
.fs1_c00376{font-size:58.879976pt;}
.fs2_c00376{font-size:63.999974pt;}
.y0_c00376{bottom:0.000000pt;}
.y4_c00376{bottom:67.306906pt;}
.y3_c00376{bottom:101.226893pt;}
.y1b_c00376{bottom:118.666619pt;}
.y1a_c00376{bottom:134.986613pt;}
.y19_c00376{bottom:151.306606pt;}
.y18_c00376{bottom:158.026603pt;}
.y17_c00376{bottom:168.106599pt;}
.y16_c00376{bottom:193.706589pt;}
.y15_c00376{bottom:221.706578pt;}
.y14_c00376{bottom:249.226567pt;}
.y13_c00376{bottom:276.906556pt;}
.y12_c00376{bottom:304.426545pt;}
.y11_c00376{bottom:332.106534pt;}
.yf_c00376{bottom:359.626523pt;}
.y10_c00376{bottom:366.986520pt;}
.ye_c00376{bottom:387.306512pt;}
.yd_c00376{bottom:414.826501pt;}
.yc_c00376{bottom:442.506490pt;}
.yb_c00376{bottom:470.026479pt;}
.ya_c00376{bottom:497.706468pt;}
.y9_c00376{bottom:525.226457pt;}
.y8_c00376{bottom:552.906446pt;}
.y7_c00376{bottom:587.306432pt;}
.y6_c00376{bottom:627.306416pt;}
.y5_c00376{bottom:656.586404pt;}
.y2_c00376{bottom:1045.226249pt;}
.y1_c00376{bottom:1063.146241pt;}
.h8_c00376{height:28.501864pt;}
.h6_c00376{height:42.063421pt;}
.h9_c00376{height:43.808420pt;}
.h2_c00376{height:48.558731pt;}
.h1_c00376{height:52.134354pt;}
.h4_c00376{height:57.787477pt;}
.h5_c00376{height:62.781225pt;}
.h3_c00376{height:62.812475pt;}
.h7_c00376{height:64.499974pt;}
.h0_c00376{height:1122.666667pt;}
.w0_c00376{width:793.333333pt;}
.x0_c00376{left:0.000000pt;}
.x5_c00376{left:113.600233pt;}
.xb_c00376{left:126.559949pt;}
.x8_c00376{left:160.799938pt;}
.x1_c00376{left:161.759935pt;}
.x7_c00376{left:167.519933pt;}
.x2_c00376{left:292.639474pt;}
.x9_c00376{left:367.839853pt;}
.xa_c00376{left:384.159846pt;}
.x4_c00376{left:385.919846pt;}
.x6_c00376{left:615.519754pt;}
.x3_c00376{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_800339b413f9da5334495d3a.woff2')format("woff");}.ff1_c00377{font-family:ff1_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:ff2_c00377;src:url('chunks/assets/font_980b40c1234a4034cee1a3c6.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_82e79f424ba7668d4c4d0673.woff2')format("woff");}.ff3_c00377{font-family:ff3_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;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_1764166de4f7be128808292a.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;}
.m0_c00377{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls1_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.021238px;}
.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;}
}
.ws1_c00377{word-spacing:-18.021231px;}
.ws0_c00377{word-spacing:-17.999993px;}
.ws2_c00377{word-spacing:0.000000px;}
._1_c00377{margin-left:-1.105374px;}
._0_c00377{width:1.195563px;}
._a_c00377{width:2.533667px;}
._6_c00377{width:4.943667px;}
._4_c00377{width:6.352862px;}
._5_c00377{width:7.390223px;}
._7_c00377{width:9.848514px;}
._8_c00377{width:10.939998px;}
._2_c00377{width:14.958856px;}
._b_c00377{width:16.733879px;}
._3_c00377{width:20.963156px;}
._9_c00377{width:39.222970px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:59.759976px;}
.fs1_c00377{font-size:66.239974px;}
.fs2_c00377{font-size:71.999971px;}
.y0_c00377{bottom:0.000000px;}
.y4_c00377{bottom:75.899970px;}
.y3_c00377{bottom:114.059954px;}
.y24_c00377{bottom:155.279938px;}
.y23_c00377{bottom:186.419925px;}
.y22_c00377{bottom:217.739913px;}
.y21_c00377{bottom:248.879900px;}
.y20_c00377{bottom:279.839888px;}
.y1f_c00377{bottom:310.979876px;}
.y1e_c00377{bottom:341.939863px;}
.y1d_c00377{bottom:373.079851px;}
.y1c_c00377{bottom:404.039838px;}
.y1b_c00377{bottom:435.179826px;}
.y1a_c00377{bottom:466.139814px;}
.y19_c00377{bottom:497.279801px;}
.y18_c00377{bottom:528.239789px;}
.y17_c00377{bottom:559.379776px;}
.y16_c00377{bottom:589.979764px;}
.y15_c00377{bottom:621.479751px;}
.y14_c00377{bottom:652.439739px;}
.y13_c00377{bottom:683.579727px;}
.y12_c00377{bottom:714.179714px;}
.y11_c00377{bottom:745.679702px;}
.y10_c00377{bottom:776.639689px;}
.yf_c00377{bottom:807.419677px;}
.ye_c00377{bottom:838.739665px;}
.yd_c00377{bottom:869.879652px;}
.yc_c00377{bottom:900.839640px;}
.yb_c00377{bottom:931.979627px;}
.ya_c00377{bottom:962.939615px;}
.y9_c00377{bottom:994.079602px;}
.y8_c00377{bottom:1025.039590px;}
.y7_c00377{bottom:1056.179578px;}
.y6_c00377{bottom:1086.779565px;}
.y5_c00377{bottom:1117.919553px;}
.y2_c00377{bottom:1157.159537px;}
.y1_c00377{bottom:1196.039522px;}
.h2_c00377{height:54.628572px;}
.h1_c00377{height:58.651148px;}
.h4_c00377{height:70.664034px;}
.h3_c00377{height:72.562471px;}
.h0_c00377{height:1263.000000px;}
.w0_c00377{width:892.500000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:127.619949px;}
.x2_c00377{left:433.979514px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls1_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.018878pt;}
.ws1_c00377{word-spacing:-16.018872pt;}
.ws0_c00377{word-spacing:-15.999994pt;}
.ws2_c00377{word-spacing:0.000000pt;}
._1_c00377{margin-left:-0.982555pt;}
._0_c00377{width:1.062723pt;}
._a_c00377{width:2.252148pt;}
._6_c00377{width:4.394371pt;}
._4_c00377{width:5.646989pt;}
._5_c00377{width:6.569087pt;}
._7_c00377{width:8.754235pt;}
._8_c00377{width:9.724443pt;}
._2_c00377{width:13.296761pt;}
._b_c00377{width:14.874559pt;}
._3_c00377{width:18.633916pt;}
._9_c00377{width:34.864862pt;}
.fs0_c00377{font-size:53.119979pt;}
.fs1_c00377{font-size:58.879976pt;}
.fs2_c00377{font-size:63.999974pt;}
.y0_c00377{bottom:0.000000pt;}
.y4_c00377{bottom:67.466640pt;}
.y3_c00377{bottom:101.386626pt;}
.y24_c00377{bottom:138.026611pt;}
.y23_c00377{bottom:165.706600pt;}
.y22_c00377{bottom:193.546589pt;}
.y21_c00377{bottom:221.226578pt;}
.y20_c00377{bottom:248.746567pt;}
.y1f_c00377{bottom:276.426556pt;}
.y1e_c00377{bottom:303.946545pt;}
.y1d_c00377{bottom:331.626534pt;}
.y1c_c00377{bottom:359.146523pt;}
.y1b_c00377{bottom:386.826512pt;}
.y1a_c00377{bottom:414.346501pt;}
.y19_c00377{bottom:442.026490pt;}
.y18_c00377{bottom:469.546479pt;}
.y17_c00377{bottom:497.226468pt;}
.y16_c00377{bottom:524.426457pt;}
.y15_c00377{bottom:552.426446pt;}
.y14_c00377{bottom:579.946435pt;}
.y13_c00377{bottom:607.626424pt;}
.y12_c00377{bottom:634.826413pt;}
.y11_c00377{bottom:662.826402pt;}
.y10_c00377{bottom:690.346391pt;}
.yf_c00377{bottom:717.706380pt;}
.ye_c00377{bottom:745.546368pt;}
.yd_c00377{bottom:773.226357pt;}
.yc_c00377{bottom:800.746346pt;}
.yb_c00377{bottom:828.426335pt;}
.ya_c00377{bottom:855.946324pt;}
.y9_c00377{bottom:883.626313pt;}
.y8_c00377{bottom:911.146302pt;}
.y7_c00377{bottom:938.826291pt;}
.y6_c00377{bottom:966.026280pt;}
.y5_c00377{bottom:993.706269pt;}
.y2_c00377{bottom:1028.586255pt;}
.y1_c00377{bottom:1063.146241pt;}
.h2_c00377{height:48.558731pt;}
.h1_c00377{height:52.134354pt;}
.h4_c00377{height:62.812475pt;}
.h3_c00377{height:64.499974pt;}
.h0_c00377{height:1122.666667pt;}
.w0_c00377{width:793.333333pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:113.439955pt;}
.x2_c00377{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceb33aeb6a1c57194a04bb77.woff2')format("woff");}.ff1_c00378{font-family:ff1_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:ff2_c00378;src:url('chunks/assets/font_0a3e1809690fd1f4c543d083.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_0996029bc5a1ee5539fa4a1b.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.311035;font-style:normal;font-weight:normal;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_c66a1d5ab6131ffe3e36a3f0.woff2')format("woff");}.ff4_c00378{font-family:ff4_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:ff5_c00378;src:url('chunks/assets/font_632148b609969aeae8435fcb.woff2')format("woff");}.ff5_c00378{font-family:ff5_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;}
.m0_c00378{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00378{word-spacing:-17.999993px;}
.ws1_c00378{word-spacing:0.000000px;}
._12_c00378{margin-left:-2.205682px;}
._1_c00378{margin-left:-1.105374px;}
._0_c00378{width:1.478392px;}
._9_c00378{width:3.173079px;}
._d_c00378{width:4.245347px;}
._f_c00378{width:6.015652px;}
._b_c00378{width:8.027362px;}
._a_c00378{width:9.357226px;}
._6_c00378{width:12.953483px;}
._e_c00378{width:14.417037px;}
._10_c00378{width:19.584510px;}
._7_c00378{width:21.076360px;}
._8_c00378{width:22.817491px;}
._4_c00378{width:26.847071px;}
._5_c00378{width:28.252404px;}
._c_c00378{width:33.523622px;}
._3_c00378{width:34.730192px;}
._2_c00378{width:36.151124px;}
._11_c00378{width:194.525202px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs0_c00378{font-size:59.759976px;}
.fs1_c00378{font-size:66.239974px;}
.fs2_c00378{font-size:71.999971px;}
.y0_c00378{bottom:0.000000px;}
.y4_c00378{bottom:75.900270px;}
.y3_c00378{bottom:114.060254px;}
.y24_c00378{bottom:143.759942px;}
.y23_c00378{bottom:174.719930px;}
.y22_c00378{bottom:205.859918px;}
.y21_c00378{bottom:236.819905px;}
.y20_c00378{bottom:268.319893px;}
.y1f_c00378{bottom:299.279880px;}
.y1e_c00378{bottom:330.419868px;}
.y1d_c00378{bottom:361.379855px;}
.y1c_c00378{bottom:392.159843px;}
.y1b_c00378{bottom:423.119831px;}
.y1a_c00378{bottom:454.079818px;}
.y19_c00378{bottom:500.519800px;}
.y18_c00378{bottom:531.659787px;}
.y17_c00378{bottom:562.619775px;}
.y16_c00378{bottom:608.699757px;}
.y15_c00378{bottom:639.839744px;}
.y14_c00378{bottom:670.799732px;}
.y13_c00378{bottom:701.939719px;}
.y12_c00378{bottom:732.899707px;}
.y11_c00378{bottom:764.039694px;}
.y10_c00378{bottom:794.999682px;}
.yf_c00378{bottom:825.959670px;}
.ye_c00378{bottom:857.099657px;}
.yd_c00378{bottom:888.059645px;}
.yc_c00378{bottom:918.839632px;}
.yb_c00378{bottom:949.799620px;}
.ya_c00378{bottom:980.939608px;}
.y9_c00378{bottom:1011.899595px;}
.y8_c00378{bottom:1043.039583px;}
.y7_c00378{bottom:1073.999570px;}
.y6_c00378{bottom:1105.139558px;}
.y5_c00378{bottom:1136.099546px;}
.y2_c00378{bottom:1176.059530px;}
.y1_c00378{bottom:1196.219522px;}
.h2_c00378{height:54.628572px;}
.h1_c00378{height:58.651148px;}
.h4_c00378{height:70.664034px;}
.h3_c00378{height:72.562471px;}
.h0_c00378{height:1263.000000px;}
.w0_c00378{width:892.500000px;}
.x0_c00378{left:0.000000px;}
.x5_c00378{left:127.620262px;}
.x6_c00378{left:132.659972px;}
.x7_c00378{left:180.719930px;}
.x1_c00378{left:181.799927px;}
.x2_c00378{left:329.039408px;}
.x4_c00378{left:433.979826px;}
.x3_c00378{left:765.359694px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:-15.999994pt;}
.ws1_c00378{word-spacing:0.000000pt;}
._12_c00378{margin-left:-1.960606pt;}
._1_c00378{margin-left:-0.982555pt;}
._0_c00378{width:1.314126pt;}
._9_c00378{width:2.820515pt;}
._d_c00378{width:3.773642pt;}
._f_c00378{width:5.347246pt;}
._b_c00378{width:7.135433pt;}
._a_c00378{width:8.317534pt;}
._6_c00378{width:11.514207pt;}
._e_c00378{width:12.815144pt;}
._10_c00378{width:17.408453pt;}
._7_c00378{width:18.734542pt;}
._8_c00378{width:20.282214pt;}
._4_c00378{width:23.864064pt;}
._5_c00378{width:25.113248pt;}
._c_c00378{width:29.798775pt;}
._3_c00378{width:30.871281pt;}
._2_c00378{width:32.134333pt;}
._11_c00378{width:172.911291pt;}
.fs0_c00378{font-size:53.119979pt;}
.fs1_c00378{font-size:58.879976pt;}
.fs2_c00378{font-size:63.999974pt;}
.y0_c00378{bottom:0.000000pt;}
.y4_c00378{bottom:67.466906pt;}
.y3_c00378{bottom:101.386893pt;}
.y24_c00378{bottom:127.786616pt;}
.y23_c00378{bottom:155.306605pt;}
.y22_c00378{bottom:182.986593pt;}
.y21_c00378{bottom:210.506582pt;}
.y20_c00378{bottom:238.506571pt;}
.y1f_c00378{bottom:266.026560pt;}
.y1e_c00378{bottom:293.706549pt;}
.y1d_c00378{bottom:321.226538pt;}
.y1c_c00378{bottom:348.586527pt;}
.y1b_c00378{bottom:376.106516pt;}
.y1a_c00378{bottom:403.626505pt;}
.y19_c00378{bottom:444.906489pt;}
.y18_c00378{bottom:472.586478pt;}
.y17_c00378{bottom:500.106467pt;}
.y16_c00378{bottom:541.066450pt;}
.y15_c00378{bottom:568.746439pt;}
.y14_c00378{bottom:596.266428pt;}
.y13_c00378{bottom:623.946417pt;}
.y12_c00378{bottom:651.466406pt;}
.y11_c00378{bottom:679.146395pt;}
.y10_c00378{bottom:706.666384pt;}
.yf_c00378{bottom:734.186373pt;}
.ye_c00378{bottom:761.866362pt;}
.yd_c00378{bottom:789.386351pt;}
.yc_c00378{bottom:816.746340pt;}
.yb_c00378{bottom:844.266329pt;}
.ya_c00378{bottom:871.946318pt;}
.y9_c00378{bottom:899.466307pt;}
.y8_c00378{bottom:927.146296pt;}
.y7_c00378{bottom:954.666285pt;}
.y6_c00378{bottom:982.346274pt;}
.y5_c00378{bottom:1009.866263pt;}
.y2_c00378{bottom:1045.386249pt;}
.y1_c00378{bottom:1063.306241pt;}
.h2_c00378{height:48.558731pt;}
.h1_c00378{height:52.134354pt;}
.h4_c00378{height:62.812475pt;}
.h3_c00378{height:64.499974pt;}
.h0_c00378{height:1122.666667pt;}
.w0_c00378{width:793.333333pt;}
.x0_c00378{left:0.000000pt;}
.x5_c00378{left:113.440233pt;}
.x6_c00378{left:117.919975pt;}
.x7_c00378{left:160.639938pt;}
.x1_c00378{left:161.599935pt;}
.x2_c00378{left:292.479474pt;}
.x4_c00378{left:385.759846pt;}
.x3_c00378{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f17b90b8bf1431a60d1e42b8.woff2')format("woff");}.ff1_c00379{font-family:ff1_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:ff2_c00379;src:url('chunks/assets/font_50a7bba45982a3f99578d354.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_d1ab7b54b45e8de782ec04d3.woff2')format("woff");}.ff3_c00379{font-family:ff3_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:ff4_c00379;src:url('chunks/assets/font_d9581a59b7c519031cc3f3b3.woff2')format("woff");}.ff4_c00379{font-family:ff4_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:ff5_c00379;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.239258;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00379{font-family:ff6_c00379;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls2_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.019560px;}
.ls1_c00379{letter-spacing:54.908378px;}
.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:0.000000px;}
._7_c00379{margin-left:-3.497020px;}
._2_c00379{margin-left:-2.249012px;}
._1_c00379{margin-left:-1.105374px;}
._0_c00379{width:1.195563px;}
._6_c00379{width:2.740163px;}
._4_c00379{width:4.194212px;}
._5_c00379{width:5.260862px;}
._9_c00379{width:9.021804px;}
._a_c00379{width:10.781469px;}
._c_c00379{width:12.035653px;}
._b_c00379{width:13.136431px;}
._8_c00379{width:14.891536px;}
._3_c00379{width:194.525202px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs0_c00379{font-size:59.759976px;}
.fs1_c00379{font-size:66.239974px;}
.fs2_c00379{font-size:71.999971px;}
.y0_c00379{bottom:0.000000px;}
.y4_c00379{bottom:75.899970px;}
.y3_c00379{bottom:114.059954px;}
.y22_c00379{bottom:187.319925px;}
.y21_c00379{bottom:219.719912px;}
.y20_c00379{bottom:251.939899px;}
.y1f_c00379{bottom:284.339886px;}
.y1e_c00379{bottom:316.739873px;}
.y1d_c00379{bottom:348.959860px;}
.y1c_c00379{bottom:381.359847px;}
.y1b_c00379{bottom:413.759834px;}
.y1a_c00379{bottom:445.979822px;}
.y19_c00379{bottom:478.379809px;}
.y18_c00379{bottom:510.779796px;}
.y17_c00379{bottom:542.999783px;}
.y16_c00379{bottom:590.339764px;}
.y15_c00379{bottom:621.479751px;}
.y14_c00379{bottom:652.439739px;}
.y13_c00379{bottom:683.579727px;}
.y12_c00379{bottom:714.539714px;}
.y11_c00379{bottom:745.679702px;}
.y10_c00379{bottom:776.639689px;}
.yf_c00379{bottom:807.779677px;}
.ye_c00379{bottom:838.379665px;}
.yd_c00379{bottom:869.519652px;}
.yc_c00379{bottom:900.479640px;}
.yb_c00379{bottom:931.979627px;}
.ya_c00379{bottom:962.939615px;}
.y9_c00379{bottom:994.079602px;}
.y8_c00379{bottom:1024.679590px;}
.y7_c00379{bottom:1055.819578px;}
.y6_c00379{bottom:1086.779565px;}
.y5_c00379{bottom:1117.919553px;}
.y2_c00379{bottom:1157.159537px;}
.y1_c00379{bottom:1196.039522px;}
.h2_c00379{height:54.628572px;}
.h1_c00379{height:58.651148px;}
.h4_c00379{height:70.664034px;}
.h3_c00379{height:72.562471px;}
.h5_c00379{height:75.093720px;}
.h0_c00379{height:1263.000000px;}
.w0_c00379{width:892.500000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:127.619949px;}
.x4_c00379{left:148.859552px;}
.x3_c00379{left:180.719930px;}
.x2_c00379{left:433.979514px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls2_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.017387pt;}
.ls1_c00379{letter-spacing:48.807447pt;}
.ws0_c00379{word-spacing:0.000000pt;}
._7_c00379{margin-left:-3.108462pt;}
._2_c00379{margin-left:-1.999121pt;}
._1_c00379{margin-left:-0.982555pt;}
._0_c00379{width:1.062723pt;}
._6_c00379{width:2.435701pt;}
._4_c00379{width:3.728188pt;}
._5_c00379{width:4.676322pt;}
._9_c00379{width:8.019381pt;}
._a_c00379{width:9.583528pt;}
._c_c00379{width:10.698358pt;}
._b_c00379{width:11.676827pt;}
._8_c00379{width:13.236921pt;}
._3_c00379{width:172.911291pt;}
.fs0_c00379{font-size:53.119979pt;}
.fs1_c00379{font-size:58.879976pt;}
.fs2_c00379{font-size:63.999974pt;}
.y0_c00379{bottom:0.000000pt;}
.y4_c00379{bottom:67.466640pt;}
.y3_c00379{bottom:101.386626pt;}
.y22_c00379{bottom:166.506600pt;}
.y21_c00379{bottom:195.306589pt;}
.y20_c00379{bottom:223.946577pt;}
.y1f_c00379{bottom:252.746566pt;}
.y1e_c00379{bottom:281.546554pt;}
.y1d_c00379{bottom:310.186543pt;}
.y1c_c00379{bottom:338.986531pt;}
.y1b_c00379{bottom:367.786520pt;}
.y1a_c00379{bottom:396.426508pt;}
.y19_c00379{bottom:425.226497pt;}
.y18_c00379{bottom:454.026485pt;}
.y17_c00379{bottom:482.666474pt;}
.y16_c00379{bottom:524.746457pt;}
.y15_c00379{bottom:552.426446pt;}
.y14_c00379{bottom:579.946435pt;}
.y13_c00379{bottom:607.626424pt;}
.y12_c00379{bottom:635.146413pt;}
.y11_c00379{bottom:662.826402pt;}
.y10_c00379{bottom:690.346391pt;}
.yf_c00379{bottom:718.026379pt;}
.ye_c00379{bottom:745.226369pt;}
.yd_c00379{bottom:772.906358pt;}
.yc_c00379{bottom:800.426346pt;}
.yb_c00379{bottom:828.426335pt;}
.ya_c00379{bottom:855.946324pt;}
.y9_c00379{bottom:883.626313pt;}
.y8_c00379{bottom:910.826302pt;}
.y7_c00379{bottom:938.506291pt;}
.y6_c00379{bottom:966.026280pt;}
.y5_c00379{bottom:993.706269pt;}
.y2_c00379{bottom:1028.586255pt;}
.y1_c00379{bottom:1063.146241pt;}
.h2_c00379{height:48.558731pt;}
.h1_c00379{height:52.134354pt;}
.h4_c00379{height:62.812475pt;}
.h3_c00379{height:64.499974pt;}
.h5_c00379{height:66.749973pt;}
.h0_c00379{height:1122.666667pt;}
.w0_c00379{width:793.333333pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:113.439955pt;}
.x4_c00379{left:132.319602pt;}
.x3_c00379{left:160.639938pt;}
.x2_c00379{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2498b4b9bec7a42eb96167b8.woff2')format("woff");}.ff1_c00380{font-family:ff1_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:ff2_c00380;src:url('chunks/assets/font_b8df4f75be03084c6a95db21.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.239258;font-style:normal;font-weight:normal;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_3173e815adf4b289a9ffd38a.woff2')format("woff");}.ff5_c00380{font-family:ff5_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:ff6_c00380;src:url('chunks/assets/font_1bcf32abdc63f23239a81d96.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls5_c00380{letter-spacing:0.000000px;}
.ls2_c00380{letter-spacing:0.010620px;}
.ls0_c00380{letter-spacing:0.019560px;}
.ls4_c00380{letter-spacing:0.021238px;}
.ls3_c00380{letter-spacing:34.015846px;}
.ls1_c00380{letter-spacing:54.908378px;}
.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;}
}
.ws1_c00380{word-spacing:-18.021231px;}
.ws0_c00380{word-spacing:-17.999993px;}
.ws2_c00380{word-spacing:0.000000px;}
._1_c00380{margin-left:-1.105374px;}
._0_c00380{width:1.478392px;}
._5_c00380{width:6.899541px;}
._6_c00380{width:8.059410px;}
._2_c00380{width:12.410254px;}
._3_c00380{width:26.099464px;}
._4_c00380{width:27.435370px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs0_c00380{font-size:59.759976px;}
.fs1_c00380{font-size:66.239974px;}
.fs2_c00380{font-size:71.999971px;}
.y0_c00380{bottom:0.000000px;}
.y4_c00380{bottom:75.900270px;}
.y3_c00380{bottom:114.060254px;}
.y24_c00380{bottom:143.579943px;}
.y23_c00380{bottom:174.539930px;}
.y22_c00380{bottom:205.679918px;}
.y21_c00380{bottom:236.639905px;}
.y20_c00380{bottom:267.779893px;}
.y1f_c00380{bottom:298.739881px;}
.y1e_c00380{bottom:329.879868px;}
.y1d_c00380{bottom:360.839856px;}
.y1c_c00380{bottom:391.979843px;}
.y1b_c00380{bottom:422.939831px;}
.y1a_c00380{bottom:454.079818px;}
.y19_c00380{bottom:485.039806px;}
.y18_c00380{bottom:516.179794px;}
.y17_c00380{bottom:547.139781px;}
.y16_c00380{bottom:578.279769px;}
.y15_c00380{bottom:609.239756px;}
.y14_c00380{bottom:640.019744px;}
.y13_c00380{bottom:671.339731px;}
.y12_c00380{bottom:717.419713px;}
.y11_c00380{bottom:749.819700px;}
.y10_c00380{bottom:782.039687px;}
.yf_c00380{bottom:813.179675px;}
.ye_c00380{bottom:845.579662px;}
.yd_c00380{bottom:877.799649px;}
.yc_c00380{bottom:910.199636px;}
.yb_c00380{bottom:942.599623px;}
.ya_c00380{bottom:974.819610px;}
.y9_c00380{bottom:1007.219597px;}
.y8_c00380{bottom:1039.619584px;}
.y7_c00380{bottom:1071.839571px;}
.y6_c00380{bottom:1104.239558px;}
.y5_c00380{bottom:1135.199546px;}
.y2_c00380{bottom:1176.059530px;}
.y1_c00380{bottom:1196.219522px;}
.h2_c00380{height:54.628572px;}
.h1_c00380{height:58.651148px;}
.h4_c00380{height:70.664034px;}
.h5_c00380{height:72.562471px;}
.h3_c00380{height:75.093720px;}
.h0_c00380{height:1263.000000px;}
.w0_c00380{width:892.500000px;}
.x0_c00380{left:0.000000px;}
.x5_c00380{left:127.620262px;}
.x6_c00380{left:148.859940px;}
.x8_c00380{left:154.624170px;}
.x7_c00380{left:175.859980px;}
.x1_c00380{left:181.799927px;}
.x2_c00380{left:329.039408px;}
.x4_c00380{left:433.979826px;}
.x3_c00380{left:765.359694px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls5_c00380{letter-spacing:0.000000pt;}
.ls2_c00380{letter-spacing:0.009440pt;}
.ls0_c00380{letter-spacing:0.017387pt;}
.ls4_c00380{letter-spacing:0.018878pt;}
.ls3_c00380{letter-spacing:30.236308pt;}
.ls1_c00380{letter-spacing:48.807447pt;}
.ws1_c00380{word-spacing:-16.018872pt;}
.ws0_c00380{word-spacing:-15.999994pt;}
.ws2_c00380{word-spacing:0.000000pt;}
._1_c00380{margin-left:-0.982555pt;}
._0_c00380{width:1.314126pt;}
._5_c00380{width:6.132926pt;}
._6_c00380{width:7.163920pt;}
._2_c00380{width:11.031337pt;}
._3_c00380{width:23.199523pt;}
._4_c00380{width:24.386995pt;}
.fs0_c00380{font-size:53.119979pt;}
.fs1_c00380{font-size:58.879976pt;}
.fs2_c00380{font-size:63.999974pt;}
.y0_c00380{bottom:0.000000pt;}
.y4_c00380{bottom:67.466906pt;}
.y3_c00380{bottom:101.386893pt;}
.y24_c00380{bottom:127.626616pt;}
.y23_c00380{bottom:155.146605pt;}
.y22_c00380{bottom:182.826594pt;}
.y21_c00380{bottom:210.346583pt;}
.y20_c00380{bottom:238.026571pt;}
.y1f_c00380{bottom:265.546560pt;}
.y1e_c00380{bottom:293.226549pt;}
.y1d_c00380{bottom:320.746538pt;}
.y1c_c00380{bottom:348.426527pt;}
.y1b_c00380{bottom:375.946516pt;}
.y1a_c00380{bottom:403.626505pt;}
.y19_c00380{bottom:431.146494pt;}
.y18_c00380{bottom:458.826483pt;}
.y17_c00380{bottom:486.346472pt;}
.y16_c00380{bottom:514.026461pt;}
.y15_c00380{bottom:541.546450pt;}
.y14_c00380{bottom:568.906439pt;}
.y13_c00380{bottom:596.746428pt;}
.y12_c00380{bottom:637.706412pt;}
.y11_c00380{bottom:666.506400pt;}
.y10_c00380{bottom:695.146389pt;}
.yf_c00380{bottom:722.826378pt;}
.ye_c00380{bottom:751.626366pt;}
.yd_c00380{bottom:780.266355pt;}
.yc_c00380{bottom:809.066343pt;}
.yb_c00380{bottom:837.866332pt;}
.ya_c00380{bottom:866.506320pt;}
.y9_c00380{bottom:895.306309pt;}
.y8_c00380{bottom:924.106297pt;}
.y7_c00380{bottom:952.746286pt;}
.y6_c00380{bottom:981.546274pt;}
.y5_c00380{bottom:1009.066263pt;}
.y2_c00380{bottom:1045.386249pt;}
.y1_c00380{bottom:1063.306241pt;}
.h2_c00380{height:48.558731pt;}
.h1_c00380{height:52.134354pt;}
.h4_c00380{height:62.812475pt;}
.h5_c00380{height:64.499974pt;}
.h3_c00380{height:66.749973pt;}
.h0_c00380{height:1122.666667pt;}
.w0_c00380{width:793.333333pt;}
.x0_c00380{left:0.000000pt;}
.x5_c00380{left:113.440233pt;}
.x6_c00380{left:132.319947pt;}
.x8_c00380{left:137.443707pt;}
.x7_c00380{left:156.319982pt;}
.x1_c00380{left:161.599935pt;}
.x2_c00380{left:292.479474pt;}
.x4_c00380{left:385.759846pt;}
.x3_c00380{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_579c5fde107cd1a7081ba27a.woff2')format("woff");}.ff1_c00381{font-family:ff1_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:ff2_c00381;src:url('chunks/assets/font_b48dcb58793793d173da983d.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_aae38daca15ba5a0e4ac09f8.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.311035;font-style:normal;font-weight:normal;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_7c906e39a3920aba7afe8e67.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_a12926c207225281a226b5d2.woff2')format("woff");}.ff6_c00381{font-family:ff6_c00381;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls2_c00381{letter-spacing:0.000000px;}
.ls0_c00381{letter-spacing:0.021238px;}
.ls1_c00381{letter-spacing:32.575007px;}
.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;}
}
.ws0_c00381{word-spacing:-18.021231px;}
.ws1_c00381{word-spacing:-17.999993px;}
.ws2_c00381{word-spacing:0.000000px;}
._1_c00381{margin-left:-1.105374px;}
._0_c00381{width:1.195563px;}
._5_c00381{width:5.593316px;}
._6_c00381{width:6.622878px;}
._4_c00381{width:8.765604px;}
._3_c00381{width:25.012817px;}
._2_c00381{width:26.055749px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs0_c00381{font-size:59.759976px;}
.fs1_c00381{font-size:66.239974px;}
.fs2_c00381{font-size:71.999971px;}
.y0_c00381{bottom:0.000000px;}
.y4_c00381{bottom:75.899970px;}
.y3_c00381{bottom:114.059954px;}
.y21_c00381{bottom:153.479939px;}
.y20_c00381{bottom:192.719923px;}
.y1f_c00381{bottom:231.419907px;}
.y1e_c00381{bottom:270.299892px;}
.y1d_c00381{bottom:309.179876px;}
.y1c_c00381{bottom:347.879861px;}
.y1b_c00381{bottom:386.759845px;}
.y1a_c00381{bottom:425.459830px;}
.y19_c00381{bottom:464.339814px;}
.y18_c00381{bottom:484.679806px;}
.y17_c00381{bottom:529.319788px;}
.y16_c00381{bottom:560.459776px;}
.y15_c00381{bottom:591.419763px;}
.y14_c00381{bottom:622.199751px;}
.y13_c00381{bottom:668.459733px;}
.y12_c00381{bottom:699.599720px;}
.y11_c00381{bottom:730.199708px;}
.y10_c00381{bottom:761.699695px;}
.yf_c00381{bottom:807.779677px;}
.ye_c00381{bottom:838.739665px;}
.yd_c00381{bottom:869.879652px;}
.yc_c00381{bottom:900.839640px;}
.yb_c00381{bottom:931.979627px;}
.ya_c00381{bottom:962.939615px;}
.y9_c00381{bottom:994.079602px;}
.y8_c00381{bottom:1025.039590px;}
.y7_c00381{bottom:1056.179578px;}
.y6_c00381{bottom:1087.139565px;}
.y5_c00381{bottom:1118.279553px;}
.y2_c00381{bottom:1157.159537px;}
.y1_c00381{bottom:1196.039522px;}
.h2_c00381{height:54.628572px;}
.h1_c00381{height:58.651148px;}
.h6_c00381{height:65.010911px;}
.h4_c00381{height:70.664034px;}
.h5_c00381{height:72.562471px;}
.h3_c00381{height:75.093720px;}
.h0_c00381{height:1263.000000px;}
.w0_c00381{width:892.500000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:127.619949px;}
.x3_c00381{left:154.619938px;}
.x4_c00381{left:180.719928px;}
.x2_c00381{left:433.979514px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls2_c00381{letter-spacing:0.000000pt;}
.ls0_c00381{letter-spacing:0.018878pt;}
.ls1_c00381{letter-spacing:28.955562pt;}
.ws0_c00381{word-spacing:-16.018872pt;}
.ws1_c00381{word-spacing:-15.999994pt;}
.ws2_c00381{word-spacing:0.000000pt;}
._1_c00381{margin-left:-0.982555pt;}
._0_c00381{width:1.062723pt;}
._5_c00381{width:4.971836pt;}
._6_c00381{width:5.887002pt;}
._4_c00381{width:7.791648pt;}
._3_c00381{width:22.233615pt;}
._2_c00381{width:23.160666pt;}
.fs0_c00381{font-size:53.119979pt;}
.fs1_c00381{font-size:58.879976pt;}
.fs2_c00381{font-size:63.999974pt;}
.y0_c00381{bottom:0.000000pt;}
.y4_c00381{bottom:67.466640pt;}
.y3_c00381{bottom:101.386626pt;}
.y21_c00381{bottom:136.426612pt;}
.y20_c00381{bottom:171.306598pt;}
.y1f_c00381{bottom:205.706584pt;}
.y1e_c00381{bottom:240.266571pt;}
.y1d_c00381{bottom:274.826557pt;}
.y1c_c00381{bottom:309.226543pt;}
.y1b_c00381{bottom:343.786529pt;}
.y1a_c00381{bottom:378.186515pt;}
.y19_c00381{bottom:412.746502pt;}
.y18_c00381{bottom:430.826494pt;}
.y17_c00381{bottom:470.506478pt;}
.y16_c00381{bottom:498.186467pt;}
.y15_c00381{bottom:525.706456pt;}
.y14_c00381{bottom:553.066445pt;}
.y13_c00381{bottom:594.186429pt;}
.y12_c00381{bottom:621.866418pt;}
.y11_c00381{bottom:649.066407pt;}
.y10_c00381{bottom:677.066396pt;}
.yf_c00381{bottom:718.026379pt;}
.ye_c00381{bottom:745.546368pt;}
.yd_c00381{bottom:773.226357pt;}
.yc_c00381{bottom:800.746346pt;}
.yb_c00381{bottom:828.426335pt;}
.ya_c00381{bottom:855.946324pt;}
.y9_c00381{bottom:883.626313pt;}
.y8_c00381{bottom:911.146302pt;}
.y7_c00381{bottom:938.826291pt;}
.y6_c00381{bottom:966.346280pt;}
.y5_c00381{bottom:994.026269pt;}
.y2_c00381{bottom:1028.586255pt;}
.y1_c00381{bottom:1063.146241pt;}
.h2_c00381{height:48.558731pt;}
.h1_c00381{height:52.134354pt;}
.h6_c00381{height:57.787477pt;}
.h4_c00381{height:62.812475pt;}
.h5_c00381{height:64.499974pt;}
.h3_c00381{height:66.749973pt;}
.h0_c00381{height:1122.666667pt;}
.w0_c00381{width:793.333333pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:113.439955pt;}
.x3_c00381{left:137.439945pt;}
.x4_c00381{left:160.639936pt;}
.x2_c00381{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_082d9573f281b1c34f1f96b0.woff2')format("woff");}.ff1_c00382{font-family:ff1_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:ff2_c00382;src:url('chunks/assets/font_9a677f5dc16956119140dfd2.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_36b27c9d4ea51415baffd2fe.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.311035;font-style:normal;font-weight:normal;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_ff1d15299ea9894e899d225d.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:0.666504;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00382{word-spacing:0.000000px;}
._1_c00382{margin-left:-1.105374px;}
._0_c00382{width:1.478392px;}
._3_c00382{width:2.658861px;}
._2_c00382{width:3.764210px;}
._c_c00382{width:4.804320px;}
._4_c00382{width:5.816602px;}
._5_c00382{width:6.902606px;}
._a_c00382{width:7.929803px;}
._b_c00382{width:9.177642px;}
._d_c00382{width:13.742428px;}
._e_c00382{width:14.798266px;}
._f_c00382{width:15.853064px;}
._6_c00382{width:19.955724px;}
._8_c00382{width:25.577474px;}
._9_c00382{width:26.761979px;}
._7_c00382{width:29.523268px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs0_c00382{font-size:59.759976px;}
.fs1_c00382{font-size:66.239974px;}
.fs2_c00382{font-size:71.999971px;}
.y0_c00382{bottom:0.000000px;}
.y4_c00382{bottom:75.900270px;}
.y3_c00382{bottom:114.060254px;}
.y21_c00382{bottom:164.459934px;}
.y20_c00382{bottom:210.539916px;}
.y1f_c00382{bottom:256.979897px;}
.y1e_c00382{bottom:287.939885px;}
.y1d_c00382{bottom:319.079872px;}
.y1c_c00382{bottom:350.039860px;}
.y1b_c00382{bottom:395.759842px;}
.y1a_c00382{bottom:441.839823px;}
.y19_c00382{bottom:488.279805px;}
.y18_c00382{bottom:519.239792px;}
.y17_c00382{bottom:550.379780px;}
.y16_c00382{bottom:581.339767px;}
.y15_c00382{bottom:612.479755px;}
.y14_c00382{bottom:643.439743px;}
.y13_c00382{bottom:674.579730px;}
.y12_c00382{bottom:705.539718px;}
.y11_c00382{bottom:736.679705px;}
.y10_c00382{bottom:767.639693px;}
.yf_c00382{bottom:813.719675px;}
.ye_c00382{bottom:844.679662px;}
.yd_c00382{bottom:875.819650px;}
.yc_c00382{bottom:921.539631px;}
.yb_c00382{bottom:952.499619px;}
.ya_c00382{bottom:983.639607px;}
.y9_c00382{bottom:1014.599594px;}
.y8_c00382{bottom:1046.099582px;}
.y7_c00382{bottom:1077.059569px;}
.y6_c00382{bottom:1106.759557px;}
.y5_c00382{bottom:1136.099546px;}
.y2_c00382{bottom:1176.059530px;}
.y1_c00382{bottom:1196.219522px;}
.h4_c00382{height:44.149201px;}
.h2_c00382{height:54.628572px;}
.h1_c00382{height:58.651148px;}
.h5_c00382{height:70.664034px;}
.h3_c00382{height:72.562471px;}
.h0_c00382{height:1263.000000px;}
.w0_c00382{width:892.500000px;}
.x0_c00382{left:0.000000px;}
.x5_c00382{left:127.620262px;}
.x6_c00382{left:154.619938px;}
.x7_c00382{left:180.719928px;}
.x1_c00382{left:181.799927px;}
.x2_c00382{left:329.039408px;}
.x4_c00382{left:433.979826px;}
.x3_c00382{left:765.359694px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:0.000000pt;}
._1_c00382{margin-left:-0.982555pt;}
._0_c00382{width:1.314126pt;}
._3_c00382{width:2.363432pt;}
._2_c00382{width:3.345964pt;}
._c_c00382{width:4.270507pt;}
._4_c00382{width:5.170313pt;}
._5_c00382{width:6.135650pt;}
._a_c00382{width:7.048714pt;}
._b_c00382{width:8.157904pt;}
._d_c00382{width:12.215492pt;}
._e_c00382{width:13.154015pt;}
._f_c00382{width:14.091613pt;}
._6_c00382{width:17.738422pt;}
._8_c00382{width:22.735533pt;}
._9_c00382{width:23.788425pt;}
._7_c00382{width:26.242905pt;}
.fs0_c00382{font-size:53.119979pt;}
.fs1_c00382{font-size:58.879976pt;}
.fs2_c00382{font-size:63.999974pt;}
.y0_c00382{bottom:0.000000pt;}
.y4_c00382{bottom:67.466906pt;}
.y3_c00382{bottom:101.386893pt;}
.y21_c00382{bottom:146.186608pt;}
.y20_c00382{bottom:187.146592pt;}
.y1f_c00382{bottom:228.426575pt;}
.y1e_c00382{bottom:255.946564pt;}
.y1d_c00382{bottom:283.626553pt;}
.y1c_c00382{bottom:311.146542pt;}
.y1b_c00382{bottom:351.786526pt;}
.y1a_c00382{bottom:392.746510pt;}
.y19_c00382{bottom:434.026493pt;}
.y18_c00382{bottom:461.546482pt;}
.y17_c00382{bottom:489.226471pt;}
.y16_c00382{bottom:516.746460pt;}
.y15_c00382{bottom:544.426449pt;}
.y14_c00382{bottom:571.946438pt;}
.y13_c00382{bottom:599.626427pt;}
.y12_c00382{bottom:627.146416pt;}
.y11_c00382{bottom:654.826405pt;}
.y10_c00382{bottom:682.346394pt;}
.yf_c00382{bottom:723.306377pt;}
.ye_c00382{bottom:750.826366pt;}
.yd_c00382{bottom:778.506355pt;}
.yc_c00382{bottom:819.146339pt;}
.yb_c00382{bottom:846.666328pt;}
.ya_c00382{bottom:874.346317pt;}
.y9_c00382{bottom:901.866306pt;}
.y8_c00382{bottom:929.866295pt;}
.y7_c00382{bottom:957.386284pt;}
.y6_c00382{bottom:983.786273pt;}
.y5_c00382{bottom:1009.866263pt;}
.y2_c00382{bottom:1045.386249pt;}
.y1_c00382{bottom:1063.306241pt;}
.h4_c00382{height:39.243734pt;}
.h2_c00382{height:48.558731pt;}
.h1_c00382{height:52.134354pt;}
.h5_c00382{height:62.812475pt;}
.h3_c00382{height:64.499974pt;}
.h0_c00382{height:1122.666667pt;}
.w0_c00382{width:793.333333pt;}
.x0_c00382{left:0.000000pt;}
.x5_c00382{left:113.440233pt;}
.x6_c00382{left:137.439945pt;}
.x7_c00382{left:160.639936pt;}
.x1_c00382{left:161.599935pt;}
.x2_c00382{left:292.479474pt;}
.x4_c00382{left:385.759846pt;}
.x3_c00382{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00383{font-family:ff1_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:ff2_c00383;src:url('chunks/assets/font_b19d5318ea21d1532753876f.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_600afe0aecb2964257946919.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.311035;font-style:normal;font-weight:normal;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_1fb7395181df079d19f00e08.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_f9089770d7004de9d8955640.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v2_c00383{vertical-align:-15.119994px;}
.v1_c00383{vertical-align:-10.079996px;}
.v0_c00383{vertical-align:0.000000px;}
.v3_c00383{vertical-align:26.639989px;}
.v4_c00383{vertical-align:71.279971px;}
.ls1_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:0.233219px;}
.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;}
}
.ws1_c00383{word-spacing:-15.245213px;}
.ws0_c00383{word-spacing:-15.011994px;}
.ws2_c00383{word-spacing:0.000000px;}
._1_c00383{margin-left:-1.105374px;}
._0_c00383{width:1.195563px;}
._7_c00383{width:45.735994px;}
._a_c00383{width:91.121982px;}
._8_c00383{width:132.804266px;}
._3_c00383{width:180.372704px;}
._6_c00383{width:187.753526px;}
._5_c00383{width:206.971327px;}
._c_c00383{width:237.798036px;}
._12_c00383{width:279.900208px;}
._13_c00383{width:312.948194px;}
._4_c00383{width:378.936168px;}
._f_c00383{width:456.912137px;}
._10_c00383{width:475.002130px;}
._11_c00383{width:477.918128px;}
._d_c00383{width:492.984122px;}
._16_c00383{width:501.948119px;}
._9_c00383{width:519.984112px;}
._b_c00383{width:526.032109px;}
._17_c00383{width:530.722544px;}
._e_c00383{width:741.978023px;}
._14_c00383{width:838.043984px;}
._15_c00383{width:976.013929px;}
._2_c00383{width:1063.372272px;}
._18_c00383{width:1123.109870px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs3_c00383{font-size:53.999978px;}
.fs0_c00383{font-size:59.759976px;}
.fs1_c00383{font-size:66.239974px;}
.fs2_c00383{font-size:71.999971px;}
.y0_c00383{bottom:0.000000px;}
.y11_c00383{bottom:2.879028px;}
.y13_c00383{bottom:2.879041px;}
.y16_c00383{bottom:2.879054px;}
.y19_c00383{bottom:2.879069px;}
.y1c_c00383{bottom:2.879084px;}
.y1f_c00383{bottom:2.879099px;}
.y22_c00383{bottom:2.879114px;}
.y25_c00383{bottom:2.879130px;}
.y28_c00383{bottom:2.879145px;}
.y2b_c00383{bottom:2.879158px;}
.y2e_c00383{bottom:2.879173px;}
.y31_c00383{bottom:2.879188px;}
.y34_c00383{bottom:2.879203px;}
.y37_c00383{bottom:2.879218px;}
.y3a_c00383{bottom:2.879233px;}
.y3d_c00383{bottom:2.879249px;}
.y40_c00383{bottom:2.879265px;}
.y43_c00383{bottom:2.879281px;}
.y46_c00383{bottom:2.879297px;}
.y49_c00383{bottom:2.879312px;}
.y4d_c00383{bottom:2.879687px;}
.yd_c00383{bottom:3.239001px;}
.ya_c00383{bottom:3.239014px;}
.y4_c00383{bottom:75.899970px;}
.y3_c00383{bottom:114.059954px;}
.y4b_c00383{bottom:163.559935px;}
.y4c_c00383{bottom:178.500240px;}
.y4a_c00383{bottom:181.379927px;}
.y48_c00383{bottom:216.300600px;}
.y47_c00383{bottom:219.179912px;}
.y45_c00383{bottom:254.100600px;}
.y44_c00383{bottom:256.979897px;}
.y42_c00383{bottom:294.600600px;}
.y41_c00383{bottom:297.479881px;}
.y3f_c00383{bottom:335.100600px;}
.y3e_c00383{bottom:337.979865px;}
.y3c_c00383{bottom:375.600600px;}
.y3b_c00383{bottom:378.479849px;}
.y39_c00383{bottom:413.400600px;}
.y38_c00383{bottom:416.279833px;}
.y36_c00383{bottom:451.200600px;}
.y35_c00383{bottom:454.079818px;}
.y33_c00383{bottom:489.000600px;}
.y32_c00383{bottom:491.879803px;}
.y30_c00383{bottom:526.800600px;}
.y2f_c00383{bottom:529.679788px;}
.y2d_c00383{bottom:564.600600px;}
.y2c_c00383{bottom:567.479773px;}
.y2a_c00383{bottom:602.400600px;}
.y29_c00383{bottom:605.279758px;}
.y27_c00383{bottom:635.340600px;}
.y26_c00383{bottom:638.219745px;}
.y24_c00383{bottom:673.140600px;}
.y23_c00383{bottom:676.019730px;}
.y21_c00383{bottom:710.940600px;}
.y20_c00383{bottom:713.819714px;}
.y1e_c00383{bottom:748.740600px;}
.y1d_c00383{bottom:751.619699px;}
.y1b_c00383{bottom:786.540600px;}
.y1a_c00383{bottom:789.419684px;}
.y18_c00383{bottom:824.340600px;}
.y17_c00383{bottom:827.219669px;}
.y15_c00383{bottom:862.140600px;}
.y14_c00383{bottom:865.019654px;}
.y12_c00383{bottom:894.900600px;}
.yf_c00383{bottom:897.779641px;}
.y10_c00383{bottom:927.840600px;}
.ye_c00383{bottom:930.719628px;}
.y9_c00383{bottom:961.320600px;}
.y8_c00383{bottom:964.559614px;}
.yb_c00383{bottom:982.379607px;}
.yc_c00383{bottom:994.260600px;}
.y7_c00383{bottom:1037.999585px;}
.y6_c00383{bottom:1076.339569px;}
.y5_c00383{bottom:1117.919553px;}
.y2_c00383{bottom:1157.159537px;}
.y1_c00383{bottom:1196.039522px;}
.h7_c00383{height:14.940000px;}
.h9_c00383{height:14.940360px;}
.h6_c00383{height:15.480000px;}
.h5_c00383{height:15.840000px;}
.h2_c00383{height:54.628572px;}
.h4_c00383{height:56.320290px;}
.h1_c00383{height:58.651148px;}
.h3_c00383{height:72.562471px;}
.h8_c00383{height:127.600261px;}
.h0_c00383{height:1263.000000px;}
.w1_c00383{width:7.020000px;}
.w2_c00383{width:7.560000px;}
.w0_c00383{width:892.500000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:127.619949px;}
.x5_c00383{left:184.859926px;}
.x3_c00383{left:199.619920px;}
.x4_c00383{left:290.519884px;}
.x2_c00383{left:433.979514px;}
.xd_c00383{left:538.199785px;}
.xc_c00383{left:551.339779px;}
.x6_c00383{left:570.600000px;}
.x7_c00383{left:601.019760px;}
.x8_c00383{left:619.199752px;}
.xe_c00383{left:636.839745px;}
.x10_c00383{left:704.339718px;}
.xf_c00383{left:708.119717px;}
.x9_c00383{left:712.980000px;}
.x12_c00383{left:727.019709px;}
.xb_c00383{left:740.159704px;}
.xa_c00383{left:746.100000px;}
.x11_c00383{left:765.360000px;}
@media print{
.v2_c00383{vertical-align:-13.439995pt;}
.v1_c00383{vertical-align:-8.959996pt;}
.v0_c00383{vertical-align:0.000000pt;}
.v3_c00383{vertical-align:23.679991pt;}
.v4_c00383{vertical-align:63.359975pt;}
.ls1_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:0.207306pt;}
.ws1_c00383{word-spacing:-13.551301pt;}
.ws0_c00383{word-spacing:-13.343995pt;}
.ws2_c00383{word-spacing:0.000000pt;}
._1_c00383{margin-left:-0.982555pt;}
._0_c00383{width:1.062723pt;}
._7_c00383{width:40.654217pt;}
._a_c00383{width:80.997317pt;}
._8_c00383{width:118.048237pt;}
._3_c00383{width:160.331292pt;}
._6_c00383{width:166.892024pt;}
._5_c00383{width:183.974513pt;}
._c_c00383{width:211.376032pt;}
._12_c00383{width:248.800185pt;}
._13_c00383{width:278.176173pt;}
._4_c00383{width:336.832149pt;}
._f_c00383{width:406.144122pt;}
._10_c00383{width:422.224115pt;}
._11_c00383{width:424.816114pt;}
._d_c00383{width:438.208109pt;}
._16_c00383{width:446.176106pt;}
._9_c00383{width:462.208099pt;}
._b_c00383{width:467.584097pt;}
._17_c00383{width:471.753372pt;}
._e_c00383{width:659.536020pt;}
._14_c00383{width:744.927986pt;}
._15_c00383{width:867.567937pt;}
._2_c00383{width:945.219797pt;}
._18_c00383{width:998.319885pt;}
.fs3_c00383{font-size:47.999981pt;}
.fs0_c00383{font-size:53.119979pt;}
.fs1_c00383{font-size:58.879976pt;}
.fs2_c00383{font-size:63.999974pt;}
.y0_c00383{bottom:0.000000pt;}
.y11_c00383{bottom:2.559136pt;}
.y13_c00383{bottom:2.559147pt;}
.y16_c00383{bottom:2.559159pt;}
.y19_c00383{bottom:2.559173pt;}
.y1c_c00383{bottom:2.559186pt;}
.y1f_c00383{bottom:2.559199pt;}
.y22_c00383{bottom:2.559213pt;}
.y25_c00383{bottom:2.559226pt;}
.y28_c00383{bottom:2.559240pt;}
.y2b_c00383{bottom:2.559251pt;}
.y2e_c00383{bottom:2.559265pt;}
.y31_c00383{bottom:2.559278pt;}
.y34_c00383{bottom:2.559292pt;}
.y37_c00383{bottom:2.559305pt;}
.y3a_c00383{bottom:2.559319pt;}
.y3d_c00383{bottom:2.559332pt;}
.y40_c00383{bottom:2.559346pt;}
.y43_c00383{bottom:2.559361pt;}
.y46_c00383{bottom:2.559375pt;}
.y49_c00383{bottom:2.559389pt;}
.y4d_c00383{bottom:2.559722pt;}
.yd_c00383{bottom:2.879112pt;}
.ya_c00383{bottom:2.879124pt;}
.y4_c00383{bottom:67.466640pt;}
.y3_c00383{bottom:101.386626pt;}
.y4b_c00383{bottom:145.386609pt;}
.y4c_c00383{bottom:158.666880pt;}
.y4a_c00383{bottom:161.226602pt;}
.y48_c00383{bottom:192.267200pt;}
.y47_c00383{bottom:194.826589pt;}
.y45_c00383{bottom:225.867200pt;}
.y44_c00383{bottom:228.426575pt;}
.y42_c00383{bottom:261.867200pt;}
.y41_c00383{bottom:264.426561pt;}
.y3f_c00383{bottom:297.867200pt;}
.y3e_c00383{bottom:300.426546pt;}
.y3c_c00383{bottom:333.867200pt;}
.y3b_c00383{bottom:336.426532pt;}
.y39_c00383{bottom:367.467200pt;}
.y38_c00383{bottom:370.026519pt;}
.y36_c00383{bottom:401.067200pt;}
.y35_c00383{bottom:403.626505pt;}
.y33_c00383{bottom:434.667200pt;}
.y32_c00383{bottom:437.226492pt;}
.y30_c00383{bottom:468.267200pt;}
.y2f_c00383{bottom:470.826478pt;}
.y2d_c00383{bottom:501.867200pt;}
.y2c_c00383{bottom:504.426465pt;}
.y2a_c00383{bottom:535.467200pt;}
.y29_c00383{bottom:538.026451pt;}
.y27_c00383{bottom:564.747200pt;}
.y26_c00383{bottom:567.306440pt;}
.y24_c00383{bottom:598.347200pt;}
.y23_c00383{bottom:600.906426pt;}
.y21_c00383{bottom:631.947200pt;}
.y20_c00383{bottom:634.506413pt;}
.y1e_c00383{bottom:665.547200pt;}
.y1d_c00383{bottom:668.106399pt;}
.y1b_c00383{bottom:699.147200pt;}
.y1a_c00383{bottom:701.706386pt;}
.y18_c00383{bottom:732.747200pt;}
.y17_c00383{bottom:735.306373pt;}
.y15_c00383{bottom:766.347200pt;}
.y14_c00383{bottom:768.906359pt;}
.y12_c00383{bottom:795.467200pt;}
.yf_c00383{bottom:798.026347pt;}
.y10_c00383{bottom:824.747200pt;}
.ye_c00383{bottom:827.306336pt;}
.y9_c00383{bottom:854.507200pt;}
.y8_c00383{bottom:857.386324pt;}
.yb_c00383{bottom:873.226317pt;}
.yc_c00383{bottom:883.787200pt;}
.y7_c00383{bottom:922.666298pt;}
.y6_c00383{bottom:956.746284pt;}
.y5_c00383{bottom:993.706269pt;}
.y2_c00383{bottom:1028.586255pt;}
.y1_c00383{bottom:1063.146241pt;}
.h7_c00383{height:13.280000pt;}
.h9_c00383{height:13.280320pt;}
.h6_c00383{height:13.760000pt;}
.h5_c00383{height:14.080000pt;}
.h2_c00383{height:48.558731pt;}
.h4_c00383{height:50.062480pt;}
.h1_c00383{height:52.134354pt;}
.h3_c00383{height:64.499974pt;}
.h8_c00383{height:113.422455pt;}
.h0_c00383{height:1122.666667pt;}
.w1_c00383{width:6.240000pt;}
.w2_c00383{width:6.720000pt;}
.w0_c00383{width:793.333333pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:113.439955pt;}
.x5_c00383{left:164.319934pt;}
.x3_c00383{left:177.439929pt;}
.x4_c00383{left:258.239897pt;}
.x2_c00383{left:385.759568pt;}
.xd_c00383{left:478.399809pt;}
.xc_c00383{left:490.079804pt;}
.x6_c00383{left:507.200000pt;}
.x7_c00383{left:534.239786pt;}
.x8_c00383{left:550.399780pt;}
.xe_c00383{left:566.079774pt;}
.x10_c00383{left:626.079750pt;}
.xf_c00383{left:629.439748pt;}
.x9_c00383{left:633.760000pt;}
.x12_c00383{left:646.239742pt;}
.xb_c00383{left:657.919737pt;}
.xa_c00383{left:663.200000pt;}
.x11_c00383{left:680.320000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_460320d264002d17c4b508a3.woff2')format("woff");}.ff1_c00384{font-family:ff1_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:ff2_c00384;src:url('chunks/assets/font_383e8ecac171db80295d172d.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_d8bd01bfdd646cdbe2da808d.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_57cb7a5b4b86dce8b0755fde.woff2')format("woff");}.ff4_c00384{font-family:ff4_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;}
.m0_c00384{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1_c00384{vertical-align:-9.359996px;}
.v0_c00384{vertical-align:0.000000px;}
.ls1_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:7.935297px;}
.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:-17.999993px;}
.ws0_c00384{word-spacing:-15.011994px;}
.ws2_c00384{word-spacing:0.000000px;}
._1_c00384{margin-left:-1.105374px;}
._0_c00384{width:1.478392px;}
._10_c00384{width:3.374448px;}
._11_c00384{width:4.521788px;}
._d_c00384{width:5.523954px;}
._c_c00384{width:6.564052px;}
._e_c00384{width:8.653396px;}
._f_c00384{width:9.864006px;}
._12_c00384{width:11.444053px;}
._13_c00384{width:13.447111px;}
._14_c00384{width:14.678041px;}
._5_c00384{width:45.735994px;}
._b_c00384{width:91.121982px;}
._4_c00384{width:187.753526px;}
._3_c00384{width:206.971327px;}
._8_c00384{width:248.055240px;}
._7_c00384{width:266.765565px;}
._6_c00384{width:318.996192px;}
._2_c00384{width:570.906091px;}
._9_c00384{width:790.038004px;}
._a_c00384{width:814.013994px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs2_c00384{font-size:53.999978px;}
.fs0_c00384{font-size:59.759976px;}
.fs1_c00384{font-size:66.239974px;}
.fs3_c00384{font-size:71.999971px;}
.y0_c00384{bottom:0.000000px;}
.y7_c00384{bottom:2.878944px;}
.ya_c00384{bottom:2.878959px;}
.yd_c00384{bottom:2.878974px;}
.y10_c00384{bottom:2.878987px;}
.y4_c00384{bottom:75.900270px;}
.y3_c00384{bottom:114.060254px;}
.y23_c00384{bottom:434.099826px;}
.y22_c00384{bottom:465.239814px;}
.y21_c00384{bottom:496.199802px;}
.y20_c00384{bottom:527.339789px;}
.y1f_c00384{bottom:558.299777px;}
.y1e_c00384{bottom:589.439764px;}
.y1d_c00384{bottom:620.399752px;}
.y1c_c00384{bottom:651.359739px;}
.y1b_c00384{bottom:682.499727px;}
.y1a_c00384{bottom:713.459715px;}
.y19_c00384{bottom:744.599702px;}
.y18_c00384{bottom:775.559690px;}
.y17_c00384{bottom:806.699677px;}
.y16_c00384{bottom:837.659665px;}
.y15_c00384{bottom:868.799652px;}
.y14_c00384{bottom:899.759640px;}
.y13_c00384{bottom:930.899628px;}
.y12_c00384{bottom:961.859615px;}
.y11_c00384{bottom:992.999603px;}
.yf_c00384{bottom:1029.000600px;}
.ye_c00384{bottom:1031.879587px;}
.yc_c00384{bottom:1061.760600px;}
.yb_c00384{bottom:1064.639574px;}
.y9_c00384{bottom:1099.560600px;}
.y8_c00384{bottom:1102.439559px;}
.y6_c00384{bottom:1137.360600px;}
.y5_c00384{bottom:1140.239544px;}
.y2_c00384{bottom:1176.059530px;}
.y1_c00384{bottom:1196.219522px;}
.h4_c00384{height:14.940000px;}
.h2_c00384{height:54.628572px;}
.h3_c00384{height:56.320290px;}
.h1_c00384{height:58.651148px;}
.h5_c00384{height:70.664034px;}
.h0_c00384{height:1263.000000px;}
.w1_c00384{width:7.020000px;}
.w0_c00384{width:892.500000px;}
.x0_c00384{left:0.000000px;}
.x5_c00384{left:127.620262px;}
.x7_c00384{left:180.719930px;}
.x1_c00384{left:181.799927px;}
.x6_c00384{left:184.859926px;}
.x2_c00384{left:329.039408px;}
.x4_c00384{left:433.979826px;}
.x3_c00384{left:765.359694px;}
@media print{
.v1_c00384{vertical-align:-8.319997pt;}
.v0_c00384{vertical-align:0.000000pt;}
.ls1_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:7.053597pt;}
.ws1_c00384{word-spacing:-15.999994pt;}
.ws0_c00384{word-spacing:-13.343995pt;}
.ws2_c00384{word-spacing:0.000000pt;}
._1_c00384{margin-left:-0.982555pt;}
._0_c00384{width:1.314126pt;}
._10_c00384{width:2.999509pt;}
._11_c00384{width:4.019367pt;}
._d_c00384{width:4.910181pt;}
._c_c00384{width:5.834713pt;}
._e_c00384{width:7.691908pt;}
._f_c00384{width:8.768006pt;}
._12_c00384{width:10.172492pt;}
._13_c00384{width:11.952988pt;}
._14_c00384{width:13.047148pt;}
._5_c00384{width:40.654217pt;}
._b_c00384{width:80.997317pt;}
._4_c00384{width:166.892024pt;}
._3_c00384{width:183.974513pt;}
._8_c00384{width:220.493547pt;}
._7_c00384{width:237.124947pt;}
._6_c00384{width:283.552171pt;}
._2_c00384{width:507.472081pt;}
._9_c00384{width:702.256003pt;}
._a_c00384{width:723.567995pt;}
.fs2_c00384{font-size:47.999981pt;}
.fs0_c00384{font-size:53.119979pt;}
.fs1_c00384{font-size:58.879976pt;}
.fs3_c00384{font-size:63.999974pt;}
.y0_c00384{bottom:0.000000pt;}
.y7_c00384{bottom:2.559061pt;}
.ya_c00384{bottom:2.559075pt;}
.yd_c00384{bottom:2.559088pt;}
.y10_c00384{bottom:2.559100pt;}
.y4_c00384{bottom:67.466906pt;}
.y3_c00384{bottom:101.386893pt;}
.y23_c00384{bottom:385.866512pt;}
.y22_c00384{bottom:413.546501pt;}
.y21_c00384{bottom:441.066490pt;}
.y20_c00384{bottom:468.746479pt;}
.y1f_c00384{bottom:496.266468pt;}
.y1e_c00384{bottom:523.946457pt;}
.y1d_c00384{bottom:551.466446pt;}
.y1c_c00384{bottom:578.986435pt;}
.y1b_c00384{bottom:606.666424pt;}
.y1a_c00384{bottom:634.186413pt;}
.y19_c00384{bottom:661.866402pt;}
.y18_c00384{bottom:689.386391pt;}
.y17_c00384{bottom:717.066380pt;}
.y16_c00384{bottom:744.586369pt;}
.y15_c00384{bottom:772.266358pt;}
.y14_c00384{bottom:799.786347pt;}
.y13_c00384{bottom:827.466336pt;}
.y12_c00384{bottom:854.986325pt;}
.y11_c00384{bottom:882.666314pt;}
.yf_c00384{bottom:914.667200pt;}
.ye_c00384{bottom:917.226300pt;}
.yc_c00384{bottom:943.787200pt;}
.yb_c00384{bottom:946.346288pt;}
.y9_c00384{bottom:977.387200pt;}
.y8_c00384{bottom:979.946275pt;}
.y6_c00384{bottom:1010.987200pt;}
.y5_c00384{bottom:1013.546261pt;}
.y2_c00384{bottom:1045.386249pt;}
.y1_c00384{bottom:1063.306241pt;}
.h4_c00384{height:13.280000pt;}
.h2_c00384{height:48.558731pt;}
.h3_c00384{height:50.062480pt;}
.h1_c00384{height:52.134354pt;}
.h5_c00384{height:62.812475pt;}
.h0_c00384{height:1122.666667pt;}
.w1_c00384{width:6.240000pt;}
.w0_c00384{width:793.333333pt;}
.x0_c00384{left:0.000000pt;}
.x5_c00384{left:113.440233pt;}
.x7_c00384{left:160.639938pt;}
.x1_c00384{left:161.599935pt;}
.x6_c00384{left:164.319934pt;}
.x2_c00384{left:292.479474pt;}
.x4_c00384{left:385.759846pt;}
.x3_c00384{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02be531933dd1f2089432f79.woff2')format("woff");}.ff1_c00385{font-family:ff1_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:ff2_c00385;src:url('chunks/assets/font_1caa333cbfa86ccff2483c7e.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.696777;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.v5_c00385{vertical-align:-73.439971px;}
.v4_c00385{vertical-align:-59.759976px;}
.v6_c00385{vertical-align:-50.399980px;}
.v2_c00385{vertical-align:-46.079982px;}
.v3_c00385{vertical-align:-42.479983px;}
.v1_c00385{vertical-align:-36.719985px;}
.v0_c00385{vertical-align:0.000000px;}
.ls2_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.009900px;}
.ls1_c00385{letter-spacing:0.267188px;}
.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;}
}
.ws0_c00385{word-spacing:-16.559993px;}
.ws2_c00385{word-spacing:-15.237422px;}
.ws1_c00385{word-spacing:-13.505755px;}
.wsa_c00385{word-spacing:0.000000px;}
.ws8_c00385{word-spacing:50.817950px;}
.ws9_c00385{word-spacing:78.177939px;}
.ws7_c00385{word-spacing:82.497937px;}
.ws6_c00385{word-spacing:86.817936px;}
.ws4_c00385{word-spacing:307.857847px;}
.ws3_c00385{word-spacing:313.617845px;}
.ws5_c00385{word-spacing:789.736108px;}
._1_c00385{margin-left:-1.105374px;}
._0_c00385{width:1.195563px;}
.fc1_c00385{color:rgb(37,64,97);}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:59.759976px;}
.fs1_c00385{font-size:66.239974px;}
.fs2_c00385{font-size:71.999971px;}
.y0_c00385{bottom:0.000000px;}
.y4_c00385{bottom:75.719970px;}
.y3_c00385{bottom:113.879954px;}
.y9_c00385{bottom:164.099934px;}
.y8_c00385{bottom:186.059926px;}
.y14_c00385{bottom:395.939842px;}
.y15_c00385{bottom:415.199834px;}
.y16_c00385{bottom:434.459826px;}
.y17_c00385{bottom:453.539819px;}
.y18_c00385{bottom:472.799811px;}
.y19_c00385{bottom:492.059803px;}
.y1a_c00385{bottom:511.319795px;}
.y1b_c00385{bottom:530.399788px;}
.y1c_c00385{bottom:549.659780px;}
.y1f_c00385{bottom:553.079779px;}
.y1d_c00385{bottom:568.919772px;}
.y1e_c00385{bottom:587.999765px;}
.y7_c00385{bottom:659.999736px;}
.y6_c00385{bottom:681.959727px;}
.y5_c00385{bottom:707.159717px;}
.y11_c00385{bottom:780.599688px;}
.y10_c00385{bottom:798.779680px;}
.yf_c00385{bottom:817.139673px;}
.ya_c00385{bottom:835.859666px;}
.yb_c00385{bottom:879.419648px;}
.yc_c00385{bottom:922.979631px;}
.y13_c00385{bottom:927.659629px;}
.y12_c00385{bottom:947.279621px;}
.yd_c00385{bottom:966.359613px;}
.ye_c00385{bottom:1009.919596px;}
.y2_c00385{bottom:1156.979537px;}
.y1_c00385{bottom:1195.859522px;}
.h3_c00385{height:45.410607px;}
.h7_c00385{height:49.284472px;}
.h2_c00385{height:54.628572px;}
.h1_c00385{height:58.651148px;}
.h4_c00385{height:65.010911px;}
.h6_c00385{height:66.757473px;}
.h5_c00385{height:70.664034px;}
.h0_c00385{height:1263.000000px;}
.w0_c00385{width:892.500000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:127.799949px;}
.x4_c00385{left:135.359922px;}
.xa_c00385{left:143.459943px;}
.x7_c00385{left:153.899938px;}
.x17_c00385{left:190.439924px;}
.xc_c00385{left:193.859922px;}
.xb_c00385{left:198.719921px;}
.x16_c00385{left:205.739918px;}
.xd_c00385{left:225.179910px;}
.x14_c00385{left:249.119900px;}
.xe_c00385{left:319.139872px;}
.xf_c00385{left:331.919867px;}
.x8_c00385{left:376.739187px;}
.x15_c00385{left:382.139847px;}
.x5_c00385{left:420.660546px;}
.x2_c00385{left:434.159514px;}
.x10_c00385{left:463.859814px;}
.x6_c00385{left:472.499811px;}
.x11_c00385{left:487.079805px;}
.x18_c00385{left:502.739799px;}
.x9_c00385{left:516.419793px;}
.x13_c00385{left:588.059765px;}
.x12_c00385{left:597.059761px;}
.x3_c00385{left:759.959438px;}
@media print{
.v5_c00385{vertical-align:-65.279974pt;}
.v4_c00385{vertical-align:-53.119979pt;}
.v6_c00385{vertical-align:-44.799982pt;}
.v2_c00385{vertical-align:-40.959984pt;}
.v3_c00385{vertical-align:-37.759985pt;}
.v1_c00385{vertical-align:-32.639987pt;}
.v0_c00385{vertical-align:0.000000pt;}
.ls2_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.008800pt;}
.ls1_c00385{letter-spacing:0.237500pt;}
.ws0_c00385{word-spacing:-14.719994pt;}
.ws2_c00385{word-spacing:-13.544375pt;}
.ws1_c00385{word-spacing:-12.005115pt;}
.wsa_c00385{word-spacing:0.000000pt;}
.ws8_c00385{word-spacing:45.171511pt;}
.ws9_c00385{word-spacing:69.491501pt;}
.ws7_c00385{word-spacing:73.331500pt;}
.ws6_c00385{word-spacing:77.171498pt;}
.ws4_c00385{word-spacing:273.651420pt;}
.ws3_c00385{word-spacing:278.771418pt;}
.ws5_c00385{word-spacing:701.987652pt;}
._1_c00385{margin-left:-0.982555pt;}
._0_c00385{width:1.062723pt;}
.fs0_c00385{font-size:53.119979pt;}
.fs1_c00385{font-size:58.879976pt;}
.fs2_c00385{font-size:63.999974pt;}
.y0_c00385{bottom:0.000000pt;}
.y4_c00385{bottom:67.306640pt;}
.y3_c00385{bottom:101.226626pt;}
.y9_c00385{bottom:145.866608pt;}
.y8_c00385{bottom:165.386601pt;}
.y14_c00385{bottom:351.946526pt;}
.y15_c00385{bottom:369.066519pt;}
.y16_c00385{bottom:386.186512pt;}
.y17_c00385{bottom:403.146505pt;}
.y18_c00385{bottom:420.266499pt;}
.y19_c00385{bottom:437.386492pt;}
.y1a_c00385{bottom:454.506485pt;}
.y1b_c00385{bottom:471.466478pt;}
.y1c_c00385{bottom:488.586471pt;}
.y1f_c00385{bottom:491.626470pt;}
.y1d_c00385{bottom:505.706464pt;}
.y1e_c00385{bottom:522.666458pt;}
.y7_c00385{bottom:586.666432pt;}
.y6_c00385{bottom:606.186424pt;}
.y5_c00385{bottom:628.586415pt;}
.y11_c00385{bottom:693.866389pt;}
.y10_c00385{bottom:710.026383pt;}
.yf_c00385{bottom:726.346376pt;}
.ya_c00385{bottom:742.986369pt;}
.yb_c00385{bottom:781.706354pt;}
.yc_c00385{bottom:820.426338pt;}
.y13_c00385{bottom:824.586337pt;}
.y12_c00385{bottom:842.026330pt;}
.yd_c00385{bottom:858.986323pt;}
.ye_c00385{bottom:897.706308pt;}
.y2_c00385{bottom:1028.426255pt;}
.y1_c00385{bottom:1062.986241pt;}
.h3_c00385{height:40.364984pt;}
.h7_c00385{height:43.808420pt;}
.h2_c00385{height:48.558731pt;}
.h1_c00385{height:52.134354pt;}
.h4_c00385{height:57.787477pt;}
.h6_c00385{height:59.339976pt;}
.h5_c00385{height:62.812475pt;}
.h0_c00385{height:1122.666667pt;}
.w0_c00385{width:793.333333pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:113.599955pt;}
.x4_c00385{left:120.319931pt;}
.xa_c00385{left:127.519949pt;}
.x7_c00385{left:136.799945pt;}
.x17_c00385{left:169.279932pt;}
.xc_c00385{left:172.319931pt;}
.xb_c00385{left:176.639929pt;}
.x16_c00385{left:182.879927pt;}
.xd_c00385{left:200.159920pt;}
.x14_c00385{left:221.439911pt;}
.xe_c00385{left:283.679887pt;}
.xf_c00385{left:295.039882pt;}
.x8_c00385{left:334.879277pt;}
.x15_c00385{left:339.679864pt;}
.x5_c00385{left:373.920486pt;}
.x2_c00385{left:385.919568pt;}
.x10_c00385{left:412.319835pt;}
.x6_c00385{left:419.999832pt;}
.x11_c00385{left:432.959827pt;}
.x18_c00385{left:446.879821pt;}
.x9_c00385{left:459.039816pt;}
.x13_c00385{left:522.719791pt;}
.x12_c00385{left:530.719788pt;}
.x3_c00385{left:675.519501pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2578d1432f609de31991f5f.woff2')format("woff");}.ff1_c00386{font-family:ff1_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:ff2_c00386;src:url('chunks/assets/font_15d1b1dff52f719f700d8f6d.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:0.696777;font-style:normal;font-weight:normal;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_45279b67425f35a742d74840.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_0961bb1e00edac80bc93d7c3.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.v2_c00386{vertical-align:35.999986px;}
.v1_c00386{vertical-align:71.279971px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00386{word-spacing:-15.245389px;}
.ws0_c00386{word-spacing:-15.011994px;}
.ws2_c00386{word-spacing:0.000000px;}
._1_c00386{margin-left:-1.105374px;}
._0_c00386{width:1.478392px;}
._6_c00386{width:11.961310px;}
._4_c00386{width:13.020846px;}
._5_c00386{width:14.126413px;}
._3_c00386{width:29.954308px;}
._2_c00386{width:31.528818px;}
._8_c00386{width:75.228717px;}
._12_c00386{width:78.799820px;}
._9_c00386{width:97.880551px;}
._b_c00386{width:114.817805px;}
._a_c00386{width:182.533941px;}
._f_c00386{width:598.111158px;}
._10_c00386{width:640.123141px;}
._c_c00386{width:667.442148px;}
._d_c00386{width:670.574146px;}
._13_c00386{width:736.562120px;}
._e_c00386{width:781.598102px;}
._11_c00386{width:811.568090px;}
._7_c00386{width:968.467749px;}
._14_c00386{width:1118.463819px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs3_c00386{font-size:53.999978px;}
.fs0_c00386{font-size:59.759976px;}
.fs1_c00386{font-size:66.239974px;}
.fs2_c00386{font-size:71.999971px;}
.y0_c00386{bottom:0.000000px;}
.y11_c00386{bottom:2.879085px;}
.y16_c00386{bottom:2.879105px;}
.y1c_c00386{bottom:2.879129px;}
.y1f_c00386{bottom:2.879150px;}
.y23_c00386{bottom:2.879166px;}
.y27_c00386{bottom:2.879183px;}
.y2a_c00386{bottom:2.879196px;}
.y2d_c00386{bottom:2.879209px;}
.y36_c00386{bottom:2.879302px;}
.y3c_c00386{bottom:2.879325px;}
.y4_c00386{bottom:75.900270px;}
.y3_c00386{bottom:114.060254px;}
.y3a_c00386{bottom:168.599933px;}
.y3b_c00386{bottom:183.540600px;}
.y39_c00386{bottom:186.419925px;}
.y38_c00386{bottom:204.419918px;}
.y34_c00386{bottom:237.179905px;}
.y35_c00386{bottom:243.300600px;}
.y37_c00386{bottom:246.179902px;}
.y33_c00386{bottom:254.999898px;}
.y32_c00386{bottom:290.099884px;}
.y31_c00386{bottom:343.379863px;}
.y30_c00386{bottom:376.319849px;}
.y2f_c00386{bottom:409.259836px;}
.y2e_c00386{bottom:441.659823px;}
.y2c_c00386{bottom:473.880600px;}
.y2b_c00386{bottom:476.759809px;}
.y29_c00386{bottom:506.820600px;}
.y28_c00386{bottom:509.699796px;}
.y26_c00386{bottom:539.580600px;}
.y25_c00386{bottom:542.459783px;}
.y21_c00386{bottom:575.399770px;}
.y22_c00386{bottom:581.340600px;}
.y24_c00386{bottom:584.219766px;}
.y20_c00386{bottom:593.219763px;}
.y1e_c00386{bottom:623.100600px;}
.y1d_c00386{bottom:625.979750px;}
.y1a_c00386{bottom:658.919736px;}
.y1b_c00386{bottom:673.860600px;}
.y19_c00386{bottom:676.739729px;}
.y18_c00386{bottom:694.559722px;}
.y14_c00386{bottom:727.499709px;}
.y15_c00386{bottom:733.440600px;}
.y17_c00386{bottom:736.319705px;}
.y13_c00386{bottom:745.319702px;}
.yf_c00386{bottom:778.079689px;}
.y10_c00386{bottom:784.200600px;}
.y12_c00386{bottom:787.079685px;}
.ye_c00386{bottom:796.079682px;}
.yd_c00386{bottom:831.179668px;}
.yc_c00386{bottom:884.459646px;}
.yb_c00386{bottom:917.219633px;}
.ya_c00386{bottom:951.959619px;}
.y9_c00386{bottom:997.319601px;}
.y8_c00386{bottom:1028.459589px;}
.y7_c00386{bottom:1059.419576px;}
.y6_c00386{bottom:1105.499558px;}
.y5_c00386{bottom:1136.459545px;}
.y2_c00386{bottom:1176.059530px;}
.y1_c00386{bottom:1196.219522px;}
.h8_c00386{height:14.940000px;}
.h4_c00386{height:45.410607px;}
.h2_c00386{height:54.628572px;}
.h5_c00386{height:56.320290px;}
.h1_c00386{height:58.651148px;}
.h3_c00386{height:70.664034px;}
.h9_c00386{height:91.600276px;}
.h7_c00386{height:92.320276px;}
.h6_c00386{height:127.600261px;}
.h0_c00386{height:1263.000000px;}
.w3_c00386{width:3.240000px;}
.w2_c00386{width:6.840000px;}
.w1_c00386{width:7.020000px;}
.w0_c00386{width:892.500000px;}
.x0_c00386{left:0.000000px;}
.x5_c00386{left:127.620262px;}
.x7_c00386{left:134.459946px;}
.x6_c00386{left:180.719928px;}
.x1_c00386{left:181.799927px;}
.xa_c00386{left:211.139916px;}
.x2_c00386{left:329.039408px;}
.x4_c00386{left:433.979826px;}
.xb_c00386{left:455.220000px;}
.x16_c00386{left:507.959797px;}
.xc_c00386{left:515.519794px;}
.xd_c00386{left:541.800000px;}
.x8_c00386{left:580.679768px;}
.x13_c00386{left:607.139757px;}
.xe_c00386{left:614.699754px;}
.xf_c00386{left:640.980000px;}
.x15_c00386{left:644.760000px;}
.x9_c00386{left:664.559734px;}
.x12_c00386{left:706.499717px;}
.x10_c00386{left:714.059714px;}
.x11_c00386{left:740.340000px;}
.x14_c00386{left:744.120000px;}
.x3_c00386{left:765.359694px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.v2_c00386{vertical-align:31.999987pt;}
.v1_c00386{vertical-align:63.359975pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:0.207463pt;}
.ws1_c00386{word-spacing:-13.551457pt;}
.ws0_c00386{word-spacing:-13.343995pt;}
.ws2_c00386{word-spacing:0.000000pt;}
._1_c00386{margin-left:-0.982555pt;}
._0_c00386{width:1.314126pt;}
._6_c00386{width:10.632276pt;}
._4_c00386{width:11.574086pt;}
._5_c00386{width:12.556812pt;}
._3_c00386{width:26.626052pt;}
._2_c00386{width:28.025616pt;}
._8_c00386{width:66.869971pt;}
._12_c00386{width:70.044284pt;}
._9_c00386{width:87.004934pt;}
._b_c00386{width:102.060271pt;}
._a_c00386{width:162.252392pt;}
._f_c00386{width:531.654362pt;}
._10_c00386{width:568.998347pt;}
._c_c00386{width:593.281909pt;}
._d_c00386{width:596.065908pt;}
._13_c00386{width:654.721884pt;}
._e_c00386{width:694.753868pt;}
._11_c00386{width:721.393858pt;}
._7_c00386{width:860.860221pt;}
._14_c00386{width:994.190061pt;}
.fs3_c00386{font-size:47.999981pt;}
.fs0_c00386{font-size:53.119979pt;}
.fs1_c00386{font-size:58.879976pt;}
.fs2_c00386{font-size:63.999974pt;}
.y0_c00386{bottom:0.000000pt;}
.y11_c00386{bottom:2.559187pt;}
.y16_c00386{bottom:2.559205pt;}
.y1c_c00386{bottom:2.559226pt;}
.y1f_c00386{bottom:2.559244pt;}
.y23_c00386{bottom:2.559259pt;}
.y27_c00386{bottom:2.559274pt;}
.y2a_c00386{bottom:2.559285pt;}
.y2d_c00386{bottom:2.559297pt;}
.y36_c00386{bottom:2.559379pt;}
.y3c_c00386{bottom:2.559400pt;}
.y4_c00386{bottom:67.466906pt;}
.y3_c00386{bottom:101.386893pt;}
.y3a_c00386{bottom:149.866607pt;}
.y3b_c00386{bottom:163.147200pt;}
.y39_c00386{bottom:165.706600pt;}
.y38_c00386{bottom:181.706594pt;}
.y34_c00386{bottom:210.826582pt;}
.y35_c00386{bottom:216.267200pt;}
.y37_c00386{bottom:218.826579pt;}
.y33_c00386{bottom:226.666576pt;}
.y32_c00386{bottom:257.866564pt;}
.y31_c00386{bottom:305.226545pt;}
.y30_c00386{bottom:334.506533pt;}
.y2f_c00386{bottom:363.786521pt;}
.y2e_c00386{bottom:392.586510pt;}
.y2c_c00386{bottom:421.227200pt;}
.y2b_c00386{bottom:423.786497pt;}
.y29_c00386{bottom:450.507200pt;}
.y28_c00386{bottom:453.066485pt;}
.y26_c00386{bottom:479.627200pt;}
.y25_c00386{bottom:482.186474pt;}
.y21_c00386{bottom:511.466462pt;}
.y22_c00386{bottom:516.747200pt;}
.y24_c00386{bottom:519.306459pt;}
.y20_c00386{bottom:527.306456pt;}
.y1e_c00386{bottom:553.867200pt;}
.y1d_c00386{bottom:556.426444pt;}
.y1a_c00386{bottom:585.706432pt;}
.y1b_c00386{bottom:598.987200pt;}
.y19_c00386{bottom:601.546426pt;}
.y18_c00386{bottom:617.386420pt;}
.y14_c00386{bottom:646.666408pt;}
.y15_c00386{bottom:651.947200pt;}
.y17_c00386{bottom:654.506405pt;}
.y13_c00386{bottom:662.506402pt;}
.yf_c00386{bottom:691.626390pt;}
.y10_c00386{bottom:697.067200pt;}
.y12_c00386{bottom:699.626387pt;}
.ye_c00386{bottom:707.626384pt;}
.yd_c00386{bottom:738.826371pt;}
.yc_c00386{bottom:786.186352pt;}
.yb_c00386{bottom:815.306341pt;}
.ya_c00386{bottom:846.186328pt;}
.y9_c00386{bottom:886.506312pt;}
.y8_c00386{bottom:914.186301pt;}
.y7_c00386{bottom:941.706290pt;}
.y6_c00386{bottom:982.666274pt;}
.y5_c00386{bottom:1010.186263pt;}
.y2_c00386{bottom:1045.386249pt;}
.y1_c00386{bottom:1063.306241pt;}
.h8_c00386{height:13.280000pt;}
.h4_c00386{height:40.364984pt;}
.h2_c00386{height:48.558731pt;}
.h5_c00386{height:50.062480pt;}
.h1_c00386{height:52.134354pt;}
.h3_c00386{height:62.812475pt;}
.h9_c00386{height:81.422467pt;}
.h7_c00386{height:82.062467pt;}
.h6_c00386{height:113.422455pt;}
.h0_c00386{height:1122.666667pt;}
.w3_c00386{width:2.880000pt;}
.w2_c00386{width:6.080000pt;}
.w1_c00386{width:6.240000pt;}
.w0_c00386{width:793.333333pt;}
.x0_c00386{left:0.000000pt;}
.x5_c00386{left:113.440233pt;}
.x7_c00386{left:119.519952pt;}
.x6_c00386{left:160.639936pt;}
.x1_c00386{left:161.599935pt;}
.xa_c00386{left:187.679925pt;}
.x2_c00386{left:292.479474pt;}
.x4_c00386{left:385.759846pt;}
.xb_c00386{left:404.640000pt;}
.x16_c00386{left:451.519819pt;}
.xc_c00386{left:458.239817pt;}
.xd_c00386{left:481.600000pt;}
.x8_c00386{left:516.159794pt;}
.x13_c00386{left:539.679784pt;}
.xe_c00386{left:546.399781pt;}
.xf_c00386{left:569.760000pt;}
.x15_c00386{left:573.120000pt;}
.x9_c00386{left:590.719764pt;}
.x12_c00386{left:627.999749pt;}
.x10_c00386{left:634.719746pt;}
.x11_c00386{left:658.080000pt;}
.x14_c00386{left:661.440000pt;}
.x3_c00386{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00387{font-family:ff1_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:ff2_c00387;src:url('chunks/assets/font_f07792f6a979271b181835d1.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_768ff568145afafb89892995.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_817d20a3877cdea1d2118e3c.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.v1_c00387{vertical-align:35.999986px;}
.v2_c00387{vertical-align:71.279971px;}
.ls1_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00387{word-spacing:-15.011994px;}
.ws2_c00387{word-spacing:0.000000px;}
._1_c00387{margin-left:-1.105374px;}
._0_c00387{width:1.195563px;}
._8_c00387{width:75.228717px;}
._4_c00387{width:78.799820px;}
._9_c00387{width:97.880551px;}
._b_c00387{width:114.817805px;}
._a_c00387{width:182.533941px;}
._17_c00387{width:392.562310px;}
._10_c00387{width:601.611087px;}
._d_c00387{width:638.824636px;}
._2_c00387{width:640.405970px;}
._11_c00387{width:644.728445px;}
._c_c00387{width:671.764623px;}
._e_c00387{width:674.896621px;}
._12_c00387{width:692.824614px;}
._5_c00387{width:736.562120px;}
._14_c00387{width:740.884595px;}
._f_c00387{width:785.920577px;}
._3_c00387{width:811.568090px;}
._13_c00387{width:815.890565px;}
._16_c00387{width:946.855373px;}
._7_c00387{width:972.790224px;}
._6_c00387{width:1118.463819px;}
._15_c00387{width:1122.786294px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs2_c00387{font-size:53.999978px;}
.fs0_c00387{font-size:59.759976px;}
.fs1_c00387{font-size:66.239974px;}
.y0_c00387{bottom:0.000000px;}
.y8_c00387{bottom:2.878955px;}
.yc_c00387{bottom:2.878971px;}
.yf_c00387{bottom:2.878985px;}
.y12_c00387{bottom:2.878998px;}
.y1a_c00387{bottom:2.879077px;}
.y20_c00387{bottom:2.879101px;}
.y24_c00387{bottom:2.879125px;}
.y2a_c00387{bottom:2.879148px;}
.y2d_c00387{bottom:2.879169px;}
.y31_c00387{bottom:2.879185px;}
.y37_c00387{bottom:2.879209px;}
.y3a_c00387{bottom:2.879230px;}
.y3d_c00387{bottom:2.879243px;}
.y40_c00387{bottom:2.879256px;}
.y48_c00387{bottom:2.879695px;}
.y4_c00387{bottom:75.899970px;}
.y3_c00387{bottom:114.059954px;}
.y46_c00387{bottom:153.659939px;}
.y47_c00387{bottom:159.600240px;}
.y49_c00387{bottom:162.479935px;}
.y45_c00387{bottom:171.479931px;}
.y44_c00387{bottom:206.579917px;}
.y43_c00387{bottom:259.859896px;}
.y42_c00387{bottom:292.799883px;}
.y41_c00387{bottom:325.559870px;}
.y3f_c00387{bottom:357.420600px;}
.y3e_c00387{bottom:360.299856px;}
.y3c_c00387{bottom:390.360600px;}
.y3b_c00387{bottom:393.239843px;}
.y39_c00387{bottom:423.120600px;}
.y38_c00387{bottom:425.999830px;}
.y35_c00387{bottom:458.939816px;}
.y36_c00387{bottom:473.880600px;}
.y34_c00387{bottom:476.759809px;}
.y33_c00387{bottom:494.579802px;}
.y2f_c00387{bottom:527.519789px;}
.y30_c00387{bottom:533.460600px;}
.y32_c00387{bottom:536.339785px;}
.y2e_c00387{bottom:545.339782px;}
.y2c_c00387{bottom:575.220600px;}
.y2b_c00387{bottom:578.099769px;}
.y28_c00387{bottom:611.039756px;}
.y29_c00387{bottom:625.980600px;}
.y27_c00387{bottom:628.859748px;}
.y26_c00387{bottom:646.679741px;}
.y22_c00387{bottom:679.619728px;}
.y23_c00387{bottom:685.560600px;}
.y25_c00387{bottom:688.439725px;}
.y21_c00387{bottom:697.439721px;}
.y1e_c00387{bottom:730.379708px;}
.y1f_c00387{bottom:745.320600px;}
.y1d_c00387{bottom:748.199701px;}
.y1c_c00387{bottom:766.019694px;}
.y18_c00387{bottom:798.779680px;}
.y19_c00387{bottom:804.900600px;}
.y1b_c00387{bottom:807.779677px;}
.y17_c00387{bottom:816.779673px;}
.y16_c00387{bottom:851.879659px;}
.y15_c00387{bottom:905.159638px;}
.y14_c00387{bottom:937.919625px;}
.y13_c00387{bottom:970.859612px;}
.y11_c00387{bottom:1002.720600px;}
.y10_c00387{bottom:1005.599598px;}
.ye_c00387{bottom:1035.480600px;}
.yd_c00387{bottom:1038.359585px;}
.yb_c00387{bottom:1068.420600px;}
.ya_c00387{bottom:1071.299571px;}
.y6_c00387{bottom:1104.059558px;}
.y7_c00387{bottom:1110.180600px;}
.y9_c00387{bottom:1113.059555px;}
.y5_c00387{bottom:1122.059551px;}
.y2_c00387{bottom:1157.159537px;}
.y1_c00387{bottom:1196.039522px;}
.h5_c00387{height:14.940000px;}
.h2_c00387{height:54.628572px;}
.h3_c00387{height:56.320290px;}
.h1_c00387{height:58.651148px;}
.h7_c00387{height:91.600276px;}
.h4_c00387{height:92.320276px;}
.h6_c00387{height:127.600261px;}
.h0_c00387{height:1263.000000px;}
.w3_c00387{width:3.240000px;}
.w2_c00387{width:6.840000px;}
.w1_c00387{width:7.020000px;}
.w4_c00387{width:7.200000px;}
.w0_c00387{width:892.500000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:127.619949px;}
.xd_c00387{left:134.459946px;}
.x3_c00387{left:211.139916px;}
.x2_c00387{left:433.979514px;}
.x20_c00387{left:449.820000px;}
.x4_c00387{left:455.220000px;}
.x12_c00387{left:456.300000px;}
.xf_c00387{left:507.959797px;}
.x1d_c00387{left:509.039796px;}
.x21_c00387{left:510.119796px;}
.x5_c00387{left:515.519794px;}
.x13_c00387{left:516.599793px;}
.x22_c00387{left:536.400000px;}
.x6_c00387{left:541.800000px;}
.x14_c00387{left:542.880000px;}
.x1e_c00387{left:575.279770px;}
.x10_c00387{left:581.759767px;}
.xb_c00387{left:607.139757px;}
.x1a_c00387{left:608.219757px;}
.x23_c00387{left:609.299756px;}
.x7_c00387{left:614.699754px;}
.x15_c00387{left:615.779754px;}
.x24_c00387{left:635.580000px;}
.x8_c00387{left:640.980000px;}
.x16_c00387{left:642.060000px;}
.xe_c00387{left:644.760000px;}
.x1c_c00387{left:645.840000px;}
.x1f_c00387{left:659.159736px;}
.x11_c00387{left:665.639734px;}
.x9_c00387{left:706.499717px;}
.x19_c00387{left:707.579717px;}
.x25_c00387{left:708.659717px;}
.x17_c00387{left:715.139714px;}
.x26_c00387{left:734.940000px;}
.xa_c00387{left:740.340000px;}
.x18_c00387{left:741.420000px;}
.xc_c00387{left:744.120000px;}
.x1b_c00387{left:745.200000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.v1_c00387{vertical-align:31.999987pt;}
.v2_c00387{vertical-align:63.359975pt;}
.ls1_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:0.207463pt;}
.ws1_c00387{word-spacing:-13.551457pt;}
.ws0_c00387{word-spacing:-13.343995pt;}
.ws2_c00387{word-spacing:0.000000pt;}
._1_c00387{margin-left:-0.982555pt;}
._0_c00387{width:1.062723pt;}
._8_c00387{width:66.869971pt;}
._4_c00387{width:70.044284pt;}
._9_c00387{width:87.004934pt;}
._b_c00387{width:102.060271pt;}
._a_c00387{width:162.252392pt;}
._17_c00387{width:348.944276pt;}
._10_c00387{width:534.765411pt;}
._d_c00387{width:567.844121pt;}
._2_c00387{width:569.249751pt;}
._11_c00387{width:573.091951pt;}
._c_c00387{width:597.124109pt;}
._e_c00387{width:599.908108pt;}
._12_c00387{width:615.844102pt;}
._5_c00387{width:654.721884pt;}
._14_c00387{width:658.564085pt;}
._f_c00387{width:698.596068pt;}
._3_c00387{width:721.393858pt;}
._13_c00387{width:725.236058pt;}
._16_c00387{width:841.649221pt;}
._7_c00387{width:864.702421pt;}
._6_c00387{width:994.190061pt;}
._15_c00387{width:998.032261pt;}
.fs2_c00387{font-size:47.999981pt;}
.fs0_c00387{font-size:53.119979pt;}
.fs1_c00387{font-size:58.879976pt;}
.y0_c00387{bottom:0.000000pt;}
.y8_c00387{bottom:2.559071pt;}
.yc_c00387{bottom:2.559086pt;}
.yf_c00387{bottom:2.559097pt;}
.y12_c00387{bottom:2.559109pt;}
.y1a_c00387{bottom:2.559179pt;}
.y20_c00387{bottom:2.559201pt;}
.y24_c00387{bottom:2.559222pt;}
.y2a_c00387{bottom:2.559243pt;}
.y2d_c00387{bottom:2.559261pt;}
.y31_c00387{bottom:2.559276pt;}
.y37_c00387{bottom:2.559297pt;}
.y3a_c00387{bottom:2.559315pt;}
.y3d_c00387{bottom:2.559327pt;}
.y40_c00387{bottom:2.559339pt;}
.y48_c00387{bottom:2.559729pt;}
.y4_c00387{bottom:67.466640pt;}
.y3_c00387{bottom:101.386626pt;}
.y46_c00387{bottom:136.586612pt;}
.y47_c00387{bottom:141.866880pt;}
.y49_c00387{bottom:144.426609pt;}
.y45_c00387{bottom:152.426606pt;}
.y44_c00387{bottom:183.626593pt;}
.y43_c00387{bottom:230.986574pt;}
.y42_c00387{bottom:260.266563pt;}
.y41_c00387{bottom:289.386551pt;}
.y3f_c00387{bottom:317.707200pt;}
.y3e_c00387{bottom:320.266539pt;}
.y3c_c00387{bottom:346.987200pt;}
.y3b_c00387{bottom:349.546527pt;}
.y39_c00387{bottom:376.107200pt;}
.y38_c00387{bottom:378.666515pt;}
.y35_c00387{bottom:407.946503pt;}
.y36_c00387{bottom:421.227200pt;}
.y34_c00387{bottom:423.786497pt;}
.y33_c00387{bottom:439.626491pt;}
.y2f_c00387{bottom:468.906479pt;}
.y30_c00387{bottom:474.187200pt;}
.y32_c00387{bottom:476.746476pt;}
.y2e_c00387{bottom:484.746473pt;}
.y2c_c00387{bottom:511.307200pt;}
.y2b_c00387{bottom:513.866461pt;}
.y28_c00387{bottom:543.146449pt;}
.y29_c00387{bottom:556.427200pt;}
.y27_c00387{bottom:558.986443pt;}
.y26_c00387{bottom:574.826437pt;}
.y22_c00387{bottom:604.106425pt;}
.y23_c00387{bottom:609.387200pt;}
.y25_c00387{bottom:611.946422pt;}
.y21_c00387{bottom:619.946419pt;}
.y1e_c00387{bottom:649.226407pt;}
.y1f_c00387{bottom:662.507200pt;}
.y1d_c00387{bottom:665.066401pt;}
.y1c_c00387{bottom:680.906394pt;}
.y18_c00387{bottom:710.026383pt;}
.y19_c00387{bottom:715.467200pt;}
.y1b_c00387{bottom:718.026379pt;}
.y17_c00387{bottom:726.026376pt;}
.y16_c00387{bottom:757.226364pt;}
.y15_c00387{bottom:804.586345pt;}
.y14_c00387{bottom:833.706333pt;}
.y13_c00387{bottom:862.986321pt;}
.y11_c00387{bottom:891.307200pt;}
.y10_c00387{bottom:893.866309pt;}
.ye_c00387{bottom:920.427200pt;}
.yd_c00387{bottom:922.986297pt;}
.yb_c00387{bottom:949.707200pt;}
.ya_c00387{bottom:952.266286pt;}
.y6_c00387{bottom:981.386274pt;}
.y7_c00387{bottom:986.827200pt;}
.y9_c00387{bottom:989.386271pt;}
.y5_c00387{bottom:997.386268pt;}
.y2_c00387{bottom:1028.586255pt;}
.y1_c00387{bottom:1063.146241pt;}
.h5_c00387{height:13.280000pt;}
.h2_c00387{height:48.558731pt;}
.h3_c00387{height:50.062480pt;}
.h1_c00387{height:52.134354pt;}
.h7_c00387{height:81.422467pt;}
.h4_c00387{height:82.062467pt;}
.h6_c00387{height:113.422455pt;}
.h0_c00387{height:1122.666667pt;}
.w3_c00387{width:2.880000pt;}
.w2_c00387{width:6.080000pt;}
.w1_c00387{width:6.240000pt;}
.w4_c00387{width:6.400000pt;}
.w0_c00387{width:793.333333pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:113.439955pt;}
.xd_c00387{left:119.519952pt;}
.x3_c00387{left:187.679925pt;}
.x2_c00387{left:385.759568pt;}
.x20_c00387{left:399.840000pt;}
.x4_c00387{left:404.640000pt;}
.x12_c00387{left:405.600000pt;}
.xf_c00387{left:451.519819pt;}
.x1d_c00387{left:452.479819pt;}
.x21_c00387{left:453.439819pt;}
.x5_c00387{left:458.239817pt;}
.x13_c00387{left:459.199816pt;}
.x22_c00387{left:476.800000pt;}
.x6_c00387{left:481.600000pt;}
.x14_c00387{left:482.560000pt;}
.x1e_c00387{left:511.359795pt;}
.x10_c00387{left:517.119793pt;}
.xb_c00387{left:539.679784pt;}
.x1a_c00387{left:540.639784pt;}
.x23_c00387{left:541.599783pt;}
.x7_c00387{left:546.399781pt;}
.x15_c00387{left:547.359781pt;}
.x24_c00387{left:564.960000pt;}
.x8_c00387{left:569.760000pt;}
.x16_c00387{left:570.720000pt;}
.xe_c00387{left:573.120000pt;}
.x1c_c00387{left:574.080000pt;}
.x1f_c00387{left:585.919766pt;}
.x11_c00387{left:591.679763pt;}
.x9_c00387{left:627.999749pt;}
.x19_c00387{left:628.959748pt;}
.x25_c00387{left:629.919748pt;}
.x17_c00387{left:635.679746pt;}
.x26_c00387{left:653.280000pt;}
.xa_c00387{left:658.080000pt;}
.x18_c00387{left:659.040000pt;}
.xc_c00387{left:661.440000pt;}
.x1b_c00387{left:662.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00388{font-family:ff1_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:ff2_c00388;src:url('chunks/assets/font_50a7bba45982a3f99578d354.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_4f09849497922ec3ab087a3b.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:0.696777;font-style:normal;font-weight:normal;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_538ef6caa59dd7bd98511843.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.v1_c00388{vertical-align:35.999986px;}
.v2_c00388{vertical-align:71.279971px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00388{word-spacing:-15.245389px;}
.ws0_c00388{word-spacing:-15.011994px;}
.ws2_c00388{word-spacing:0.000000px;}
._1_c00388{margin-left:-1.105374px;}
._0_c00388{width:1.478392px;}
._a_c00388{width:75.228717px;}
._6_c00388{width:78.799820px;}
._b_c00388{width:97.880551px;}
._d_c00388{width:114.817805px;}
._c_c00388{width:182.533941px;}
._2_c00388{width:375.456863px;}
._10_c00388{width:598.111158px;}
._3_c00388{width:603.871789px;}
._17_c00388{width:638.824636px;}
._11_c00388{width:640.123141px;}
._4_c00388{width:666.889764px;}
._e_c00388{width:670.574146px;}
._16_c00388{width:671.764623px;}
._7_c00388{width:714.949745px;}
._13_c00388{width:736.562120px;}
._f_c00388{width:781.598102px;}
._5_c00388{width:789.955715px;}
._12_c00388{width:811.568090px;}
._9_c00388{width:968.467749px;}
._15_c00388{width:972.790224px;}
._8_c00388{width:1096.851443px;}
._14_c00388{width:1118.463819px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs2_c00388{font-size:53.999978px;}
.fs0_c00388{font-size:59.759976px;}
.fs1_c00388{font-size:66.239974px;}
.y0_c00388{bottom:0.000000px;}
.y8_c00388{bottom:2.878947px;}
.yd_c00388{bottom:2.878968px;}
.y13_c00388{bottom:2.878992px;}
.y16_c00388{bottom:2.879012px;}
.y19_c00388{bottom:2.879025px;}
.y1c_c00388{bottom:2.879038px;}
.y24_c00388{bottom:2.879119px;}
.y2a_c00388{bottom:2.879143px;}
.y2d_c00388{bottom:2.879164px;}
.y31_c00388{bottom:2.879180px;}
.y35_c00388{bottom:2.879197px;}
.y38_c00388{bottom:2.879210px;}
.y3b_c00388{bottom:2.879223px;}
.y43_c00388{bottom:2.879302px;}
.y49_c00388{bottom:2.879326px;}
.y4_c00388{bottom:75.900270px;}
.y3_c00388{bottom:114.060254px;}
.y47_c00388{bottom:166.619933px;}
.y48_c00388{bottom:181.560600px;}
.y46_c00388{bottom:184.439926px;}
.y45_c00388{bottom:202.439919px;}
.y41_c00388{bottom:235.199906px;}
.y42_c00388{bottom:241.320600px;}
.y44_c00388{bottom:244.199902px;}
.y40_c00388{bottom:253.019899px;}
.y3f_c00388{bottom:288.119885px;}
.y3e_c00388{bottom:341.399863px;}
.y3d_c00388{bottom:374.339850px;}
.y3c_c00388{bottom:407.279837px;}
.y3a_c00388{bottom:439.140600px;}
.y39_c00388{bottom:442.019823px;}
.y37_c00388{bottom:471.900600px;}
.y36_c00388{bottom:474.779810px;}
.y34_c00388{bottom:504.840600px;}
.y33_c00388{bottom:507.719797px;}
.y2f_c00388{bottom:540.479784px;}
.y30_c00388{bottom:546.600600px;}
.y32_c00388{bottom:549.479780px;}
.y2e_c00388{bottom:558.299777px;}
.y2c_c00388{bottom:588.360600px;}
.y2b_c00388{bottom:591.239764px;}
.y28_c00388{bottom:623.999750px;}
.y29_c00388{bottom:638.940600px;}
.y27_c00388{bottom:641.819743px;}
.y26_c00388{bottom:659.819736px;}
.y22_c00388{bottom:692.579723px;}
.y23_c00388{bottom:698.700600px;}
.y25_c00388{bottom:701.579719px;}
.y21_c00388{bottom:710.399716px;}
.y20_c00388{bottom:745.499702px;}
.y1f_c00388{bottom:798.959680px;}
.y1e_c00388{bottom:831.719667px;}
.y1d_c00388{bottom:866.459653px;}
.y1b_c00388{bottom:901.740600px;}
.y1a_c00388{bottom:904.619638px;}
.y18_c00388{bottom:934.680600px;}
.y17_c00388{bottom:937.559625px;}
.y15_c00388{bottom:967.440600px;}
.y14_c00388{bottom:970.319612px;}
.y11_c00388{bottom:1003.259599px;}
.y12_c00388{bottom:1018.200600px;}
.y10_c00388{bottom:1021.079592px;}
.yf_c00388{bottom:1038.899584px;}
.yb_c00388{bottom:1071.659571px;}
.yc_c00388{bottom:1077.780600px;}
.ye_c00388{bottom:1080.659568px;}
.ya_c00388{bottom:1089.659564px;}
.y6_c00388{bottom:1122.419551px;}
.y7_c00388{bottom:1128.540600px;}
.y9_c00388{bottom:1131.419547px;}
.y5_c00388{bottom:1140.239544px;}
.y2_c00388{bottom:1176.059530px;}
.y1_c00388{bottom:1196.219522px;}
.h5_c00388{height:14.940000px;}
.h7_c00388{height:45.410607px;}
.h2_c00388{height:54.628572px;}
.h3_c00388{height:56.320290px;}
.h1_c00388{height:58.651148px;}
.h4_c00388{height:92.320276px;}
.h6_c00388{height:127.600261px;}
.h8_c00388{height:128.320261px;}
.h0_c00388{height:1263.000000px;}
.w3_c00388{width:3.240000px;}
.w2_c00388{width:6.840000px;}
.w1_c00388{width:7.020000px;}
.w4_c00388{width:7.200000px;}
.w0_c00388{width:892.500000px;}
.x0_c00388{left:0.000000px;}
.x5_c00388{left:127.620262px;}
.x11_c00388{left:134.459946px;}
.x1_c00388{left:181.799927px;}
.x6_c00388{left:211.139916px;}
.x2_c00388{left:329.039408px;}
.x4_c00388{left:433.979826px;}
.x7_c00388{left:449.820000px;}
.x16_c00388{left:455.220000px;}
.x24_c00388{left:456.300000px;}
.x13_c00388{left:502.559799px;}
.x21_c00388{left:507.959797px;}
.x8_c00388{left:510.119796px;}
.x17_c00388{left:515.519794px;}
.x25_c00388{left:516.599793px;}
.x9_c00388{left:536.400000px;}
.x18_c00388{left:541.800000px;}
.x26_c00388{left:542.880000px;}
.x14_c00388{left:580.679768px;}
.x22_c00388{left:581.759767px;}
.xf_c00388{left:601.739759px;}
.x1e_c00388{left:607.139757px;}
.xa_c00388{left:609.299756px;}
.x19_c00388{left:614.699754px;}
.x27_c00388{left:615.779754px;}
.xb_c00388{left:635.580000px;}
.x12_c00388{left:639.360000px;}
.x1a_c00388{left:640.980000px;}
.x28_c00388{left:642.060000px;}
.x20_c00388{left:644.760000px;}
.x15_c00388{left:664.559734px;}
.x23_c00388{left:665.639734px;}
.xe_c00388{left:701.099720px;}
.x1d_c00388{left:706.499717px;}
.xc_c00388{left:708.659717px;}
.x1b_c00388{left:714.059714px;}
.x29_c00388{left:715.139714px;}
.xd_c00388{left:734.940000px;}
.x10_c00388{left:738.720000px;}
.x1c_c00388{left:740.340000px;}
.x2a_c00388{left:741.420000px;}
.x1f_c00388{left:744.120000px;}
.x3_c00388{left:765.359694px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.v1_c00388{vertical-align:31.999987pt;}
.v2_c00388{vertical-align:63.359975pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.207463pt;}
.ws1_c00388{word-spacing:-13.551457pt;}
.ws0_c00388{word-spacing:-13.343995pt;}
.ws2_c00388{word-spacing:0.000000pt;}
._1_c00388{margin-left:-0.982555pt;}
._0_c00388{width:1.314126pt;}
._a_c00388{width:66.869971pt;}
._6_c00388{width:70.044284pt;}
._b_c00388{width:87.004934pt;}
._d_c00388{width:102.060271pt;}
._c_c00388{width:162.252392pt;}
._2_c00388{width:333.739434pt;}
._10_c00388{width:531.654362pt;}
._3_c00388{width:536.774924pt;}
._17_c00388{width:567.844121pt;}
._11_c00388{width:568.998347pt;}
._4_c00388{width:592.790901pt;}
._e_c00388{width:596.065908pt;}
._16_c00388{width:597.124109pt;}
._7_c00388{width:635.510884pt;}
._13_c00388{width:654.721884pt;}
._f_c00388{width:694.753868pt;}
._5_c00388{width:702.182858pt;}
._12_c00388{width:721.393858pt;}
._9_c00388{width:860.860221pt;}
._15_c00388{width:864.702421pt;}
._8_c00388{width:974.979061pt;}
._14_c00388{width:994.190061pt;}
.fs2_c00388{font-size:47.999981pt;}
.fs0_c00388{font-size:53.119979pt;}
.fs1_c00388{font-size:58.879976pt;}
.y0_c00388{bottom:0.000000pt;}
.y8_c00388{bottom:2.559064pt;}
.yd_c00388{bottom:2.559082pt;}
.y13_c00388{bottom:2.559104pt;}
.y16_c00388{bottom:2.559122pt;}
.y19_c00388{bottom:2.559133pt;}
.y1c_c00388{bottom:2.559145pt;}
.y24_c00388{bottom:2.559217pt;}
.y2a_c00388{bottom:2.559238pt;}
.y2d_c00388{bottom:2.559256pt;}
.y31_c00388{bottom:2.559271pt;}
.y35_c00388{bottom:2.559286pt;}
.y38_c00388{bottom:2.559298pt;}
.y3b_c00388{bottom:2.559310pt;}
.y43_c00388{bottom:2.559380pt;}
.y49_c00388{bottom:2.559401pt;}
.y4_c00388{bottom:67.466906pt;}
.y3_c00388{bottom:101.386893pt;}
.y47_c00388{bottom:148.106607pt;}
.y48_c00388{bottom:161.387200pt;}
.y46_c00388{bottom:163.946601pt;}
.y45_c00388{bottom:179.946595pt;}
.y41_c00388{bottom:209.066583pt;}
.y42_c00388{bottom:214.507200pt;}
.y44_c00388{bottom:217.066580pt;}
.y40_c00388{bottom:224.906577pt;}
.y3f_c00388{bottom:256.106564pt;}
.y3e_c00388{bottom:303.466545pt;}
.y3d_c00388{bottom:332.746534pt;}
.y3c_c00388{bottom:362.026522pt;}
.y3a_c00388{bottom:390.347200pt;}
.y39_c00388{bottom:392.906510pt;}
.y37_c00388{bottom:419.467200pt;}
.y36_c00388{bottom:422.026498pt;}
.y34_c00388{bottom:448.747200pt;}
.y33_c00388{bottom:451.306486pt;}
.y2f_c00388{bottom:480.426474pt;}
.y30_c00388{bottom:485.867200pt;}
.y32_c00388{bottom:488.426471pt;}
.y2e_c00388{bottom:496.266468pt;}
.y2c_c00388{bottom:522.987200pt;}
.y2b_c00388{bottom:525.546456pt;}
.y28_c00388{bottom:554.666445pt;}
.y29_c00388{bottom:567.947200pt;}
.y27_c00388{bottom:570.506438pt;}
.y26_c00388{bottom:586.506432pt;}
.y22_c00388{bottom:615.626420pt;}
.y23_c00388{bottom:621.067200pt;}
.y25_c00388{bottom:623.626417pt;}
.y21_c00388{bottom:631.466414pt;}
.y20_c00388{bottom:662.666402pt;}
.y1f_c00388{bottom:710.186383pt;}
.y1e_c00388{bottom:739.306371pt;}
.y1d_c00388{bottom:770.186359pt;}
.y1b_c00388{bottom:801.547200pt;}
.y1a_c00388{bottom:804.106345pt;}
.y18_c00388{bottom:830.827200pt;}
.y17_c00388{bottom:833.386333pt;}
.y15_c00388{bottom:859.947200pt;}
.y14_c00388{bottom:862.506322pt;}
.y11_c00388{bottom:891.786310pt;}
.y12_c00388{bottom:905.067200pt;}
.y10_c00388{bottom:907.626304pt;}
.yf_c00388{bottom:923.466297pt;}
.yb_c00388{bottom:952.586286pt;}
.yc_c00388{bottom:958.027200pt;}
.ye_c00388{bottom:960.586282pt;}
.ya_c00388{bottom:968.586279pt;}
.y6_c00388{bottom:997.706268pt;}
.y7_c00388{bottom:1003.147200pt;}
.y9_c00388{bottom:1005.706264pt;}
.y5_c00388{bottom:1013.546261pt;}
.y2_c00388{bottom:1045.386249pt;}
.y1_c00388{bottom:1063.306241pt;}
.h5_c00388{height:13.280000pt;}
.h7_c00388{height:40.364984pt;}
.h2_c00388{height:48.558731pt;}
.h3_c00388{height:50.062480pt;}
.h1_c00388{height:52.134354pt;}
.h4_c00388{height:82.062467pt;}
.h6_c00388{height:113.422455pt;}
.h8_c00388{height:114.062454pt;}
.h0_c00388{height:1122.666667pt;}
.w3_c00388{width:2.880000pt;}
.w2_c00388{width:6.080000pt;}
.w1_c00388{width:6.240000pt;}
.w4_c00388{width:6.400000pt;}
.w0_c00388{width:793.333333pt;}
.x0_c00388{left:0.000000pt;}
.x5_c00388{left:113.440233pt;}
.x11_c00388{left:119.519952pt;}
.x1_c00388{left:161.599935pt;}
.x6_c00388{left:187.679925pt;}
.x2_c00388{left:292.479474pt;}
.x4_c00388{left:385.759846pt;}
.x7_c00388{left:399.840000pt;}
.x16_c00388{left:404.640000pt;}
.x24_c00388{left:405.600000pt;}
.x13_c00388{left:446.719821pt;}
.x21_c00388{left:451.519819pt;}
.x8_c00388{left:453.439819pt;}
.x17_c00388{left:458.239817pt;}
.x25_c00388{left:459.199816pt;}
.x9_c00388{left:476.800000pt;}
.x18_c00388{left:481.600000pt;}
.x26_c00388{left:482.560000pt;}
.x14_c00388{left:516.159794pt;}
.x22_c00388{left:517.119793pt;}
.xf_c00388{left:534.879786pt;}
.x1e_c00388{left:539.679784pt;}
.xa_c00388{left:541.599783pt;}
.x19_c00388{left:546.399781pt;}
.x27_c00388{left:547.359781pt;}
.xb_c00388{left:564.960000pt;}
.x12_c00388{left:568.320000pt;}
.x1a_c00388{left:569.760000pt;}
.x28_c00388{left:570.720000pt;}
.x20_c00388{left:573.120000pt;}
.x15_c00388{left:590.719764pt;}
.x23_c00388{left:591.679763pt;}
.xe_c00388{left:623.199751pt;}
.x1d_c00388{left:627.999749pt;}
.xc_c00388{left:629.919748pt;}
.x1b_c00388{left:634.719746pt;}
.x29_c00388{left:635.679746pt;}
.xd_c00388{left:653.280000pt;}
.x10_c00388{left:656.640000pt;}
.x1c_c00388{left:658.080000pt;}
.x2a_c00388{left:659.040000pt;}
.x1f_c00388{left:661.440000pt;}
.x3_c00388{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00389{font-family:ff1_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:ff2_c00389;src:url('chunks/assets/font_383e8ecac171db80295d172d.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_e8fc4bb316acd9d5f66636cb.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_f5af848ce5439ca30af3eb92.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.v3_c00389{vertical-align:26.639989px;}
.v1_c00389{vertical-align:35.999986px;}
.v2_c00389{vertical-align:71.999971px;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00389{word-spacing:-15.245389px;}
.ws0_c00389{word-spacing:-15.011994px;}
.ws2_c00389{word-spacing:0.000000px;}
._1_c00389{margin-left:-1.105374px;}
._0_c00389{width:1.195563px;}
._c_c00389{width:75.228717px;}
._8_c00389{width:78.799820px;}
._d_c00389{width:97.880551px;}
._f_c00389{width:114.817805px;}
._e_c00389{width:182.533941px;}
._6_c00389{width:395.572545px;}
._4_c00389{width:601.611087px;}
._10_c00389{width:638.824636px;}
._5_c00389{width:644.728445px;}
._12_c00389{width:667.442148px;}
._2_c00389{width:674.896621px;}
._9_c00389{width:740.884595px;}
._3_c00389{width:785.920577px;}
._7_c00389{width:815.890565px;}
._11_c00389{width:968.467749px;}
._b_c00389{width:972.790224px;}
._a_c00389{width:1122.786294px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs2_c00389{font-size:53.999978px;}
.fs0_c00389{font-size:59.759976px;}
.fs1_c00389{font-size:66.239974px;}
.y0_c00389{bottom:0.000000px;}
.y8_c00389{bottom:2.878955px;}
.ye_c00389{bottom:2.878979px;}
.y11_c00389{bottom:2.878999px;}
.y15_c00389{bottom:2.879016px;}
.y1a_c00389{bottom:2.879037px;}
.y1e_c00389{bottom:2.879054px;}
.y21_c00389{bottom:2.879068px;}
.y24_c00389{bottom:2.879081px;}
.y2d_c00389{bottom:2.879163px;}
.y31_c00389{bottom:2.879187px;}
.y36_c00389{bottom:2.879207px;}
.y3a_c00389{bottom:2.879224px;}
.y3d_c00389{bottom:2.879237px;}
.y40_c00389{bottom:2.879250px;}
.y48_c00389{bottom:2.879690px;}
.y4_c00389{bottom:75.899970px;}
.y3_c00389{bottom:114.059954px;}
.y46_c00389{bottom:167.159933px;}
.y47_c00389{bottom:173.280240px;}
.y49_c00389{bottom:176.159930px;}
.y45_c00389{bottom:184.979926px;}
.y44_c00389{bottom:220.079912px;}
.y43_c00389{bottom:273.359891px;}
.y42_c00389{bottom:306.299877px;}
.y41_c00389{bottom:339.059864px;}
.y3f_c00389{bottom:370.920600px;}
.y3e_c00389{bottom:373.799850px;}
.y3c_c00389{bottom:403.860600px;}
.y3b_c00389{bottom:406.739837px;}
.y39_c00389{bottom:436.620600px;}
.y38_c00389{bottom:439.499824px;}
.y34_c00389{bottom:472.439811px;}
.y35_c00389{bottom:478.380600px;}
.y37_c00389{bottom:481.259807px;}
.y33_c00389{bottom:490.259804px;}
.y2f_c00389{bottom:523.199791px;}
.y30_c00389{bottom:529.140600px;}
.y32_c00389{bottom:532.019787px;}
.y2e_c00389{bottom:541.019784px;}
.y2b_c00389{bottom:573.779770px;}
.y2c_c00389{bottom:588.720600px;}
.y2a_c00389{bottom:591.599763px;}
.y29_c00389{bottom:609.599756px;}
.y28_c00389{bottom:644.699742px;}
.y27_c00389{bottom:697.979721px;}
.y26_c00389{bottom:730.739708px;}
.y25_c00389{bottom:763.679695px;}
.y23_c00389{bottom:795.540600px;}
.y22_c00389{bottom:798.419681px;}
.y20_c00389{bottom:828.300600px;}
.y1f_c00389{bottom:831.179668px;}
.y1d_c00389{bottom:861.240600px;}
.y1c_c00389{bottom:864.119654px;}
.y18_c00389{bottom:901.379639px;}
.y19_c00389{bottom:905.160600px;}
.y1b_c00389{bottom:908.039637px;}
.y17_c00389{bottom:919.199632px;}
.y13_c00389{bottom:951.959619px;}
.y14_c00389{bottom:958.080600px;}
.y16_c00389{bottom:960.959616px;}
.y12_c00389{bottom:969.779612px;}
.y10_c00389{bottom:999.840600px;}
.yf_c00389{bottom:1002.719599px;}
.yc_c00389{bottom:1035.479586px;}
.yd_c00389{bottom:1050.600600px;}
.yb_c00389{bottom:1053.479579px;}
.ya_c00389{bottom:1071.299571px;}
.y6_c00389{bottom:1104.059558px;}
.y7_c00389{bottom:1110.180600px;}
.y9_c00389{bottom:1113.059555px;}
.y5_c00389{bottom:1122.059551px;}
.y2_c00389{bottom:1157.159537px;}
.y1_c00389{bottom:1196.039522px;}
.h5_c00389{height:14.940000px;}
.ha_c00389{height:14.940360px;}
.h2_c00389{height:54.628572px;}
.h3_c00389{height:56.320290px;}
.h1_c00389{height:58.651148px;}
.h7_c00389{height:82.960279px;}
.h9_c00389{height:91.600276px;}
.h4_c00389{height:92.320276px;}
.h8_c00389{height:127.600261px;}
.h6_c00389{height:128.320261px;}
.h0_c00389{height:1263.000000px;}
.w3_c00389{width:3.240000px;}
.w4_c00389{width:6.840000px;}
.w2_c00389{width:7.020000px;}
.w1_c00389{width:7.200000px;}
.w0_c00389{width:892.500000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:127.619949px;}
.xe_c00389{left:134.459946px;}
.x3_c00389{left:211.139916px;}
.x2_c00389{left:433.979514px;}
.x15_c00389{left:455.220000px;}
.x4_c00389{left:456.300000px;}
.x10_c00389{left:509.039796px;}
.x16_c00389{left:515.519794px;}
.x5_c00389{left:516.599793px;}
.x17_c00389{left:541.800000px;}
.x6_c00389{left:542.880000px;}
.x13_c00389{left:580.679768px;}
.x11_c00389{left:581.759767px;}
.xc_c00389{left:608.219757px;}
.x18_c00389{left:614.699754px;}
.x7_c00389{left:615.779754px;}
.x19_c00389{left:640.980000px;}
.x8_c00389{left:642.060000px;}
.xf_c00389{left:645.840000px;}
.x14_c00389{left:664.559734px;}
.x12_c00389{left:665.639734px;}
.xb_c00389{left:707.579717px;}
.x1a_c00389{left:714.059714px;}
.x9_c00389{left:715.139714px;}
.x1b_c00389{left:740.340000px;}
.xa_c00389{left:741.420000px;}
.xd_c00389{left:745.200000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.v3_c00389{vertical-align:23.679991pt;}
.v1_c00389{vertical-align:31.999987pt;}
.v2_c00389{vertical-align:63.999974pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:0.207463pt;}
.ws1_c00389{word-spacing:-13.551457pt;}
.ws0_c00389{word-spacing:-13.343995pt;}
.ws2_c00389{word-spacing:0.000000pt;}
._1_c00389{margin-left:-0.982555pt;}
._0_c00389{width:1.062723pt;}
._c_c00389{width:66.869971pt;}
._8_c00389{width:70.044284pt;}
._d_c00389{width:87.004934pt;}
._f_c00389{width:102.060271pt;}
._e_c00389{width:162.252392pt;}
._6_c00389{width:351.620040pt;}
._4_c00389{width:534.765411pt;}
._10_c00389{width:567.844121pt;}
._5_c00389{width:573.091951pt;}
._12_c00389{width:593.281909pt;}
._2_c00389{width:599.908108pt;}
._9_c00389{width:658.564085pt;}
._3_c00389{width:698.596068pt;}
._7_c00389{width:725.236058pt;}
._11_c00389{width:860.860221pt;}
._b_c00389{width:864.702421pt;}
._a_c00389{width:998.032261pt;}
.fs2_c00389{font-size:47.999981pt;}
.fs0_c00389{font-size:53.119979pt;}
.fs1_c00389{font-size:58.879976pt;}
.y0_c00389{bottom:0.000000pt;}
.y8_c00389{bottom:2.559071pt;}
.ye_c00389{bottom:2.559092pt;}
.y11_c00389{bottom:2.559110pt;}
.y15_c00389{bottom:2.559125pt;}
.y1a_c00389{bottom:2.559144pt;}
.y1e_c00389{bottom:2.559159pt;}
.y21_c00389{bottom:2.559171pt;}
.y24_c00389{bottom:2.559183pt;}
.y2d_c00389{bottom:2.559256pt;}
.y31_c00389{bottom:2.559278pt;}
.y36_c00389{bottom:2.559296pt;}
.y3a_c00389{bottom:2.559310pt;}
.y3d_c00389{bottom:2.559322pt;}
.y40_c00389{bottom:2.559334pt;}
.y48_c00389{bottom:2.559724pt;}
.y4_c00389{bottom:67.466640pt;}
.y3_c00389{bottom:101.386626pt;}
.y46_c00389{bottom:148.586607pt;}
.y47_c00389{bottom:154.026880pt;}
.y49_c00389{bottom:156.586604pt;}
.y45_c00389{bottom:164.426601pt;}
.y44_c00389{bottom:195.626588pt;}
.y43_c00389{bottom:242.986569pt;}
.y42_c00389{bottom:272.266558pt;}
.y41_c00389{bottom:301.386546pt;}
.y3f_c00389{bottom:329.707200pt;}
.y3e_c00389{bottom:332.266534pt;}
.y3c_c00389{bottom:358.987200pt;}
.y3b_c00389{bottom:361.546522pt;}
.y39_c00389{bottom:388.107200pt;}
.y38_c00389{bottom:390.666510pt;}
.y34_c00389{bottom:419.946499pt;}
.y35_c00389{bottom:425.227200pt;}
.y37_c00389{bottom:427.786496pt;}
.y33_c00389{bottom:435.786492pt;}
.y2f_c00389{bottom:465.066481pt;}
.y30_c00389{bottom:470.347200pt;}
.y32_c00389{bottom:472.906478pt;}
.y2e_c00389{bottom:480.906474pt;}
.y2b_c00389{bottom:510.026463pt;}
.y2c_c00389{bottom:523.307200pt;}
.y2a_c00389{bottom:525.866456pt;}
.y29_c00389{bottom:541.866450pt;}
.y28_c00389{bottom:573.066437pt;}
.y27_c00389{bottom:620.426418pt;}
.y26_c00389{bottom:649.546407pt;}
.y25_c00389{bottom:678.826395pt;}
.y23_c00389{bottom:707.147200pt;}
.y22_c00389{bottom:709.706383pt;}
.y20_c00389{bottom:736.267200pt;}
.y1f_c00389{bottom:738.826371pt;}
.y1d_c00389{bottom:765.547200pt;}
.y1c_c00389{bottom:768.106359pt;}
.y18_c00389{bottom:801.226346pt;}
.y19_c00389{bottom:804.587200pt;}
.y1b_c00389{bottom:807.146344pt;}
.y17_c00389{bottom:817.066340pt;}
.y13_c00389{bottom:846.186328pt;}
.y14_c00389{bottom:851.627200pt;}
.y16_c00389{bottom:854.186325pt;}
.y12_c00389{bottom:862.026322pt;}
.y10_c00389{bottom:888.747200pt;}
.yf_c00389{bottom:891.306310pt;}
.yc_c00389{bottom:920.426298pt;}
.yd_c00389{bottom:933.867200pt;}
.yb_c00389{bottom:936.426292pt;}
.ya_c00389{bottom:952.266286pt;}
.y6_c00389{bottom:981.386274pt;}
.y7_c00389{bottom:986.827200pt;}
.y9_c00389{bottom:989.386271pt;}
.y5_c00389{bottom:997.386268pt;}
.y2_c00389{bottom:1028.586255pt;}
.y1_c00389{bottom:1063.146241pt;}
.h5_c00389{height:13.280000pt;}
.ha_c00389{height:13.280320pt;}
.h2_c00389{height:48.558731pt;}
.h3_c00389{height:50.062480pt;}
.h1_c00389{height:52.134354pt;}
.h7_c00389{height:73.742471pt;}
.h9_c00389{height:81.422467pt;}
.h4_c00389{height:82.062467pt;}
.h8_c00389{height:113.422455pt;}
.h6_c00389{height:114.062454pt;}
.h0_c00389{height:1122.666667pt;}
.w3_c00389{width:2.880000pt;}
.w4_c00389{width:6.080000pt;}
.w2_c00389{width:6.240000pt;}
.w1_c00389{width:6.400000pt;}
.w0_c00389{width:793.333333pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:113.439955pt;}
.xe_c00389{left:119.519952pt;}
.x3_c00389{left:187.679925pt;}
.x2_c00389{left:385.759568pt;}
.x15_c00389{left:404.640000pt;}
.x4_c00389{left:405.600000pt;}
.x10_c00389{left:452.479819pt;}
.x16_c00389{left:458.239817pt;}
.x5_c00389{left:459.199816pt;}
.x17_c00389{left:481.600000pt;}
.x6_c00389{left:482.560000pt;}
.x13_c00389{left:516.159794pt;}
.x11_c00389{left:517.119793pt;}
.xc_c00389{left:540.639784pt;}
.x18_c00389{left:546.399781pt;}
.x7_c00389{left:547.359781pt;}
.x19_c00389{left:569.760000pt;}
.x8_c00389{left:570.720000pt;}
.xf_c00389{left:574.080000pt;}
.x14_c00389{left:590.719764pt;}
.x12_c00389{left:591.679763pt;}
.xb_c00389{left:628.959748pt;}
.x1a_c00389{left:634.719746pt;}
.x9_c00389{left:635.679746pt;}
.x1b_c00389{left:658.080000pt;}
.xa_c00389{left:659.040000pt;}
.xd_c00389{left:662.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00390{font-family:ff1_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:ff2_c00390;src:url('chunks/assets/font_a86d82d88d29300ab8a549e5.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_768ff568145afafb89892995.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_4be20f2785b0b766a2c98ee1.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.v1_c00390{vertical-align:35.999986px;}
.v2_c00390{vertical-align:71.279971px;}
.ls1_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00390{word-spacing:-15.245389px;}
.ws0_c00390{word-spacing:-15.011994px;}
.ws2_c00390{word-spacing:0.000000px;}
._1_c00390{margin-left:-1.105374px;}
._0_c00390{width:1.478392px;}
._b_c00390{width:75.228717px;}
._7_c00390{width:78.799820px;}
._c_c00390{width:97.880551px;}
._e_c00390{width:114.817805px;}
._d_c00390{width:182.533941px;}
._4_c00390{width:598.111158px;}
._13_c00390{width:602.433633px;}
._10_c00390{width:638.824636px;}
._14_c00390{width:644.445616px;}
._2_c00390{width:670.574146px;}
._f_c00390{width:671.764623px;}
._11_c00390{width:674.896621px;}
._5_c00390{width:688.502139px;}
._15_c00390{width:692.824614px;}
._8_c00390{width:736.562120px;}
._17_c00390{width:740.884595px;}
._3_c00390{width:781.598102px;}
._12_c00390{width:785.920577px;}
._6_c00390{width:811.568090px;}
._16_c00390{width:815.890565px;}
._a_c00390{width:972.790224px;}
._9_c00390{width:1118.463819px;}
._18_c00390{width:1122.786294px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs2_c00390{font-size:53.999978px;}
.fs0_c00390{font-size:59.759976px;}
.fs1_c00390{font-size:66.239974px;}
.y0_c00390{bottom:0.000000px;}
.y8_c00390{bottom:2.878947px;}
.ye_c00390{bottom:2.878971px;}
.y11_c00390{bottom:2.878992px;}
.y16_c00390{bottom:2.879012px;}
.y19_c00390{bottom:2.879032px;}
.y1c_c00390{bottom:2.879045px;}
.y1f_c00390{bottom:2.879058px;}
.y27_c00390{bottom:2.879138px;}
.y2d_c00390{bottom:2.879161px;}
.y31_c00390{bottom:2.879185px;}
.y37_c00390{bottom:2.879209px;}
.y3a_c00390{bottom:2.879229px;}
.y3e_c00390{bottom:2.879246px;}
.y44_c00390{bottom:2.879270px;}
.y47_c00390{bottom:2.879290px;}
.y4a_c00390{bottom:2.879303px;}
.y4d_c00390{bottom:2.879317px;}
.y4_c00390{bottom:75.900270px;}
.y3_c00390{bottom:114.060254px;}
.y4f_c00390{bottom:141.059944px;}
.y4e_c00390{bottom:173.999930px;}
.y4c_c00390{bottom:205.860600px;}
.y4b_c00390{bottom:208.739917px;}
.y49_c00390{bottom:238.620600px;}
.y48_c00390{bottom:241.499903px;}
.y46_c00390{bottom:271.560600px;}
.y45_c00390{bottom:274.439890px;}
.y42_c00390{bottom:307.199877px;}
.y43_c00390{bottom:322.320600px;}
.y41_c00390{bottom:325.199870px;}
.y40_c00390{bottom:343.019863px;}
.y3c_c00390{bottom:375.779850px;}
.y3d_c00390{bottom:381.900600px;}
.y3f_c00390{bottom:384.779846px;}
.y3b_c00390{bottom:393.599843px;}
.y39_c00390{bottom:423.660600px;}
.y38_c00390{bottom:426.539829px;}
.y35_c00390{bottom:459.479816px;}
.y36_c00390{bottom:474.420600px;}
.y34_c00390{bottom:477.299809px;}
.y33_c00390{bottom:495.119802px;}
.y2f_c00390{bottom:527.879789px;}
.y30_c00390{bottom:534.000600px;}
.y32_c00390{bottom:536.879785px;}
.y2e_c00390{bottom:545.879782px;}
.y2b_c00390{bottom:578.639769px;}
.y2c_c00390{bottom:593.580600px;}
.y2a_c00390{bottom:596.459761px;}
.y29_c00390{bottom:614.279754px;}
.y25_c00390{bottom:647.219741px;}
.y26_c00390{bottom:653.340600px;}
.y28_c00390{bottom:656.219738px;}
.y24_c00390{bottom:665.039734px;}
.y23_c00390{bottom:700.139720px;}
.y22_c00390{bottom:753.419699px;}
.y21_c00390{bottom:786.359685px;}
.y20_c00390{bottom:819.119672px;}
.y1e_c00390{bottom:850.980600px;}
.y1d_c00390{bottom:853.859658px;}
.y1b_c00390{bottom:883.920600px;}
.y1a_c00390{bottom:886.799645px;}
.y18_c00390{bottom:916.680600px;}
.y17_c00390{bottom:919.559632px;}
.y14_c00390{bottom:952.499619px;}
.y15_c00390{bottom:967.440600px;}
.y13_c00390{bottom:970.319612px;}
.y12_c00390{bottom:988.139605px;}
.y10_c00390{bottom:1018.200600px;}
.yf_c00390{bottom:1021.079592px;}
.yc_c00390{bottom:1053.839578px;}
.yd_c00390{bottom:1068.780600px;}
.yb_c00390{bottom:1071.659571px;}
.ya_c00390{bottom:1089.659564px;}
.y6_c00390{bottom:1122.419551px;}
.y7_c00390{bottom:1128.540600px;}
.y9_c00390{bottom:1131.419547px;}
.y5_c00390{bottom:1140.239544px;}
.y2_c00390{bottom:1176.059530px;}
.y1_c00390{bottom:1196.219522px;}
.h5_c00390{height:14.940000px;}
.h2_c00390{height:54.628572px;}
.h3_c00390{height:56.320290px;}
.h1_c00390{height:58.651148px;}
.h4_c00390{height:92.320276px;}
.h6_c00390{height:127.600261px;}
.h7_c00390{height:128.320261px;}
.h0_c00390{height:1263.000000px;}
.w3_c00390{width:3.240000px;}
.w2_c00390{width:6.840000px;}
.w1_c00390{width:7.020000px;}
.w4_c00390{width:7.200000px;}
.w0_c00390{width:892.500000px;}
.x0_c00390{left:0.000000px;}
.x5_c00390{left:127.620262px;}
.x11_c00390{left:134.459946px;}
.x1_c00390{left:181.799927px;}
.x6_c00390{left:211.139916px;}
.x2_c00390{left:329.039408px;}
.x4_c00390{left:433.979826px;}
.x7_c00390{left:455.220000px;}
.x16_c00390{left:456.300000px;}
.x13_c00390{left:507.959797px;}
.x21_c00390{left:509.039796px;}
.x8_c00390{left:515.519794px;}
.x17_c00390{left:516.599793px;}
.x9_c00390{left:541.800000px;}
.x18_c00390{left:542.880000px;}
.x14_c00390{left:581.759767px;}
.xf_c00390{left:607.139757px;}
.x1e_c00390{left:608.219757px;}
.xa_c00390{left:614.699754px;}
.x19_c00390{left:615.779754px;}
.xb_c00390{left:640.980000px;}
.x1a_c00390{left:642.060000px;}
.x12_c00390{left:644.760000px;}
.x20_c00390{left:645.840000px;}
.x15_c00390{left:665.639734px;}
.xe_c00390{left:706.499717px;}
.x1d_c00390{left:707.579717px;}
.xc_c00390{left:714.059714px;}
.x1b_c00390{left:715.139714px;}
.xd_c00390{left:740.340000px;}
.x1c_c00390{left:741.420000px;}
.x10_c00390{left:744.120000px;}
.x1f_c00390{left:745.200000px;}
.x3_c00390{left:765.359694px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.v1_c00390{vertical-align:31.999987pt;}
.v2_c00390{vertical-align:63.359975pt;}
.ls1_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.207463pt;}
.ws1_c00390{word-spacing:-13.551457pt;}
.ws0_c00390{word-spacing:-13.343995pt;}
.ws2_c00390{word-spacing:0.000000pt;}
._1_c00390{margin-left:-0.982555pt;}
._0_c00390{width:1.314126pt;}
._b_c00390{width:66.869971pt;}
._7_c00390{width:70.044284pt;}
._c_c00390{width:87.004934pt;}
._e_c00390{width:102.060271pt;}
._d_c00390{width:162.252392pt;}
._4_c00390{width:531.654362pt;}
._13_c00390{width:535.496562pt;}
._10_c00390{width:567.844121pt;}
._14_c00390{width:572.840547pt;}
._2_c00390{width:596.065908pt;}
._f_c00390{width:597.124109pt;}
._11_c00390{width:599.908108pt;}
._5_c00390{width:612.001902pt;}
._15_c00390{width:615.844102pt;}
._8_c00390{width:654.721884pt;}
._17_c00390{width:658.564085pt;}
._3_c00390{width:694.753868pt;}
._12_c00390{width:698.596068pt;}
._6_c00390{width:721.393858pt;}
._16_c00390{width:725.236058pt;}
._a_c00390{width:864.702421pt;}
._9_c00390{width:994.190061pt;}
._18_c00390{width:998.032261pt;}
.fs2_c00390{font-size:47.999981pt;}
.fs0_c00390{font-size:53.119979pt;}
.fs1_c00390{font-size:58.879976pt;}
.y0_c00390{bottom:0.000000pt;}
.y8_c00390{bottom:2.559064pt;}
.ye_c00390{bottom:2.559086pt;}
.y11_c00390{bottom:2.559104pt;}
.y16_c00390{bottom:2.559122pt;}
.y19_c00390{bottom:2.559140pt;}
.y1c_c00390{bottom:2.559151pt;}
.y1f_c00390{bottom:2.559163pt;}
.y27_c00390{bottom:2.559233pt;}
.y2d_c00390{bottom:2.559255pt;}
.y31_c00390{bottom:2.559276pt;}
.y37_c00390{bottom:2.559297pt;}
.y3a_c00390{bottom:2.559315pt;}
.y3e_c00390{bottom:2.559330pt;}
.y44_c00390{bottom:2.559351pt;}
.y47_c00390{bottom:2.559369pt;}
.y4a_c00390{bottom:2.559381pt;}
.y4d_c00390{bottom:2.559392pt;}
.y4_c00390{bottom:67.466906pt;}
.y3_c00390{bottom:101.386893pt;}
.y4f_c00390{bottom:125.386617pt;}
.y4e_c00390{bottom:154.666605pt;}
.y4c_c00390{bottom:182.987200pt;}
.y4b_c00390{bottom:185.546592pt;}
.y49_c00390{bottom:212.107200pt;}
.y48_c00390{bottom:214.666581pt;}
.y46_c00390{bottom:241.387200pt;}
.y45_c00390{bottom:243.946569pt;}
.y42_c00390{bottom:273.066557pt;}
.y43_c00390{bottom:286.507200pt;}
.y41_c00390{bottom:289.066551pt;}
.y40_c00390{bottom:304.906545pt;}
.y3c_c00390{bottom:334.026533pt;}
.y3d_c00390{bottom:339.467200pt;}
.y3f_c00390{bottom:342.026530pt;}
.y3b_c00390{bottom:349.866527pt;}
.y39_c00390{bottom:376.587200pt;}
.y38_c00390{bottom:379.146515pt;}
.y35_c00390{bottom:408.426503pt;}
.y36_c00390{bottom:421.707200pt;}
.y34_c00390{bottom:424.266497pt;}
.y33_c00390{bottom:440.106491pt;}
.y2f_c00390{bottom:469.226479pt;}
.y30_c00390{bottom:474.667200pt;}
.y32_c00390{bottom:477.226476pt;}
.y2e_c00390{bottom:485.226473pt;}
.y2b_c00390{bottom:514.346461pt;}
.y2c_c00390{bottom:527.627200pt;}
.y2a_c00390{bottom:530.186455pt;}
.y29_c00390{bottom:546.026448pt;}
.y25_c00390{bottom:575.306437pt;}
.y26_c00390{bottom:580.747200pt;}
.y28_c00390{bottom:583.306433pt;}
.y24_c00390{bottom:591.146430pt;}
.y23_c00390{bottom:622.346418pt;}
.y22_c00390{bottom:669.706399pt;}
.y21_c00390{bottom:698.986387pt;}
.y20_c00390{bottom:728.106375pt;}
.y1e_c00390{bottom:756.427200pt;}
.y1d_c00390{bottom:758.986363pt;}
.y1b_c00390{bottom:785.707200pt;}
.y1a_c00390{bottom:788.266351pt;}
.y18_c00390{bottom:814.827200pt;}
.y17_c00390{bottom:817.386340pt;}
.y14_c00390{bottom:846.666328pt;}
.y15_c00390{bottom:859.947200pt;}
.y13_c00390{bottom:862.506322pt;}
.y12_c00390{bottom:878.346315pt;}
.y10_c00390{bottom:905.067200pt;}
.yf_c00390{bottom:907.626304pt;}
.yc_c00390{bottom:936.746292pt;}
.yd_c00390{bottom:950.027200pt;}
.yb_c00390{bottom:952.586286pt;}
.ya_c00390{bottom:968.586279pt;}
.y6_c00390{bottom:997.706268pt;}
.y7_c00390{bottom:1003.147200pt;}
.y9_c00390{bottom:1005.706264pt;}
.y5_c00390{bottom:1013.546261pt;}
.y2_c00390{bottom:1045.386249pt;}
.y1_c00390{bottom:1063.306241pt;}
.h5_c00390{height:13.280000pt;}
.h2_c00390{height:48.558731pt;}
.h3_c00390{height:50.062480pt;}
.h1_c00390{height:52.134354pt;}
.h4_c00390{height:82.062467pt;}
.h6_c00390{height:113.422455pt;}
.h7_c00390{height:114.062454pt;}
.h0_c00390{height:1122.666667pt;}
.w3_c00390{width:2.880000pt;}
.w2_c00390{width:6.080000pt;}
.w1_c00390{width:6.240000pt;}
.w4_c00390{width:6.400000pt;}
.w0_c00390{width:793.333333pt;}
.x0_c00390{left:0.000000pt;}
.x5_c00390{left:113.440233pt;}
.x11_c00390{left:119.519952pt;}
.x1_c00390{left:161.599935pt;}
.x6_c00390{left:187.679925pt;}
.x2_c00390{left:292.479474pt;}
.x4_c00390{left:385.759846pt;}
.x7_c00390{left:404.640000pt;}
.x16_c00390{left:405.600000pt;}
.x13_c00390{left:451.519819pt;}
.x21_c00390{left:452.479819pt;}
.x8_c00390{left:458.239817pt;}
.x17_c00390{left:459.199816pt;}
.x9_c00390{left:481.600000pt;}
.x18_c00390{left:482.560000pt;}
.x14_c00390{left:517.119793pt;}
.xf_c00390{left:539.679784pt;}
.x1e_c00390{left:540.639784pt;}
.xa_c00390{left:546.399781pt;}
.x19_c00390{left:547.359781pt;}
.xb_c00390{left:569.760000pt;}
.x1a_c00390{left:570.720000pt;}
.x12_c00390{left:573.120000pt;}
.x20_c00390{left:574.080000pt;}
.x15_c00390{left:591.679763pt;}
.xe_c00390{left:627.999749pt;}
.x1d_c00390{left:628.959748pt;}
.xc_c00390{left:634.719746pt;}
.x1b_c00390{left:635.679746pt;}
.xd_c00390{left:658.080000pt;}
.x1c_c00390{left:659.040000pt;}
.x10_c00390{left:661.440000pt;}
.x1f_c00390{left:662.400000pt;}
.x3_c00390{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00391{font-family:ff1_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:ff2_c00391;src:url('chunks/assets/font_b5a4d8fd76331807d0345178.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_bee05d7a55e4b2e17eb72da8.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_768ff568145afafb89892995.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00391{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.v2_c00391{vertical-align:35.279986px;}
.v1_c00391{vertical-align:71.279971px;}
.ls1_c00391{letter-spacing:0.000000px;}
.ls0_c00391{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00391{word-spacing:-15.245389px;}
.ws0_c00391{word-spacing:-15.011994px;}
.ws2_c00391{word-spacing:0.000000px;}
._1_c00391{margin-left:-1.105374px;}
._0_c00391{width:1.195563px;}
._3_c00391{width:75.228717px;}
._c_c00391{width:78.799820px;}
._4_c00391{width:97.880551px;}
._6_c00391{width:114.817805px;}
._5_c00391{width:182.533941px;}
._14_c00391{width:601.611087px;}
._11_c00391{width:638.824636px;}
._9_c00391{width:640.405970px;}
._15_c00391{width:644.728445px;}
._7_c00391{width:667.442148px;}
._8_c00391{width:670.574146px;}
._10_c00391{width:671.764623px;}
._12_c00391{width:674.896621px;}
._a_c00391{width:688.502139px;}
._d_c00391{width:736.562120px;}
._13_c00391{width:785.920577px;}
._b_c00391{width:811.568090px;}
._2_c00391{width:968.467749px;}
._f_c00391{width:972.790224px;}
._e_c00391{width:1118.463819px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs2_c00391{font-size:53.999978px;}
.fs0_c00391{font-size:59.759976px;}
.fs1_c00391{font-size:66.239974px;}
.y0_c00391{bottom:0.000000px;}
.yb_c00391{bottom:2.879003px;}
.y10_c00391{bottom:2.879023px;}
.y15_c00391{bottom:2.879044px;}
.y1b_c00391{bottom:2.879068px;}
.y1e_c00391{bottom:2.879088px;}
.y21_c00391{bottom:2.879101px;}
.y24_c00391{bottom:2.879114px;}
.y2d_c00391{bottom:2.879206px;}
.y33_c00391{bottom:2.879230px;}
.y37_c00391{bottom:2.879254px;}
.y3d_c00391{bottom:2.879278px;}
.y40_c00391{bottom:2.879298px;}
.y44_c00391{bottom:2.879315px;}
.y4_c00391{bottom:75.899970px;}
.y3_c00391{bottom:114.059954px;}
.y42_c00391{bottom:203.699919px;}
.y43_c00391{bottom:209.820600px;}
.y45_c00391{bottom:212.699915px;}
.y41_c00391{bottom:221.519911px;}
.y3f_c00391{bottom:251.580600px;}
.y3e_c00391{bottom:254.459898px;}
.y3b_c00391{bottom:287.219885px;}
.y3c_c00391{bottom:302.340600px;}
.y3a_c00391{bottom:305.219878px;}
.y39_c00391{bottom:323.039871px;}
.y35_c00391{bottom:355.799858px;}
.y36_c00391{bottom:361.920600px;}
.y38_c00391{bottom:364.799854px;}
.y34_c00391{bottom:373.799850px;}
.y31_c00391{bottom:406.559837px;}
.y32_c00391{bottom:421.500600px;}
.y30_c00391{bottom:424.379830px;}
.y2f_c00391{bottom:442.199823px;}
.y2b_c00391{bottom:475.139810px;}
.y2c_c00391{bottom:481.080600px;}
.y2e_c00391{bottom:483.959806px;}
.y2a_c00391{bottom:492.959803px;}
.y29_c00391{bottom:528.059789px;}
.y28_c00391{bottom:581.339767px;}
.y27_c00391{bottom:614.279754px;}
.y26_c00391{bottom:647.039741px;}
.y25_c00391{bottom:679.979728px;}
.y23_c00391{bottom:711.840600px;}
.y22_c00391{bottom:714.719714px;}
.y20_c00391{bottom:744.600600px;}
.y1f_c00391{bottom:747.479701px;}
.y1d_c00391{bottom:777.540600px;}
.y1c_c00391{bottom:780.419688px;}
.y19_c00391{bottom:813.179675px;}
.y1a_c00391{bottom:828.300600px;}
.y18_c00391{bottom:831.179668px;}
.y17_c00391{bottom:848.999660px;}
.y13_c00391{bottom:881.759647px;}
.y14_c00391{bottom:887.880600px;}
.y16_c00391{bottom:890.759644px;}
.y12_c00391{bottom:899.579640px;}
.ye_c00391{bottom:932.519627px;}
.yf_c00391{bottom:938.640600px;}
.y11_c00391{bottom:941.519623px;}
.yd_c00391{bottom:950.339620px;}
.y9_c00391{bottom:983.279607px;}
.ya_c00391{bottom:989.220600px;}
.yc_c00391{bottom:992.099603px;}
.y8_c00391{bottom:1001.099600px;}
.y7_c00391{bottom:1036.199586px;}
.y6_c00391{bottom:1089.479564px;}
.y5_c00391{bottom:1122.419551px;}
.y2_c00391{bottom:1157.159537px;}
.y1_c00391{bottom:1196.039522px;}
.h6_c00391{height:14.940000px;}
.h2_c00391{height:54.628572px;}
.h3_c00391{height:56.320290px;}
.h1_c00391{height:58.651148px;}
.h5_c00391{height:91.600276px;}
.h7_c00391{height:92.320276px;}
.h4_c00391{height:127.600261px;}
.h8_c00391{height:128.320261px;}
.h0_c00391{height:1263.000000px;}
.w3_c00391{width:3.240000px;}
.w2_c00391{width:6.840000px;}
.w1_c00391{width:7.020000px;}
.w4_c00391{width:7.200000px;}
.w0_c00391{width:892.500000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:127.619949px;}
.x3_c00391{left:134.459946px;}
.x6_c00391{left:211.139916px;}
.x2_c00391{left:433.979514px;}
.x7_c00391{left:455.220000px;}
.x15_c00391{left:456.300000px;}
.x12_c00391{left:507.959797px;}
.x8_c00391{left:515.519794px;}
.x16_c00391{left:516.599793px;}
.x9_c00391{left:541.800000px;}
.x17_c00391{left:542.880000px;}
.x4_c00391{left:580.679768px;}
.x13_c00391{left:581.759767px;}
.xf_c00391{left:607.139757px;}
.xa_c00391{left:614.699754px;}
.x18_c00391{left:615.779754px;}
.xb_c00391{left:640.980000px;}
.x19_c00391{left:642.060000px;}
.x11_c00391{left:644.760000px;}
.x5_c00391{left:664.559734px;}
.x14_c00391{left:665.639734px;}
.xe_c00391{left:706.499717px;}
.xc_c00391{left:714.059714px;}
.x1a_c00391{left:715.139714px;}
.xd_c00391{left:740.340000px;}
.x1b_c00391{left:741.420000px;}
.x10_c00391{left:744.120000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.v2_c00391{vertical-align:31.359987pt;}
.v1_c00391{vertical-align:63.359975pt;}
.ls1_c00391{letter-spacing:0.000000pt;}
.ls0_c00391{letter-spacing:0.207463pt;}
.ws1_c00391{word-spacing:-13.551457pt;}
.ws0_c00391{word-spacing:-13.343995pt;}
.ws2_c00391{word-spacing:0.000000pt;}
._1_c00391{margin-left:-0.982555pt;}
._0_c00391{width:1.062723pt;}
._3_c00391{width:66.869971pt;}
._c_c00391{width:70.044284pt;}
._4_c00391{width:87.004934pt;}
._6_c00391{width:102.060271pt;}
._5_c00391{width:162.252392pt;}
._14_c00391{width:534.765411pt;}
._11_c00391{width:567.844121pt;}
._9_c00391{width:569.249751pt;}
._15_c00391{width:573.091951pt;}
._7_c00391{width:593.281909pt;}
._8_c00391{width:596.065908pt;}
._10_c00391{width:597.124109pt;}
._12_c00391{width:599.908108pt;}
._a_c00391{width:612.001902pt;}
._d_c00391{width:654.721884pt;}
._13_c00391{width:698.596068pt;}
._b_c00391{width:721.393858pt;}
._2_c00391{width:860.860221pt;}
._f_c00391{width:864.702421pt;}
._e_c00391{width:994.190061pt;}
.fs2_c00391{font-size:47.999981pt;}
.fs0_c00391{font-size:53.119979pt;}
.fs1_c00391{font-size:58.879976pt;}
.y0_c00391{bottom:0.000000pt;}
.yb_c00391{bottom:2.559114pt;}
.y10_c00391{bottom:2.559132pt;}
.y15_c00391{bottom:2.559150pt;}
.y1b_c00391{bottom:2.559171pt;}
.y1e_c00391{bottom:2.559189pt;}
.y21_c00391{bottom:2.559201pt;}
.y24_c00391{bottom:2.559213pt;}
.y2d_c00391{bottom:2.559295pt;}
.y33_c00391{bottom:2.559316pt;}
.y37_c00391{bottom:2.559337pt;}
.y3d_c00391{bottom:2.559358pt;}
.y40_c00391{bottom:2.559376pt;}
.y44_c00391{bottom:2.559391pt;}
.y4_c00391{bottom:67.466640pt;}
.y3_c00391{bottom:101.386626pt;}
.y42_c00391{bottom:181.066594pt;}
.y43_c00391{bottom:186.507200pt;}
.y45_c00391{bottom:189.066591pt;}
.y41_c00391{bottom:196.906588pt;}
.y3f_c00391{bottom:223.627200pt;}
.y3e_c00391{bottom:226.186576pt;}
.y3b_c00391{bottom:255.306565pt;}
.y3c_c00391{bottom:268.747200pt;}
.y3a_c00391{bottom:271.306558pt;}
.y39_c00391{bottom:287.146552pt;}
.y35_c00391{bottom:316.266540pt;}
.y36_c00391{bottom:321.707200pt;}
.y38_c00391{bottom:324.266537pt;}
.y34_c00391{bottom:332.266534pt;}
.y31_c00391{bottom:361.386522pt;}
.y32_c00391{bottom:374.667200pt;}
.y30_c00391{bottom:377.226516pt;}
.y2f_c00391{bottom:393.066509pt;}
.y2b_c00391{bottom:422.346498pt;}
.y2c_c00391{bottom:427.627200pt;}
.y2e_c00391{bottom:430.186495pt;}
.y2a_c00391{bottom:438.186491pt;}
.y29_c00391{bottom:469.386479pt;}
.y28_c00391{bottom:516.746460pt;}
.y27_c00391{bottom:546.026448pt;}
.y26_c00391{bottom:575.146437pt;}
.y25_c00391{bottom:604.426425pt;}
.y23_c00391{bottom:632.747200pt;}
.y22_c00391{bottom:635.306413pt;}
.y20_c00391{bottom:661.867200pt;}
.y1f_c00391{bottom:664.426401pt;}
.y1d_c00391{bottom:691.147200pt;}
.y1c_c00391{bottom:693.706389pt;}
.y19_c00391{bottom:722.826378pt;}
.y1a_c00391{bottom:736.267200pt;}
.y18_c00391{bottom:738.826371pt;}
.y17_c00391{bottom:754.666365pt;}
.y13_c00391{bottom:783.786353pt;}
.y14_c00391{bottom:789.227200pt;}
.y16_c00391{bottom:791.786350pt;}
.y12_c00391{bottom:799.626347pt;}
.ye_c00391{bottom:828.906335pt;}
.yf_c00391{bottom:834.347200pt;}
.y11_c00391{bottom:836.906332pt;}
.yd_c00391{bottom:844.746329pt;}
.y9_c00391{bottom:874.026317pt;}
.ya_c00391{bottom:879.307200pt;}
.yc_c00391{bottom:881.866314pt;}
.y8_c00391{bottom:889.866311pt;}
.y7_c00391{bottom:921.066298pt;}
.y6_c00391{bottom:968.426279pt;}
.y5_c00391{bottom:997.706268pt;}
.y2_c00391{bottom:1028.586255pt;}
.y1_c00391{bottom:1063.146241pt;}
.h6_c00391{height:13.280000pt;}
.h2_c00391{height:48.558731pt;}
.h3_c00391{height:50.062480pt;}
.h1_c00391{height:52.134354pt;}
.h5_c00391{height:81.422467pt;}
.h7_c00391{height:82.062467pt;}
.h4_c00391{height:113.422455pt;}
.h8_c00391{height:114.062454pt;}
.h0_c00391{height:1122.666667pt;}
.w3_c00391{width:2.880000pt;}
.w2_c00391{width:6.080000pt;}
.w1_c00391{width:6.240000pt;}
.w4_c00391{width:6.400000pt;}
.w0_c00391{width:793.333333pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:113.439955pt;}
.x3_c00391{left:119.519952pt;}
.x6_c00391{left:187.679925pt;}
.x2_c00391{left:385.759568pt;}
.x7_c00391{left:404.640000pt;}
.x15_c00391{left:405.600000pt;}
.x12_c00391{left:451.519819pt;}
.x8_c00391{left:458.239817pt;}
.x16_c00391{left:459.199816pt;}
.x9_c00391{left:481.600000pt;}
.x17_c00391{left:482.560000pt;}
.x4_c00391{left:516.159794pt;}
.x13_c00391{left:517.119793pt;}
.xf_c00391{left:539.679784pt;}
.xa_c00391{left:546.399781pt;}
.x18_c00391{left:547.359781pt;}
.xb_c00391{left:569.760000pt;}
.x19_c00391{left:570.720000pt;}
.x11_c00391{left:573.120000pt;}
.x5_c00391{left:590.719764pt;}
.x14_c00391{left:591.679763pt;}
.xe_c00391{left:627.999749pt;}
.xc_c00391{left:634.719746pt;}
.x1a_c00391{left:635.679746pt;}
.xd_c00391{left:658.080000pt;}
.x1b_c00391{left:659.040000pt;}
.x10_c00391{left:661.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00392{font-family:ff1_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:ff2_c00392;src:url('chunks/assets/font_a2d54454950671ab7003f802.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_4f09849497922ec3ab087a3b.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_353acb938d07e50f6187144c.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.v2_c00392{vertical-align:35.999986px;}
.v1_c00392{vertical-align:71.279971px;}
.ls1_c00392{letter-spacing:0.000000px;}
.ls0_c00392{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00392{word-spacing:-15.011994px;}
.ws2_c00392{word-spacing:0.000000px;}
._1_c00392{margin-left:-1.105374px;}
._0_c00392{width:1.478392px;}
._8_c00392{width:75.228717px;}
._4_c00392{width:78.799820px;}
._9_c00392{width:97.880551px;}
._b_c00392{width:114.817805px;}
._a_c00392{width:182.533941px;}
._10_c00392{width:602.433633px;}
._d_c00392{width:638.824636px;}
._11_c00392{width:644.445616px;}
._c_c00392{width:671.764623px;}
._e_c00392{width:674.896621px;}
._2_c00392{width:692.824614px;}
._5_c00392{width:740.884595px;}
._f_c00392{width:785.920577px;}
._3_c00392{width:815.890565px;}
._7_c00392{width:972.790224px;}
._6_c00392{width:1122.786294px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs2_c00392{font-size:53.999978px;}
.fs0_c00392{font-size:59.759976px;}
.fs1_c00392{font-size:66.239974px;}
.y0_c00392{bottom:0.000000px;}
.y9_c00392{bottom:2.878951px;}
.yc_c00392{bottom:2.878971px;}
.yf_c00392{bottom:2.878984px;}
.y12_c00392{bottom:2.878998px;}
.y1a_c00392{bottom:2.879077px;}
.y20_c00392{bottom:2.879101px;}
.y24_c00392{bottom:2.879124px;}
.y2a_c00392{bottom:2.879148px;}
.y2d_c00392{bottom:2.879169px;}
.y31_c00392{bottom:2.879185px;}
.y35_c00392{bottom:2.879202px;}
.y38_c00392{bottom:2.879215px;}
.y3b_c00392{bottom:2.879228px;}
.y43_c00392{bottom:2.879307px;}
.y49_c00392{bottom:2.879691px;}
.y4_c00392{bottom:75.900270px;}
.y3_c00392{bottom:114.060254px;}
.y47_c00392{bottom:154.199938px;}
.y48_c00392{bottom:169.140240px;}
.y46_c00392{bottom:172.019931px;}
.y45_c00392{bottom:189.839924px;}
.y41_c00392{bottom:222.599911px;}
.y42_c00392{bottom:228.720600px;}
.y44_c00392{bottom:231.599907px;}
.y40_c00392{bottom:240.599904px;}
.y3f_c00392{bottom:275.699890px;}
.y3e_c00392{bottom:328.979868px;}
.y3d_c00392{bottom:361.739855px;}
.y3c_c00392{bottom:394.679842px;}
.y3a_c00392{bottom:426.540600px;}
.y39_c00392{bottom:429.419828px;}
.y37_c00392{bottom:459.300600px;}
.y36_c00392{bottom:462.179815px;}
.y34_c00392{bottom:492.240600px;}
.y33_c00392{bottom:495.119802px;}
.y2f_c00392{bottom:527.879789px;}
.y30_c00392{bottom:534.000600px;}
.y32_c00392{bottom:536.879785px;}
.y2e_c00392{bottom:545.879782px;}
.y2c_c00392{bottom:575.760600px;}
.y2b_c00392{bottom:578.639769px;}
.y28_c00392{bottom:611.579755px;}
.y29_c00392{bottom:626.520600px;}
.y27_c00392{bottom:629.399748px;}
.y26_c00392{bottom:647.219741px;}
.y22_c00392{bottom:679.979728px;}
.y23_c00392{bottom:686.100600px;}
.y25_c00392{bottom:688.979724px;}
.y21_c00392{bottom:697.979721px;}
.y1e_c00392{bottom:730.739708px;}
.y1f_c00392{bottom:745.680600px;}
.y1d_c00392{bottom:748.559701px;}
.y1c_c00392{bottom:766.559693px;}
.y18_c00392{bottom:799.319680px;}
.y19_c00392{bottom:805.440600px;}
.y1b_c00392{bottom:808.319677px;}
.y17_c00392{bottom:817.139673px;}
.y16_c00392{bottom:852.239659px;}
.y15_c00392{bottom:905.519638px;}
.y14_c00392{bottom:938.459625px;}
.y13_c00392{bottom:971.219612px;}
.y11_c00392{bottom:1003.080600px;}
.y10_c00392{bottom:1005.959598px;}
.ye_c00392{bottom:1036.020600px;}
.yd_c00392{bottom:1038.899584px;}
.yb_c00392{bottom:1068.780600px;}
.ya_c00392{bottom:1071.659571px;}
.y7_c00392{bottom:1104.599558px;}
.y8_c00392{bottom:1119.540600px;}
.y6_c00392{bottom:1122.419551px;}
.y5_c00392{bottom:1140.239544px;}
.y2_c00392{bottom:1176.059530px;}
.y1_c00392{bottom:1196.219522px;}
.h5_c00392{height:14.940000px;}
.h7_c00392{height:14.940360px;}
.h2_c00392{height:54.628572px;}
.h3_c00392{height:56.320290px;}
.h1_c00392{height:58.651148px;}
.h6_c00392{height:92.320276px;}
.h4_c00392{height:127.600261px;}
.h0_c00392{height:1263.000000px;}
.w3_c00392{width:3.240000px;}
.w2_c00392{width:7.020000px;}
.w1_c00392{width:7.200000px;}
.w0_c00392{width:892.500000px;}
.x0_c00392{left:0.000000px;}
.x5_c00392{left:127.620262px;}
.x10_c00392{left:134.459946px;}
.x1_c00392{left:181.799927px;}
.x6_c00392{left:211.139916px;}
.x2_c00392{left:329.039408px;}
.x4_c00392{left:433.979826px;}
.x7_c00392{left:456.300000px;}
.x12_c00392{left:509.039796px;}
.x8_c00392{left:516.599793px;}
.x9_c00392{left:542.880000px;}
.x13_c00392{left:581.759767px;}
.xe_c00392{left:608.219757px;}
.xa_c00392{left:615.779754px;}
.xb_c00392{left:642.060000px;}
.x11_c00392{left:645.840000px;}
.x14_c00392{left:665.639734px;}
.xc_c00392{left:707.579717px;}
.x15_c00392{left:715.139714px;}
.xd_c00392{left:741.420000px;}
.xf_c00392{left:745.200000px;}
.x3_c00392{left:765.359694px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.v2_c00392{vertical-align:31.999987pt;}
.v1_c00392{vertical-align:63.359975pt;}
.ls1_c00392{letter-spacing:0.000000pt;}
.ls0_c00392{letter-spacing:0.207463pt;}
.ws1_c00392{word-spacing:-13.551457pt;}
.ws0_c00392{word-spacing:-13.343995pt;}
.ws2_c00392{word-spacing:0.000000pt;}
._1_c00392{margin-left:-0.982555pt;}
._0_c00392{width:1.314126pt;}
._8_c00392{width:66.869971pt;}
._4_c00392{width:70.044284pt;}
._9_c00392{width:87.004934pt;}
._b_c00392{width:102.060271pt;}
._a_c00392{width:162.252392pt;}
._10_c00392{width:535.496562pt;}
._d_c00392{width:567.844121pt;}
._11_c00392{width:572.840547pt;}
._c_c00392{width:597.124109pt;}
._e_c00392{width:599.908108pt;}
._2_c00392{width:615.844102pt;}
._5_c00392{width:658.564085pt;}
._f_c00392{width:698.596068pt;}
._3_c00392{width:725.236058pt;}
._7_c00392{width:864.702421pt;}
._6_c00392{width:998.032261pt;}
.fs2_c00392{font-size:47.999981pt;}
.fs0_c00392{font-size:53.119979pt;}
.fs1_c00392{font-size:58.879976pt;}
.y0_c00392{bottom:0.000000pt;}
.y9_c00392{bottom:2.559068pt;}
.yc_c00392{bottom:2.559086pt;}
.yf_c00392{bottom:2.559097pt;}
.y12_c00392{bottom:2.559109pt;}
.y1a_c00392{bottom:2.559179pt;}
.y20_c00392{bottom:2.559201pt;}
.y24_c00392{bottom:2.559222pt;}
.y2a_c00392{bottom:2.559243pt;}
.y2d_c00392{bottom:2.559261pt;}
.y31_c00392{bottom:2.559276pt;}
.y35_c00392{bottom:2.559291pt;}
.y38_c00392{bottom:2.559302pt;}
.y3b_c00392{bottom:2.559314pt;}
.y43_c00392{bottom:2.559384pt;}
.y49_c00392{bottom:2.559726pt;}
.y4_c00392{bottom:67.466906pt;}
.y3_c00392{bottom:101.386893pt;}
.y47_c00392{bottom:137.066612pt;}
.y48_c00392{bottom:150.346880pt;}
.y46_c00392{bottom:152.906606pt;}
.y45_c00392{bottom:168.746599pt;}
.y41_c00392{bottom:197.866588pt;}
.y42_c00392{bottom:203.307200pt;}
.y44_c00392{bottom:205.866584pt;}
.y40_c00392{bottom:213.866581pt;}
.y3f_c00392{bottom:245.066569pt;}
.y3e_c00392{bottom:292.426550pt;}
.y3d_c00392{bottom:321.546538pt;}
.y3c_c00392{bottom:350.826526pt;}
.y3a_c00392{bottom:379.147200pt;}
.y39_c00392{bottom:381.706514pt;}
.y37_c00392{bottom:408.267200pt;}
.y36_c00392{bottom:410.826502pt;}
.y34_c00392{bottom:437.547200pt;}
.y33_c00392{bottom:440.106491pt;}
.y2f_c00392{bottom:469.226479pt;}
.y30_c00392{bottom:474.667200pt;}
.y32_c00392{bottom:477.226476pt;}
.y2e_c00392{bottom:485.226473pt;}
.y2c_c00392{bottom:511.787200pt;}
.y2b_c00392{bottom:514.346461pt;}
.y28_c00392{bottom:543.626449pt;}
.y29_c00392{bottom:556.907200pt;}
.y27_c00392{bottom:559.466443pt;}
.y26_c00392{bottom:575.306437pt;}
.y22_c00392{bottom:604.426425pt;}
.y23_c00392{bottom:609.867200pt;}
.y25_c00392{bottom:612.426422pt;}
.y21_c00392{bottom:620.426418pt;}
.y1e_c00392{bottom:649.546407pt;}
.y1f_c00392{bottom:662.827200pt;}
.y1d_c00392{bottom:665.386401pt;}
.y1c_c00392{bottom:681.386394pt;}
.y18_c00392{bottom:710.506382pt;}
.y19_c00392{bottom:715.947200pt;}
.y1b_c00392{bottom:718.506379pt;}
.y17_c00392{bottom:726.346376pt;}
.y16_c00392{bottom:757.546364pt;}
.y15_c00392{bottom:804.906345pt;}
.y14_c00392{bottom:834.186333pt;}
.y13_c00392{bottom:863.306321pt;}
.y11_c00392{bottom:891.627200pt;}
.y10_c00392{bottom:894.186309pt;}
.ye_c00392{bottom:920.907200pt;}
.yd_c00392{bottom:923.466297pt;}
.yb_c00392{bottom:950.027200pt;}
.ya_c00392{bottom:952.586286pt;}
.y7_c00392{bottom:981.866274pt;}
.y8_c00392{bottom:995.147200pt;}
.y6_c00392{bottom:997.706268pt;}
.y5_c00392{bottom:1013.546261pt;}
.y2_c00392{bottom:1045.386249pt;}
.y1_c00392{bottom:1063.306241pt;}
.h5_c00392{height:13.280000pt;}
.h7_c00392{height:13.280320pt;}
.h2_c00392{height:48.558731pt;}
.h3_c00392{height:50.062480pt;}
.h1_c00392{height:52.134354pt;}
.h6_c00392{height:82.062467pt;}
.h4_c00392{height:113.422455pt;}
.h0_c00392{height:1122.666667pt;}
.w3_c00392{width:2.880000pt;}
.w2_c00392{width:6.240000pt;}
.w1_c00392{width:6.400000pt;}
.w0_c00392{width:793.333333pt;}
.x0_c00392{left:0.000000pt;}
.x5_c00392{left:113.440233pt;}
.x10_c00392{left:119.519952pt;}
.x1_c00392{left:161.599935pt;}
.x6_c00392{left:187.679925pt;}
.x2_c00392{left:292.479474pt;}
.x4_c00392{left:385.759846pt;}
.x7_c00392{left:405.600000pt;}
.x12_c00392{left:452.479819pt;}
.x8_c00392{left:459.199816pt;}
.x9_c00392{left:482.560000pt;}
.x13_c00392{left:517.119793pt;}
.xe_c00392{left:540.639784pt;}
.xa_c00392{left:547.359781pt;}
.xb_c00392{left:570.720000pt;}
.x11_c00392{left:574.080000pt;}
.x14_c00392{left:591.679763pt;}
.xc_c00392{left:628.959748pt;}
.x15_c00392{left:635.679746pt;}
.xd_c00392{left:659.040000pt;}
.xf_c00392{left:662.400000pt;}
.x3_c00392{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00393{font-family:ff1_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:ff2_c00393;src:url('chunks/assets/font_2858248321c1e0b79730a4af.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_d826406499a613675cb301b6.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_bd2e805bddc734bea677e548.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00393{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.v1_c00393{vertical-align:35.999986px;}
.v2_c00393{vertical-align:71.999971px;}
.ls1_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00393{word-spacing:-15.245389px;}
.ws0_c00393{word-spacing:-15.011994px;}
.ws2_c00393{word-spacing:0.000000px;}
._1_c00393{margin-left:-1.105374px;}
._0_c00393{width:1.195563px;}
._a_c00393{width:75.228717px;}
._6_c00393{width:78.799820px;}
._b_c00393{width:97.880551px;}
._d_c00393{width:114.817805px;}
._c_c00393{width:182.533941px;}
._4_c00393{width:601.611087px;}
._f_c00393{width:638.824636px;}
._10_c00393{width:644.728445px;}
._e_c00393{width:671.764623px;}
._2_c00393{width:674.896621px;}
._7_c00393{width:740.884595px;}
._3_c00393{width:785.920577px;}
._5_c00393{width:815.890565px;}
._9_c00393{width:972.790224px;}
._8_c00393{width:1122.786294px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs2_c00393{font-size:53.999978px;}
.fs0_c00393{font-size:59.759976px;}
.fs1_c00393{font-size:66.239974px;}
.y0_c00393{bottom:0.000000px;}
.y8_c00393{bottom:2.878955px;}
.ye_c00393{bottom:2.878979px;}
.y11_c00393{bottom:2.878999px;}
.y14_c00393{bottom:2.879012px;}
.y17_c00393{bottom:2.879025px;}
.y1a_c00393{bottom:2.879038px;}
.y23_c00393{bottom:2.879131px;}
.y29_c00393{bottom:2.879154px;}
.y2d_c00393{bottom:2.879178px;}
.y33_c00393{bottom:2.879202px;}
.y36_c00393{bottom:2.879222px;}
.y3a_c00393{bottom:2.879239px;}
.y3e_c00393{bottom:2.879256px;}
.y41_c00393{bottom:2.879269px;}
.y44_c00393{bottom:2.879282px;}
.y4_c00393{bottom:75.899970px;}
.y3_c00393{bottom:114.059954px;}
.y48_c00393{bottom:161.399935px;}
.y47_c00393{bottom:194.159922px;}
.y46_c00393{bottom:227.099909px;}
.y45_c00393{bottom:259.859896px;}
.y43_c00393{bottom:291.720600px;}
.y42_c00393{bottom:294.599882px;}
.y40_c00393{bottom:324.660600px;}
.y3f_c00393{bottom:327.539869px;}
.y3d_c00393{bottom:357.420600px;}
.y3c_c00393{bottom:360.299856px;}
.y38_c00393{bottom:393.239843px;}
.y39_c00393{bottom:399.180600px;}
.y3b_c00393{bottom:402.059839px;}
.y37_c00393{bottom:411.059836px;}
.y35_c00393{bottom:441.120600px;}
.y34_c00393{bottom:443.999822px;}
.y31_c00393{bottom:476.759809px;}
.y32_c00393{bottom:491.700600px;}
.y30_c00393{bottom:494.579802px;}
.y2f_c00393{bottom:512.399795px;}
.y2b_c00393{bottom:545.339782px;}
.y2c_c00393{bottom:551.460600px;}
.y2e_c00393{bottom:554.339778px;}
.y2a_c00393{bottom:563.159775px;}
.y27_c00393{bottom:596.099762px;}
.y28_c00393{bottom:611.040600px;}
.y26_c00393{bottom:613.919754px;}
.y25_c00393{bottom:631.739747px;}
.y21_c00393{bottom:664.499734px;}
.y22_c00393{bottom:670.620600px;}
.y24_c00393{bottom:673.499731px;}
.y20_c00393{bottom:682.499727px;}
.y1f_c00393{bottom:717.599713px;}
.y1e_c00393{bottom:770.879692px;}
.y1d_c00393{bottom:803.639679px;}
.y1c_c00393{bottom:836.579665px;}
.y1b_c00393{bottom:869.339652px;}
.y19_c00393{bottom:901.200600px;}
.y18_c00393{bottom:904.079638px;}
.y16_c00393{bottom:934.140600px;}
.y15_c00393{bottom:937.019625px;}
.y13_c00393{bottom:966.900600px;}
.y12_c00393{bottom:969.779612px;}
.y10_c00393{bottom:999.840600px;}
.yf_c00393{bottom:1002.719599px;}
.yc_c00393{bottom:1035.479586px;}
.yd_c00393{bottom:1050.600600px;}
.yb_c00393{bottom:1053.479579px;}
.ya_c00393{bottom:1071.299571px;}
.y6_c00393{bottom:1104.059558px;}
.y7_c00393{bottom:1110.180600px;}
.y9_c00393{bottom:1113.059555px;}
.y5_c00393{bottom:1122.059551px;}
.y2_c00393{bottom:1157.159537px;}
.y1_c00393{bottom:1196.039522px;}
.h5_c00393{height:14.940000px;}
.h2_c00393{height:54.628572px;}
.h3_c00393{height:56.320290px;}
.h1_c00393{height:58.651148px;}
.h8_c00393{height:91.600276px;}
.h4_c00393{height:92.320276px;}
.h7_c00393{height:127.600261px;}
.h6_c00393{height:128.320261px;}
.h0_c00393{height:1263.000000px;}
.w3_c00393{width:3.240000px;}
.w2_c00393{width:7.020000px;}
.w1_c00393{width:7.200000px;}
.w0_c00393{width:892.500000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:127.619949px;}
.xe_c00393{left:134.459946px;}
.x3_c00393{left:211.139916px;}
.x2_c00393{left:433.979514px;}
.x4_c00393{left:456.300000px;}
.x10_c00393{left:509.039796px;}
.x5_c00393{left:516.599793px;}
.x6_c00393{left:542.880000px;}
.x11_c00393{left:581.759767px;}
.xc_c00393{left:608.219757px;}
.x7_c00393{left:615.779754px;}
.x8_c00393{left:642.060000px;}
.xf_c00393{left:645.840000px;}
.x12_c00393{left:665.639734px;}
.xb_c00393{left:707.579717px;}
.x9_c00393{left:715.139714px;}
.xa_c00393{left:741.420000px;}
.xd_c00393{left:745.200000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.v1_c00393{vertical-align:31.999987pt;}
.v2_c00393{vertical-align:63.999974pt;}
.ls1_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:0.207463pt;}
.ws1_c00393{word-spacing:-13.551457pt;}
.ws0_c00393{word-spacing:-13.343995pt;}
.ws2_c00393{word-spacing:0.000000pt;}
._1_c00393{margin-left:-0.982555pt;}
._0_c00393{width:1.062723pt;}
._a_c00393{width:66.869971pt;}
._6_c00393{width:70.044284pt;}
._b_c00393{width:87.004934pt;}
._d_c00393{width:102.060271pt;}
._c_c00393{width:162.252392pt;}
._4_c00393{width:534.765411pt;}
._f_c00393{width:567.844121pt;}
._10_c00393{width:573.091951pt;}
._e_c00393{width:597.124109pt;}
._2_c00393{width:599.908108pt;}
._7_c00393{width:658.564085pt;}
._3_c00393{width:698.596068pt;}
._5_c00393{width:725.236058pt;}
._9_c00393{width:864.702421pt;}
._8_c00393{width:998.032261pt;}
.fs2_c00393{font-size:47.999981pt;}
.fs0_c00393{font-size:53.119979pt;}
.fs1_c00393{font-size:58.879976pt;}
.y0_c00393{bottom:0.000000pt;}
.y8_c00393{bottom:2.559071pt;}
.ye_c00393{bottom:2.559092pt;}
.y11_c00393{bottom:2.559110pt;}
.y14_c00393{bottom:2.559122pt;}
.y17_c00393{bottom:2.559134pt;}
.y1a_c00393{bottom:2.559145pt;}
.y23_c00393{bottom:2.559227pt;}
.y29_c00393{bottom:2.559248pt;}
.y2d_c00393{bottom:2.559270pt;}
.y33_c00393{bottom:2.559291pt;}
.y36_c00393{bottom:2.559309pt;}
.y3a_c00393{bottom:2.559324pt;}
.y3e_c00393{bottom:2.559339pt;}
.y41_c00393{bottom:2.559350pt;}
.y44_c00393{bottom:2.559362pt;}
.y4_c00393{bottom:67.466640pt;}
.y3_c00393{bottom:101.386626pt;}
.y48_c00393{bottom:143.466609pt;}
.y47_c00393{bottom:172.586598pt;}
.y46_c00393{bottom:201.866586pt;}
.y45_c00393{bottom:230.986574pt;}
.y43_c00393{bottom:259.307200pt;}
.y42_c00393{bottom:261.866562pt;}
.y40_c00393{bottom:288.587200pt;}
.y3f_c00393{bottom:291.146550pt;}
.y3d_c00393{bottom:317.707200pt;}
.y3c_c00393{bottom:320.266539pt;}
.y38_c00393{bottom:349.546527pt;}
.y39_c00393{bottom:354.827200pt;}
.y3b_c00393{bottom:357.386524pt;}
.y37_c00393{bottom:365.386521pt;}
.y35_c00393{bottom:392.107200pt;}
.y34_c00393{bottom:394.666509pt;}
.y31_c00393{bottom:423.786497pt;}
.y32_c00393{bottom:437.067200pt;}
.y30_c00393{bottom:439.626491pt;}
.y2f_c00393{bottom:455.466484pt;}
.y2b_c00393{bottom:484.746473pt;}
.y2c_c00393{bottom:490.187200pt;}
.y2e_c00393{bottom:492.746470pt;}
.y2a_c00393{bottom:500.586466pt;}
.y27_c00393{bottom:529.866455pt;}
.y28_c00393{bottom:543.147200pt;}
.y26_c00393{bottom:545.706448pt;}
.y25_c00393{bottom:561.546442pt;}
.y21_c00393{bottom:590.666430pt;}
.y22_c00393{bottom:596.107200pt;}
.y24_c00393{bottom:598.666427pt;}
.y20_c00393{bottom:606.666424pt;}
.y1f_c00393{bottom:637.866412pt;}
.y1e_c00393{bottom:685.226393pt;}
.y1d_c00393{bottom:714.346381pt;}
.y1c_c00393{bottom:743.626369pt;}
.y1b_c00393{bottom:772.746358pt;}
.y19_c00393{bottom:801.067200pt;}
.y18_c00393{bottom:803.626345pt;}
.y16_c00393{bottom:830.347200pt;}
.y15_c00393{bottom:832.906334pt;}
.y13_c00393{bottom:859.467200pt;}
.y12_c00393{bottom:862.026322pt;}
.y10_c00393{bottom:888.747200pt;}
.yf_c00393{bottom:891.306310pt;}
.yc_c00393{bottom:920.426298pt;}
.yd_c00393{bottom:933.867200pt;}
.yb_c00393{bottom:936.426292pt;}
.ya_c00393{bottom:952.266286pt;}
.y6_c00393{bottom:981.386274pt;}
.y7_c00393{bottom:986.827200pt;}
.y9_c00393{bottom:989.386271pt;}
.y5_c00393{bottom:997.386268pt;}
.y2_c00393{bottom:1028.586255pt;}
.y1_c00393{bottom:1063.146241pt;}
.h5_c00393{height:13.280000pt;}
.h2_c00393{height:48.558731pt;}
.h3_c00393{height:50.062480pt;}
.h1_c00393{height:52.134354pt;}
.h8_c00393{height:81.422467pt;}
.h4_c00393{height:82.062467pt;}
.h7_c00393{height:113.422455pt;}
.h6_c00393{height:114.062454pt;}
.h0_c00393{height:1122.666667pt;}
.w3_c00393{width:2.880000pt;}
.w2_c00393{width:6.240000pt;}
.w1_c00393{width:6.400000pt;}
.w0_c00393{width:793.333333pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:113.439955pt;}
.xe_c00393{left:119.519952pt;}
.x3_c00393{left:187.679925pt;}
.x2_c00393{left:385.759568pt;}
.x4_c00393{left:405.600000pt;}
.x10_c00393{left:452.479819pt;}
.x5_c00393{left:459.199816pt;}
.x6_c00393{left:482.560000pt;}
.x11_c00393{left:517.119793pt;}
.xc_c00393{left:540.639784pt;}
.x7_c00393{left:547.359781pt;}
.x8_c00393{left:570.720000pt;}
.xf_c00393{left:574.080000pt;}
.x12_c00393{left:591.679763pt;}
.xb_c00393{left:628.959748pt;}
.x9_c00393{left:635.679746pt;}
.xa_c00393{left:659.040000pt;}
.xd_c00393{left:662.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00394{font-family:ff1_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:ff2_c00394;src:url('chunks/assets/font_7b1f10f844bfece5b50ad933.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_a9f9003b7f99eee2b657ca56.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_96742f42c619a3d2141dd37a.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00394{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.v2_c00394{vertical-align:35.999986px;}
.v1_c00394{vertical-align:71.279971px;}
.ls1_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00394{word-spacing:-15.245389px;}
.ws0_c00394{word-spacing:-15.011994px;}
.ws2_c00394{word-spacing:0.000000px;}
._1_c00394{margin-left:-1.105374px;}
._0_c00394{width:1.478392px;}
._3_c00394{width:75.228717px;}
._e_c00394{width:78.799820px;}
._4_c00394{width:97.880551px;}
._6_c00394{width:114.817805px;}
._5_c00394{width:182.533941px;}
._15_c00394{width:598.111158px;}
._b_c00394{width:602.433633px;}
._8_c00394{width:638.824636px;}
._16_c00394{width:640.123141px;}
._c_c00394{width:644.445616px;}
._12_c00394{width:667.442148px;}
._13_c00394{width:670.574146px;}
._7_c00394{width:671.764623px;}
._9_c00394{width:674.896621px;}
._18_c00394{width:736.562120px;}
._f_c00394{width:740.884595px;}
._14_c00394{width:781.598102px;}
._a_c00394{width:785.920577px;}
._17_c00394{width:811.568090px;}
._d_c00394{width:815.890565px;}
._11_c00394{width:968.467749px;}
._2_c00394{width:972.790224px;}
._10_c00394{width:1122.786294px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs2_c00394{font-size:53.999978px;}
.fs0_c00394{font-size:59.759976px;}
.fs1_c00394{font-size:66.239974px;}
.y0_c00394{bottom:0.000000px;}
.yb_c00394{bottom:2.878996px;}
.y11_c00394{bottom:2.879020px;}
.y15_c00394{bottom:2.879044px;}
.y1b_c00394{bottom:2.879067px;}
.y1e_c00394{bottom:2.879088px;}
.y22_c00394{bottom:2.879104px;}
.y26_c00394{bottom:2.879121px;}
.y29_c00394{bottom:2.879134px;}
.y2c_c00394{bottom:2.879147px;}
.y34_c00394{bottom:2.879227px;}
.y39_c00394{bottom:2.879247px;}
.y3f_c00394{bottom:2.879271px;}
.y42_c00394{bottom:2.879291px;}
.y46_c00394{bottom:2.879308px;}
.y4a_c00394{bottom:2.879324px;}
.y4d_c00394{bottom:2.879697px;}
.y4_c00394{bottom:75.900270px;}
.y3_c00394{bottom:114.060254px;}
.y4c_c00394{bottom:153.480240px;}
.y4b_c00394{bottom:156.359937px;}
.y49_c00394{bottom:186.420600px;}
.y48_c00394{bottom:189.299924px;}
.y44_c00394{bottom:222.059911px;}
.y45_c00394{bottom:228.180600px;}
.y47_c00394{bottom:231.059908px;}
.y43_c00394{bottom:239.879904px;}
.y41_c00394{bottom:269.940600px;}
.y40_c00394{bottom:272.819891px;}
.y3d_c00394{bottom:305.579878px;}
.y3e_c00394{bottom:320.520600px;}
.y3c_c00394{bottom:323.399871px;}
.y3b_c00394{bottom:341.399863px;}
.y37_c00394{bottom:374.159850px;}
.y38_c00394{bottom:380.280600px;}
.y3a_c00394{bottom:383.159847px;}
.y36_c00394{bottom:391.979843px;}
.y32_c00394{bottom:424.919830px;}
.y33_c00394{bottom:430.860600px;}
.y35_c00394{bottom:433.739827px;}
.y31_c00394{bottom:442.739823px;}
.y30_c00394{bottom:477.839809px;}
.y2f_c00394{bottom:531.119788px;}
.y2e_c00394{bottom:564.059774px;}
.y2d_c00394{bottom:596.819761px;}
.y2b_c00394{bottom:628.680600px;}
.y2a_c00394{bottom:631.559747px;}
.y28_c00394{bottom:661.620600px;}
.y27_c00394{bottom:664.499734px;}
.y25_c00394{bottom:694.380600px;}
.y24_c00394{bottom:697.259721px;}
.y20_c00394{bottom:730.199708px;}
.y21_c00394{bottom:736.140600px;}
.y23_c00394{bottom:739.019704px;}
.y1f_c00394{bottom:748.019701px;}
.y1d_c00394{bottom:777.900600px;}
.y1c_c00394{bottom:780.779688px;}
.y19_c00394{bottom:813.719675px;}
.y1a_c00394{bottom:828.660600px;}
.y18_c00394{bottom:831.539667px;}
.y17_c00394{bottom:849.359660px;}
.y13_c00394{bottom:882.299647px;}
.y14_c00394{bottom:888.240600px;}
.y16_c00394{bottom:891.119644px;}
.y12_c00394{bottom:900.119640px;}
.yf_c00394{bottom:933.059627px;}
.y10_c00394{bottom:948.000600px;}
.ye_c00394{bottom:950.879620px;}
.yd_c00394{bottom:968.699613px;}
.y9_c00394{bottom:1001.459599px;}
.ya_c00394{bottom:1007.580600px;}
.yc_c00394{bottom:1010.459596px;}
.y8_c00394{bottom:1019.459592px;}
.y7_c00394{bottom:1054.559578px;}
.y6_c00394{bottom:1107.839557px;}
.y5_c00394{bottom:1140.599544px;}
.y2_c00394{bottom:1176.059530px;}
.y1_c00394{bottom:1196.219522px;}
.h6_c00394{height:14.940000px;}
.h2_c00394{height:54.628572px;}
.h3_c00394{height:56.320290px;}
.h1_c00394{height:58.651148px;}
.h7_c00394{height:91.600276px;}
.h5_c00394{height:92.320276px;}
.h4_c00394{height:127.600261px;}
.h0_c00394{height:1263.000000px;}
.w3_c00394{width:3.240000px;}
.w4_c00394{width:6.840000px;}
.w2_c00394{width:7.020000px;}
.w1_c00394{width:7.200000px;}
.w0_c00394{width:892.500000px;}
.x0_c00394{left:0.000000px;}
.x5_c00394{left:127.620262px;}
.x6_c00394{left:134.459946px;}
.x1_c00394{left:181.799927px;}
.x9_c00394{left:211.139916px;}
.x2_c00394{left:329.039408px;}
.x4_c00394{left:433.979826px;}
.x18_c00394{left:455.220000px;}
.xa_c00394{left:456.300000px;}
.x15_c00394{left:509.039796px;}
.x19_c00394{left:515.519794px;}
.xb_c00394{left:516.599793px;}
.x1a_c00394{left:541.800000px;}
.xc_c00394{left:542.880000px;}
.x16_c00394{left:580.679768px;}
.x7_c00394{left:581.759767px;}
.x20_c00394{left:607.139757px;}
.x12_c00394{left:608.219757px;}
.x1b_c00394{left:614.699754px;}
.xd_c00394{left:615.779754px;}
.x1c_c00394{left:640.980000px;}
.xe_c00394{left:642.060000px;}
.x22_c00394{left:644.760000px;}
.x14_c00394{left:645.840000px;}
.x17_c00394{left:664.559734px;}
.x8_c00394{left:665.639734px;}
.x1f_c00394{left:706.499717px;}
.x11_c00394{left:707.579717px;}
.x1d_c00394{left:714.059714px;}
.xf_c00394{left:715.139714px;}
.x1e_c00394{left:740.340000px;}
.x10_c00394{left:741.420000px;}
.x21_c00394{left:744.120000px;}
.x13_c00394{left:745.200000px;}
.x3_c00394{left:765.359694px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.v2_c00394{vertical-align:31.999987pt;}
.v1_c00394{vertical-align:63.359975pt;}
.ls1_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.207463pt;}
.ws1_c00394{word-spacing:-13.551457pt;}
.ws0_c00394{word-spacing:-13.343995pt;}
.ws2_c00394{word-spacing:0.000000pt;}
._1_c00394{margin-left:-0.982555pt;}
._0_c00394{width:1.314126pt;}
._3_c00394{width:66.869971pt;}
._e_c00394{width:70.044284pt;}
._4_c00394{width:87.004934pt;}
._6_c00394{width:102.060271pt;}
._5_c00394{width:162.252392pt;}
._15_c00394{width:531.654362pt;}
._b_c00394{width:535.496562pt;}
._8_c00394{width:567.844121pt;}
._16_c00394{width:568.998347pt;}
._c_c00394{width:572.840547pt;}
._12_c00394{width:593.281909pt;}
._13_c00394{width:596.065908pt;}
._7_c00394{width:597.124109pt;}
._9_c00394{width:599.908108pt;}
._18_c00394{width:654.721884pt;}
._f_c00394{width:658.564085pt;}
._14_c00394{width:694.753868pt;}
._a_c00394{width:698.596068pt;}
._17_c00394{width:721.393858pt;}
._d_c00394{width:725.236058pt;}
._11_c00394{width:860.860221pt;}
._2_c00394{width:864.702421pt;}
._10_c00394{width:998.032261pt;}
.fs2_c00394{font-size:47.999981pt;}
.fs0_c00394{font-size:53.119979pt;}
.fs1_c00394{font-size:58.879976pt;}
.y0_c00394{bottom:0.000000pt;}
.yb_c00394{bottom:2.559107pt;}
.y11_c00394{bottom:2.559129pt;}
.y15_c00394{bottom:2.559150pt;}
.y1b_c00394{bottom:2.559171pt;}
.y1e_c00394{bottom:2.559189pt;}
.y22_c00394{bottom:2.559204pt;}
.y26_c00394{bottom:2.559219pt;}
.y29_c00394{bottom:2.559230pt;}
.y2c_c00394{bottom:2.559242pt;}
.y34_c00394{bottom:2.559312pt;}
.y39_c00394{bottom:2.559330pt;}
.y3f_c00394{bottom:2.559352pt;}
.y42_c00394{bottom:2.559370pt;}
.y46_c00394{bottom:2.559385pt;}
.y4a_c00394{bottom:2.559399pt;}
.y4d_c00394{bottom:2.559731pt;}
.y4_c00394{bottom:67.466906pt;}
.y3_c00394{bottom:101.386893pt;}
.y4c_c00394{bottom:136.426880pt;}
.y4b_c00394{bottom:138.986611pt;}
.y49_c00394{bottom:165.707200pt;}
.y48_c00394{bottom:168.266599pt;}
.y44_c00394{bottom:197.386588pt;}
.y45_c00394{bottom:202.827200pt;}
.y47_c00394{bottom:205.386585pt;}
.y43_c00394{bottom:213.226581pt;}
.y41_c00394{bottom:239.947200pt;}
.y40_c00394{bottom:242.506570pt;}
.y3d_c00394{bottom:271.626558pt;}
.y3e_c00394{bottom:284.907200pt;}
.y3c_c00394{bottom:287.466552pt;}
.y3b_c00394{bottom:303.466545pt;}
.y37_c00394{bottom:332.586534pt;}
.y38_c00394{bottom:338.027200pt;}
.y3a_c00394{bottom:340.586530pt;}
.y36_c00394{bottom:348.426527pt;}
.y32_c00394{bottom:377.706516pt;}
.y33_c00394{bottom:382.987200pt;}
.y35_c00394{bottom:385.546512pt;}
.y31_c00394{bottom:393.546509pt;}
.y30_c00394{bottom:424.746497pt;}
.y2f_c00394{bottom:472.106478pt;}
.y2e_c00394{bottom:501.386466pt;}
.y2d_c00394{bottom:530.506454pt;}
.y2b_c00394{bottom:558.827200pt;}
.y2a_c00394{bottom:561.386442pt;}
.y28_c00394{bottom:588.107200pt;}
.y27_c00394{bottom:590.666430pt;}
.y25_c00394{bottom:617.227200pt;}
.y24_c00394{bottom:619.786419pt;}
.y20_c00394{bottom:649.066407pt;}
.y21_c00394{bottom:654.347200pt;}
.y23_c00394{bottom:656.906404pt;}
.y1f_c00394{bottom:664.906401pt;}
.y1d_c00394{bottom:691.467200pt;}
.y1c_c00394{bottom:694.026389pt;}
.y19_c00394{bottom:723.306377pt;}
.y1a_c00394{bottom:736.587200pt;}
.y18_c00394{bottom:739.146371pt;}
.y17_c00394{bottom:754.986365pt;}
.y13_c00394{bottom:784.266353pt;}
.y14_c00394{bottom:789.547200pt;}
.y16_c00394{bottom:792.106350pt;}
.y12_c00394{bottom:800.106347pt;}
.yf_c00394{bottom:829.386335pt;}
.y10_c00394{bottom:842.667200pt;}
.ye_c00394{bottom:845.226329pt;}
.yd_c00394{bottom:861.066322pt;}
.y9_c00394{bottom:890.186311pt;}
.ya_c00394{bottom:895.627200pt;}
.yc_c00394{bottom:898.186307pt;}
.y8_c00394{bottom:906.186304pt;}
.y7_c00394{bottom:937.386292pt;}
.y6_c00394{bottom:984.746273pt;}
.y5_c00394{bottom:1013.866261pt;}
.y2_c00394{bottom:1045.386249pt;}
.y1_c00394{bottom:1063.306241pt;}
.h6_c00394{height:13.280000pt;}
.h2_c00394{height:48.558731pt;}
.h3_c00394{height:50.062480pt;}
.h1_c00394{height:52.134354pt;}
.h7_c00394{height:81.422467pt;}
.h5_c00394{height:82.062467pt;}
.h4_c00394{height:113.422455pt;}
.h0_c00394{height:1122.666667pt;}
.w3_c00394{width:2.880000pt;}
.w4_c00394{width:6.080000pt;}
.w2_c00394{width:6.240000pt;}
.w1_c00394{width:6.400000pt;}
.w0_c00394{width:793.333333pt;}
.x0_c00394{left:0.000000pt;}
.x5_c00394{left:113.440233pt;}
.x6_c00394{left:119.519952pt;}
.x1_c00394{left:161.599935pt;}
.x9_c00394{left:187.679925pt;}
.x2_c00394{left:292.479474pt;}
.x4_c00394{left:385.759846pt;}
.x18_c00394{left:404.640000pt;}
.xa_c00394{left:405.600000pt;}
.x15_c00394{left:452.479819pt;}
.x19_c00394{left:458.239817pt;}
.xb_c00394{left:459.199816pt;}
.x1a_c00394{left:481.600000pt;}
.xc_c00394{left:482.560000pt;}
.x16_c00394{left:516.159794pt;}
.x7_c00394{left:517.119793pt;}
.x20_c00394{left:539.679784pt;}
.x12_c00394{left:540.639784pt;}
.x1b_c00394{left:546.399781pt;}
.xd_c00394{left:547.359781pt;}
.x1c_c00394{left:569.760000pt;}
.xe_c00394{left:570.720000pt;}
.x22_c00394{left:573.120000pt;}
.x14_c00394{left:574.080000pt;}
.x17_c00394{left:590.719764pt;}
.x8_c00394{left:591.679763pt;}
.x1f_c00394{left:627.999749pt;}
.x11_c00394{left:628.959748pt;}
.x1d_c00394{left:634.719746pt;}
.xf_c00394{left:635.679746pt;}
.x1e_c00394{left:658.080000pt;}
.x10_c00394{left:659.040000pt;}
.x21_c00394{left:661.440000pt;}
.x13_c00394{left:662.400000pt;}
.x3_c00394{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00395{font-family:ff1_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:ff2_c00395;src:url('chunks/assets/font_f85a7eb22a4093bb97166649.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_d826406499a613675cb301b6.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_51dfd74e2f40cb01d0298a51.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.v2_c00395{vertical-align:35.999986px;}
.v1_c00395{vertical-align:71.279971px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.233395px;}
.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;}
}
.ws0_c00395{word-spacing:-15.245389px;}
.ws1_c00395{word-spacing:-15.011994px;}
.ws2_c00395{word-spacing:0.000000px;}
._1_c00395{margin-left:-1.105374px;}
._0_c00395{width:1.195563px;}
._4_c00395{width:75.228717px;}
._f_c00395{width:78.799820px;}
._5_c00395{width:97.880551px;}
._7_c00395{width:114.817805px;}
._6_c00395{width:182.533941px;}
._c_c00395{width:601.611087px;}
._9_c00395{width:638.824636px;}
._d_c00395{width:644.728445px;}
._8_c00395{width:671.764623px;}
._a_c00395{width:674.896621px;}
._10_c00395{width:740.884595px;}
._b_c00395{width:785.920577px;}
._e_c00395{width:815.890565px;}
._3_c00395{width:972.790224px;}
._2_c00395{width:1118.463819px;}
._11_c00395{width:1122.786294px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs2_c00395{font-size:53.999978px;}
.fs0_c00395{font-size:59.759976px;}
.fs1_c00395{font-size:66.239974px;}
.y0_c00395{bottom:0.000000px;}
.y7_c00395{bottom:2.878951px;}
.yf_c00395{bottom:2.879030px;}
.y15_c00395{bottom:2.879054px;}
.y19_c00395{bottom:2.879078px;}
.y1f_c00395{bottom:2.879102px;}
.y22_c00395{bottom:2.879122px;}
.y26_c00395{bottom:2.879139px;}
.y2a_c00395{bottom:2.879156px;}
.y2d_c00395{bottom:2.879169px;}
.y30_c00395{bottom:2.879182px;}
.y38_c00395{bottom:2.879261px;}
.y3e_c00395{bottom:2.879285px;}
.y42_c00395{bottom:2.879309px;}
.y48_c00395{bottom:2.879693px;}
.y4_c00395{bottom:75.899970px;}
.y3_c00395{bottom:114.059954px;}
.y46_c00395{bottom:150.779940px;}
.y47_c00395{bottom:165.720240px;}
.y45_c00395{bottom:168.599933px;}
.y44_c00395{bottom:186.419925px;}
.y40_c00395{bottom:219.359912px;}
.y41_c00395{bottom:225.480600px;}
.y43_c00395{bottom:228.359909px;}
.y3f_c00395{bottom:237.179905px;}
.y3c_c00395{bottom:270.119892px;}
.y3d_c00395{bottom:285.060600px;}
.y3b_c00395{bottom:287.939885px;}
.y3a_c00395{bottom:305.759878px;}
.y36_c00395{bottom:338.519865px;}
.y37_c00395{bottom:344.640600px;}
.y39_c00395{bottom:347.519861px;}
.y35_c00395{bottom:356.519857px;}
.y34_c00395{bottom:391.619843px;}
.y33_c00395{bottom:444.899822px;}
.y32_c00395{bottom:477.659809px;}
.y31_c00395{bottom:510.599796px;}
.y2f_c00395{bottom:542.460600px;}
.y2e_c00395{bottom:545.339782px;}
.y2c_c00395{bottom:575.220600px;}
.y2b_c00395{bottom:578.099769px;}
.y29_c00395{bottom:608.160600px;}
.y28_c00395{bottom:611.039756px;}
.y24_c00395{bottom:643.799742px;}
.y25_c00395{bottom:649.920600px;}
.y27_c00395{bottom:652.799739px;}
.y23_c00395{bottom:661.799735px;}
.y21_c00395{bottom:691.680600px;}
.y20_c00395{bottom:694.559722px;}
.y1d_c00395{bottom:727.499709px;}
.y1e_c00395{bottom:742.440600px;}
.y1c_c00395{bottom:745.319702px;}
.y1b_c00395{bottom:763.139695px;}
.y17_c00395{bottom:796.079682px;}
.y18_c00395{bottom:802.020600px;}
.y1a_c00395{bottom:804.899678px;}
.y16_c00395{bottom:813.899674px;}
.y13_c00395{bottom:846.659661px;}
.y14_c00395{bottom:861.600600px;}
.y12_c00395{bottom:864.479654px;}
.y11_c00395{bottom:882.479647px;}
.yd_c00395{bottom:915.239634px;}
.ye_c00395{bottom:921.360600px;}
.y10_c00395{bottom:924.239630px;}
.yc_c00395{bottom:933.059627px;}
.yb_c00395{bottom:968.159613px;}
.ya_c00395{bottom:1021.439591px;}
.y9_c00395{bottom:1054.379578px;}
.y8_c00395{bottom:1087.319565px;}
.y6_c00395{bottom:1119.180600px;}
.y5_c00395{bottom:1122.059551px;}
.y2_c00395{bottom:1157.159537px;}
.y1_c00395{bottom:1196.039522px;}
.h4_c00395{height:14.940000px;}
.h8_c00395{height:14.940360px;}
.h2_c00395{height:54.628572px;}
.h3_c00395{height:56.320290px;}
.h1_c00395{height:58.651148px;}
.h7_c00395{height:91.600276px;}
.h6_c00395{height:92.320276px;}
.h5_c00395{height:127.600261px;}
.h0_c00395{height:1263.000000px;}
.w3_c00395{width:3.240000px;}
.w2_c00395{width:6.840000px;}
.w1_c00395{width:7.020000px;}
.w4_c00395{width:7.200000px;}
.w0_c00395{width:892.500000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:127.619949px;}
.x3_c00395{left:134.459946px;}
.xd_c00395{left:211.139916px;}
.x2_c00395{left:433.979514px;}
.x4_c00395{left:455.220000px;}
.xe_c00395{left:456.300000px;}
.x5_c00395{left:507.959797px;}
.x19_c00395{left:509.039796px;}
.xf_c00395{left:516.599793px;}
.x6_c00395{left:541.800000px;}
.x10_c00395{left:542.880000px;}
.xb_c00395{left:581.759767px;}
.x16_c00395{left:608.219757px;}
.x11_c00395{left:615.779754px;}
.x7_c00395{left:640.979744px;}
.x12_c00395{left:642.060000px;}
.x8_c00395{left:644.760000px;}
.x18_c00395{left:645.840000px;}
.xc_c00395{left:665.639734px;}
.x15_c00395{left:707.579717px;}
.x13_c00395{left:715.139714px;}
.x9_c00395{left:740.339704px;}
.x14_c00395{left:741.420000px;}
.xa_c00395{left:744.120000px;}
.x17_c00395{left:745.200000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.v2_c00395{vertical-align:31.999987pt;}
.v1_c00395{vertical-align:63.359975pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.207463pt;}
.ws0_c00395{word-spacing:-13.551457pt;}
.ws1_c00395{word-spacing:-13.343995pt;}
.ws2_c00395{word-spacing:0.000000pt;}
._1_c00395{margin-left:-0.982555pt;}
._0_c00395{width:1.062723pt;}
._4_c00395{width:66.869971pt;}
._f_c00395{width:70.044284pt;}
._5_c00395{width:87.004934pt;}
._7_c00395{width:102.060271pt;}
._6_c00395{width:162.252392pt;}
._c_c00395{width:534.765411pt;}
._9_c00395{width:567.844121pt;}
._d_c00395{width:573.091951pt;}
._8_c00395{width:597.124109pt;}
._a_c00395{width:599.908108pt;}
._10_c00395{width:658.564085pt;}
._b_c00395{width:698.596068pt;}
._e_c00395{width:725.236058pt;}
._3_c00395{width:864.702421pt;}
._2_c00395{width:994.190061pt;}
._11_c00395{width:998.032261pt;}
.fs2_c00395{font-size:47.999981pt;}
.fs0_c00395{font-size:53.119979pt;}
.fs1_c00395{font-size:58.879976pt;}
.y0_c00395{bottom:0.000000pt;}
.y7_c00395{bottom:2.559068pt;}
.yf_c00395{bottom:2.559138pt;}
.y15_c00395{bottom:2.559159pt;}
.y19_c00395{bottom:2.559180pt;}
.y1f_c00395{bottom:2.559202pt;}
.y22_c00395{bottom:2.559220pt;}
.y26_c00395{bottom:2.559235pt;}
.y2a_c00395{bottom:2.559249pt;}
.y2d_c00395{bottom:2.559261pt;}
.y30_c00395{bottom:2.559273pt;}
.y38_c00395{bottom:2.559343pt;}
.y3e_c00395{bottom:2.559364pt;}
.y42_c00395{bottom:2.559385pt;}
.y48_c00395{bottom:2.559727pt;}
.y4_c00395{bottom:67.466640pt;}
.y3_c00395{bottom:101.386626pt;}
.y46_c00395{bottom:134.026613pt;}
.y47_c00395{bottom:147.306880pt;}
.y45_c00395{bottom:149.866607pt;}
.y44_c00395{bottom:165.706600pt;}
.y40_c00395{bottom:194.986589pt;}
.y41_c00395{bottom:200.427200pt;}
.y43_c00395{bottom:202.986585pt;}
.y3f_c00395{bottom:210.826582pt;}
.y3c_c00395{bottom:240.106571pt;}
.y3d_c00395{bottom:253.387200pt;}
.y3b_c00395{bottom:255.946564pt;}
.y3a_c00395{bottom:271.786558pt;}
.y36_c00395{bottom:300.906546pt;}
.y37_c00395{bottom:306.347200pt;}
.y39_c00395{bottom:308.906543pt;}
.y35_c00395{bottom:316.906540pt;}
.y34_c00395{bottom:348.106527pt;}
.y33_c00395{bottom:395.466508pt;}
.y32_c00395{bottom:424.586497pt;}
.y31_c00395{bottom:453.866485pt;}
.y2f_c00395{bottom:482.187200pt;}
.y2e_c00395{bottom:484.746473pt;}
.y2c_c00395{bottom:511.307200pt;}
.y2b_c00395{bottom:513.866461pt;}
.y29_c00395{bottom:540.587200pt;}
.y28_c00395{bottom:543.146449pt;}
.y24_c00395{bottom:572.266438pt;}
.y25_c00395{bottom:577.707200pt;}
.y27_c00395{bottom:580.266435pt;}
.y23_c00395{bottom:588.266431pt;}
.y21_c00395{bottom:614.827200pt;}
.y20_c00395{bottom:617.386420pt;}
.y1d_c00395{bottom:646.666408pt;}
.y1e_c00395{bottom:659.947200pt;}
.y1c_c00395{bottom:662.506402pt;}
.y1b_c00395{bottom:678.346395pt;}
.y17_c00395{bottom:707.626384pt;}
.y18_c00395{bottom:712.907200pt;}
.y1a_c00395{bottom:715.466380pt;}
.y16_c00395{bottom:723.466377pt;}
.y13_c00395{bottom:752.586366pt;}
.y14_c00395{bottom:765.867200pt;}
.y12_c00395{bottom:768.426359pt;}
.y11_c00395{bottom:784.426353pt;}
.yd_c00395{bottom:813.546341pt;}
.ye_c00395{bottom:818.987200pt;}
.y10_c00395{bottom:821.546338pt;}
.yc_c00395{bottom:829.386335pt;}
.yb_c00395{bottom:860.586322pt;}
.ya_c00395{bottom:907.946303pt;}
.y9_c00395{bottom:937.226292pt;}
.y8_c00395{bottom:966.506280pt;}
.y6_c00395{bottom:994.827200pt;}
.y5_c00395{bottom:997.386268pt;}
.y2_c00395{bottom:1028.586255pt;}
.y1_c00395{bottom:1063.146241pt;}
.h4_c00395{height:13.280000pt;}
.h8_c00395{height:13.280320pt;}
.h2_c00395{height:48.558731pt;}
.h3_c00395{height:50.062480pt;}
.h1_c00395{height:52.134354pt;}
.h7_c00395{height:81.422467pt;}
.h6_c00395{height:82.062467pt;}
.h5_c00395{height:113.422455pt;}
.h0_c00395{height:1122.666667pt;}
.w3_c00395{width:2.880000pt;}
.w2_c00395{width:6.080000pt;}
.w1_c00395{width:6.240000pt;}
.w4_c00395{width:6.400000pt;}
.w0_c00395{width:793.333333pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:113.439955pt;}
.x3_c00395{left:119.519952pt;}
.xd_c00395{left:187.679925pt;}
.x2_c00395{left:385.759568pt;}
.x4_c00395{left:404.640000pt;}
.xe_c00395{left:405.600000pt;}
.x5_c00395{left:451.519819pt;}
.x19_c00395{left:452.479819pt;}
.xf_c00395{left:459.199816pt;}
.x6_c00395{left:481.600000pt;}
.x10_c00395{left:482.560000pt;}
.xb_c00395{left:517.119793pt;}
.x16_c00395{left:540.639784pt;}
.x11_c00395{left:547.359781pt;}
.x7_c00395{left:569.759772pt;}
.x12_c00395{left:570.720000pt;}
.x8_c00395{left:573.120000pt;}
.x18_c00395{left:574.080000pt;}
.xc_c00395{left:591.679763pt;}
.x15_c00395{left:628.959748pt;}
.x13_c00395{left:635.679746pt;}
.x9_c00395{left:658.079737pt;}
.x14_c00395{left:659.040000pt;}
.xa_c00395{left:661.440000pt;}
.x17_c00395{left:662.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00396{font-family:ff1_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:ff2_c00396;src:url('chunks/assets/font_15af48b9f4ef7ca9cfd5241c.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_96742f42c619a3d2141dd37a.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00396;src:url('chunks/assets/font_3d3adf778e8dc9ac7c68e8f1.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.v1_c00396{vertical-align:35.279986px;}
.v2_c00396{vertical-align:71.279971px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00396{word-spacing:-15.245389px;}
.ws0_c00396{word-spacing:-15.011994px;}
.ws2_c00396{word-spacing:0.000000px;}
._1_c00396{margin-left:-1.105374px;}
._0_c00396{width:1.478392px;}
._9_c00396{width:75.228717px;}
._5_c00396{width:78.799820px;}
._a_c00396{width:97.880551px;}
._c_c00396{width:114.817805px;}
._b_c00396{width:182.533941px;}
._2_c00396{width:602.433633px;}
._13_c00396{width:638.824636px;}
._3_c00396{width:644.445616px;}
._d_c00396{width:667.442148px;}
._e_c00396{width:670.574146px;}
._14_c00396{width:674.896621px;}
._10_c00396{width:736.562120px;}
._6_c00396{width:740.884595px;}
._15_c00396{width:785.920577px;}
._f_c00396{width:811.568090px;}
._4_c00396{width:815.890565px;}
._8_c00396{width:968.467749px;}
._12_c00396{width:972.790224px;}
._11_c00396{width:1118.463819px;}
._7_c00396{width:1122.786294px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs2_c00396{font-size:53.999978px;}
.fs0_c00396{font-size:59.759976px;}
.fs1_c00396{font-size:66.239974px;}
.y0_c00396{bottom:0.000000px;}
.y7_c00396{bottom:2.878944px;}
.yb_c00396{bottom:2.878961px;}
.yf_c00396{bottom:2.878977px;}
.y12_c00396{bottom:2.878990px;}
.y15_c00396{bottom:2.879004px;}
.y1d_c00396{bottom:2.879083px;}
.y22_c00396{bottom:2.879103px;}
.y26_c00396{bottom:2.879120px;}
.y29_c00396{bottom:2.879133px;}
.y2c_c00396{bottom:2.879146px;}
.y35_c00396{bottom:2.879229px;}
.y39_c00396{bottom:2.879252px;}
.y3f_c00396{bottom:2.879276px;}
.y42_c00396{bottom:2.879297px;}
.y45_c00396{bottom:2.879310px;}
.y48_c00396{bottom:2.879323px;}
.y4b_c00396{bottom:2.879696px;}
.y4_c00396{bottom:75.900270px;}
.y3_c00396{bottom:114.060254px;}
.y4a_c00396{bottom:156.900240px;}
.y49_c00396{bottom:159.779936px;}
.y47_c00396{bottom:189.840600px;}
.y46_c00396{bottom:192.719923px;}
.y44_c00396{bottom:222.600600px;}
.y43_c00396{bottom:225.479910px;}
.y41_c00396{bottom:255.540600px;}
.y40_c00396{bottom:258.419897px;}
.y3d_c00396{bottom:291.179884px;}
.y3e_c00396{bottom:306.120600px;}
.y3c_c00396{bottom:308.999876px;}
.y3b_c00396{bottom:326.999869px;}
.y37_c00396{bottom:359.759856px;}
.y38_c00396{bottom:365.880600px;}
.y3a_c00396{bottom:368.759852px;}
.y36_c00396{bottom:377.579849px;}
.y33_c00396{bottom:410.519836px;}
.y34_c00396{bottom:425.460600px;}
.y32_c00396{bottom:428.339829px;}
.y31_c00396{bottom:446.159822px;}
.y30_c00396{bottom:481.259807px;}
.y2f_c00396{bottom:534.539786px;}
.y2e_c00396{bottom:567.479773px;}
.y2d_c00396{bottom:600.239760px;}
.y2b_c00396{bottom:632.100600px;}
.y2a_c00396{bottom:634.979746px;}
.y28_c00396{bottom:665.040600px;}
.y27_c00396{bottom:667.919733px;}
.y25_c00396{bottom:697.800600px;}
.y24_c00396{bottom:700.679720px;}
.y20_c00396{bottom:733.619707px;}
.y21_c00396{bottom:739.740600px;}
.y23_c00396{bottom:742.619703px;}
.y1f_c00396{bottom:751.439699px;}
.y1b_c00396{bottom:784.379686px;}
.y1c_c00396{bottom:790.320600px;}
.y1e_c00396{bottom:793.199683px;}
.y1a_c00396{bottom:802.199679px;}
.y19_c00396{bottom:837.299665px;}
.y18_c00396{bottom:890.579644px;}
.y17_c00396{bottom:923.519631px;}
.y16_c00396{bottom:956.279617px;}
.y14_c00396{bottom:988.140600px;}
.y13_c00396{bottom:991.019604px;}
.y11_c00396{bottom:1021.080600px;}
.y10_c00396{bottom:1023.959590px;}
.ye_c00396{bottom:1053.840600px;}
.yd_c00396{bottom:1056.719577px;}
.y9_c00396{bottom:1089.659564px;}
.ya_c00396{bottom:1095.600600px;}
.yc_c00396{bottom:1098.479561px;}
.y8_c00396{bottom:1107.479557px;}
.y6_c00396{bottom:1137.360600px;}
.y5_c00396{bottom:1140.239544px;}
.y2_c00396{bottom:1176.059530px;}
.y1_c00396{bottom:1196.219522px;}
.h4_c00396{height:14.940000px;}
.h2_c00396{height:54.628572px;}
.h3_c00396{height:56.320290px;}
.h1_c00396{height:58.651148px;}
.h5_c00396{height:91.600276px;}
.h7_c00396{height:92.320276px;}
.h6_c00396{height:127.600261px;}
.h0_c00396{height:1263.000000px;}
.w3_c00396{width:3.240000px;}
.w4_c00396{width:6.840000px;}
.w2_c00396{width:7.020000px;}
.w1_c00396{width:7.200000px;}
.w0_c00396{width:892.500000px;}
.x0_c00396{left:0.000000px;}
.x5_c00396{left:127.620262px;}
.x11_c00396{left:134.459946px;}
.x1_c00396{left:181.799927px;}
.x6_c00396{left:211.139916px;}
.x2_c00396{left:329.039408px;}
.x4_c00396{left:433.979826px;}
.x16_c00396{left:455.220000px;}
.x7_c00396{left:456.300000px;}
.x21_c00396{left:507.959797px;}
.x13_c00396{left:509.039796px;}
.x17_c00396{left:515.519794px;}
.x8_c00396{left:516.599793px;}
.x18_c00396{left:541.800000px;}
.x9_c00396{left:542.880000px;}
.x14_c00396{left:580.679768px;}
.x22_c00396{left:581.759767px;}
.x1e_c00396{left:607.139757px;}
.xf_c00396{left:608.219757px;}
.x19_c00396{left:614.699754px;}
.xa_c00396{left:615.779754px;}
.x1a_c00396{left:640.980000px;}
.xb_c00396{left:642.060000px;}
.x20_c00396{left:644.760000px;}
.x12_c00396{left:645.840000px;}
.x15_c00396{left:664.559734px;}
.x23_c00396{left:665.639734px;}
.x1d_c00396{left:706.499717px;}
.xe_c00396{left:707.579717px;}
.x1b_c00396{left:714.059714px;}
.xc_c00396{left:715.139714px;}
.x1c_c00396{left:740.340000px;}
.xd_c00396{left:741.420000px;}
.x1f_c00396{left:744.120000px;}
.x10_c00396{left:745.200000px;}
.x3_c00396{left:765.359694px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.v1_c00396{vertical-align:31.359987pt;}
.v2_c00396{vertical-align:63.359975pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.207463pt;}
.ws1_c00396{word-spacing:-13.551457pt;}
.ws0_c00396{word-spacing:-13.343995pt;}
.ws2_c00396{word-spacing:0.000000pt;}
._1_c00396{margin-left:-0.982555pt;}
._0_c00396{width:1.314126pt;}
._9_c00396{width:66.869971pt;}
._5_c00396{width:70.044284pt;}
._a_c00396{width:87.004934pt;}
._c_c00396{width:102.060271pt;}
._b_c00396{width:162.252392pt;}
._2_c00396{width:535.496562pt;}
._13_c00396{width:567.844121pt;}
._3_c00396{width:572.840547pt;}
._d_c00396{width:593.281909pt;}
._e_c00396{width:596.065908pt;}
._14_c00396{width:599.908108pt;}
._10_c00396{width:654.721884pt;}
._6_c00396{width:658.564085pt;}
._15_c00396{width:698.596068pt;}
._f_c00396{width:721.393858pt;}
._4_c00396{width:725.236058pt;}
._8_c00396{width:860.860221pt;}
._12_c00396{width:864.702421pt;}
._11_c00396{width:994.190061pt;}
._7_c00396{width:998.032261pt;}
.fs2_c00396{font-size:47.999981pt;}
.fs0_c00396{font-size:53.119979pt;}
.fs1_c00396{font-size:58.879976pt;}
.y0_c00396{bottom:0.000000pt;}
.y7_c00396{bottom:2.559061pt;}
.yb_c00396{bottom:2.559076pt;}
.yf_c00396{bottom:2.559091pt;}
.y12_c00396{bottom:2.559103pt;}
.y15_c00396{bottom:2.559114pt;}
.y1d_c00396{bottom:2.559185pt;}
.y22_c00396{bottom:2.559203pt;}
.y26_c00396{bottom:2.559218pt;}
.y29_c00396{bottom:2.559229pt;}
.y2c_c00396{bottom:2.559241pt;}
.y35_c00396{bottom:2.559314pt;}
.y39_c00396{bottom:2.559336pt;}
.y3f_c00396{bottom:2.559357pt;}
.y42_c00396{bottom:2.559375pt;}
.y45_c00396{bottom:2.559386pt;}
.y48_c00396{bottom:2.559398pt;}
.y4b_c00396{bottom:2.559730pt;}
.y4_c00396{bottom:67.466906pt;}
.y3_c00396{bottom:101.386893pt;}
.y4a_c00396{bottom:139.466880pt;}
.y49_c00396{bottom:142.026610pt;}
.y47_c00396{bottom:168.747200pt;}
.y46_c00396{bottom:171.306598pt;}
.y44_c00396{bottom:197.867200pt;}
.y43_c00396{bottom:200.426586pt;}
.y41_c00396{bottom:227.147200pt;}
.y40_c00396{bottom:229.706575pt;}
.y3d_c00396{bottom:258.826563pt;}
.y3e_c00396{bottom:272.107200pt;}
.y3c_c00396{bottom:274.666557pt;}
.y3b_c00396{bottom:290.666550pt;}
.y37_c00396{bottom:319.786539pt;}
.y38_c00396{bottom:325.227200pt;}
.y3a_c00396{bottom:327.786536pt;}
.y36_c00396{bottom:335.626532pt;}
.y33_c00396{bottom:364.906521pt;}
.y34_c00396{bottom:378.187200pt;}
.y32_c00396{bottom:380.746514pt;}
.y31_c00396{bottom:396.586508pt;}
.y30_c00396{bottom:427.786496pt;}
.y2f_c00396{bottom:475.146477pt;}
.y2e_c00396{bottom:504.426465pt;}
.y2d_c00396{bottom:533.546453pt;}
.y2b_c00396{bottom:561.867200pt;}
.y2a_c00396{bottom:564.426441pt;}
.y28_c00396{bottom:591.147200pt;}
.y27_c00396{bottom:593.706429pt;}
.y25_c00396{bottom:620.267200pt;}
.y24_c00396{bottom:622.826418pt;}
.y20_c00396{bottom:652.106406pt;}
.y21_c00396{bottom:657.547200pt;}
.y23_c00396{bottom:660.106403pt;}
.y1f_c00396{bottom:667.946399pt;}
.y1b_c00396{bottom:697.226388pt;}
.y1c_c00396{bottom:702.507200pt;}
.y1e_c00396{bottom:705.066385pt;}
.y1a_c00396{bottom:713.066381pt;}
.y19_c00396{bottom:744.266369pt;}
.y18_c00396{bottom:791.626350pt;}
.y17_c00396{bottom:820.906338pt;}
.y16_c00396{bottom:850.026327pt;}
.y14_c00396{bottom:878.347200pt;}
.y13_c00396{bottom:880.906314pt;}
.y11_c00396{bottom:907.627200pt;}
.y10_c00396{bottom:910.186303pt;}
.ye_c00396{bottom:936.747200pt;}
.yd_c00396{bottom:939.306291pt;}
.y9_c00396{bottom:968.586279pt;}
.ya_c00396{bottom:973.867200pt;}
.yc_c00396{bottom:976.426276pt;}
.y8_c00396{bottom:984.426273pt;}
.y6_c00396{bottom:1010.987200pt;}
.y5_c00396{bottom:1013.546261pt;}
.y2_c00396{bottom:1045.386249pt;}
.y1_c00396{bottom:1063.306241pt;}
.h4_c00396{height:13.280000pt;}
.h2_c00396{height:48.558731pt;}
.h3_c00396{height:50.062480pt;}
.h1_c00396{height:52.134354pt;}
.h5_c00396{height:81.422467pt;}
.h7_c00396{height:82.062467pt;}
.h6_c00396{height:113.422455pt;}
.h0_c00396{height:1122.666667pt;}
.w3_c00396{width:2.880000pt;}
.w4_c00396{width:6.080000pt;}
.w2_c00396{width:6.240000pt;}
.w1_c00396{width:6.400000pt;}
.w0_c00396{width:793.333333pt;}
.x0_c00396{left:0.000000pt;}
.x5_c00396{left:113.440233pt;}
.x11_c00396{left:119.519952pt;}
.x1_c00396{left:161.599935pt;}
.x6_c00396{left:187.679925pt;}
.x2_c00396{left:292.479474pt;}
.x4_c00396{left:385.759846pt;}
.x16_c00396{left:404.640000pt;}
.x7_c00396{left:405.600000pt;}
.x21_c00396{left:451.519819pt;}
.x13_c00396{left:452.479819pt;}
.x17_c00396{left:458.239817pt;}
.x8_c00396{left:459.199816pt;}
.x18_c00396{left:481.600000pt;}
.x9_c00396{left:482.560000pt;}
.x14_c00396{left:516.159794pt;}
.x22_c00396{left:517.119793pt;}
.x1e_c00396{left:539.679784pt;}
.xf_c00396{left:540.639784pt;}
.x19_c00396{left:546.399781pt;}
.xa_c00396{left:547.359781pt;}
.x1a_c00396{left:569.760000pt;}
.xb_c00396{left:570.720000pt;}
.x20_c00396{left:573.120000pt;}
.x12_c00396{left:574.080000pt;}
.x15_c00396{left:590.719764pt;}
.x23_c00396{left:591.679763pt;}
.x1d_c00396{left:627.999749pt;}
.xe_c00396{left:628.959748pt;}
.x1b_c00396{left:634.719746pt;}
.xc_c00396{left:635.679746pt;}
.x1c_c00396{left:658.080000pt;}
.xd_c00396{left:659.040000pt;}
.x1f_c00396{left:661.440000pt;}
.x10_c00396{left:662.400000pt;}
.x3_c00396{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00397{font-family:ff1_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:ff2_c00397;src:url('chunks/assets/font_79f62882613353af9b59d48e.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_f1154e2c803d3894d33c85fd.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_d826406499a613675cb301b6.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.v2_c00397{vertical-align:35.999986px;}
.v1_c00397{vertical-align:71.279971px;}
.ls1_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00397{word-spacing:-15.245389px;}
.ws0_c00397{word-spacing:-15.011994px;}
.ws2_c00397{word-spacing:0.000000px;}
._1_c00397{margin-left:-1.105374px;}
._0_c00397{width:1.195563px;}
._3_c00397{width:75.228717px;}
._e_c00397{width:78.799820px;}
._4_c00397{width:97.880551px;}
._6_c00397{width:114.817805px;}
._5_c00397{width:182.533941px;}
._14_c00397{width:597.288612px;}
._b_c00397{width:601.611087px;}
._8_c00397{width:638.824636px;}
._c_c00397{width:644.728445px;}
._12_c00397{width:670.574146px;}
._7_c00397{width:671.764623px;}
._9_c00397{width:674.896621px;}
._16_c00397{width:736.562120px;}
._f_c00397{width:740.884595px;}
._13_c00397{width:781.598102px;}
._a_c00397{width:785.920577px;}
._15_c00397{width:811.568090px;}
._d_c00397{width:815.890565px;}
._11_c00397{width:968.467749px;}
._2_c00397{width:972.790224px;}
._17_c00397{width:1118.463819px;}
._10_c00397{width:1122.786294px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs2_c00397{font-size:53.999978px;}
.fs0_c00397{font-size:59.759976px;}
.fs1_c00397{font-size:66.239974px;}
.y0_c00397{bottom:0.000000px;}
.yb_c00397{bottom:2.879003px;}
.y11_c00397{bottom:2.879026px;}
.y15_c00397{bottom:2.879050px;}
.y1b_c00397{bottom:2.879074px;}
.y1e_c00397{bottom:2.879094px;}
.y22_c00397{bottom:2.879111px;}
.y26_c00397{bottom:2.879128px;}
.y29_c00397{bottom:2.879141px;}
.y2c_c00397{bottom:2.879154px;}
.y34_c00397{bottom:2.879233px;}
.y3a_c00397{bottom:2.879256px;}
.y3d_c00397{bottom:2.879277px;}
.y40_c00397{bottom:2.879290px;}
.y43_c00397{bottom:2.879303px;}
.y46_c00397{bottom:2.879316px;}
.y4_c00397{bottom:75.899970px;}
.y3_c00397{bottom:114.059954px;}
.y48_c00397{bottom:141.419943px;}
.y47_c00397{bottom:171.659931px;}
.y45_c00397{bottom:206.760600px;}
.y44_c00397{bottom:209.639916px;}
.y42_c00397{bottom:239.520600px;}
.y41_c00397{bottom:242.399903px;}
.y3f_c00397{bottom:272.460600px;}
.y3e_c00397{bottom:275.339890px;}
.y3c_c00397{bottom:305.220600px;}
.y3b_c00397{bottom:308.099877px;}
.y38_c00397{bottom:341.039864px;}
.y39_c00397{bottom:355.980600px;}
.y37_c00397{bottom:358.859856px;}
.y36_c00397{bottom:376.679849px;}
.y32_c00397{bottom:409.619836px;}
.y33_c00397{bottom:415.560600px;}
.y35_c00397{bottom:418.439833px;}
.y31_c00397{bottom:427.439829px;}
.y30_c00397{bottom:462.539815px;}
.y2f_c00397{bottom:515.819794px;}
.y2e_c00397{bottom:548.759780px;}
.y2d_c00397{bottom:581.519767px;}
.y2b_c00397{bottom:611.940600px;}
.y2a_c00397{bottom:614.819754px;}
.y28_c00397{bottom:644.700600px;}
.y27_c00397{bottom:647.579741px;}
.y25_c00397{bottom:677.640600px;}
.y24_c00397{bottom:680.519728px;}
.y20_c00397{bottom:713.279715px;}
.y21_c00397{bottom:719.400600px;}
.y23_c00397{bottom:722.279711px;}
.y1f_c00397{bottom:731.279707px;}
.y1d_c00397{bottom:761.160600px;}
.y1c_c00397{bottom:764.039694px;}
.y19_c00397{bottom:796.979681px;}
.y1a_c00397{bottom:811.920600px;}
.y18_c00397{bottom:814.799674px;}
.y17_c00397{bottom:832.619667px;}
.y13_c00397{bottom:865.379654px;}
.y14_c00397{bottom:871.500600px;}
.y16_c00397{bottom:874.379650px;}
.y12_c00397{bottom:883.379647px;}
.yf_c00397{bottom:916.139634px;}
.y10_c00397{bottom:931.080600px;}
.ye_c00397{bottom:933.959626px;}
.yd_c00397{bottom:951.779619px;}
.y9_c00397{bottom:984.719606px;}
.ya_c00397{bottom:990.840600px;}
.yc_c00397{bottom:993.719603px;}
.y8_c00397{bottom:1002.539599px;}
.y7_c00397{bottom:1037.639585px;}
.y6_c00397{bottom:1089.479564px;}
.y5_c00397{bottom:1122.419551px;}
.y2_c00397{bottom:1157.159537px;}
.y1_c00397{bottom:1196.039522px;}
.h6_c00397{height:14.940000px;}
.h2_c00397{height:54.628572px;}
.h3_c00397{height:56.320290px;}
.h1_c00397{height:58.651148px;}
.h7_c00397{height:91.600276px;}
.h5_c00397{height:92.320276px;}
.h4_c00397{height:127.600261px;}
.h0_c00397{height:1263.000000px;}
.w3_c00397{width:3.240000px;}
.w4_c00397{width:6.840000px;}
.w2_c00397{width:7.020000px;}
.w1_c00397{width:7.200000px;}
.w0_c00397{width:892.500000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:127.619949px;}
.x3_c00397{left:134.459946px;}
.x21_c00397{left:180.719928px;}
.x6_c00397{left:211.139916px;}
.x2_c00397{left:433.979514px;}
.x15_c00397{left:455.220000px;}
.x7_c00397{left:456.300000px;}
.x20_c00397{left:507.959797px;}
.x12_c00397{left:509.039796px;}
.x16_c00397{left:515.519794px;}
.x8_c00397{left:516.599793px;}
.x17_c00397{left:541.800000px;}
.x9_c00397{left:542.880000px;}
.x13_c00397{left:580.679768px;}
.x4_c00397{left:581.759767px;}
.x1d_c00397{left:607.139757px;}
.xf_c00397{left:608.219757px;}
.x18_c00397{left:614.699754px;}
.xa_c00397{left:615.779754px;}
.x19_c00397{left:640.980000px;}
.xb_c00397{left:642.060000px;}
.x1f_c00397{left:644.760000px;}
.x11_c00397{left:645.840000px;}
.x14_c00397{left:664.559734px;}
.x5_c00397{left:665.639734px;}
.x1c_c00397{left:706.499717px;}
.xe_c00397{left:707.579717px;}
.x1a_c00397{left:714.059714px;}
.xc_c00397{left:715.139714px;}
.x1b_c00397{left:740.340000px;}
.xd_c00397{left:741.420000px;}
.x1e_c00397{left:744.120000px;}
.x10_c00397{left:745.200000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.v2_c00397{vertical-align:31.999987pt;}
.v1_c00397{vertical-align:63.359975pt;}
.ls1_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:0.207463pt;}
.ws1_c00397{word-spacing:-13.551457pt;}
.ws0_c00397{word-spacing:-13.343995pt;}
.ws2_c00397{word-spacing:0.000000pt;}
._1_c00397{margin-left:-0.982555pt;}
._0_c00397{width:1.062723pt;}
._3_c00397{width:66.869971pt;}
._e_c00397{width:70.044284pt;}
._4_c00397{width:87.004934pt;}
._6_c00397{width:102.060271pt;}
._5_c00397{width:162.252392pt;}
._14_c00397{width:530.923211pt;}
._b_c00397{width:534.765411pt;}
._8_c00397{width:567.844121pt;}
._c_c00397{width:573.091951pt;}
._12_c00397{width:596.065908pt;}
._7_c00397{width:597.124109pt;}
._9_c00397{width:599.908108pt;}
._16_c00397{width:654.721884pt;}
._f_c00397{width:658.564085pt;}
._13_c00397{width:694.753868pt;}
._a_c00397{width:698.596068pt;}
._15_c00397{width:721.393858pt;}
._d_c00397{width:725.236058pt;}
._11_c00397{width:860.860221pt;}
._2_c00397{width:864.702421pt;}
._17_c00397{width:994.190061pt;}
._10_c00397{width:998.032261pt;}
.fs2_c00397{font-size:47.999981pt;}
.fs0_c00397{font-size:53.119979pt;}
.fs1_c00397{font-size:58.879976pt;}
.y0_c00397{bottom:0.000000pt;}
.yb_c00397{bottom:2.559113pt;}
.y11_c00397{bottom:2.559135pt;}
.y15_c00397{bottom:2.559156pt;}
.y1b_c00397{bottom:2.559177pt;}
.y1e_c00397{bottom:2.559195pt;}
.y22_c00397{bottom:2.559210pt;}
.y26_c00397{bottom:2.559225pt;}
.y29_c00397{bottom:2.559236pt;}
.y2c_c00397{bottom:2.559248pt;}
.y34_c00397{bottom:2.559318pt;}
.y3a_c00397{bottom:2.559339pt;}
.y3d_c00397{bottom:2.559357pt;}
.y40_c00397{bottom:2.559369pt;}
.y43_c00397{bottom:2.559380pt;}
.y46_c00397{bottom:2.559392pt;}
.y4_c00397{bottom:67.466640pt;}
.y3_c00397{bottom:101.386626pt;}
.y48_c00397{bottom:125.706616pt;}
.y47_c00397{bottom:152.586606pt;}
.y45_c00397{bottom:183.787200pt;}
.y44_c00397{bottom:186.346592pt;}
.y42_c00397{bottom:212.907200pt;}
.y41_c00397{bottom:215.466580pt;}
.y3f_c00397{bottom:242.187200pt;}
.y3e_c00397{bottom:244.746569pt;}
.y3c_c00397{bottom:271.307200pt;}
.y3b_c00397{bottom:273.866557pt;}
.y38_c00397{bottom:303.146545pt;}
.y39_c00397{bottom:316.427200pt;}
.y37_c00397{bottom:318.986539pt;}
.y36_c00397{bottom:334.826533pt;}
.y32_c00397{bottom:364.106521pt;}
.y33_c00397{bottom:369.387200pt;}
.y35_c00397{bottom:371.946518pt;}
.y31_c00397{bottom:379.946515pt;}
.y30_c00397{bottom:411.146502pt;}
.y2f_c00397{bottom:458.506483pt;}
.y2e_c00397{bottom:487.786472pt;}
.y2d_c00397{bottom:516.906460pt;}
.y2b_c00397{bottom:543.947200pt;}
.y2a_c00397{bottom:546.506448pt;}
.y28_c00397{bottom:573.067200pt;}
.y27_c00397{bottom:575.626436pt;}
.y25_c00397{bottom:602.347200pt;}
.y24_c00397{bottom:604.906425pt;}
.y20_c00397{bottom:634.026413pt;}
.y21_c00397{bottom:639.467200pt;}
.y23_c00397{bottom:642.026410pt;}
.y1f_c00397{bottom:650.026407pt;}
.y1d_c00397{bottom:676.587200pt;}
.y1c_c00397{bottom:679.146395pt;}
.y19_c00397{bottom:708.426383pt;}
.y1a_c00397{bottom:721.707200pt;}
.y18_c00397{bottom:724.266377pt;}
.y17_c00397{bottom:740.106371pt;}
.y13_c00397{bottom:769.226359pt;}
.y14_c00397{bottom:774.667200pt;}
.y16_c00397{bottom:777.226356pt;}
.y12_c00397{bottom:785.226353pt;}
.yf_c00397{bottom:814.346341pt;}
.y10_c00397{bottom:827.627200pt;}
.ye_c00397{bottom:830.186335pt;}
.yd_c00397{bottom:846.026328pt;}
.y9_c00397{bottom:875.306317pt;}
.ya_c00397{bottom:880.747200pt;}
.yc_c00397{bottom:883.306313pt;}
.y8_c00397{bottom:891.146310pt;}
.y7_c00397{bottom:922.346298pt;}
.y6_c00397{bottom:968.426279pt;}
.y5_c00397{bottom:997.706268pt;}
.y2_c00397{bottom:1028.586255pt;}
.y1_c00397{bottom:1063.146241pt;}
.h6_c00397{height:13.280000pt;}
.h2_c00397{height:48.558731pt;}
.h3_c00397{height:50.062480pt;}
.h1_c00397{height:52.134354pt;}
.h7_c00397{height:81.422467pt;}
.h5_c00397{height:82.062467pt;}
.h4_c00397{height:113.422455pt;}
.h0_c00397{height:1122.666667pt;}
.w3_c00397{width:2.880000pt;}
.w4_c00397{width:6.080000pt;}
.w2_c00397{width:6.240000pt;}
.w1_c00397{width:6.400000pt;}
.w0_c00397{width:793.333333pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:113.439955pt;}
.x3_c00397{left:119.519952pt;}
.x21_c00397{left:160.639936pt;}
.x6_c00397{left:187.679925pt;}
.x2_c00397{left:385.759568pt;}
.x15_c00397{left:404.640000pt;}
.x7_c00397{left:405.600000pt;}
.x20_c00397{left:451.519819pt;}
.x12_c00397{left:452.479819pt;}
.x16_c00397{left:458.239817pt;}
.x8_c00397{left:459.199816pt;}
.x17_c00397{left:481.600000pt;}
.x9_c00397{left:482.560000pt;}
.x13_c00397{left:516.159794pt;}
.x4_c00397{left:517.119793pt;}
.x1d_c00397{left:539.679784pt;}
.xf_c00397{left:540.639784pt;}
.x18_c00397{left:546.399781pt;}
.xa_c00397{left:547.359781pt;}
.x19_c00397{left:569.760000pt;}
.xb_c00397{left:570.720000pt;}
.x1f_c00397{left:573.120000pt;}
.x11_c00397{left:574.080000pt;}
.x14_c00397{left:590.719764pt;}
.x5_c00397{left:591.679763pt;}
.x1c_c00397{left:627.999749pt;}
.xe_c00397{left:628.959748pt;}
.x1a_c00397{left:634.719746pt;}
.xc_c00397{left:635.679746pt;}
.x1b_c00397{left:658.080000pt;}
.xd_c00397{left:659.040000pt;}
.x1e_c00397{left:661.440000pt;}
.x10_c00397{left:662.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00398{font-family:ff1_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:ff2_c00398;src:url('chunks/assets/font_b8df4f75be03084c6a95db21.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_e8577ae18b553040bc9f46f3.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_a085a8d85c8817a253530bfa.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.v2_c00398{vertical-align:35.279986px;}
.v1_c00398{vertical-align:71.279971px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:0.233395px;}
.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;}
}
.ws1_c00398{word-spacing:-15.245389px;}
.ws0_c00398{word-spacing:-15.011994px;}
.ws2_c00398{word-spacing:0.000000px;}
._1_c00398{margin-left:-1.105374px;}
._0_c00398{width:1.478392px;}
._3_c00398{width:75.228717px;}
._8_c00398{width:78.799820px;}
._4_c00398{width:97.880551px;}
._6_c00398{width:114.817805px;}
._5_c00398{width:182.533941px;}
._7_c00398{width:491.433438px;}
._f_c00398{width:598.111158px;}
._9_c00398{width:602.565393px;}
._c_c00398{width:667.442148px;}
._d_c00398{width:670.574146px;}
._15_c00398{width:671.764623px;}
._12_c00398{width:736.562120px;}
._10_c00398{width:751.520114px;}
._e_c00398{width:781.598102px;}
._11_c00398{width:811.568090px;}
._2_c00398{width:834.471022px;}
._b_c00398{width:968.467749px;}
._14_c00398{width:972.790224px;}
._a_c00398{width:984.467092px;}
._13_c00398{width:1118.463819px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs2_c00398{font-size:53.999978px;}
.fs0_c00398{font-size:59.759976px;}
.fs1_c00398{font-size:66.239974px;}
.fs3_c00398{font-size:71.999971px;}
.y0_c00398{bottom:0.000000px;}
.yc_c00398{bottom:2.879008px;}
.y10_c00398{bottom:2.879025px;}
.y13_c00398{bottom:2.879038px;}
.y1b_c00398{bottom:2.879117px;}
.y20_c00398{bottom:2.879137px;}
.y26_c00398{bottom:2.879161px;}
.y29_c00398{bottom:2.879181px;}
.y2e_c00398{bottom:2.879202px;}
.y31_c00398{bottom:2.879222px;}
.y34_c00398{bottom:2.879235px;}
.y37_c00398{bottom:2.879248px;}
.y3f_c00398{bottom:2.879327px;}
.y4_c00398{bottom:75.900270px;}
.y3_c00398{bottom:114.060254px;}
.y3d_c00398{bottom:174.719930px;}
.y3e_c00398{bottom:180.840600px;}
.y40_c00398{bottom:183.719927px;}
.y3c_c00398{bottom:192.539923px;}
.y3b_c00398{bottom:227.639909px;}
.y3a_c00398{bottom:281.099888px;}
.y39_c00398{bottom:313.859874px;}
.y38_c00398{bottom:340.859864px;}
.y36_c00398{bottom:376.860600px;}
.y35_c00398{bottom:379.739848px;}
.y33_c00398{bottom:409.620600px;}
.y32_c00398{bottom:412.499835px;}
.y30_c00398{bottom:442.560600px;}
.y2f_c00398{bottom:445.439822px;}
.y2c_c00398{bottom:478.199809px;}
.y2d_c00398{bottom:493.140600px;}
.y2b_c00398{bottom:496.019802px;}
.y2a_c00398{bottom:514.019794px;}
.y28_c00398{bottom:543.900600px;}
.y27_c00398{bottom:546.779781px;}
.y24_c00398{bottom:579.719768px;}
.y25_c00398{bottom:594.660600px;}
.y23_c00398{bottom:597.539761px;}
.y22_c00398{bottom:615.359754px;}
.y1e_c00398{bottom:648.119741px;}
.y1f_c00398{bottom:654.240600px;}
.y21_c00398{bottom:657.119737px;}
.y1d_c00398{bottom:666.119734px;}
.y19_c00398{bottom:698.879720px;}
.y1a_c00398{bottom:705.000600px;}
.y1c_c00398{bottom:707.879717px;}
.y18_c00398{bottom:716.699713px;}
.y17_c00398{bottom:751.799699px;}
.y16_c00398{bottom:805.259678px;}
.y15_c00398{bottom:838.019665px;}
.y14_c00398{bottom:870.959652px;}
.y12_c00398{bottom:902.820600px;}
.y11_c00398{bottom:905.699638px;}
.yf_c00398{bottom:935.580600px;}
.ye_c00398{bottom:938.459625px;}
.ya_c00398{bottom:971.399611px;}
.yb_c00398{bottom:977.340600px;}
.yd_c00398{bottom:980.219608px;}
.y9_c00398{bottom:989.219604px;}
.y8_c00398{bottom:1024.319590px;}
.y7_c00398{bottom:1077.599569px;}
.y6_c00398{bottom:1110.539556px;}
.y5_c00398{bottom:1137.359845px;}
.y2_c00398{bottom:1176.059530px;}
.y1_c00398{bottom:1196.219522px;}
.h6_c00398{height:14.940000px;}
.h2_c00398{height:54.628572px;}
.h3_c00398{height:56.320290px;}
.h1_c00398{height:58.651148px;}
.h9_c00398{height:70.664034px;}
.h5_c00398{height:91.600276px;}
.h8_c00398{height:92.320276px;}
.h4_c00398{height:127.600261px;}
.h7_c00398{height:128.320261px;}
.h0_c00398{height:1263.000000px;}
.w3_c00398{width:3.240000px;}
.w4_c00398{width:6.840000px;}
.w2_c00398{width:7.020000px;}
.w1_c00398{width:7.200000px;}
.w0_c00398{width:892.500000px;}
.x0_c00398{left:0.000000px;}
.x5_c00398{left:127.620262px;}
.x7_c00398{left:134.459946px;}
.x6_c00398{left:180.720268px;}
.x1_c00398{left:181.799927px;}
.xa_c00398{left:211.139916px;}
.x2_c00398{left:329.039408px;}
.xb_c00398{left:421.740000px;}
.x4_c00398{left:433.979826px;}
.x17_c00398{left:455.220000px;}
.x22_c00398{left:456.300000px;}
.x14_c00398{left:474.479810px;}
.xc_c00398{left:482.039807px;}
.xd_c00398{left:508.320000px;}
.x18_c00398{left:515.519794px;}
.x23_c00398{left:516.599793px;}
.x19_c00398{left:541.800000px;}
.x24_c00398{left:542.880000px;}
.x8_c00398{left:547.199781px;}
.xe_c00398{left:573.659771px;}
.x15_c00398{left:580.679768px;}
.x20_c00398{left:581.759767px;}
.xf_c00398{left:607.500000px;}
.x12_c00398{left:611.280000px;}
.x1a_c00398{left:614.699754px;}
.x25_c00398{left:615.779754px;}
.x9_c00398{left:631.079748px;}
.x1b_c00398{left:640.980000px;}
.x26_c00398{left:642.060000px;}
.x1f_c00398{left:644.760000px;}
.x16_c00398{left:664.559734px;}
.x21_c00398{left:665.639734px;}
.x10_c00398{left:673.019731px;}
.x11_c00398{left:706.860000px;}
.x13_c00398{left:710.640000px;}
.x1c_c00398{left:714.059714px;}
.x27_c00398{left:715.139714px;}
.x1d_c00398{left:740.340000px;}
.x28_c00398{left:741.420000px;}
.x1e_c00398{left:744.120000px;}
.x3_c00398{left:765.359694px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.v2_c00398{vertical-align:31.359987pt;}
.v1_c00398{vertical-align:63.359975pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:0.207463pt;}
.ws1_c00398{word-spacing:-13.551457pt;}
.ws0_c00398{word-spacing:-13.343995pt;}
.ws2_c00398{word-spacing:0.000000pt;}
._1_c00398{margin-left:-0.982555pt;}
._0_c00398{width:1.314126pt;}
._3_c00398{width:66.869971pt;}
._8_c00398{width:70.044284pt;}
._4_c00398{width:87.004934pt;}
._6_c00398{width:102.060271pt;}
._5_c00398{width:162.252392pt;}
._7_c00398{width:436.829723pt;}
._f_c00398{width:531.654362pt;}
._9_c00398{width:535.613683pt;}
._c_c00398{width:593.281909pt;}
._d_c00398{width:596.065908pt;}
._15_c00398{width:597.124109pt;}
._12_c00398{width:654.721884pt;}
._10_c00398{width:668.017879pt;}
._e_c00398{width:694.753868pt;}
._11_c00398{width:721.393858pt;}
._2_c00398{width:741.752020pt;}
._b_c00398{width:860.860221pt;}
._14_c00398{width:864.702421pt;}
._a_c00398{width:875.081860pt;}
._13_c00398{width:994.190061pt;}
.fs2_c00398{font-size:47.999981pt;}
.fs0_c00398{font-size:53.119979pt;}
.fs1_c00398{font-size:58.879976pt;}
.fs3_c00398{font-size:63.999974pt;}
.y0_c00398{bottom:0.000000pt;}
.yc_c00398{bottom:2.559118pt;}
.y10_c00398{bottom:2.559133pt;}
.y13_c00398{bottom:2.559145pt;}
.y1b_c00398{bottom:2.559215pt;}
.y20_c00398{bottom:2.559233pt;}
.y26_c00398{bottom:2.559254pt;}
.y29_c00398{bottom:2.559272pt;}
.y2e_c00398{bottom:2.559290pt;}
.y31_c00398{bottom:2.559308pt;}
.y34_c00398{bottom:2.559320pt;}
.y37_c00398{bottom:2.559332pt;}
.y3f_c00398{bottom:2.559401pt;}
.y4_c00398{bottom:67.466906pt;}
.y3_c00398{bottom:101.386893pt;}
.y3d_c00398{bottom:155.306605pt;}
.y3e_c00398{bottom:160.747200pt;}
.y40_c00398{bottom:163.306601pt;}
.y3c_c00398{bottom:171.146598pt;}
.y3b_c00398{bottom:202.346586pt;}
.y3a_c00398{bottom:249.866567pt;}
.y39_c00398{bottom:278.986555pt;}
.y38_c00398{bottom:302.986545pt;}
.y36_c00398{bottom:334.987200pt;}
.y35_c00398{bottom:337.546532pt;}
.y33_c00398{bottom:364.107200pt;}
.y32_c00398{bottom:366.666520pt;}
.y30_c00398{bottom:393.387200pt;}
.y2f_c00398{bottom:395.946508pt;}
.y2c_c00398{bottom:425.066497pt;}
.y2d_c00398{bottom:438.347200pt;}
.y2b_c00398{bottom:440.906490pt;}
.y2a_c00398{bottom:456.906484pt;}
.y28_c00398{bottom:483.467200pt;}
.y27_c00398{bottom:486.026472pt;}
.y24_c00398{bottom:515.306461pt;}
.y25_c00398{bottom:528.587200pt;}
.y23_c00398{bottom:531.146454pt;}
.y22_c00398{bottom:546.986448pt;}
.y1e_c00398{bottom:576.106436pt;}
.y1f_c00398{bottom:581.547200pt;}
.y21_c00398{bottom:584.106433pt;}
.y1d_c00398{bottom:592.106430pt;}
.y19_c00398{bottom:621.226418pt;}
.y1a_c00398{bottom:626.667200pt;}
.y1c_c00398{bottom:629.226415pt;}
.y18_c00398{bottom:637.066412pt;}
.y17_c00398{bottom:668.266399pt;}
.y16_c00398{bottom:715.786380pt;}
.y15_c00398{bottom:744.906369pt;}
.y14_c00398{bottom:774.186357pt;}
.y12_c00398{bottom:802.507200pt;}
.y11_c00398{bottom:805.066345pt;}
.yf_c00398{bottom:831.627200pt;}
.ye_c00398{bottom:834.186333pt;}
.ya_c00398{bottom:863.466321pt;}
.yb_c00398{bottom:868.747200pt;}
.yd_c00398{bottom:871.306318pt;}
.y9_c00398{bottom:879.306315pt;}
.y8_c00398{bottom:910.506302pt;}
.y7_c00398{bottom:957.866284pt;}
.y6_c00398{bottom:987.146272pt;}
.y5_c00398{bottom:1010.986529pt;}
.y2_c00398{bottom:1045.386249pt;}
.y1_c00398{bottom:1063.306241pt;}
.h6_c00398{height:13.280000pt;}
.h2_c00398{height:48.558731pt;}
.h3_c00398{height:50.062480pt;}
.h1_c00398{height:52.134354pt;}
.h9_c00398{height:62.812475pt;}
.h5_c00398{height:81.422467pt;}
.h8_c00398{height:82.062467pt;}
.h4_c00398{height:113.422455pt;}
.h7_c00398{height:114.062454pt;}
.h0_c00398{height:1122.666667pt;}
.w3_c00398{width:2.880000pt;}
.w4_c00398{width:6.080000pt;}
.w2_c00398{width:6.240000pt;}
.w1_c00398{width:6.400000pt;}
.w0_c00398{width:793.333333pt;}
.x0_c00398{left:0.000000pt;}
.x5_c00398{left:113.440233pt;}
.x7_c00398{left:119.519952pt;}
.x6_c00398{left:160.640238pt;}
.x1_c00398{left:161.599935pt;}
.xa_c00398{left:187.679925pt;}
.x2_c00398{left:292.479474pt;}
.xb_c00398{left:374.880000pt;}
.x4_c00398{left:385.759846pt;}
.x17_c00398{left:404.640000pt;}
.x22_c00398{left:405.600000pt;}
.x14_c00398{left:421.759831pt;}
.xc_c00398{left:428.479829pt;}
.xd_c00398{left:451.840000pt;}
.x18_c00398{left:458.239817pt;}
.x23_c00398{left:459.199816pt;}
.x19_c00398{left:481.600000pt;}
.x24_c00398{left:482.560000pt;}
.x8_c00398{left:486.399805pt;}
.xe_c00398{left:509.919796pt;}
.x15_c00398{left:516.159794pt;}
.x20_c00398{left:517.119793pt;}
.xf_c00398{left:540.000000pt;}
.x12_c00398{left:543.360000pt;}
.x1a_c00398{left:546.399781pt;}
.x25_c00398{left:547.359781pt;}
.x9_c00398{left:560.959776pt;}
.x1b_c00398{left:569.760000pt;}
.x26_c00398{left:570.720000pt;}
.x1f_c00398{left:573.120000pt;}
.x16_c00398{left:590.719764pt;}
.x21_c00398{left:591.679763pt;}
.x10_c00398{left:598.239761pt;}
.x11_c00398{left:628.320000pt;}
.x13_c00398{left:631.680000pt;}
.x1c_c00398{left:634.719746pt;}
.x27_c00398{left:635.679746pt;}
.x1d_c00398{left:658.080000pt;}
.x28_c00398{left:659.040000pt;}
.x1e_c00398{left:661.440000pt;}
.x3_c00398{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d6c397011dc6deae2d6a158b.woff2')format("woff");}.ff1_c00399{font-family:ff1_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:ff2_c00399;src:url('chunks/assets/font_a86d82d88d29300ab8a549e5.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_4d86de15cc5846c8e0d1be97.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.v3_c00399{vertical-align:27.359989px;}
.v2_c00399{vertical-align:35.999986px;}
.v1_c00399{vertical-align:71.279971px;}
.ls1_c00399{letter-spacing:0.000000px;}
.ls0_c00399{letter-spacing:0.233395px;}
.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:-15.245389px;}
.ws0_c00399{word-spacing:-15.011994px;}
.ws2_c00399{word-spacing:0.000000px;}
._1_c00399{margin-left:-1.105374px;}
._0_c00399{width:1.195563px;}
._e_c00399{width:2.303333px;}
._f_c00399{width:3.348083px;}
._b_c00399{width:7.910533px;}
._d_c00399{width:20.129406px;}
._c_c00399{width:21.165072px;}
._8_c00399{width:78.799820px;}
._6_c00399{width:395.572545px;}
._5_c00399{width:601.611087px;}
._2_c00399{width:638.824636px;}
._3_c00399{width:674.896621px;}
._9_c00399{width:740.884595px;}
._4_c00399{width:785.920577px;}
._7_c00399{width:815.890565px;}
._a_c00399{width:1122.786294px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs2_c00399{font-size:53.999978px;}
.fs0_c00399{font-size:59.759976px;}
.fs1_c00399{font-size:66.239974px;}
.fs3_c00399{font-size:71.999971px;}
.y0_c00399{bottom:0.000000px;}
.y9_c00399{bottom:2.878958px;}
.yd_c00399{bottom:2.878982px;}
.y13_c00399{bottom:2.879006px;}
.y16_c00399{bottom:2.879026px;}
.y1a_c00399{bottom:2.879044px;}
.y1e_c00399{bottom:2.879061px;}
.y21_c00399{bottom:2.879075px;}
.y24_c00399{bottom:2.879088px;}
.y4_c00399{bottom:75.899970px;}
.y3_c00399{bottom:114.059954px;}
.y2f_c00399{bottom:432.839827px;}
.y2e_c00399{bottom:463.079815px;}
.y2d_c00399{bottom:493.319803px;}
.y2c_c00399{bottom:524.279790px;}
.y2b_c00399{bottom:555.419778px;}
.y2a_c00399{bottom:586.379765px;}
.y29_c00399{bottom:617.519753px;}
.y28_c00399{bottom:648.479741px;}
.y27_c00399{bottom:679.619728px;}
.y26_c00399{bottom:710.579716px;}
.y25_c00399{bottom:741.719703px;}
.y23_c00399{bottom:777.720600px;}
.y22_c00399{bottom:780.599688px;}
.y20_c00399{bottom:810.480600px;}
.y1f_c00399{bottom:813.359675px;}
.y1d_c00399{bottom:843.420600px;}
.y1c_c00399{bottom:846.299661px;}
.y18_c00399{bottom:883.379647px;}
.y19_c00399{bottom:887.340600px;}
.y1b_c00399{bottom:890.219644px;}
.y17_c00399{bottom:901.379639px;}
.y15_c00399{bottom:931.260600px;}
.y14_c00399{bottom:934.139626px;}
.y11_c00399{bottom:967.079613px;}
.y12_c00399{bottom:982.020600px;}
.y10_c00399{bottom:984.899606px;}
.yf_c00399{bottom:1002.719599px;}
.yb_c00399{bottom:1035.479586px;}
.yc_c00399{bottom:1041.600600px;}
.ye_c00399{bottom:1044.479582px;}
.ya_c00399{bottom:1053.479579px;}
.y7_c00399{bottom:1086.239566px;}
.y8_c00399{bottom:1101.180600px;}
.y6_c00399{bottom:1104.059558px;}
.y5_c00399{bottom:1122.059551px;}
.y2_c00399{bottom:1157.159537px;}
.y1_c00399{bottom:1196.039522px;}
.h5_c00399{height:14.940000px;}
.h2_c00399{height:54.628572px;}
.h3_c00399{height:56.320290px;}
.h1_c00399{height:58.651148px;}
.h8_c00399{height:70.664034px;}
.h7_c00399{height:83.680279px;}
.h6_c00399{height:92.320276px;}
.h4_c00399{height:127.600261px;}
.h0_c00399{height:1263.000000px;}
.w3_c00399{width:3.240000px;}
.w2_c00399{width:7.020000px;}
.w1_c00399{width:7.200000px;}
.w0_c00399{width:892.500000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:127.619949px;}
.xe_c00399{left:134.459946px;}
.x11_c00399{left:180.719930px;}
.x3_c00399{left:211.139916px;}
.x2_c00399{left:433.979514px;}
.x4_c00399{left:456.300000px;}
.x10_c00399{left:509.039796px;}
.x5_c00399{left:516.599793px;}
.x6_c00399{left:542.880000px;}
.xc_c00399{left:608.219757px;}
.x7_c00399{left:615.779754px;}
.x8_c00399{left:642.060000px;}
.xf_c00399{left:645.840000px;}
.xb_c00399{left:707.579717px;}
.x9_c00399{left:715.139714px;}
.xa_c00399{left:741.420000px;}
.xd_c00399{left:745.200000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.v3_c00399{vertical-align:24.319990pt;}
.v2_c00399{vertical-align:31.999987pt;}
.v1_c00399{vertical-align:63.359975pt;}
.ls1_c00399{letter-spacing:0.000000pt;}
.ls0_c00399{letter-spacing:0.207463pt;}
.ws1_c00399{word-spacing:-13.551457pt;}
.ws0_c00399{word-spacing:-13.343995pt;}
.ws2_c00399{word-spacing:0.000000pt;}
._1_c00399{margin-left:-0.982555pt;}
._0_c00399{width:1.062723pt;}
._e_c00399{width:2.047407pt;}
._f_c00399{width:2.976074pt;}
._b_c00399{width:7.031585pt;}
._d_c00399{width:17.892806pt;}
._c_c00399{width:18.813397pt;}
._8_c00399{width:70.044284pt;}
._6_c00399{width:351.620040pt;}
._5_c00399{width:534.765411pt;}
._2_c00399{width:567.844121pt;}
._3_c00399{width:599.908108pt;}
._9_c00399{width:658.564085pt;}
._4_c00399{width:698.596068pt;}
._7_c00399{width:725.236058pt;}
._a_c00399{width:998.032261pt;}
.fs2_c00399{font-size:47.999981pt;}
.fs0_c00399{font-size:53.119979pt;}
.fs1_c00399{font-size:58.879976pt;}
.fs3_c00399{font-size:63.999974pt;}
.y0_c00399{bottom:0.000000pt;}
.y9_c00399{bottom:2.559074pt;}
.yd_c00399{bottom:2.559095pt;}
.y13_c00399{bottom:2.559116pt;}
.y16_c00399{bottom:2.559135pt;}
.y1a_c00399{bottom:2.559150pt;}
.y1e_c00399{bottom:2.559166pt;}
.y21_c00399{bottom:2.559177pt;}
.y24_c00399{bottom:2.559189pt;}
.y4_c00399{bottom:67.466640pt;}
.y3_c00399{bottom:101.386626pt;}
.y2f_c00399{bottom:384.746513pt;}
.y2e_c00399{bottom:411.626502pt;}
.y2d_c00399{bottom:438.506491pt;}
.y2c_c00399{bottom:466.026480pt;}
.y2b_c00399{bottom:493.706469pt;}
.y2a_c00399{bottom:521.226458pt;}
.y29_c00399{bottom:548.906447pt;}
.y28_c00399{bottom:576.426436pt;}
.y27_c00399{bottom:604.106425pt;}
.y26_c00399{bottom:631.626414pt;}
.y25_c00399{bottom:659.306403pt;}
.y23_c00399{bottom:691.307200pt;}
.y22_c00399{bottom:693.866389pt;}
.y20_c00399{bottom:720.427200pt;}
.y1f_c00399{bottom:722.986377pt;}
.y1d_c00399{bottom:749.707200pt;}
.y1c_c00399{bottom:752.266366pt;}
.y18_c00399{bottom:785.226353pt;}
.y19_c00399{bottom:788.747200pt;}
.y1b_c00399{bottom:791.306350pt;}
.y17_c00399{bottom:801.226346pt;}
.y15_c00399{bottom:827.787200pt;}
.y14_c00399{bottom:830.346335pt;}
.y11_c00399{bottom:859.626323pt;}
.y12_c00399{bottom:872.907200pt;}
.y10_c00399{bottom:875.466316pt;}
.yf_c00399{bottom:891.306310pt;}
.yb_c00399{bottom:920.426298pt;}
.yc_c00399{bottom:925.867200pt;}
.ye_c00399{bottom:928.426295pt;}
.ya_c00399{bottom:936.426292pt;}
.y7_c00399{bottom:965.546280pt;}
.y8_c00399{bottom:978.827200pt;}
.y6_c00399{bottom:981.386274pt;}
.y5_c00399{bottom:997.386268pt;}
.y2_c00399{bottom:1028.586255pt;}
.y1_c00399{bottom:1063.146241pt;}
.h5_c00399{height:13.280000pt;}
.h2_c00399{height:48.558731pt;}
.h3_c00399{height:50.062480pt;}
.h1_c00399{height:52.134354pt;}
.h8_c00399{height:62.812475pt;}
.h7_c00399{height:74.382470pt;}
.h6_c00399{height:82.062467pt;}
.h4_c00399{height:113.422455pt;}
.h0_c00399{height:1122.666667pt;}
.w3_c00399{width:2.880000pt;}
.w2_c00399{width:6.240000pt;}
.w1_c00399{width:6.400000pt;}
.w0_c00399{width:793.333333pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:113.439955pt;}
.xe_c00399{left:119.519952pt;}
.x11_c00399{left:160.639938pt;}
.x3_c00399{left:187.679925pt;}
.x2_c00399{left:385.759568pt;}
.x4_c00399{left:405.600000pt;}
.x10_c00399{left:452.479819pt;}
.x5_c00399{left:459.199816pt;}
.x6_c00399{left:482.560000pt;}
.xc_c00399{left:540.639784pt;}
.x7_c00399{left:547.359781pt;}
.x8_c00399{left:570.720000pt;}
.xf_c00399{left:574.080000pt;}
.xb_c00399{left:628.959748pt;}
.x9_c00399{left:635.679746pt;}
.xa_c00399{left:659.040000pt;}
.xd_c00399{left:662.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_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_62fa51cb3cb319dfe3f425f4.woff2')format("woff");}.ff1_c00400{font-family:ff1_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:ff2_c00400;src:url('chunks/assets/font_fcf410d48cf8b0b0358ec817.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_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);}
.v2_c00400{vertical-align:-46.079982px;}
.v1_c00400{vertical-align:-9.359996px;}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00400{word-spacing:-13.505755px;}
.ws1_c00400{word-spacing:-12.203995px;}
.ws5_c00400{word-spacing:0.000000px;}
.ws2_c00400{word-spacing:96.337404px;}
.ws3_c00400{word-spacing:109.297399px;}
.ws4_c00400{word-spacing:137.377388px;}
._1_c00400{margin-left:-1.105374px;}
._0_c00400{width:1.478392px;}
._5_c00400{width:2.482356px;}
._c_c00400{width:3.838057px;}
._4_c00400{width:4.851689px;}
._2_c00400{width:5.932171px;}
._3_c00400{width:7.068640px;}
._6_c00400{width:8.407723px;}
._7_c00400{width:9.430916px;}
._a_c00400{width:10.630175px;}
._b_c00400{width:12.062945px;}
._8_c00400{width:14.008059px;}
._9_c00400{width:15.143147px;}
.fc2_c00400{color:rgb(0,51,101);}
.fc1_c00400{color:rgb(37,64,97);}
.fc0_c00400{color:rgb(0,0,0);}
.fs3_c00400{font-size:53.999978px;}
.fs0_c00400{font-size:59.759976px;}
.fs1_c00400{font-size:66.239974px;}
.fs2_c00400{font-size:71.999971px;}
.y0_c00400{bottom:0.000000px;}
.y4_c00400{bottom:75.720270px;}
.y3_c00400{bottom:113.880254px;}
.y17_c00400{bottom:136.919945px;}
.y16_c00400{bottom:182.999927px;}
.y15_c00400{bottom:228.899908px;}
.y14_c00400{bottom:274.979890px;}
.y13_c00400{bottom:306.479877px;}
.y12_c00400{bottom:337.439865px;}
.y11_c00400{bottom:368.579853px;}
.y10_c00400{bottom:399.539840px;}
.yf_c00400{bottom:430.679828px;}
.ye_c00400{bottom:461.639815px;}
.yd_c00400{bottom:492.779803px;}
.yc_c00400{bottom:523.739791px;}
.yb_c00400{bottom:554.879778px;}
.ya_c00400{bottom:585.839766px;}
.y9_c00400{bottom:616.979753px;}
.y8_c00400{bottom:647.939741px;}
.y7_c00400{bottom:686.279725px;}
.y6_c00400{bottom:686.280025px;}
.y5_c00400{bottom:708.060017px;}
.y23_c00400{bottom:769.439692px;}
.y22_c00400{bottom:785.819686px;}
.y21_c00400{bottom:802.379679px;}
.y20_c00400{bottom:818.939672px;}
.y1f_c00400{bottom:835.319666px;}
.y1e_c00400{bottom:851.879659px;}
.y18_c00400{bottom:868.439653px;}
.y19_c00400{bottom:910.199636px;}
.y28_c00400{bottom:921.719631px;}
.y1a_c00400{bottom:951.959619px;}
.y25_c00400{bottom:983.099607px;}
.y27_c00400{bottom:992.459603px;}
.y1b_c00400{bottom:993.719603px;}
.y26_c00400{bottom:1012.079595px;}
.y24_c00400{bottom:1023.779590px;}
.y1c_c00400{bottom:1035.479586px;}
.y1d_c00400{bottom:1077.239569px;}
.y2_c00400{bottom:1175.879530px;}
.y1_c00400{bottom:1196.039522px;}
.h7_c00400{height:44.534162px;}
.h6_c00400{height:49.284472px;}
.h2_c00400{height:54.628572px;}
.h1_c00400{height:58.651148px;}
.h3_c00400{height:65.010911px;}
.h4_c00400{height:70.664034px;}
.h5_c00400{height:72.562471px;}
.h0_c00400{height:1263.000000px;}
.w0_c00400{width:892.500000px;}
.x0_c00400{left:0.000000px;}
.x5_c00400{left:127.800262px;}
.x6_c00400{left:130.680262px;}
.xc_c00400{left:135.719946px;}
.xb_c00400{left:143.459943px;}
.xa_c00400{left:151.019940px;}
.x9_c00400{left:180.899479px;}
.x1_c00400{left:181.979927px;}
.xd_c00400{left:185.759926px;}
.xf_c00400{left:189.719924px;}
.xe_c00400{left:201.059920px;}
.x2a_c00400{left:220.499912px;}
.x14_c00400{left:265.679894px;}
.x10_c00400{left:270.719892px;}
.x12_c00400{left:272.879891px;}
.x13_c00400{left:276.479889px;}
.x11_c00400{left:292.499883px;}
.x2b_c00400{left:300.599880px;}
.x2_c00400{left:329.219408px;}
.x7_c00400{left:344.520773px;}
.x16_c00400{left:345.599862px;}
.x15_c00400{left:348.479861px;}
.x2c_c00400{left:381.959847px;}
.x19_c00400{left:422.279831px;}
.x18_c00400{left:424.439830px;}
.x17_c00400{left:427.499829px;}
.x1a_c00400{left:429.299828px;}
.x4_c00400{left:434.159826px;}
.x2d_c00400{left:459.719816px;}
.x1c_c00400{left:506.879797px;}
.x1b_c00400{left:524.879790px;}
.x8_c00400{left:548.819780px;}
.x1f_c00400{left:576.899769px;}
.x1d_c00400{left:579.239768px;}
.x1e_c00400{left:602.999759px;}
.x20_c00400{left:658.079737px;}
.x22_c00400{left:662.939735px;}
.x21_c00400{left:664.739734px;}
.x23_c00400{left:666.899733px;}
.x24_c00400{left:668.699733px;}
.x2e_c00400{left:689.759724px;}
.x25_c00400{left:736.919705px;}
.x29_c00400{left:740.159704px;}
.x26_c00400{left:742.319703px;}
.x27_c00400{left:748.979700px;}
.x28_c00400{left:760.319696px;}
.x3_c00400{left:765.539694px;}
@media print{
.v2_c00400{vertical-align:-40.959984pt;}
.v1_c00400{vertical-align:-8.319997pt;}
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:-12.005115pt;}
.ws1_c00400{word-spacing:-10.847996pt;}
.ws5_c00400{word-spacing:0.000000pt;}
.ws2_c00400{word-spacing:85.633248pt;}
.ws3_c00400{word-spacing:97.153244pt;}
.ws4_c00400{word-spacing:122.113234pt;}
._1_c00400{margin-left:-0.982555pt;}
._0_c00400{width:1.314126pt;}
._5_c00400{width:2.206539pt;}
._c_c00400{width:3.411606pt;}
._4_c00400{width:4.312612pt;}
._2_c00400{width:5.273041pt;}
._3_c00400{width:6.283235pt;}
._6_c00400{width:7.473531pt;}
._7_c00400{width:8.383036pt;}
._a_c00400{width:9.449045pt;}
._b_c00400{width:10.722617pt;}
._8_c00400{width:12.451608pt;}
._9_c00400{width:13.460575pt;}
.fs3_c00400{font-size:47.999981pt;}
.fs0_c00400{font-size:53.119979pt;}
.fs1_c00400{font-size:58.879976pt;}
.fs2_c00400{font-size:63.999974pt;}
.y0_c00400{bottom:0.000000pt;}
.y4_c00400{bottom:67.306906pt;}
.y3_c00400{bottom:101.226893pt;}
.y17_c00400{bottom:121.706618pt;}
.y16_c00400{bottom:162.666602pt;}
.y15_c00400{bottom:203.466585pt;}
.y14_c00400{bottom:244.426569pt;}
.y13_c00400{bottom:272.426558pt;}
.y12_c00400{bottom:299.946547pt;}
.y11_c00400{bottom:327.626536pt;}
.y10_c00400{bottom:355.146525pt;}
.yf_c00400{bottom:382.826514pt;}
.ye_c00400{bottom:410.346503pt;}
.yd_c00400{bottom:438.026491pt;}
.yc_c00400{bottom:465.546480pt;}
.yb_c00400{bottom:493.226469pt;}
.ya_c00400{bottom:520.746458pt;}
.y9_c00400{bottom:548.426447pt;}
.y8_c00400{bottom:575.946436pt;}
.y7_c00400{bottom:610.026423pt;}
.y6_c00400{bottom:610.026689pt;}
.y5_c00400{bottom:629.386682pt;}
.y23_c00400{bottom:683.946393pt;}
.y22_c00400{bottom:698.506387pt;}
.y21_c00400{bottom:713.226381pt;}
.y20_c00400{bottom:727.946375pt;}
.y1f_c00400{bottom:742.506370pt;}
.y1e_c00400{bottom:757.226364pt;}
.y18_c00400{bottom:771.946358pt;}
.y19_c00400{bottom:809.066343pt;}
.y28_c00400{bottom:819.306339pt;}
.y1a_c00400{bottom:846.186328pt;}
.y25_c00400{bottom:873.866317pt;}
.y27_c00400{bottom:882.186314pt;}
.y1b_c00400{bottom:883.306313pt;}
.y26_c00400{bottom:899.626307pt;}
.y24_c00400{bottom:910.026303pt;}
.y1c_c00400{bottom:920.426298pt;}
.y1d_c00400{bottom:957.546284pt;}
.y2_c00400{bottom:1045.226249pt;}
.y1_c00400{bottom:1063.146241pt;}
.h7_c00400{height:39.585922pt;}
.h6_c00400{height:43.808420pt;}
.h2_c00400{height:48.558731pt;}
.h1_c00400{height:52.134354pt;}
.h3_c00400{height:57.787477pt;}
.h4_c00400{height:62.812475pt;}
.h5_c00400{height:64.499974pt;}
.h0_c00400{height:1122.666667pt;}
.w0_c00400{width:793.333333pt;}
.x0_c00400{left:0.000000pt;}
.x5_c00400{left:113.600233pt;}
.x6_c00400{left:116.160233pt;}
.xc_c00400{left:120.639952pt;}
.xb_c00400{left:127.519949pt;}
.xa_c00400{left:134.239946pt;}
.x9_c00400{left:160.799537pt;}
.x1_c00400{left:161.759935pt;}
.xd_c00400{left:165.119934pt;}
.xf_c00400{left:168.639933pt;}
.xe_c00400{left:178.719929pt;}
.x2a_c00400{left:195.999922pt;}
.x14_c00400{left:236.159906pt;}
.x10_c00400{left:240.639904pt;}
.x12_c00400{left:242.559903pt;}
.x13_c00400{left:245.759902pt;}
.x11_c00400{left:259.999896pt;}
.x2b_c00400{left:267.199893pt;}
.x2_c00400{left:292.639474pt;}
.x7_c00400{left:306.240688pt;}
.x16_c00400{left:307.199877pt;}
.x15_c00400{left:309.759876pt;}
.x2c_c00400{left:339.519864pt;}
.x19_c00400{left:375.359850pt;}
.x18_c00400{left:377.279849pt;}
.x17_c00400{left:379.999848pt;}
.x1a_c00400{left:381.599847pt;}
.x4_c00400{left:385.919846pt;}
.x2d_c00400{left:408.639837pt;}
.x1c_c00400{left:450.559820pt;}
.x1b_c00400{left:466.559813pt;}
.x8_c00400{left:487.839805pt;}
.x1f_c00400{left:512.799795pt;}
.x1d_c00400{left:514.879794pt;}
.x1e_c00400{left:535.999786pt;}
.x20_c00400{left:584.959766pt;}
.x22_c00400{left:589.279764pt;}
.x21_c00400{left:590.879764pt;}
.x23_c00400{left:592.799763pt;}
.x24_c00400{left:594.399762pt;}
.x2e_c00400{left:613.119755pt;}
.x25_c00400{left:655.039738pt;}
.x29_c00400{left:657.919737pt;}
.x26_c00400{left:659.839736pt;}
.x27_c00400{left:665.759734pt;}
.x28_c00400{left:675.839730pt;}
.x3_c00400{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cccf8695dc374a90ee068302.woff2')format("woff");}.ff1_c00401{font-family:ff1_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:ff2_c00401;src:url('chunks/assets/font_d63b2a3b2ee646e9e26f932b.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_75b6b9f720b42a1bec084445.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.311035;font-style:normal;font-weight:normal;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_e13df3fe84ab3f1c781569c2.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_a96ad00e0738883ec2b5090e.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00401{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:48.239981px;}
.ls0_c00401{letter-spacing:0.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;}
}
.ws0_c00401{word-spacing:-15.011994px;}
.ws1_c00401{word-spacing:-10.007996px;}
.ws2_c00401{word-spacing:0.000000px;}
._3_c00401{margin-left:-2.126523px;}
._1_c00401{margin-left:-1.105374px;}
._0_c00401{width:1.195563px;}
._4_c00401{width:3.828838px;}
._2_c00401{width:16.738589px;}
._8_c00401{width:60.556170px;}
._f_c00401{width:74.319157px;}
._22_c00401{width:82.243695px;}
._7_c00401{width:85.050195px;}
._e_c00401{width:88.006995px;}
._21_c00401{width:90.168232px;}
._6_c00401{width:95.135970px;}
._10_c00401{width:104.069007px;}
._1c_c00401{width:111.060195px;}
._14_c00401{width:118.360588px;}
._25_c00401{width:121.866383px;}
._26_c00401{width:126.188858px;}
._1e_c00401{width:136.995045px;}
._13_c00401{width:138.532139px;}
._d_c00401{width:141.317520px;}
._5_c00401{width:144.124021px;}
._23_c00401{width:145.639995px;}
._24_c00401{width:154.284945px;}
._9_c00401{width:156.371033px;}
._12_c00401{width:163.026164px;}
._c_c00401{width:166.628226px;}
._11_c00401{width:173.111939px;}
._1b_c00401{width:181.893958px;}
._18_c00401{width:184.288533px;}
._20_c00401{width:186.216433px;}
._1f_c00401{width:188.864746px;}
._1a_c00401{width:196.789283px;}
._1d_c00401{width:201.836145px;}
._17_c00401{width:207.575071px;}
._b_c00401{width:218.634996px;}
._16_c00401{width:226.072459px;}
._19_c00401{width:312.674868px;}
._a_c00401{width:372.469106px;}
._15_c00401{width:519.448378px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs4_c00401{font-size:35.999986px;}
.fs3_c00401{font-size:53.999978px;}
.fs0_c00401{font-size:59.759976px;}
.fs1_c00401{font-size:66.239974px;}
.fs2_c00401{font-size:71.999971px;}
.y0_c00401{bottom:0.000000px;}
.ye_c00401{bottom:2.879048px;}
.y4_c00401{bottom:75.899970px;}
.y3_c00401{bottom:114.059954px;}
.y2f_c00401{bottom:187.499925px;}
.y30_c00401{bottom:192.179923px;}
.y2c_c00401{bottom:227.999909px;}
.y2e_c00401{bottom:240.059904px;}
.y2d_c00401{bottom:246.899901px;}
.y2b_c00401{bottom:252.119899px;}
.y2a_c00401{bottom:292.619883px;}
.y28_c00401{bottom:333.119867px;}
.y29_c00401{bottom:337.619865px;}
.y25_c00401{bottom:373.619851px;}
.y27_c00401{bottom:385.499846px;}
.y26_c00401{bottom:392.339843px;}
.y24_c00401{bottom:397.559841px;}
.y23_c00401{bottom:438.059825px;}
.y21_c00401{bottom:478.559809px;}
.y22_c00401{bottom:483.059807px;}
.y1e_c00401{bottom:519.059792px;}
.y20_c00401{bottom:531.119788px;}
.y1f_c00401{bottom:537.959785px;}
.y1d_c00401{bottom:542.999783px;}
.y1c_c00401{bottom:583.499767px;}
.y1a_c00401{bottom:623.999750px;}
.y1b_c00401{bottom:628.679749px;}
.y17_c00401{bottom:664.499734px;}
.y19_c00401{bottom:676.559729px;}
.y18_c00401{bottom:683.399727px;}
.y16_c00401{bottom:688.619725px;}
.y15_c00401{bottom:729.119708px;}
.y13_c00401{bottom:771.059692px;}
.y14_c00401{bottom:775.559690px;}
.y10_c00401{bottom:812.999675px;}
.y12_c00401{bottom:825.059670px;}
.y11_c00401{bottom:831.899667px;}
.yf_c00401{bottom:837.119665px;}
.yd_c00401{bottom:876.180600px;}
.yc_c00401{bottom:879.059648px;}
.yb_c00401{bottom:883.559647px;}
.ya_c00401{bottom:929.099628px;}
.y9_c00401{bottom:959.699616px;}
.y8_c00401{bottom:1010.099596px;}
.y7_c00401{bottom:1041.059584px;}
.y6_c00401{bottom:1072.199571px;}
.y5_c00401{bottom:1117.919553px;}
.y2_c00401{bottom:1157.159537px;}
.y1_c00401{bottom:1196.039522px;}
.h6_c00401{height:14.940000px;}
.h8_c00401{height:37.546860px;}
.h2_c00401{height:54.628572px;}
.h5_c00401{height:56.320290px;}
.h1_c00401{height:58.651148px;}
.h4_c00401{height:70.664034px;}
.h3_c00401{height:72.562471px;}
.h9_c00401{height:103.840271px;}
.h7_c00401{height:104.560271px;}
.h0_c00401{height:1263.000000px;}
.w2_c00401{width:6.840000px;}
.w1_c00401{width:7.020000px;}
.w0_c00401{width:892.500000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:127.619949px;}
.x4_c00401{left:132.119947px;}
.x3_c00401{left:180.719930px;}
.xb_c00401{left:220.679912px;}
.x5_c00401{left:338.399865px;}
.x13_c00401{left:371.519851px;}
.x14_c00401{left:386.819845px;}
.x15_c00401{left:390.059844px;}
.x2_c00401{left:433.979514px;}
.x1e_c00401{left:446.759821px;}
.x29_c00401{left:456.479817px;}
.x20_c00401{left:462.059815px;}
.x2a_c00401{left:463.319815px;}
.x21_c00401{left:465.299814px;}
.x2f_c00401{left:469.079812px;}
.x1f_c00401{left:506.879797px;}
.x27_c00401{left:520.019792px;}
.x2b_c00401{left:529.919788px;}
.xc_c00401{left:531.719787px;}
.x16_c00401{left:533.699787px;}
.xd_c00401{left:534.959786px;}
.x2c_c00401{left:536.759785px;}
.x17_c00401{left:540.539784px;}
.x28_c00401{left:577.619769px;}
.x2d_c00401{left:590.759764px;}
.x22_c00401{left:600.479760px;}
.xe_c00401{left:604.259758px;}
.x18_c00401{left:606.059758px;}
.xf_c00401{left:607.499757px;}
.x19_c00401{left:609.299756px;}
.x2e_c00401{left:642.239743px;}
.x30_c00401{left:655.379738px;}
.x23_c00401{left:665.279734px;}
.x10_c00401{left:671.039732px;}
.x24_c00401{left:672.119731px;}
.x1a_c00401{left:674.099730px;}
.x6_c00401{left:678.240000px;}
.x7_c00401{left:692.099723px;}
.x31_c00401{left:701.819719px;}
.x25_c00401{left:724.859710px;}
.x1b_c00401{left:730.439708px;}
.x26_c00401{left:731.699707px;}
.x1c_c00401{left:733.679707px;}
.x8_c00401{left:737.820000px;}
.x9_c00401{left:751.679699px;}
.x11_c00401{left:786.239686px;}
.x12_c00401{left:789.479684px;}
.x1d_c00401{left:793.259683px;}
.xa_c00401{left:797.400000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:42.879983pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:-13.343995pt;}
.ws1_c00401{word-spacing:-8.895996pt;}
.ws2_c00401{word-spacing:0.000000pt;}
._3_c00401{margin-left:-1.890243pt;}
._1_c00401{margin-left:-0.982555pt;}
._0_c00401{width:1.062723pt;}
._4_c00401{width:3.403412pt;}
._2_c00401{width:14.878746pt;}
._8_c00401{width:53.827706pt;}
._f_c00401{width:66.061473pt;}
._22_c00401{width:73.105506pt;}
._7_c00401{width:75.600173pt;}
._e_c00401{width:78.228440pt;}
._21_c00401{width:80.149540pt;}
._6_c00401{width:84.565307pt;}
._10_c00401{width:92.505784pt;}
._1c_c00401{width:98.720173pt;}
._14_c00401{width:105.209412pt;}
._25_c00401{width:108.325673pt;}
._26_c00401{width:112.167873pt;}
._1e_c00401{width:121.773374pt;}
._13_c00401{width:123.139679pt;}
._d_c00401{width:125.615574pt;}
._5_c00401{width:128.110241pt;}
._23_c00401{width:129.457774pt;}
._24_c00401{width:137.142174pt;}
._9_c00401{width:138.996474pt;}
._12_c00401{width:144.912146pt;}
._c_c00401{width:148.113979pt;}
._11_c00401{width:153.877279pt;}
._1b_c00401{width:161.683518pt;}
._18_c00401{width:163.812029pt;}
._20_c00401{width:165.525718pt;}
._1f_c00401{width:167.879774pt;}
._1a_c00401{width:174.923808pt;}
._1d_c00401{width:179.409907pt;}
._17_c00401{width:184.511174pt;}
._b_c00401{width:194.342219pt;}
._16_c00401{width:200.953296pt;}
._19_c00401{width:277.933216pt;}
._a_c00401{width:331.083650pt;}
._15_c00401{width:461.731892pt;}
.fs4_c00401{font-size:31.999987pt;}
.fs3_c00401{font-size:47.999981pt;}
.fs0_c00401{font-size:53.119979pt;}
.fs1_c00401{font-size:58.879976pt;}
.fs2_c00401{font-size:63.999974pt;}
.y0_c00401{bottom:0.000000pt;}
.ye_c00401{bottom:2.559154pt;}
.y4_c00401{bottom:67.466640pt;}
.y3_c00401{bottom:101.386626pt;}
.y2f_c00401{bottom:166.666600pt;}
.y30_c00401{bottom:170.826598pt;}
.y2c_c00401{bottom:202.666586pt;}
.y2e_c00401{bottom:213.386581pt;}
.y2d_c00401{bottom:219.466579pt;}
.y2b_c00401{bottom:224.106577pt;}
.y2a_c00401{bottom:260.106563pt;}
.y28_c00401{bottom:296.106548pt;}
.y29_c00401{bottom:300.106547pt;}
.y25_c00401{bottom:332.106534pt;}
.y27_c00401{bottom:342.666530pt;}
.y26_c00401{bottom:348.746527pt;}
.y24_c00401{bottom:353.386525pt;}
.y23_c00401{bottom:389.386511pt;}
.y21_c00401{bottom:425.386497pt;}
.y22_c00401{bottom:429.386495pt;}
.y1e_c00401{bottom:461.386482pt;}
.y20_c00401{bottom:472.106478pt;}
.y1f_c00401{bottom:478.186475pt;}
.y1d_c00401{bottom:482.666474pt;}
.y1c_c00401{bottom:518.666459pt;}
.y1a_c00401{bottom:554.666445pt;}
.y1b_c00401{bottom:558.826443pt;}
.y17_c00401{bottom:590.666430pt;}
.y19_c00401{bottom:601.386426pt;}
.y18_c00401{bottom:607.466424pt;}
.y16_c00401{bottom:612.106422pt;}
.y15_c00401{bottom:648.106407pt;}
.y13_c00401{bottom:685.386393pt;}
.y14_c00401{bottom:689.386391pt;}
.y10_c00401{bottom:722.666378pt;}
.y12_c00401{bottom:733.386373pt;}
.y11_c00401{bottom:739.466371pt;}
.yf_c00401{bottom:744.106369pt;}
.yd_c00401{bottom:778.827200pt;}
.yc_c00401{bottom:781.386354pt;}
.yb_c00401{bottom:785.386353pt;}
.ya_c00401{bottom:825.866336pt;}
.y9_c00401{bottom:853.066325pt;}
.y8_c00401{bottom:897.866308pt;}
.y7_c00401{bottom:925.386297pt;}
.y6_c00401{bottom:953.066285pt;}
.y5_c00401{bottom:993.706269pt;}
.y2_c00401{bottom:1028.586255pt;}
.y1_c00401{bottom:1063.146241pt;}
.h6_c00401{height:13.280000pt;}
.h8_c00401{height:33.374987pt;}
.h2_c00401{height:48.558731pt;}
.h5_c00401{height:50.062480pt;}
.h1_c00401{height:52.134354pt;}
.h4_c00401{height:62.812475pt;}
.h3_c00401{height:64.499974pt;}
.h9_c00401{height:92.302463pt;}
.h7_c00401{height:92.942463pt;}
.h0_c00401{height:1122.666667pt;}
.w2_c00401{width:6.080000pt;}
.w1_c00401{width:6.240000pt;}
.w0_c00401{width:793.333333pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:113.439955pt;}
.x4_c00401{left:117.439953pt;}
.x3_c00401{left:160.639938pt;}
.xb_c00401{left:196.159922pt;}
.x5_c00401{left:300.799880pt;}
.x13_c00401{left:330.239868pt;}
.x14_c00401{left:343.839862pt;}
.x15_c00401{left:346.719861pt;}
.x2_c00401{left:385.759568pt;}
.x1e_c00401{left:397.119841pt;}
.x29_c00401{left:405.759838pt;}
.x20_c00401{left:410.719836pt;}
.x2a_c00401{left:411.839835pt;}
.x21_c00401{left:413.599835pt;}
.x2f_c00401{left:416.959833pt;}
.x1f_c00401{left:450.559820pt;}
.x27_c00401{left:462.239815pt;}
.x2b_c00401{left:471.039812pt;}
.xc_c00401{left:472.639811pt;}
.x16_c00401{left:474.399810pt;}
.xd_c00401{left:475.519810pt;}
.x2c_c00401{left:477.119809pt;}
.x17_c00401{left:480.479808pt;}
.x28_c00401{left:513.439795pt;}
.x2d_c00401{left:525.119790pt;}
.x22_c00401{left:533.759786pt;}
.xe_c00401{left:537.119785pt;}
.x18_c00401{left:538.719785pt;}
.xf_c00401{left:539.999784pt;}
.x19_c00401{left:541.599783pt;}
.x2e_c00401{left:570.879772pt;}
.x30_c00401{left:582.559767pt;}
.x23_c00401{left:591.359763pt;}
.x10_c00401{left:596.479761pt;}
.x24_c00401{left:597.439761pt;}
.x1a_c00401{left:599.199760pt;}
.x6_c00401{left:602.880000pt;}
.x7_c00401{left:615.199754pt;}
.x31_c00401{left:623.839750pt;}
.x25_c00401{left:644.319742pt;}
.x1b_c00401{left:649.279740pt;}
.x26_c00401{left:650.399740pt;}
.x1c_c00401{left:652.159739pt;}
.x8_c00401{left:655.840000pt;}
.x9_c00401{left:668.159733pt;}
.x11_c00401{left:698.879720pt;}
.x12_c00401{left:701.759719pt;}
.x1d_c00401{left:705.119718pt;}
.xa_c00401{left:708.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_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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00402{font-family:ff1_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:ff2_c00402;src:url('chunks/assets/font_9e981cd5ff6c451a2693bba5.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_96fb24159c5e71778803fcca.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00402{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:48.239981px;}
.ls1_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.233395px;}
.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;}
}
.ws0_c00402{word-spacing:-15.011994px;}
.ws1_c00402{word-spacing:-10.007996px;}
.ws2_c00402{word-spacing:0.000000px;}
._1_c00402{margin-left:-1.105374px;}
._0_c00402{width:1.478392px;}
._1e_c00402{width:51.421505px;}
._1d_c00402{width:69.431817px;}
._31_c00402{width:76.480395px;}
._15_c00402{width:82.243695px;}
._c_c00402{width:103.135657px;}
._14_c00402{width:111.060195px;}
._23_c00402{width:112.957133px;}
._21_c00402{width:114.175182px;}
._16_c00402{width:118.360588px;}
._2f_c00402{width:119.705145px;}
._2e_c00402{width:123.307208px;}
._13_c00402{width:126.188858px;}
._22_c00402{width:131.231745px;}
._b_c00402{width:134.113395px;}
._24_c00402{width:136.370901px;}
._11_c00402{width:138.161732px;}
._27_c00402{width:139.252661px;}
._d_c00402{width:141.550858px;}
._12_c00402{width:144.919583px;}
._26_c00402{width:147.177089px;}
._2d_c00402{width:151.169842px;}
._1f_c00402{width:152.768971px;}
._8_c00402{width:156.371033px;}
._29_c00402{width:157.633270px;}
._25_c00402{width:159.424101px;}
._7_c00402{width:163.396570px;}
._10_c00402{width:173.111939px;}
._a_c00402{width:175.176908px;}
._f_c00402{width:181.036477px;}
._32_c00402{width:182.847824px;}
._6_c00402{width:184.288533px;}
._2b_c00402{width:193.283489px;}
._e_c00402{width:202.658690px;}
._2a_c00402{width:204.110077px;}
._5_c00402{width:207.341733px;}
._4_c00402{width:218.868333px;}
._1c_c00402{width:223.444546px;}
._3_c00402{width:226.072459px;}
._1b_c00402{width:243.616097px;}
._2c_c00402{width:259.364342px;}
._1a_c00402{width:268.110122px;}
._19_c00402{width:278.195897px;}
._30_c00402{width:282.417542px;}
._18_c00402{width:286.120435px;}
._9_c00402{width:312.674868px;}
._20_c00402{width:333.566830px;}
._28_c00402{width:481.266515px;}
._2_c00402{width:519.448378px;}
._17_c00402{width:588.693688px;}
.fc0_c00402{color:rgb(0,0,0);}
.fs3_c00402{font-size:35.999986px;}
.fs2_c00402{font-size:53.999978px;}
.fs0_c00402{font-size:59.759976px;}
.fs1_c00402{font-size:66.239974px;}
.fs4_c00402{font-size:71.999971px;}
.y0_c00402{bottom:0.000000px;}
.y1c_c00402{bottom:2.879151px;}
.y21_c00402{bottom:2.879172px;}
.y29_c00402{bottom:2.879232px;}
.y4_c00402{bottom:75.900270px;}
.y3_c00402{bottom:114.060254px;}
.y32_c00402{bottom:182.459927px;}
.y31_c00402{bottom:222.959911px;}
.y2e_c00402{bottom:263.459895px;}
.y30_c00402{bottom:275.519890px;}
.y2f_c00402{bottom:282.359887px;}
.y2d_c00402{bottom:287.579885px;}
.y2c_c00402{bottom:328.079869px;}
.y2b_c00402{bottom:368.579853px;}
.y26_c00402{bottom:409.079836px;}
.y28_c00402{bottom:418.080600px;}
.y2a_c00402{bottom:420.959832px;}
.y27_c00402{bottom:427.799829px;}
.y25_c00402{bottom:433.019827px;}
.y24_c00402{bottom:473.519811px;}
.y23_c00402{bottom:515.459794px;}
.y1e_c00402{bottom:557.579777px;}
.y20_c00402{bottom:566.580600px;}
.y22_c00402{bottom:569.459772px;}
.y1f_c00402{bottom:576.299769px;}
.y1d_c00402{bottom:581.519767px;}
.y1b_c00402{bottom:620.580600px;}
.y1a_c00402{bottom:623.459751px;}
.y19_c00402{bottom:627.959749px;}
.y18_c00402{bottom:674.039730px;}
.y17_c00402{bottom:704.459718px;}
.y16_c00402{bottom:750.899700px;}
.y15_c00402{bottom:766.379693px;}
.y14_c00402{bottom:800.399680px;}
.y13_c00402{bottom:840.899664px;}
.y11_c00402{bottom:881.399647px;}
.y12_c00402{bottom:885.899646px;}
.ye_c00402{bottom:921.899631px;}
.y10_c00402{bottom:933.779626px;}
.yf_c00402{bottom:940.619624px;}
.yd_c00402{bottom:945.839622px;}
.yc_c00402{bottom:986.339605px;}
.ya_c00402{bottom:1026.839589px;}
.yb_c00402{bottom:1031.339587px;}
.y7_c00402{bottom:1067.339573px;}
.y9_c00402{bottom:1079.399568px;}
.y8_c00402{bottom:1086.239566px;}
.y6_c00402{bottom:1091.279563px;}
.y5_c00402{bottom:1131.779547px;}
.y2_c00402{bottom:1176.059530px;}
.y1_c00402{bottom:1196.219522px;}
.h8_c00402{height:14.940000px;}
.h5_c00402{height:37.546860px;}
.h2_c00402{height:54.628572px;}
.h3_c00402{height:56.320290px;}
.h1_c00402{height:58.651148px;}
.h6_c00402{height:70.664034px;}
.h7_c00402{height:103.840271px;}
.h4_c00402{height:104.560271px;}
.h0_c00402{height:1263.000000px;}
.w1_c00402{width:6.300000px;}
.w3_c00402{width:6.660000px;}
.w2_c00402{width:7.020000px;}
.w0_c00402{width:892.500000px;}
.x0_c00402{left:0.000000px;}
.x5_c00402{left:127.620262px;}
.x7_c00402{left:132.119947px;}
.x1_c00402{left:181.799927px;}
.x6_c00402{left:220.679912px;}
.x2_c00402{left:329.039408px;}
.x1e_c00402{left:338.039865px;}
.x37_c00402{left:370.799852px;}
.x38_c00402{left:377.639849px;}
.x2f_c00402{left:379.979848px;}
.x1f_c00402{left:383.760000px;}
.x8_c00402{left:386.819845px;}
.x9_c00402{left:390.059844px;}
.x20_c00402{left:396.179842px;}
.x30_c00402{left:415.259834px;}
.x23_c00402{left:430.919828px;}
.x4_c00402{left:433.979826px;}
.x39_c00402{left:437.759825px;}
.x21_c00402{left:441.900000px;}
.xa_c00402{left:448.919820px;}
.xb_c00402{left:455.759818px;}
.x22_c00402{left:460.979816px;}
.x16_c00402{left:463.319815px;}
.x24_c00402{left:466.379813px;}
.x25_c00402{left:492.839803px;}
.x31_c00402{left:498.419801px;}
.x26_c00402{left:499.679800px;}
.x32_c00402{left:501.659799px;}
.xc_c00402{left:529.919788px;}
.x17_c00402{left:535.499786px;}
.xd_c00402{left:536.759785px;}
.x18_c00402{left:538.739785px;}
.x27_c00402{left:562.679775px;}
.x28_c00402{left:569.519772px;}
.xe_c00402{left:600.479760px;}
.xf_c00402{left:607.319757px;}
.x29_c00402{left:632.519747px;}
.x2a_c00402{left:639.359744px;}
.x19_c00402{left:665.279734px;}
.x10_c00402{left:670.859732px;}
.x1a_c00402{left:672.119731px;}
.x11_c00402{left:674.099730px;}
.x33_c00402{left:699.479720px;}
.x2b_c00402{left:705.059718px;}
.x34_c00402{left:706.319717px;}
.x2c_c00402{left:708.299717px;}
.x14_c00402{left:714.959714px;}
.x1b_c00402{left:730.439708px;}
.x1c_c00402{left:733.679707px;}
.x15_c00402{left:761.399695px;}
.x2d_c00402{left:764.099694px;}
.x3_c00402{left:765.359694px;}
.x35_c00402{left:769.679692px;}
.x2e_c00402{left:770.939692px;}
.x36_c00402{left:772.919691px;}
.x1d_c00402{left:774.539690px;}
.x12_c00402{left:784.439686px;}
.x13_c00402{left:791.279683px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:42.879983pt;}
.ls1_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.207463pt;}
.ws0_c00402{word-spacing:-13.343995pt;}
.ws1_c00402{word-spacing:-8.895996pt;}
.ws2_c00402{word-spacing:0.000000pt;}
._1_c00402{margin-left:-0.982555pt;}
._0_c00402{width:1.314126pt;}
._1e_c00402{width:45.708004pt;}
._1d_c00402{width:61.717171pt;}
._31_c00402{width:67.982573pt;}
._15_c00402{width:73.105506pt;}
._c_c00402{width:91.676140pt;}
._14_c00402{width:98.720173pt;}
._23_c00402{width:100.406340pt;}
._21_c00402{width:101.489051pt;}
._16_c00402{width:105.209412pt;}
._2f_c00402{width:106.404573pt;}
._2e_c00402{width:109.606407pt;}
._13_c00402{width:112.167873pt;}
._22_c00402{width:116.650440pt;}
._b_c00402{width:119.211907pt;}
._24_c00402{width:121.218579pt;}
._11_c00402{width:122.810429pt;}
._27_c00402{width:123.780143pt;}
._d_c00402{width:125.822985pt;}
._12_c00402{width:128.817407pt;}
._26_c00402{width:130.824079pt;}
._2d_c00402{width:134.373193pt;}
._1f_c00402{width:135.794641pt;}
._8_c00402{width:138.996474pt;}
._29_c00402{width:140.118462pt;}
._25_c00402{width:141.710312pt;}
._7_c00402{width:145.241396pt;}
._10_c00402{width:153.877279pt;}
._a_c00402{width:155.712807pt;}
._f_c00402{width:160.921312pt;}
._32_c00402{width:162.531399pt;}
._6_c00402{width:163.812029pt;}
._2b_c00402{width:171.807546pt;}
._e_c00402{width:180.141058pt;}
._2a_c00402{width:181.431180pt;}
._5_c00402{width:184.303763pt;}
._4_c00402{width:194.549630pt;}
._1c_c00402{width:198.617374pt;}
._3_c00402{width:200.953296pt;}
._1b_c00402{width:216.547641pt;}
._2c_c00402{width:230.546082pt;}
._1a_c00402{width:238.320108pt;}
._19_c00402{width:247.285242pt;}
._30_c00402{width:251.037815pt;}
._18_c00402{width:254.329275pt;}
._9_c00402{width:277.933216pt;}
._20_c00402{width:296.503849pt;}
._28_c00402{width:427.792458pt;}
._2_c00402{width:461.731892pt;}
._17_c00402{width:523.283278pt;}
.fs3_c00402{font-size:31.999987pt;}
.fs2_c00402{font-size:47.999981pt;}
.fs0_c00402{font-size:53.119979pt;}
.fs1_c00402{font-size:58.879976pt;}
.fs4_c00402{font-size:63.999974pt;}
.y0_c00402{bottom:0.000000pt;}
.y1c_c00402{bottom:2.559245pt;}
.y21_c00402{bottom:2.559264pt;}
.y29_c00402{bottom:2.559317pt;}
.y4_c00402{bottom:67.466906pt;}
.y3_c00402{bottom:101.386893pt;}
.y32_c00402{bottom:162.186602pt;}
.y31_c00402{bottom:198.186587pt;}
.y2e_c00402{bottom:234.186573pt;}
.y30_c00402{bottom:244.906569pt;}
.y2f_c00402{bottom:250.986566pt;}
.y2d_c00402{bottom:255.626564pt;}
.y2c_c00402{bottom:291.626550pt;}
.y2b_c00402{bottom:327.626536pt;}
.y26_c00402{bottom:363.626521pt;}
.y28_c00402{bottom:371.627200pt;}
.y2a_c00402{bottom:374.186517pt;}
.y27_c00402{bottom:380.266515pt;}
.y25_c00402{bottom:384.906513pt;}
.y24_c00402{bottom:420.906498pt;}
.y23_c00402{bottom:458.186483pt;}
.y1e_c00402{bottom:495.626468pt;}
.y20_c00402{bottom:503.627200pt;}
.y22_c00402{bottom:506.186464pt;}
.y1f_c00402{bottom:512.266462pt;}
.y1d_c00402{bottom:516.906460pt;}
.y1b_c00402{bottom:551.627200pt;}
.y1a_c00402{bottom:554.186445pt;}
.y19_c00402{bottom:558.186443pt;}
.y18_c00402{bottom:599.146427pt;}
.y17_c00402{bottom:626.186416pt;}
.y16_c00402{bottom:667.466400pt;}
.y15_c00402{bottom:681.226394pt;}
.y14_c00402{bottom:711.466382pt;}
.y13_c00402{bottom:747.466368pt;}
.y11_c00402{bottom:783.466353pt;}
.y12_c00402{bottom:787.466352pt;}
.ye_c00402{bottom:819.466339pt;}
.y10_c00402{bottom:830.026335pt;}
.yf_c00402{bottom:836.106332pt;}
.yd_c00402{bottom:840.746330pt;}
.yc_c00402{bottom:876.746316pt;}
.ya_c00402{bottom:912.746302pt;}
.yb_c00402{bottom:916.746300pt;}
.y7_c00402{bottom:948.746287pt;}
.y9_c00402{bottom:959.466283pt;}
.y8_c00402{bottom:965.546280pt;}
.y6_c00402{bottom:970.026279pt;}
.y5_c00402{bottom:1006.026264pt;}
.y2_c00402{bottom:1045.386249pt;}
.y1_c00402{bottom:1063.306241pt;}
.h8_c00402{height:13.280000pt;}
.h5_c00402{height:33.374987pt;}
.h2_c00402{height:48.558731pt;}
.h3_c00402{height:50.062480pt;}
.h1_c00402{height:52.134354pt;}
.h6_c00402{height:62.812475pt;}
.h7_c00402{height:92.302463pt;}
.h4_c00402{height:92.942463pt;}
.h0_c00402{height:1122.666667pt;}
.w1_c00402{width:5.600000pt;}
.w3_c00402{width:5.920000pt;}
.w2_c00402{width:6.240000pt;}
.w0_c00402{width:793.333333pt;}
.x0_c00402{left:0.000000pt;}
.x5_c00402{left:113.440233pt;}
.x7_c00402{left:117.439953pt;}
.x1_c00402{left:161.599935pt;}
.x6_c00402{left:196.159922pt;}
.x2_c00402{left:292.479474pt;}
.x1e_c00402{left:300.479880pt;}
.x37_c00402{left:329.599868pt;}
.x38_c00402{left:335.679866pt;}
.x2f_c00402{left:337.759865pt;}
.x1f_c00402{left:341.120000pt;}
.x8_c00402{left:343.839862pt;}
.x9_c00402{left:346.719861pt;}
.x20_c00402{left:352.159859pt;}
.x30_c00402{left:369.119852pt;}
.x23_c00402{left:383.039847pt;}
.x4_c00402{left:385.759846pt;}
.x39_c00402{left:389.119844pt;}
.x21_c00402{left:392.800000pt;}
.xa_c00402{left:399.039840pt;}
.xb_c00402{left:405.119838pt;}
.x22_c00402{left:409.759836pt;}
.x16_c00402{left:411.839835pt;}
.x24_c00402{left:414.559834pt;}
.x25_c00402{left:438.079825pt;}
.x31_c00402{left:443.039823pt;}
.x26_c00402{left:444.159822pt;}
.x32_c00402{left:445.919822pt;}
.xc_c00402{left:471.039812pt;}
.x17_c00402{left:475.999810pt;}
.xd_c00402{left:477.119809pt;}
.x18_c00402{left:478.879808pt;}
.x27_c00402{left:500.159800pt;}
.x28_c00402{left:506.239798pt;}
.xe_c00402{left:533.759786pt;}
.xf_c00402{left:539.839784pt;}
.x29_c00402{left:562.239775pt;}
.x2a_c00402{left:568.319773pt;}
.x19_c00402{left:591.359763pt;}
.x10_c00402{left:596.319761pt;}
.x1a_c00402{left:597.439761pt;}
.x11_c00402{left:599.199760pt;}
.x33_c00402{left:621.759751pt;}
.x2b_c00402{left:626.719749pt;}
.x34_c00402{left:627.839749pt;}
.x2c_c00402{left:629.599748pt;}
.x14_c00402{left:635.519746pt;}
.x1b_c00402{left:649.279740pt;}
.x1c_c00402{left:652.159739pt;}
.x15_c00402{left:676.799729pt;}
.x2d_c00402{left:679.199728pt;}
.x3_c00402{left:680.319728pt;}
.x35_c00402{left:684.159726pt;}
.x2e_c00402{left:685.279726pt;}
.x36_c00402{left:687.039725pt;}
.x1d_c00402{left:688.479725pt;}
.x12_c00402{left:697.279721pt;}
.x13_c00402{left:703.359719pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00403{font-family:ff1_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:ff2_c00403;src:url('chunks/assets/font_a3ccbec7ea223f80f6eae0e1.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_0c07e86f206a3293fd4beb2d.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00403{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v2_c00403{vertical-align:-33.839986px;}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:48.239981px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:353.839210px;}
.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:-15.011994px;}
.ws1_c00403{word-spacing:-10.007996px;}
.ws2_c00403{word-spacing:0.000000px;}
._1_c00403{margin-left:-1.105374px;}
._0_c00403{width:1.195563px;}
._2a_c00403{width:46.378617px;}
._29_c00403{width:65.985303px;}
._4_c00403{width:68.555857px;}
._2f_c00403{width:75.039570px;}
._24_c00403{width:84.404932px;}
._39_c00403{width:90.168232px;}
._5_c00403{width:91.609057px;}
._2e_c00403{width:95.211120px;}
._25_c00403{width:99.533595px;}
._28_c00403{width:101.129968px;}
._9_c00403{width:102.415279px;}
._21_c00403{width:107.458132px;}
._18_c00403{width:110.339776px;}
._b_c00403{width:112.597288px;}
._15_c00403{width:115.382670px;}
._31_c00403{width:117.732360px;}
._8_c00403{width:119.705145px;}
._2_c00403{width:122.744983px;}
._1f_c00403{width:125.743302px;}
._2d_c00403{width:126.909270px;}
._c_c00403{width:136.370901px;}
._f_c00403{width:139.252661px;}
._2c_c00403{width:145.639995px;}
._e_c00403{width:147.177089px;}
._27_c00403{width:152.999668px;}
._26_c00403{width:154.284958px;}
._11_c00403{width:157.633270px;}
._d_c00403{width:159.424101px;}
._a_c00403{width:162.933870px;}
._17_c00403{width:164.000314px;}
._16_c00403{width:167.252371px;}
._22_c00403{width:170.854433px;}
._30_c00403{width:173.111939px;}
._6_c00403{width:175.176908px;}
._12_c00403{width:180.686470px;}
._7_c00403{width:182.614371px;}
._36_c00403{width:184.288533px;}
._14_c00403{width:192.933483px;}
._38_c00403{width:196.789283px;}
._13_c00403{width:204.460083px;}
._35_c00403{width:207.341733px;}
._1a_c00403{width:217.681246px;}
._34_c00403{width:218.868333px;}
._33_c00403{width:226.072459px;}
._1b_c00403{width:241.454859px;}
._1e_c00403{width:244.336402px;}
._1d_c00403{width:252.261047px;}
._20_c00403{width:259.364342px;}
._1c_c00403{width:264.508059px;}
._3_c00403{width:274.493005px;}
._23_c00403{width:282.417542px;}
._37_c00403{width:312.674868px;}
._2b_c00403{width:372.469106px;}
._10_c00403{width:481.266515px;}
._32_c00403{width:519.448378px;}
._19_c00403{width:549.791413px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs3_c00403{font-size:35.999986px;}
.fs2_c00403{font-size:53.999978px;}
.fs0_c00403{font-size:59.759976px;}
.fs1_c00403{font-size:66.239974px;}
.fs4_c00403{font-size:71.999971px;}
.y0_c00403{bottom:0.000000px;}
.y16_c00403{bottom:2.879091px;}
.y4_c00403{bottom:75.899970px;}
.y3_c00403{bottom:114.059954px;}
.y2e_c00403{bottom:151.499939px;}
.y30_c00403{bottom:163.379935px;}
.y2f_c00403{bottom:170.219932px;}
.y2d_c00403{bottom:175.439930px;}
.y2c_c00403{bottom:215.939914px;}
.y2a_c00403{bottom:257.879897px;}
.y2b_c00403{bottom:262.559895px;}
.y27_c00403{bottom:299.999880px;}
.y29_c00403{bottom:311.879875px;}
.y28_c00403{bottom:318.719873px;}
.y26_c00403{bottom:323.939870px;}
.y25_c00403{bottom:365.879854px;}
.y24_c00403{bottom:370.379852px;}
.y23_c00403{bottom:416.099834px;}
.y22_c00403{bottom:446.519821px;}
.y21_c00403{bottom:492.959803px;}
.y20_c00403{bottom:508.439797px;}
.y1f_c00403{bottom:548.939780px;}
.y1e_c00403{bottom:587.999765px;}
.y1b_c00403{bottom:618.599753px;}
.y1d_c00403{bottom:630.479748px;}
.y1c_c00403{bottom:637.319745px;}
.y1a_c00403{bottom:650.999740px;}
.y19_c00403{bottom:690.779724px;}
.y18_c00403{bottom:729.659708px;}
.y13_c00403{bottom:760.259696px;}
.y15_c00403{bottom:769.440600px;}
.y17_c00403{bottom:772.319691px;}
.y14_c00403{bottom:779.159688px;}
.y12_c00403{bottom:792.659683px;}
.y11_c00403{bottom:831.719667px;}
.y10_c00403{bottom:863.039655px;}
.yf_c00403{bottom:903.539639px;}
.yc_c00403{bottom:944.039622px;}
.ye_c00403{bottom:956.099618px;}
.yd_c00403{bottom:962.939615px;}
.yb_c00403{bottom:967.979613px;}
.ya_c00403{bottom:1008.479597px;}
.y9_c00403{bottom:1048.979580px;}
.y6_c00403{bottom:1089.479564px;}
.y8_c00403{bottom:1101.539559px;}
.y7_c00403{bottom:1108.379557px;}
.y5_c00403{bottom:1113.599555px;}
.y2_c00403{bottom:1157.159537px;}
.y1_c00403{bottom:1196.039522px;}
.h6_c00403{height:14.940000px;}
.h5_c00403{height:37.546860px;}
.h2_c00403{height:54.628572px;}
.h3_c00403{height:56.320290px;}
.h1_c00403{height:58.651148px;}
.h8_c00403{height:70.664034px;}
.h7_c00403{height:103.840271px;}
.h4_c00403{height:104.560271px;}
.h0_c00403{height:1263.000000px;}
.w1_c00403{width:6.660000px;}
.w0_c00403{width:892.500000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:127.619949px;}
.x3_c00403{left:132.119947px;}
.x4_c00403{left:219.779912px;}
.x22_c00403{left:338.399865px;}
.x1a_c00403{left:370.799852px;}
.x5_c00403{left:376.379849px;}
.x1b_c00403{left:377.639849px;}
.x6_c00403{left:379.619848px;}
.x14_c00403{left:383.400000px;}
.x2f_c00403{left:386.819845px;}
.x30_c00403{left:390.059844px;}
.x15_c00403{left:402.479839px;}
.x16_c00403{left:428.939828px;}
.x2_c00403{left:433.979514px;}
.x17_c00403{left:435.779826px;}
.x7_c00403{left:437.759825px;}
.x23_c00403{left:456.479817px;}
.x24_c00403{left:463.319815px;}
.x18_c00403{left:492.839803px;}
.x8_c00403{left:498.419801px;}
.x19_c00403{left:499.679800px;}
.x9_c00403{left:501.659799px;}
.x25_c00403{left:529.919788px;}
.x26_c00403{left:536.759785px;}
.x1c_c00403{left:562.679775px;}
.x10_c00403{left:568.259773px;}
.x1d_c00403{left:569.519772px;}
.x11_c00403{left:571.499771px;}
.x27_c00403{left:602.459759px;}
.x31_c00403{left:606.059758px;}
.x28_c00403{left:609.299756px;}
.xa_c00403{left:632.519747px;}
.x1e_c00403{left:634.319746px;}
.x1f_c00403{left:637.559745px;}
.xb_c00403{left:639.359744px;}
.x32_c00403{left:665.279734px;}
.x29_c00403{left:667.079733px;}
.x33_c00403{left:672.119731px;}
.x2a_c00403{left:673.919730px;}
.xc_c00403{left:699.479720px;}
.x20_c00403{left:705.059718px;}
.xd_c00403{left:706.319717px;}
.x21_c00403{left:708.299717px;}
.x34_c00403{left:724.859710px;}
.x2b_c00403{left:730.439708px;}
.x35_c00403{left:731.699707px;}
.x2c_c00403{left:733.679707px;}
.x12_c00403{left:764.099694px;}
.xe_c00403{left:769.679692px;}
.x13_c00403{left:770.939692px;}
.xf_c00403{left:772.919691px;}
.x36_c00403{left:784.439686px;}
.x2d_c00403{left:790.019684px;}
.x37_c00403{left:791.279683px;}
.x2e_c00403{left:793.259683px;}
@media print{
.v2_c00403{vertical-align:-30.079988pt;}
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:42.879983pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:314.523742pt;}
.ws0_c00403{word-spacing:-13.343995pt;}
.ws1_c00403{word-spacing:-8.895996pt;}
.ws2_c00403{word-spacing:0.000000pt;}
._1_c00403{margin-left:-0.982555pt;}
._0_c00403{width:1.062723pt;}
._2a_c00403{width:41.225437pt;}
._29_c00403{width:58.653602pt;}
._4_c00403{width:60.938540pt;}
._2f_c00403{width:66.701840pt;}
._24_c00403{width:75.026606pt;}
._39_c00403{width:80.149540pt;}
._5_c00403{width:81.430273pt;}
._2e_c00403{width:84.632106pt;}
._25_c00403{width:88.474307pt;}
._28_c00403{width:89.893305pt;}
._9_c00403{width:91.035804pt;}
._21_c00403{width:95.518340pt;}
._18_c00403{width:98.079801pt;}
._b_c00403{width:100.086478pt;}
._15_c00403{width:102.562373pt;}
._31_c00403{width:104.650987pt;}
._8_c00403{width:106.404573pt;}
._2_c00403{width:109.106651pt;}
._1f_c00403{width:111.771824pt;}
._2d_c00403{width:112.808240pt;}
._c_c00403{width:121.218579pt;}
._f_c00403{width:123.780143pt;}
._2c_c00403{width:129.457774pt;}
._e_c00403{width:130.824079pt;}
._27_c00403{width:135.999705pt;}
._26_c00403{width:137.142185pt;}
._11_c00403{width:140.118462pt;}
._d_c00403{width:141.710312pt;}
._a_c00403{width:144.830107pt;}
._17_c00403{width:145.778057pt;}
._16_c00403{width:148.668774pt;}
._22_c00403{width:151.870607pt;}
._30_c00403{width:153.877279pt;}
._6_c00403{width:155.712807pt;}
._12_c00403{width:160.610196pt;}
._7_c00403{width:162.323885pt;}
._36_c00403{width:163.812029pt;}
._14_c00403{width:171.496429pt;}
._38_c00403{width:174.923808pt;}
._13_c00403{width:181.742296pt;}
._35_c00403{width:184.303763pt;}
._1a_c00403{width:193.494441pt;}
._34_c00403{width:194.549630pt;}
._33_c00403{width:200.953296pt;}
._1b_c00403{width:214.626541pt;}
._1e_c00403{width:217.187913pt;}
._1d_c00403{width:224.232041pt;}
._20_c00403{width:230.546082pt;}
._1c_c00403{width:235.118275pt;}
._3_c00403{width:243.993782pt;}
._23_c00403{width:251.037815pt;}
._37_c00403{width:277.933216pt;}
._2b_c00403{width:331.083650pt;}
._10_c00403{width:427.792458pt;}
._32_c00403{width:461.731892pt;}
._19_c00403{width:488.703478pt;}
.fs3_c00403{font-size:31.999987pt;}
.fs2_c00403{font-size:47.999981pt;}
.fs0_c00403{font-size:53.119979pt;}
.fs1_c00403{font-size:58.879976pt;}
.fs4_c00403{font-size:63.999974pt;}
.y0_c00403{bottom:0.000000pt;}
.y16_c00403{bottom:2.559192pt;}
.y4_c00403{bottom:67.466640pt;}
.y3_c00403{bottom:101.386626pt;}
.y2e_c00403{bottom:134.666613pt;}
.y30_c00403{bottom:145.226609pt;}
.y2f_c00403{bottom:151.306606pt;}
.y2d_c00403{bottom:155.946604pt;}
.y2c_c00403{bottom:191.946590pt;}
.y2a_c00403{bottom:229.226575pt;}
.y2b_c00403{bottom:233.386573pt;}
.y27_c00403{bottom:266.666560pt;}
.y29_c00403{bottom:277.226556pt;}
.y28_c00403{bottom:283.306553pt;}
.y26_c00403{bottom:287.946551pt;}
.y25_c00403{bottom:325.226537pt;}
.y24_c00403{bottom:329.226535pt;}
.y23_c00403{bottom:369.866519pt;}
.y22_c00403{bottom:396.906508pt;}
.y21_c00403{bottom:438.186491pt;}
.y20_c00403{bottom:451.946486pt;}
.y1f_c00403{bottom:487.946471pt;}
.y1e_c00403{bottom:522.666458pt;}
.y1b_c00403{bottom:549.866447pt;}
.y1d_c00403{bottom:560.426442pt;}
.y1c_c00403{bottom:566.506440pt;}
.y1a_c00403{bottom:578.666435pt;}
.y19_c00403{bottom:614.026421pt;}
.y18_c00403{bottom:648.586407pt;}
.y13_c00403{bottom:675.786396pt;}
.y15_c00403{bottom:683.947200pt;}
.y17_c00403{bottom:686.506392pt;}
.y14_c00403{bottom:692.586390pt;}
.y12_c00403{bottom:704.586385pt;}
.y11_c00403{bottom:739.306371pt;}
.y10_c00403{bottom:767.146360pt;}
.yf_c00403{bottom:803.146345pt;}
.yc_c00403{bottom:839.146331pt;}
.ye_c00403{bottom:849.866327pt;}
.yd_c00403{bottom:855.946324pt;}
.yb_c00403{bottom:860.426322pt;}
.ya_c00403{bottom:896.426308pt;}
.y9_c00403{bottom:932.426294pt;}
.y6_c00403{bottom:968.426279pt;}
.y8_c00403{bottom:979.146275pt;}
.y7_c00403{bottom:985.226273pt;}
.y5_c00403{bottom:989.866271pt;}
.y2_c00403{bottom:1028.586255pt;}
.y1_c00403{bottom:1063.146241pt;}
.h6_c00403{height:13.280000pt;}
.h5_c00403{height:33.374987pt;}
.h2_c00403{height:48.558731pt;}
.h3_c00403{height:50.062480pt;}
.h1_c00403{height:52.134354pt;}
.h8_c00403{height:62.812475pt;}
.h7_c00403{height:92.302463pt;}
.h4_c00403{height:92.942463pt;}
.h0_c00403{height:1122.666667pt;}
.w1_c00403{width:5.920000pt;}
.w0_c00403{width:793.333333pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:113.439955pt;}
.x3_c00403{left:117.439953pt;}
.x4_c00403{left:195.359922pt;}
.x22_c00403{left:300.799880pt;}
.x1a_c00403{left:329.599868pt;}
.x5_c00403{left:334.559866pt;}
.x1b_c00403{left:335.679866pt;}
.x6_c00403{left:337.439865pt;}
.x14_c00403{left:340.800000pt;}
.x2f_c00403{left:343.839862pt;}
.x30_c00403{left:346.719861pt;}
.x15_c00403{left:357.759857pt;}
.x16_c00403{left:381.279847pt;}
.x2_c00403{left:385.759568pt;}
.x17_c00403{left:387.359845pt;}
.x7_c00403{left:389.119844pt;}
.x23_c00403{left:405.759838pt;}
.x24_c00403{left:411.839835pt;}
.x18_c00403{left:438.079825pt;}
.x8_c00403{left:443.039823pt;}
.x19_c00403{left:444.159822pt;}
.x9_c00403{left:445.919822pt;}
.x25_c00403{left:471.039812pt;}
.x26_c00403{left:477.119809pt;}
.x1c_c00403{left:500.159800pt;}
.x10_c00403{left:505.119798pt;}
.x1d_c00403{left:506.239798pt;}
.x11_c00403{left:507.999797pt;}
.x27_c00403{left:535.519786pt;}
.x31_c00403{left:538.719785pt;}
.x28_c00403{left:541.599783pt;}
.xa_c00403{left:562.239775pt;}
.x1e_c00403{left:563.839774pt;}
.x1f_c00403{left:566.719773pt;}
.xb_c00403{left:568.319773pt;}
.x32_c00403{left:591.359763pt;}
.x29_c00403{left:592.959763pt;}
.x33_c00403{left:597.439761pt;}
.x2a_c00403{left:599.039760pt;}
.xc_c00403{left:621.759751pt;}
.x20_c00403{left:626.719749pt;}
.xd_c00403{left:627.839749pt;}
.x21_c00403{left:629.599748pt;}
.x34_c00403{left:644.319742pt;}
.x2b_c00403{left:649.279740pt;}
.x35_c00403{left:650.399740pt;}
.x2c_c00403{left:652.159739pt;}
.x12_c00403{left:679.199728pt;}
.xe_c00403{left:684.159726pt;}
.x13_c00403{left:685.279726pt;}
.xf_c00403{left:687.039725pt;}
.x36_c00403{left:697.279721pt;}
.x2d_c00403{left:702.239719pt;}
.x37_c00403{left:703.359719pt;}
.x2e_c00403{left:705.119718pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f7c512519533db2d3f15a9d.woff2')format("woff");}.ff1_c00404{font-family:ff1_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:ff2_c00404;src:url('chunks/assets/font_4570fa660d8e7ffae65f6ea0.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00404{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.v1_c00404{vertical-align:48.239981px;}
.ls0_c00404{letter-spacing:0.000000px;}
.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;}
}
.ws1_c00404{word-spacing:-15.011994px;}
.ws0_c00404{word-spacing:-10.007996px;}
.ws2_c00404{word-spacing:0.000000px;}
._1_c00404{margin-left:-1.105374px;}
._0_c00404{width:1.478392px;}
._18_c00404{width:74.319157px;}
._11_c00404{width:82.243695px;}
._12_c00404{width:90.168232px;}
._10_c00404{width:103.135657px;}
._1c_c00404{width:111.060195px;}
._5_c00404{width:118.360588px;}
._b_c00404{width:126.347045px;}
._d_c00404{width:129.790920px;}
._1b_c00404{width:134.113395px;}
._15_c00404{width:136.995045px;}
._4_c00404{width:138.532139px;}
._1d_c00404{width:141.317520px;}
._1a_c00404{width:144.919583px;}
._17_c00404{width:154.518283px;}
._3_c00404{width:163.026164px;}
._19_c00404{width:173.111939px;}
._16_c00404{width:178.058558px;}
._13_c00404{width:181.036477px;}
._a_c00404{width:184.288533px;}
._f_c00404{width:186.216433px;}
._e_c00404{width:196.789283px;}
._2_c00404{width:202.658690px;}
._9_c00404{width:207.341733px;}
._8_c00404{width:218.868333px;}
._23_c00404{width:223.444546px;}
._7_c00404{width:226.072459px;}
._22_c00404{width:243.616097px;}
._21_c00404{width:268.110122px;}
._20_c00404{width:278.195897px;}
._1f_c00404{width:286.120435px;}
._c_c00404{width:297.546205px;}
._14_c00404{width:312.674868px;}
._6_c00404{width:519.448378px;}
._1e_c00404{width:588.693688px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs4_c00404{font-size:35.999986px;}
.fs2_c00404{font-size:53.999978px;}
.fs0_c00404{font-size:59.759976px;}
.fs1_c00404{font-size:66.239974px;}
.fs3_c00404{font-size:71.999971px;}
.y0_c00404{bottom:0.000000px;}
.y4_c00404{bottom:75.900270px;}
.y3_c00404{bottom:114.060254px;}
.y30_c00404{bottom:159.419936px;}
.y2f_c00404{bottom:197.759921px;}
.y2e_c00404{bottom:235.919906px;}
.y2d_c00404{bottom:273.899890px;}
.y2c_c00404{bottom:289.379884px;}
.y2b_c00404{bottom:323.399871px;}
.y2a_c00404{bottom:363.899854px;}
.y28_c00404{bottom:404.399838px;}
.y29_c00404{bottom:408.899836px;}
.y25_c00404{bottom:444.899822px;}
.y27_c00404{bottom:456.779817px;}
.y26_c00404{bottom:463.619815px;}
.y24_c00404{bottom:468.839812px;}
.y23_c00404{bottom:509.339796px;}
.y21_c00404{bottom:549.839780px;}
.y22_c00404{bottom:554.339778px;}
.y1e_c00404{bottom:590.339764px;}
.y20_c00404{bottom:602.399759px;}
.y1f_c00404{bottom:609.239756px;}
.y1d_c00404{bottom:614.279754px;}
.y1c_c00404{bottom:654.779738px;}
.y1a_c00404{bottom:695.279722px;}
.y1b_c00404{bottom:699.959720px;}
.y17_c00404{bottom:735.779706px;}
.y19_c00404{bottom:747.839701px;}
.y18_c00404{bottom:754.679698px;}
.y16_c00404{bottom:759.899696px;}
.y15_c00404{bottom:800.399680px;}
.y13_c00404{bottom:840.899664px;}
.y14_c00404{bottom:845.399662px;}
.y10_c00404{bottom:881.399647px;}
.y12_c00404{bottom:893.279643px;}
.y11_c00404{bottom:900.119640px;}
.yf_c00404{bottom:905.339638px;}
.ye_c00404{bottom:945.839622px;}
.yc_c00404{bottom:986.339605px;}
.yd_c00404{bottom:990.839604px;}
.y9_c00404{bottom:1026.839589px;}
.yb_c00404{bottom:1038.899584px;}
.ya_c00404{bottom:1045.739582px;}
.y8_c00404{bottom:1050.779580px;}
.y7_c00404{bottom:1091.279563px;}
.y5_c00404{bottom:1131.779547px;}
.y6_c00404{bottom:1136.459545px;}
.y2_c00404{bottom:1176.059530px;}
.y1_c00404{bottom:1196.219522px;}
.h6_c00404{height:37.546860px;}
.h2_c00404{height:54.628572px;}
.h3_c00404{height:56.320290px;}
.h1_c00404{height:58.651148px;}
.h4_c00404{height:70.664034px;}
.h7_c00404{height:103.840271px;}
.h5_c00404{height:104.560271px;}
.h0_c00404{height:1263.000000px;}
.w0_c00404{width:892.500000px;}
.x0_c00404{left:0.000000px;}
.x5_c00404{left:127.620262px;}
.x9_c00404{left:132.119947px;}
.x1_c00404{left:181.799927px;}
.x6_c00404{left:220.679912px;}
.x2_c00404{left:329.039408px;}
.x18_c00404{left:386.819845px;}
.xa_c00404{left:390.419844px;}
.xb_c00404{left:393.839842px;}
.x4_c00404{left:433.979826px;}
.x7_c00404{left:446.759821px;}
.xc_c00404{left:456.479817px;}
.x19_c00404{left:462.059815px;}
.xd_c00404{left:463.319815px;}
.x1a_c00404{left:465.299814px;}
.x8_c00404{left:506.879797px;}
.x16_c00404{left:520.019792px;}
.x23_c00404{left:529.919788px;}
.x1b_c00404{left:535.499786px;}
.x24_c00404{left:536.759785px;}
.x1c_c00404{left:538.739785px;}
.x17_c00404{left:577.619769px;}
.x21_c00404{left:590.759764px;}
.xe_c00404{left:600.479760px;}
.x25_c00404{left:606.059758px;}
.xf_c00404{left:607.319757px;}
.x26_c00404{left:609.299756px;}
.x22_c00404{left:642.239743px;}
.x27_c00404{left:655.379738px;}
.x29_c00404{left:665.279734px;}
.x10_c00404{left:670.859732px;}
.x2a_c00404{left:672.119731px;}
.x11_c00404{left:674.099730px;}
.x28_c00404{left:701.819719px;}
.x2b_c00404{left:714.959714px;}
.x12_c00404{left:724.859710px;}
.x1d_c00404{left:730.439708px;}
.x13_c00404{left:731.699707px;}
.x1e_c00404{left:733.679707px;}
.x2c_c00404{left:761.399695px;}
.x3_c00404{left:765.359694px;}
.x2d_c00404{left:774.539690px;}
.x14_c00404{left:784.439686px;}
.x1f_c00404{left:790.019684px;}
.x15_c00404{left:791.279683px;}
.x20_c00404{left:793.259683px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.v1_c00404{vertical-align:42.879983pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws1_c00404{word-spacing:-13.343995pt;}
.ws0_c00404{word-spacing:-8.895996pt;}
.ws2_c00404{word-spacing:0.000000pt;}
._1_c00404{margin-left:-0.982555pt;}
._0_c00404{width:1.314126pt;}
._18_c00404{width:66.061473pt;}
._11_c00404{width:73.105506pt;}
._12_c00404{width:80.149540pt;}
._10_c00404{width:91.676140pt;}
._1c_c00404{width:98.720173pt;}
._5_c00404{width:105.209412pt;}
._b_c00404{width:112.308485pt;}
._d_c00404{width:115.369707pt;}
._1b_c00404{width:119.211907pt;}
._15_c00404{width:121.773374pt;}
._4_c00404{width:123.139679pt;}
._1d_c00404{width:125.615574pt;}
._1a_c00404{width:128.817407pt;}
._17_c00404{width:137.349585pt;}
._3_c00404{width:144.912146pt;}
._19_c00404{width:153.877279pt;}
._16_c00404{width:158.274274pt;}
._13_c00404{width:160.921312pt;}
._a_c00404{width:163.812029pt;}
._f_c00404{width:165.525718pt;}
._e_c00404{width:174.923808pt;}
._2_c00404{width:180.141058pt;}
._9_c00404{width:184.303763pt;}
._8_c00404{width:194.549630pt;}
._23_c00404{width:198.617374pt;}
._7_c00404{width:200.953296pt;}
._22_c00404{width:216.547641pt;}
._21_c00404{width:238.320108pt;}
._20_c00404{width:247.285242pt;}
._1f_c00404{width:254.329275pt;}
._c_c00404{width:264.485515pt;}
._14_c00404{width:277.933216pt;}
._6_c00404{width:461.731892pt;}
._1e_c00404{width:523.283278pt;}
.fs4_c00404{font-size:31.999987pt;}
.fs2_c00404{font-size:47.999981pt;}
.fs0_c00404{font-size:53.119979pt;}
.fs1_c00404{font-size:58.879976pt;}
.fs3_c00404{font-size:63.999974pt;}
.y0_c00404{bottom:0.000000pt;}
.y4_c00404{bottom:67.466906pt;}
.y3_c00404{bottom:101.386893pt;}
.y30_c00404{bottom:141.706610pt;}
.y2f_c00404{bottom:175.786596pt;}
.y2e_c00404{bottom:209.706583pt;}
.y2d_c00404{bottom:243.466569pt;}
.y2c_c00404{bottom:257.226564pt;}
.y2b_c00404{bottom:287.466552pt;}
.y2a_c00404{bottom:323.466537pt;}
.y28_c00404{bottom:359.466523pt;}
.y29_c00404{bottom:363.466521pt;}
.y25_c00404{bottom:395.466508pt;}
.y27_c00404{bottom:406.026504pt;}
.y26_c00404{bottom:412.106502pt;}
.y24_c00404{bottom:416.746500pt;}
.y23_c00404{bottom:452.746486pt;}
.y21_c00404{bottom:488.746471pt;}
.y22_c00404{bottom:492.746470pt;}
.y1e_c00404{bottom:524.746457pt;}
.y20_c00404{bottom:535.466452pt;}
.y1f_c00404{bottom:541.546450pt;}
.y1d_c00404{bottom:546.026448pt;}
.y1c_c00404{bottom:582.026434pt;}
.y1a_c00404{bottom:618.026419pt;}
.y1b_c00404{bottom:622.186418pt;}
.y17_c00404{bottom:654.026405pt;}
.y19_c00404{bottom:664.746401pt;}
.y18_c00404{bottom:670.826398pt;}
.y16_c00404{bottom:675.466396pt;}
.y15_c00404{bottom:711.466382pt;}
.y13_c00404{bottom:747.466368pt;}
.y14_c00404{bottom:751.466366pt;}
.y10_c00404{bottom:783.466353pt;}
.y12_c00404{bottom:794.026349pt;}
.y11_c00404{bottom:800.106347pt;}
.yf_c00404{bottom:804.746345pt;}
.ye_c00404{bottom:840.746330pt;}
.yc_c00404{bottom:876.746316pt;}
.yd_c00404{bottom:880.746314pt;}
.y9_c00404{bottom:912.746302pt;}
.yb_c00404{bottom:923.466297pt;}
.ya_c00404{bottom:929.546295pt;}
.y8_c00404{bottom:934.026293pt;}
.y7_c00404{bottom:970.026279pt;}
.y5_c00404{bottom:1006.026264pt;}
.y6_c00404{bottom:1010.186263pt;}
.y2_c00404{bottom:1045.386249pt;}
.y1_c00404{bottom:1063.306241pt;}
.h6_c00404{height:33.374987pt;}
.h2_c00404{height:48.558731pt;}
.h3_c00404{height:50.062480pt;}
.h1_c00404{height:52.134354pt;}
.h4_c00404{height:62.812475pt;}
.h7_c00404{height:92.302463pt;}
.h5_c00404{height:92.942463pt;}
.h0_c00404{height:1122.666667pt;}
.w0_c00404{width:793.333333pt;}
.x0_c00404{left:0.000000pt;}
.x5_c00404{left:113.440233pt;}
.x9_c00404{left:117.439953pt;}
.x1_c00404{left:161.599935pt;}
.x6_c00404{left:196.159922pt;}
.x2_c00404{left:292.479474pt;}
.x18_c00404{left:343.839862pt;}
.xa_c00404{left:347.039861pt;}
.xb_c00404{left:350.079860pt;}
.x4_c00404{left:385.759846pt;}
.x7_c00404{left:397.119841pt;}
.xc_c00404{left:405.759838pt;}
.x19_c00404{left:410.719836pt;}
.xd_c00404{left:411.839835pt;}
.x1a_c00404{left:413.599835pt;}
.x8_c00404{left:450.559820pt;}
.x16_c00404{left:462.239815pt;}
.x23_c00404{left:471.039812pt;}
.x1b_c00404{left:475.999810pt;}
.x24_c00404{left:477.119809pt;}
.x1c_c00404{left:478.879808pt;}
.x17_c00404{left:513.439795pt;}
.x21_c00404{left:525.119790pt;}
.xe_c00404{left:533.759786pt;}
.x25_c00404{left:538.719785pt;}
.xf_c00404{left:539.839784pt;}
.x26_c00404{left:541.599783pt;}
.x22_c00404{left:570.879772pt;}
.x27_c00404{left:582.559767pt;}
.x29_c00404{left:591.359763pt;}
.x10_c00404{left:596.319761pt;}
.x2a_c00404{left:597.439761pt;}
.x11_c00404{left:599.199760pt;}
.x28_c00404{left:623.839750pt;}
.x2b_c00404{left:635.519746pt;}
.x12_c00404{left:644.319742pt;}
.x1d_c00404{left:649.279740pt;}
.x13_c00404{left:650.399740pt;}
.x1e_c00404{left:652.159739pt;}
.x2c_c00404{left:676.799729pt;}
.x3_c00404{left:680.319728pt;}
.x2d_c00404{left:688.479725pt;}
.x14_c00404{left:697.279721pt;}
.x1f_c00404{left:702.239719pt;}
.x15_c00404{left:703.359719pt;}
.x20_c00404{left:705.119718pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_296527309074ba030d059313.woff2')format("woff");}.ff1_c00405{font-family:ff1_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:ff2_c00405;src:url('chunks/assets/font_d63b2a3b2ee646e9e26f932b.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_a8eac5136838c305a8c7fa93.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_caa1e6e491a5f4953103a94b.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00405;src:url('chunks/assets/font_4a61aa6634cf81c8787c2453.woff2')format("woff");}.ff5_c00405{font-family:ff5_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;}
.m4_c00405{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls3_c00405{letter-spacing:0.000000px;}
.ls2_c00405{letter-spacing:0.189300px;}
.ls0_c00405{letter-spacing:0.272340px;}
.ls1_c00405{letter-spacing:71.280691px;}
.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;}
}
.ws0_c00405{word-spacing:-10.007996px;}
.ws1_c00405{word-spacing:0.000000px;}
._1_c00405{margin-left:-1.105374px;}
._0_c00405{width:1.195563px;}
._13_c00405{width:8.506301px;}
._12_c00405{width:9.601961px;}
._14_c00405{width:11.042834px;}
._2_c00405{width:165.969733px;}
._3_c00405{width:204.151596px;}
._11_c00405{width:237.852796px;}
._9_c00405{width:273.969690px;}
._7_c00405{width:276.755072px;}
._6_c00405{width:289.235422px;}
._f_c00405{width:297.647035px;}
._a_c00405{width:312.151553px;}
._e_c00405{width:315.651480px;}
._c_c00405{width:319.005672px;}
._10_c00405{width:328.137697px;}
._d_c00405{width:357.907948px;}
._4_c00405{width:364.803586px;}
._5_c00405{width:367.521181px;}
._8_c00405{width:564.203637px;}
._b_c00405{width:881.815870px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs4_c00405{font-size:35.999986px;}
.fs2_c00405{font-size:53.999978px;}
.fs0_c00405{font-size:59.759976px;}
.fs1_c00405{font-size:66.239974px;}
.fs3_c00405{font-size:71.999971px;}
.y0_c00405{bottom:0.000000px;}
.y4_c00405{bottom:75.899970px;}
.y3_c00405{bottom:114.059954px;}
.y26_c00405{bottom:183.899926px;}
.y25_c00405{bottom:209.639916px;}
.y24_c00405{bottom:235.559906px;}
.y23_c00405{bottom:261.479895px;}
.y22_c00405{bottom:287.399885px;}
.y21_c00405{bottom:313.139875px;}
.y20_c00405{bottom:339.059864px;}
.y1f_c00405{bottom:364.979854px;}
.y1e_c00405{bottom:390.899844px;}
.y1d_c00405{bottom:416.639833px;}
.y1c_c00405{bottom:442.559823px;}
.y1b_c00405{bottom:468.479813px;}
.y1a_c00405{bottom:494.399802px;}
.y19_c00405{bottom:520.139792px;}
.y18_c00405{bottom:546.059782px;}
.y17_c00405{bottom:574.139770px;}
.y16_c00405{bottom:616.259753px;}
.y15_c00405{bottom:631.739747px;}
.y14_c00405{bottom:663.779734px;}
.y13_c00405{bottom:704.279718px;}
.y11_c00405{bottom:744.779702px;}
.y12_c00405{bottom:751.619699px;}
.y10_c00405{bottom:785.279686px;}
.yf_c00405{bottom:825.779670px;}
.yd_c00405{bottom:866.279653px;}
.ye_c00405{bottom:873.119651px;}
.yc_c00405{bottom:906.779637px;}
.yb_c00405{bottom:948.899620px;}
.y9_c00405{bottom:990.839604px;}
.ya_c00405{bottom:997.679601px;}
.y8_c00405{bottom:1032.779587px;}
.y7_c00405{bottom:1037.279585px;}
.y6_c00405{bottom:1083.359567px;}
.y5_c00405{bottom:1113.959554px;}
.y2_c00405{bottom:1157.159537px;}
.y1_c00405{bottom:1196.039522px;}
.h5_c00405{height:37.546860px;}
.h2_c00405{height:54.628572px;}
.h3_c00405{height:56.320290px;}
.h1_c00405{height:58.651148px;}
.h6_c00405{height:62.327788px;}
.h4_c00405{height:70.664034px;}
.h0_c00405{height:1263.000000px;}
.w0_c00405{width:892.500000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:127.619949px;}
.x3_c00405{left:132.119947px;}
.xe_c00405{left:145.619942px;}
.xf_c00405{left:172.618928px;}
.x9_c00405{left:280.259888px;}
.x2_c00405{left:433.979514px;}
.x4_c00405{left:494.999802px;}
.xa_c00405{left:531.359787px;}
.xb_c00405{left:538.199785px;}
.x5_c00405{left:635.399746px;}
.x6_c00405{left:638.639745px;}
.x7_c00405{left:737.999705px;}
.xc_c00405{left:743.579703px;}
.x8_c00405{left:744.839702px;}
.xd_c00405{left:746.819701px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls3_c00405{letter-spacing:0.000000pt;}
.ls2_c00405{letter-spacing:0.168267pt;}
.ls0_c00405{letter-spacing:0.242080pt;}
.ls1_c00405{letter-spacing:63.360615pt;}
.ws0_c00405{word-spacing:-8.895996pt;}
.ws1_c00405{word-spacing:0.000000pt;}
._1_c00405{margin-left:-0.982555pt;}
._0_c00405{width:1.062723pt;}
._13_c00405{width:7.561157pt;}
._12_c00405{width:8.535076pt;}
._14_c00405{width:9.815852pt;}
._2_c00405{width:147.528652pt;}
._3_c00405{width:181.468086pt;}
._11_c00405{width:211.424708pt;}
._9_c00405{width:243.528613pt;}
._7_c00405{width:246.004508pt;}
._6_c00405{width:257.098153pt;}
._f_c00405{width:264.575142pt;}
._a_c00405{width:277.468047pt;}
._e_c00405{width:280.579094pt;}
._c_c00405{width:283.560597pt;}
._10_c00405{width:291.677953pt;}
._d_c00405{width:318.140398pt;}
._4_c00405{width:324.269854pt;}
._5_c00405{width:326.685494pt;}
._8_c00405{width:501.514344pt;}
._b_c00405{width:783.836329pt;}
.fs4_c00405{font-size:31.999987pt;}
.fs2_c00405{font-size:47.999981pt;}
.fs0_c00405{font-size:53.119979pt;}
.fs1_c00405{font-size:58.879976pt;}
.fs3_c00405{font-size:63.999974pt;}
.y0_c00405{bottom:0.000000pt;}
.y4_c00405{bottom:67.466640pt;}
.y3_c00405{bottom:101.386626pt;}
.y26_c00405{bottom:163.466601pt;}
.y25_c00405{bottom:186.346592pt;}
.y24_c00405{bottom:209.386583pt;}
.y23_c00405{bottom:232.426574pt;}
.y22_c00405{bottom:255.466564pt;}
.y21_c00405{bottom:278.346555pt;}
.y20_c00405{bottom:301.386546pt;}
.y1f_c00405{bottom:324.426537pt;}
.y1e_c00405{bottom:347.466528pt;}
.y1d_c00405{bottom:370.346519pt;}
.y1c_c00405{bottom:393.386509pt;}
.y1b_c00405{bottom:416.426500pt;}
.y1a_c00405{bottom:439.466491pt;}
.y19_c00405{bottom:462.346482pt;}
.y18_c00405{bottom:485.386473pt;}
.y17_c00405{bottom:510.346463pt;}
.y16_c00405{bottom:547.786448pt;}
.y15_c00405{bottom:561.546442pt;}
.y14_c00405{bottom:590.026431pt;}
.y13_c00405{bottom:626.026416pt;}
.y11_c00405{bottom:662.026402pt;}
.y12_c00405{bottom:668.106399pt;}
.y10_c00405{bottom:698.026387pt;}
.yf_c00405{bottom:734.026373pt;}
.yd_c00405{bottom:770.026359pt;}
.ye_c00405{bottom:776.106356pt;}
.yc_c00405{bottom:806.026344pt;}
.yb_c00405{bottom:843.466329pt;}
.y9_c00405{bottom:880.746314pt;}
.ya_c00405{bottom:886.826312pt;}
.y8_c00405{bottom:918.026299pt;}
.y7_c00405{bottom:922.026298pt;}
.y6_c00405{bottom:962.986281pt;}
.y5_c00405{bottom:990.186271pt;}
.y2_c00405{bottom:1028.586255pt;}
.y1_c00405{bottom:1063.146241pt;}
.h5_c00405{height:33.374987pt;}
.h2_c00405{height:48.558731pt;}
.h3_c00405{height:50.062480pt;}
.h1_c00405{height:52.134354pt;}
.h6_c00405{height:55.402478pt;}
.h4_c00405{height:62.812475pt;}
.h0_c00405{height:1122.666667pt;}
.w0_c00405{width:793.333333pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:113.439955pt;}
.x3_c00405{left:117.439953pt;}
.xe_c00405{left:129.439948pt;}
.xf_c00405{left:153.439047pt;}
.x9_c00405{left:249.119900pt;}
.x2_c00405{left:385.759568pt;}
.x4_c00405{left:439.999824pt;}
.xa_c00405{left:472.319811pt;}
.xb_c00405{left:478.399809pt;}
.x5_c00405{left:564.799774pt;}
.x6_c00405{left:567.679773pt;}
.x7_c00405{left:655.999738pt;}
.xc_c00405{left:660.959736pt;}
.x8_c00405{left:662.079735pt;}
.xd_c00405{left:663.839734pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b8297150c44f1343ff0d198.woff2')format("woff");}.ff1_c00406{font-family:ff1_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:ff2_c00406;src:url('chunks/assets/font_9514278c769e18593ddfa2f2.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_c6679cb50b1eb440c67bd0cb.woff2')format("woff");}.ff4_c00406{font-family:ff4_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;}
@font-face{font-family:ff5_c00406;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00406{font-family:ff5_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;}
.m0_c00406{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls4_c00406{letter-spacing:0.000000px;}
.ls2_c00406{letter-spacing:0.189300px;}
.ls0_c00406{letter-spacing:0.272340px;}
.ls3_c00406{letter-spacing:0.909720px;}
.ls1_c00406{letter-spacing:71.280691px;}
.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:-14.939994px;}
.ws1_c00406{word-spacing:0.000000px;}
._1_c00406{margin-left:-1.105374px;}
._0_c00406{width:1.478392px;}
._a_c00406{width:6.469662px;}
._7_c00406{width:9.584799px;}
._6_c00406{width:11.042834px;}
._5_c00406{width:22.118289px;}
._4_c00406{width:23.290402px;}
._9_c00406{width:24.723951px;}
._8_c00406{width:26.172147px;}
._3_c00406{width:38.683924px;}
._2_c00406{width:39.860529px;}
.fc0_c00406{color:rgb(0,0,0);}
.fs2_c00406{font-size:48.239981px;}
.fs0_c00406{font-size:59.759976px;}
.fs1_c00406{font-size:66.239974px;}
.fs3_c00406{font-size:71.999971px;}
.y0_c00406{bottom:0.000000px;}
.y4_c00406{bottom:75.900270px;}
.y3_c00406{bottom:114.060254px;}
.y28_c00406{bottom:147.899941px;}
.y27_c00406{bottom:178.859928px;}
.y26_c00406{bottom:209.999916px;}
.y25_c00406{bottom:240.959904px;}
.y24_c00406{bottom:272.099891px;}
.y23_c00406{bottom:303.059879px;}
.y22_c00406{bottom:334.019866px;}
.y21_c00406{bottom:365.159854px;}
.y20_c00406{bottom:396.119842px;}
.y1f_c00406{bottom:427.259829px;}
.y1e_c00406{bottom:458.219817px;}
.y1d_c00406{bottom:489.719804px;}
.y1c_c00406{bottom:520.679792px;}
.y1b_c00406{bottom:551.819779px;}
.y1a_c00406{bottom:582.779767px;}
.y19_c00406{bottom:613.919754px;}
.y18_c00406{bottom:644.879742px;}
.y17_c00406{bottom:676.019730px;}
.y16_c00406{bottom:702.119719px;}
.y15_c00406{bottom:725.519710px;}
.y14_c00406{bottom:751.259699px;}
.y13_c00406{bottom:777.179689px;}
.y12_c00406{bottom:803.099679px;}
.y11_c00406{bottom:828.839668px;}
.y10_c00406{bottom:854.759658px;}
.yf_c00406{bottom:880.679648px;}
.ye_c00406{bottom:906.599637px;}
.yd_c00406{bottom:932.339627px;}
.yc_c00406{bottom:958.259617px;}
.yb_c00406{bottom:984.179606px;}
.ya_c00406{bottom:1010.099596px;}
.y9_c00406{bottom:1035.839586px;}
.y8_c00406{bottom:1061.759575px;}
.y7_c00406{bottom:1087.679565px;}
.y6_c00406{bottom:1113.599555px;}
.y5_c00406{bottom:1139.339544px;}
.y2_c00406{bottom:1176.059530px;}
.y1_c00406{bottom:1196.219522px;}
.h4_c00406{height:50.312792px;}
.h2_c00406{height:54.628572px;}
.h1_c00406{height:58.651148px;}
.h3_c00406{height:62.327788px;}
.h5_c00406{height:70.664034px;}
.h6_c00406{height:72.562471px;}
.h0_c00406{height:1263.000000px;}
.w0_c00406{width:892.500000px;}
.x0_c00406{left:0.000000px;}
.x5_c00406{left:127.620262px;}
.x6_c00406{left:145.619942px;}
.x7_c00406{left:172.619348px;}
.x8_c00406{left:180.719930px;}
.x1_c00406{left:181.799927px;}
.x2_c00406{left:329.039408px;}
.x4_c00406{left:433.979826px;}
.x3_c00406{left:765.359694px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls4_c00406{letter-spacing:0.000000pt;}
.ls2_c00406{letter-spacing:0.168267pt;}
.ls0_c00406{letter-spacing:0.242080pt;}
.ls3_c00406{letter-spacing:0.808640pt;}
.ls1_c00406{letter-spacing:63.360615pt;}
.ws0_c00406{word-spacing:-13.279995pt;}
.ws1_c00406{word-spacing:0.000000pt;}
._1_c00406{margin-left:-0.982555pt;}
._0_c00406{width:1.314126pt;}
._a_c00406{width:5.750810pt;}
._7_c00406{width:8.519821pt;}
._6_c00406{width:9.815852pt;}
._5_c00406{width:19.660701pt;}
._4_c00406{width:20.702579pt;}
._9_c00406{width:21.976845pt;}
._8_c00406{width:23.264131pt;}
._3_c00406{width:34.385710pt;}
._2_c00406{width:35.431581pt;}
.fs2_c00406{font-size:42.879983pt;}
.fs0_c00406{font-size:53.119979pt;}
.fs1_c00406{font-size:58.879976pt;}
.fs3_c00406{font-size:63.999974pt;}
.y0_c00406{bottom:0.000000pt;}
.y4_c00406{bottom:67.466906pt;}
.y3_c00406{bottom:101.386893pt;}
.y28_c00406{bottom:131.466614pt;}
.y27_c00406{bottom:158.986603pt;}
.y26_c00406{bottom:186.666592pt;}
.y25_c00406{bottom:214.186581pt;}
.y24_c00406{bottom:241.866570pt;}
.y23_c00406{bottom:269.386559pt;}
.y22_c00406{bottom:296.906548pt;}
.y21_c00406{bottom:324.586537pt;}
.y20_c00406{bottom:352.106526pt;}
.y1f_c00406{bottom:379.786515pt;}
.y1e_c00406{bottom:407.306504pt;}
.y1d_c00406{bottom:435.306493pt;}
.y1c_c00406{bottom:462.826482pt;}
.y1b_c00406{bottom:490.506470pt;}
.y1a_c00406{bottom:518.026459pt;}
.y19_c00406{bottom:545.706448pt;}
.y18_c00406{bottom:573.226437pt;}
.y17_c00406{bottom:600.906426pt;}
.y16_c00406{bottom:624.106417pt;}
.y15_c00406{bottom:644.906409pt;}
.y14_c00406{bottom:667.786400pt;}
.y13_c00406{bottom:690.826390pt;}
.y12_c00406{bottom:713.866381pt;}
.y11_c00406{bottom:736.746372pt;}
.y10_c00406{bottom:759.786363pt;}
.yf_c00406{bottom:782.826354pt;}
.ye_c00406{bottom:805.866344pt;}
.yd_c00406{bottom:828.746335pt;}
.yc_c00406{bottom:851.786326pt;}
.yb_c00406{bottom:874.826317pt;}
.ya_c00406{bottom:897.866308pt;}
.y9_c00406{bottom:920.746298pt;}
.y8_c00406{bottom:943.786289pt;}
.y7_c00406{bottom:966.826280pt;}
.y6_c00406{bottom:989.866271pt;}
.y5_c00406{bottom:1012.746262pt;}
.y2_c00406{bottom:1045.386249pt;}
.y1_c00406{bottom:1063.306241pt;}
.h4_c00406{height:44.722482pt;}
.h2_c00406{height:48.558731pt;}
.h1_c00406{height:52.134354pt;}
.h3_c00406{height:55.402478pt;}
.h5_c00406{height:62.812475pt;}
.h6_c00406{height:64.499974pt;}
.h0_c00406{height:1122.666667pt;}
.w0_c00406{width:793.333333pt;}
.x0_c00406{left:0.000000pt;}
.x5_c00406{left:113.440233pt;}
.x6_c00406{left:129.439948pt;}
.x7_c00406{left:153.439421pt;}
.x8_c00406{left:160.639938pt;}
.x1_c00406{left:161.599935pt;}
.x2_c00406{left:292.479474pt;}
.x4_c00406{left:385.759846pt;}
.x3_c00406{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bda6b94e4d0762c1e98a5da3.woff2')format("woff");}.ff1_c00407{font-family:ff1_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;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_e24cfefc839b7e7f62d82fff.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_b8017b1e99edb0998df355b0.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_2bbc964ce5eeaf02d5be928a.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00407;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00407{font-family:ff5_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls2_c00407{letter-spacing:0.000000px;}
.ls1_c00407{letter-spacing:0.021238px;}
.ls0_c00407{letter-spacing:34.015846px;}
.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;}
}
.ws1_c00407{word-spacing:-18.021231px;}
.ws0_c00407{word-spacing:-17.999993px;}
.ws2_c00407{word-spacing:0.000000px;}
._9_c00407{margin-left:-2.849590px;}
._1_c00407{margin-left:-1.105374px;}
._0_c00407{width:1.195563px;}
._a_c00407{width:2.213238px;}
._6_c00407{width:3.481502px;}
._4_c00407{width:4.662708px;}
._5_c00407{width:6.353957px;}
._2_c00407{width:7.573977px;}
._b_c00407{width:8.620009px;}
._3_c00407{width:9.643101px;}
._d_c00407{width:10.784840px;}
._c_c00407{width:11.814928px;}
._7_c00407{width:15.431290px;}
._8_c00407{width:16.680164px;}
.fc0_c00407{color:rgb(0,0,0);}
.fs0_c00407{font-size:59.759976px;}
.fs1_c00407{font-size:66.239974px;}
.fs2_c00407{font-size:71.999971px;}
.y0_c00407{bottom:0.000000px;}
.y4_c00407{bottom:75.899970px;}
.y3_c00407{bottom:114.059954px;}
.y21_c00407{bottom:143.579943px;}
.y20_c00407{bottom:189.839924px;}
.y1f_c00407{bottom:235.919906px;}
.y1e_c00407{bottom:281.999887px;}
.y1d_c00407{bottom:313.139875px;}
.y1c_c00407{bottom:344.099862px;}
.y1b_c00407{bottom:390.179844px;}
.y1a_c00407{bottom:421.139832px;}
.y19_c00407{bottom:452.279819px;}
.y18_c00407{bottom:483.239807px;}
.y17_c00407{bottom:514.379794px;}
.y16_c00407{bottom:545.339782px;}
.y15_c00407{bottom:576.479769px;}
.y14_c00407{bottom:607.439757px;}
.y13_c00407{bottom:653.519739px;}
.y12_c00407{bottom:684.659726px;}
.y11_c00407{bottom:730.559708px;}
.y10_c00407{bottom:761.699695px;}
.yf_c00407{bottom:792.659683px;}
.ye_c00407{bottom:823.799670px;}
.yd_c00407{bottom:854.759658px;}
.yc_c00407{bottom:885.899646px;}
.yb_c00407{bottom:916.859633px;}
.ya_c00407{bottom:962.939615px;}
.y9_c00407{bottom:994.079602px;}
.y8_c00407{bottom:1025.039590px;}
.y7_c00407{bottom:1056.179578px;}
.y6_c00407{bottom:1086.779565px;}
.y5_c00407{bottom:1117.919553px;}
.y2_c00407{bottom:1157.159537px;}
.y1_c00407{bottom:1196.039522px;}
.h2_c00407{height:54.628572px;}
.h1_c00407{height:58.651148px;}
.h4_c00407{height:70.664034px;}
.h3_c00407{height:72.562471px;}
.h5_c00407{height:75.093720px;}
.h0_c00407{height:1263.000000px;}
.w0_c00407{width:892.500000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:127.619949px;}
.x4_c00407{left:154.620049px;}
.x3_c00407{left:180.719930px;}
.x2_c00407{left:433.979514px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls2_c00407{letter-spacing:0.000000pt;}
.ls1_c00407{letter-spacing:0.018878pt;}
.ls0_c00407{letter-spacing:30.236308pt;}
.ws1_c00407{word-spacing:-16.018872pt;}
.ws0_c00407{word-spacing:-15.999994pt;}
.ws2_c00407{word-spacing:0.000000pt;}
._9_c00407{margin-left:-2.532969pt;}
._1_c00407{margin-left:-0.982555pt;}
._0_c00407{width:1.062723pt;}
._a_c00407{width:1.967323pt;}
._6_c00407{width:3.094668pt;}
._4_c00407{width:4.144629pt;}
._5_c00407{width:5.647962pt;}
._2_c00407{width:6.732424pt;}
._b_c00407{width:7.662231pt;}
._3_c00407{width:8.571645pt;}
._d_c00407{width:9.586524pt;}
._c_c00407{width:10.502158pt;}
._7_c00407{width:13.716702pt;}
._8_c00407{width:14.826813pt;}
.fs0_c00407{font-size:53.119979pt;}
.fs1_c00407{font-size:58.879976pt;}
.fs2_c00407{font-size:63.999974pt;}
.y0_c00407{bottom:0.000000pt;}
.y4_c00407{bottom:67.466640pt;}
.y3_c00407{bottom:101.386626pt;}
.y21_c00407{bottom:127.626616pt;}
.y20_c00407{bottom:168.746599pt;}
.y1f_c00407{bottom:209.706583pt;}
.y1e_c00407{bottom:250.666566pt;}
.y1d_c00407{bottom:278.346555pt;}
.y1c_c00407{bottom:305.866544pt;}
.y1b_c00407{bottom:346.826528pt;}
.y1a_c00407{bottom:374.346517pt;}
.y19_c00407{bottom:402.026506pt;}
.y18_c00407{bottom:429.546495pt;}
.y17_c00407{bottom:457.226484pt;}
.y16_c00407{bottom:484.746473pt;}
.y15_c00407{bottom:512.426462pt;}
.y14_c00407{bottom:539.946451pt;}
.y13_c00407{bottom:580.906434pt;}
.y12_c00407{bottom:608.586423pt;}
.y11_c00407{bottom:649.386407pt;}
.y10_c00407{bottom:677.066396pt;}
.yf_c00407{bottom:704.586385pt;}
.ye_c00407{bottom:732.266374pt;}
.yd_c00407{bottom:759.786363pt;}
.yc_c00407{bottom:787.466352pt;}
.yb_c00407{bottom:814.986341pt;}
.ya_c00407{bottom:855.946324pt;}
.y9_c00407{bottom:883.626313pt;}
.y8_c00407{bottom:911.146302pt;}
.y7_c00407{bottom:938.826291pt;}
.y6_c00407{bottom:966.026280pt;}
.y5_c00407{bottom:993.706269pt;}
.y2_c00407{bottom:1028.586255pt;}
.y1_c00407{bottom:1063.146241pt;}
.h2_c00407{height:48.558731pt;}
.h1_c00407{height:52.134354pt;}
.h4_c00407{height:62.812475pt;}
.h3_c00407{height:64.499974pt;}
.h5_c00407{height:66.749973pt;}
.h0_c00407{height:1122.666667pt;}
.w0_c00407{width:793.333333pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:113.439955pt;}
.x4_c00407{left:137.440043pt;}
.x3_c00407{left:160.639938pt;}
.x2_c00407{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7515b056d35e6e2302ca3d6.woff2')format("woff");}.ff1_c00408{font-family:ff1_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:ff2_c00408;src:url('chunks/assets/font_d59f12cd5fff1bff79738b77.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_24ea1828ed2c9faff0a544f6.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.311035;font-style:normal;font-weight:normal;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_98f94807ef1b4feccd7e4b72.woff2')format("woff");}.ff4_c00408{font-family:ff4_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:ff5_c00408;src:url('chunks/assets/font_e888911ac6d91062a3f6a297.woff2')format("woff");}.ff5_c00408{font-family:ff5_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;}
.m0_c00408{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls4_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:4.333198px;}
.ls2_c00408{letter-spacing:18.021233px;}
.ls3_c00408{letter-spacing:28.107169px;}
.ls1_c00408{letter-spacing:34.591006px;}
.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:-17.999993px;}
.ws1_c00408{word-spacing:0.000000px;}
._b_c00408{margin-left:-2.335036px;}
._1_c00408{margin-left:-1.105374px;}
._0_c00408{width:1.478392px;}
._2_c00408{width:3.184046px;}
._3_c00408{width:4.961493px;}
._5_c00408{width:9.128154px;}
._8_c00408{width:10.915796px;}
._a_c00408{width:19.304972px;}
._6_c00408{width:28.080037px;}
._7_c00408{width:29.352238px;}
._9_c00408{width:34.608782px;}
._4_c00408{width:35.805078px;}
.fc0_c00408{color:rgb(0,0,0);}
.fs0_c00408{font-size:59.759976px;}
.fs1_c00408{font-size:66.239974px;}
.fs2_c00408{font-size:71.999971px;}
.y0_c00408{bottom:0.000000px;}
.y4_c00408{bottom:75.720270px;}
.y3_c00408{bottom:113.880254px;}
.y14_c00408{bottom:211.439915px;}
.y13_c00408{bottom:242.399903px;}
.y12_c00408{bottom:273.539891px;}
.y11_c00408{bottom:304.499878px;}
.y10_c00408{bottom:335.639866px;}
.yf_c00408{bottom:366.599853px;}
.ye_c00408{bottom:397.739841px;}
.yd_c00408{bottom:443.819822px;}
.yc_c00408{bottom:474.779810px;}
.yb_c00408{bottom:505.919798px;}
.ya_c00408{bottom:536.879785px;}
.y9_c00408{bottom:567.839773px;}
.y8_c00408{bottom:612.839755px;}
.y7_c00408{bottom:656.219738px;}
.y6_c00408{bottom:696.539721px;}
.y5_c00408{bottom:1135.919546px;}
.y2_c00408{bottom:1175.879530px;}
.y1_c00408{bottom:1196.039522px;}
.h2_c00408{height:54.628572px;}
.h1_c00408{height:58.651148px;}
.h4_c00408{height:65.010911px;}
.h5_c00408{height:70.664034px;}
.h3_c00408{height:72.562471px;}
.h0_c00408{height:1263.000000px;}
.w0_c00408{width:892.500000px;}
.x0_c00408{left:0.000000px;}
.x5_c00408{left:127.800262px;}
.x9_c00408{left:180.899928px;}
.x1_c00408{left:181.979927px;}
.x7_c00408{left:196.559921px;}
.x2_c00408{left:329.219408px;}
.x4_c00408{left:434.159826px;}
.x8_c00408{left:446.579770px;}
.x6_c00408{left:599.580095px;}
.x3_c00408{left:765.539694px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls4_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:3.851732pt;}
.ls2_c00408{letter-spacing:16.018874pt;}
.ls3_c00408{letter-spacing:24.984150pt;}
.ls1_c00408{letter-spacing:30.747561pt;}
.ws0_c00408{word-spacing:-15.999994pt;}
.ws1_c00408{word-spacing:0.000000pt;}
._b_c00408{margin-left:-2.075588pt;}
._1_c00408{margin-left:-0.982555pt;}
._0_c00408{width:1.314126pt;}
._2_c00408{width:2.830264pt;}
._3_c00408{width:4.410216pt;}
._5_c00408{width:8.113915pt;}
._8_c00408{width:9.702929pt;}
._a_c00408{width:17.159975pt;}
._6_c00408{width:24.960033pt;}
._7_c00408{width:26.090879pt;}
._9_c00408{width:30.763362pt;}
._4_c00408{width:31.826736pt;}
.fs0_c00408{font-size:53.119979pt;}
.fs1_c00408{font-size:58.879976pt;}
.fs2_c00408{font-size:63.999974pt;}
.y0_c00408{bottom:0.000000pt;}
.y4_c00408{bottom:67.306906pt;}
.y3_c00408{bottom:101.226893pt;}
.y14_c00408{bottom:187.946591pt;}
.y13_c00408{bottom:215.466580pt;}
.y12_c00408{bottom:243.146569pt;}
.y11_c00408{bottom:270.666558pt;}
.y10_c00408{bottom:298.346547pt;}
.yf_c00408{bottom:325.866536pt;}
.ye_c00408{bottom:353.546525pt;}
.yd_c00408{bottom:394.506509pt;}
.yc_c00408{bottom:422.026498pt;}
.yb_c00408{bottom:449.706487pt;}
.ya_c00408{bottom:477.226476pt;}
.y9_c00408{bottom:504.746465pt;}
.y8_c00408{bottom:544.746449pt;}
.y7_c00408{bottom:583.306433pt;}
.y6_c00408{bottom:619.146419pt;}
.y5_c00408{bottom:1009.706263pt;}
.y2_c00408{bottom:1045.226249pt;}
.y1_c00408{bottom:1063.146241pt;}
.h2_c00408{height:48.558731pt;}
.h1_c00408{height:52.134354pt;}
.h4_c00408{height:57.787477pt;}
.h5_c00408{height:62.812475pt;}
.h3_c00408{height:64.499974pt;}
.h0_c00408{height:1122.666667pt;}
.w0_c00408{width:793.333333pt;}
.x0_c00408{left:0.000000pt;}
.x5_c00408{left:113.600233pt;}
.x9_c00408{left:160.799936pt;}
.x1_c00408{left:161.759935pt;}
.x7_c00408{left:174.719930pt;}
.x2_c00408{left:292.639474pt;}
.x4_c00408{left:385.919846pt;}
.x8_c00408{left:396.959796pt;}
.x6_c00408{left:532.960085pt;}
.x3_c00408{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb23e70b390cb1c2fc340d3c.woff2')format("woff");}.ff1_c00409{font-family:ff1_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:ff2_c00409;src:url('chunks/assets/font_707167a3fb756eadf80a5f8d.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_4bcc07bebbbe4cf7b9696324.woff2')format("woff");}.ff3_c00409{font-family:ff3_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:ff4_c00409;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls4_c00409{letter-spacing:0.000000px;}
.ls2_c00409{letter-spacing:0.012620px;}
.ls1_c00409{letter-spacing:0.153901px;}
.ls3_c00409{letter-spacing:0.182640px;}
.ls0_c00409{letter-spacing:0.374281px;}
.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;}
}
.ws4_c00409{word-spacing:-14.939994px;}
.ws0_c00409{word-spacing:-12.434276px;}
.ws2_c00409{word-spacing:-10.452616px;}
.ws1_c00409{word-spacing:-9.437756px;}
.ws3_c00409{word-spacing:-8.786876px;}
.ws5_c00409{word-spacing:0.000000px;}
._4_c00409{margin-left:-12.716934px;}
._1_c00409{margin-left:-1.105374px;}
._0_c00409{width:1.195563px;}
._3_c00409{width:3.010109px;}
._5_c00409{width:8.678910px;}
._6_c00409{width:9.704432px;}
._2_c00409{width:19.714709px;}
.fc0_c00409{color:rgb(0,0,0);}
.fs5_c00409{font-size:38.879984px;}
.fs4_c00409{font-size:41.759983px;}
.fs3_c00409{font-size:48.239981px;}
.fs0_c00409{font-size:59.759976px;}
.fs1_c00409{font-size:66.239974px;}
.fs2_c00409{font-size:71.999971px;}
.y0_c00409{bottom:0.000000px;}
.y4_c00409{bottom:75.719970px;}
.y3_c00409{bottom:113.879954px;}
.y22_c00409{bottom:133.499947px;}
.y21_c00409{bottom:151.859939px;}
.y20_c00409{bottom:170.219932px;}
.y1f_c00409{bottom:177.779929px;}
.y1e_c00409{bottom:188.219925px;}
.y1d_c00409{bottom:205.319918px;}
.y1c_c00409{bottom:222.599911px;}
.y1b_c00409{bottom:240.239904px;}
.y1a_c00409{bottom:247.799901px;}
.y19_c00409{bottom:258.779896px;}
.y18_c00409{bottom:276.059890px;}
.y17_c00409{bottom:294.239882px;}
.y16_c00409{bottom:301.799879px;}
.y15_c00409{bottom:314.399874px;}
.y14_c00409{bottom:369.119852px;}
.y13_c00409{bottom:407.279837px;}
.y12_c00409{bottom:429.059828px;}
.y11_c00409{bottom:469.379812px;}
.yf_c00409{bottom:663.419735px;}
.y10_c00409{bottom:671.699731px;}
.ye_c00409{bottom:708.239717px;}
.yd_c00409{bottom:751.619699px;}
.yc_c00409{bottom:780.239688px;}
.yb_c00409{bottom:820.379672px;}
.y9_c00409{bottom:1009.919596px;}
.ya_c00409{bottom:1018.199593px;}
.y8_c00409{bottom:1040.879584px;}
.y6_c00409{bottom:1086.959565px;}
.y7_c00409{bottom:1095.239562px;}
.y5_c00409{bottom:1118.099553px;}
.y2_c00409{bottom:1156.979537px;}
.y1_c00409{bottom:1195.859522px;}
.ha_c00409{height:32.064597px;}
.h7_c00409{height:34.439752px;}
.h8_c00409{height:40.985140px;}
.h4_c00409{height:47.344903px;}
.hb_c00409{height:49.284472px;}
.h2_c00409{height:54.628572px;}
.h9_c00409{height:58.621969px;}
.h1_c00409{height:58.651148px;}
.h5_c00409{height:65.010911px;}
.h3_c00409{height:70.664034px;}
.h6_c00409{height:72.562471px;}
.h0_c00409{height:1263.000000px;}
.w0_c00409{width:892.500000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:127.799949px;}
.xf_c00409{left:134.099946px;}
.x9_c00409{left:138.779944px;}
.x13_c00409{left:142.379943px;}
.x11_c00409{left:143.459943px;}
.x12_c00409{left:147.419941px;}
.x5_c00409{left:180.899958px;}
.xa_c00409{left:337.320467px;}
.x10_c00409{left:412.559866px;}
.x2_c00409{left:434.159514px;}
.xb_c00409{left:446.580446px;}
.x6_c00409{left:531.179788px;}
.x7_c00409{left:549.539780px;}
.x3_c00409{left:594.539762px;}
.x4_c00409{left:612.899755px;}
.xc_c00409{left:637.199745px;}
.xd_c00409{left:655.559738px;}
.xe_c00409{left:795.959597px;}
.x8_c00409{left:799.199294px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls4_c00409{letter-spacing:0.000000pt;}
.ls2_c00409{letter-spacing:0.011218pt;}
.ls1_c00409{letter-spacing:0.136801pt;}
.ls3_c00409{letter-spacing:0.162347pt;}
.ls0_c00409{letter-spacing:0.332694pt;}
.ws4_c00409{word-spacing:-13.279995pt;}
.ws0_c00409{word-spacing:-11.052689pt;}
.ws2_c00409{word-spacing:-9.291214pt;}
.ws1_c00409{word-spacing:-8.389117pt;}
.ws3_c00409{word-spacing:-7.810557pt;}
.ws5_c00409{word-spacing:0.000000pt;}
._4_c00409{margin-left:-11.303941pt;}
._1_c00409{margin-left:-0.982555pt;}
._0_c00409{width:1.062723pt;}
._3_c00409{width:2.675653pt;}
._5_c00409{width:7.714587pt;}
._6_c00409{width:8.626162pt;}
._2_c00409{width:17.524186pt;}
.fs5_c00409{font-size:34.559986pt;}
.fs4_c00409{font-size:37.119985pt;}
.fs3_c00409{font-size:42.879983pt;}
.fs0_c00409{font-size:53.119979pt;}
.fs1_c00409{font-size:58.879976pt;}
.fs2_c00409{font-size:63.999974pt;}
.y0_c00409{bottom:0.000000pt;}
.y4_c00409{bottom:67.306640pt;}
.y3_c00409{bottom:101.226626pt;}
.y22_c00409{bottom:118.666619pt;}
.y21_c00409{bottom:134.986613pt;}
.y20_c00409{bottom:151.306606pt;}
.y1f_c00409{bottom:158.026603pt;}
.y1e_c00409{bottom:167.306600pt;}
.y1d_c00409{bottom:182.506594pt;}
.y1c_c00409{bottom:197.866588pt;}
.y1b_c00409{bottom:213.546581pt;}
.y1a_c00409{bottom:220.266579pt;}
.y19_c00409{bottom:230.026575pt;}
.y18_c00409{bottom:245.386569pt;}
.y17_c00409{bottom:261.546562pt;}
.y16_c00409{bottom:268.266559pt;}
.y15_c00409{bottom:279.466555pt;}
.y14_c00409{bottom:328.106535pt;}
.y13_c00409{bottom:362.026522pt;}
.y12_c00409{bottom:381.386514pt;}
.y11_c00409{bottom:417.226500pt;}
.yf_c00409{bottom:589.706431pt;}
.y10_c00409{bottom:597.066428pt;}
.ye_c00409{bottom:629.546415pt;}
.yd_c00409{bottom:668.106399pt;}
.yc_c00409{bottom:693.546389pt;}
.yb_c00409{bottom:729.226375pt;}
.y9_c00409{bottom:897.706308pt;}
.ya_c00409{bottom:905.066305pt;}
.y8_c00409{bottom:925.226297pt;}
.y6_c00409{bottom:966.186280pt;}
.y7_c00409{bottom:973.546277pt;}
.y5_c00409{bottom:993.866269pt;}
.y2_c00409{bottom:1028.426255pt;}
.y1_c00409{bottom:1062.986241pt;}
.ha_c00409{height:28.501864pt;}
.h7_c00409{height:30.613113pt;}
.h8_c00409{height:36.431235pt;}
.h4_c00409{height:42.084358pt;}
.hb_c00409{height:43.808420pt;}
.h2_c00409{height:48.558731pt;}
.h9_c00409{height:52.108417pt;}
.h1_c00409{height:52.134354pt;}
.h5_c00409{height:57.787477pt;}
.h3_c00409{height:62.812475pt;}
.h6_c00409{height:64.499974pt;}
.h0_c00409{height:1122.666667pt;}
.w0_c00409{width:793.333333pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:113.599955pt;}
.xf_c00409{left:119.199952pt;}
.x9_c00409{left:123.359951pt;}
.x13_c00409{left:126.559949pt;}
.x11_c00409{left:127.519949pt;}
.x12_c00409{left:131.039948pt;}
.x5_c00409{left:160.799963pt;}
.xa_c00409{left:299.840415pt;}
.x10_c00409{left:366.719881pt;}
.x2_c00409{left:385.919568pt;}
.xb_c00409{left:396.960397pt;}
.x6_c00409{left:472.159811pt;}
.x7_c00409{left:488.479805pt;}
.x3_c00409{left:528.479789pt;}
.x4_c00409{left:544.799782pt;}
.xc_c00409{left:566.399773pt;}
.xd_c00409{left:582.719767pt;}
.xe_c00409{left:707.519642pt;}
.x8_c00409{left:710.399373pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3c566d09e9aa1466612f5ad.woff2')format("woff");}.ff1_c00410{font-family:ff1_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:ff2_c00410;src:url('chunks/assets/font_70c02b4137e575492cea95d9.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00410{font-family:ff3_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;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_2629d15c98fb7f4c81d01bad.woff2')format("woff");}.ff4_c00410{font-family:ff4_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;}
.m0_c00410{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls4_c00410{letter-spacing:0.000000px;}
.ls1_c00410{letter-spacing:0.009900px;}
.ls2_c00410{letter-spacing:0.153901px;}
.ls3_c00410{letter-spacing:0.182640px;}
.ls0_c00410{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00410{word-spacing:-14.939994px;}
.ws0_c00410{word-spacing:-12.434276px;}
.ws1_c00410{word-spacing:-8.786876px;}
.ws3_c00410{word-spacing:0.000000px;}
._7_c00410{margin-left:-12.716934px;}
._3_c00410{margin-left:-2.382374px;}
._1_c00410{margin-left:-1.105374px;}
._0_c00410{width:1.478392px;}
._4_c00410{width:2.484814px;}
._5_c00410{width:3.499406px;}
._6_c00410{width:4.826766px;}
._2_c00410{width:15.114778px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs4_c00410{font-size:38.879984px;}
.fs3_c00410{font-size:48.239981px;}
.fs0_c00410{font-size:59.759976px;}
.fs1_c00410{font-size:66.239974px;}
.fs2_c00410{font-size:71.999971px;}
.y0_c00410{bottom:0.000000px;}
.y4_c00410{bottom:75.720270px;}
.y3_c00410{bottom:113.880254px;}
.y19_c00410{bottom:133.499947px;}
.y18_c00410{bottom:151.859939px;}
.y17_c00410{bottom:170.219932px;}
.y16_c00410{bottom:177.779929px;}
.y15_c00410{bottom:188.579925px;}
.y14_c00410{bottom:206.759917px;}
.y13_c00410{bottom:214.319914px;}
.y12_c00410{bottom:225.659910px;}
.y11_c00410{bottom:377.759849px;}
.yf_c00410{bottom:545.879782px;}
.y10_c00410{bottom:554.159778px;}
.ye_c00410{bottom:576.839769px;}
.yd_c00410{bottom:607.979757px;}
.yc_c00410{bottom:653.879738px;}
.yb_c00410{bottom:692.219723px;}
.ya_c00410{bottom:713.999714px;}
.y9_c00410{bottom:754.319698px;}
.y7_c00410{bottom:1074.179570px;}
.y8_c00410{bottom:1082.459567px;}
.y6_c00410{bottom:1105.319558px;}
.y5_c00410{bottom:1136.279545px;}
.y2_c00410{bottom:1175.879530px;}
.y1_c00410{bottom:1196.039522px;}
.h8_c00410{height:32.064597px;}
.h4_c00410{height:47.344903px;}
.h9_c00410{height:49.284472px;}
.h2_c00410{height:54.628572px;}
.h1_c00410{height:58.651148px;}
.h7_c00410{height:65.010911px;}
.h6_c00410{height:66.757473px;}
.h3_c00410{height:70.664034px;}
.h5_c00410{height:72.562471px;}
.h0_c00410{height:1263.000000px;}
.w0_c00410{width:892.500000px;}
.x0_c00410{left:0.000000px;}
.x5_c00410{left:127.800262px;}
.xd_c00410{left:142.379943px;}
.xa_c00410{left:154.259938px;}
.x6_c00410{left:180.899928px;}
.x1_c00410{left:181.979927px;}
.x7_c00410{left:321.839871px;}
.x2_c00410{left:329.219408px;}
.x8_c00410{left:340.199864px;}
.xb_c00410{left:412.560904px;}
.x4_c00410{left:434.159826px;}
.x9_c00410{left:756.180124px;}
.x3_c00410{left:765.539694px;}
.xc_c00410{left:782.459175px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls4_c00410{letter-spacing:0.000000pt;}
.ls1_c00410{letter-spacing:0.008800pt;}
.ls2_c00410{letter-spacing:0.136801pt;}
.ls3_c00410{letter-spacing:0.162347pt;}
.ls0_c00410{letter-spacing:0.332694pt;}
.ws2_c00410{word-spacing:-13.279995pt;}
.ws0_c00410{word-spacing:-11.052689pt;}
.ws1_c00410{word-spacing:-7.810557pt;}
.ws3_c00410{word-spacing:0.000000pt;}
._7_c00410{margin-left:-11.303941pt;}
._3_c00410{margin-left:-2.117666pt;}
._1_c00410{margin-left:-0.982555pt;}
._0_c00410{width:1.314126pt;}
._4_c00410{width:2.208723pt;}
._5_c00410{width:3.110583pt;}
._6_c00410{width:4.290458pt;}
._2_c00410{width:13.435358pt;}
.fs4_c00410{font-size:34.559986pt;}
.fs3_c00410{font-size:42.879983pt;}
.fs0_c00410{font-size:53.119979pt;}
.fs1_c00410{font-size:58.879976pt;}
.fs2_c00410{font-size:63.999974pt;}
.y0_c00410{bottom:0.000000pt;}
.y4_c00410{bottom:67.306906pt;}
.y3_c00410{bottom:101.226893pt;}
.y19_c00410{bottom:118.666619pt;}
.y18_c00410{bottom:134.986613pt;}
.y17_c00410{bottom:151.306606pt;}
.y16_c00410{bottom:158.026603pt;}
.y15_c00410{bottom:167.626600pt;}
.y14_c00410{bottom:183.786593pt;}
.y13_c00410{bottom:190.506590pt;}
.y12_c00410{bottom:200.586586pt;}
.y11_c00410{bottom:335.786532pt;}
.yf_c00410{bottom:485.226473pt;}
.y10_c00410{bottom:492.586470pt;}
.ye_c00410{bottom:512.746462pt;}
.yd_c00410{bottom:540.426450pt;}
.yc_c00410{bottom:581.226434pt;}
.yb_c00410{bottom:615.306421pt;}
.ya_c00410{bottom:634.666413pt;}
.y9_c00410{bottom:670.506398pt;}
.y7_c00410{bottom:954.826285pt;}
.y8_c00410{bottom:962.186282pt;}
.y6_c00410{bottom:982.506274pt;}
.y5_c00410{bottom:1010.026263pt;}
.y2_c00410{bottom:1045.226249pt;}
.y1_c00410{bottom:1063.146241pt;}
.h8_c00410{height:28.501864pt;}
.h4_c00410{height:42.084358pt;}
.h9_c00410{height:43.808420pt;}
.h2_c00410{height:48.558731pt;}
.h1_c00410{height:52.134354pt;}
.h7_c00410{height:57.787477pt;}
.h6_c00410{height:59.339976pt;}
.h3_c00410{height:62.812475pt;}
.h5_c00410{height:64.499974pt;}
.h0_c00410{height:1122.666667pt;}
.w0_c00410{width:793.333333pt;}
.x0_c00410{left:0.000000pt;}
.x5_c00410{left:113.600233pt;}
.xd_c00410{left:126.559949pt;}
.xa_c00410{left:137.119945pt;}
.x6_c00410{left:160.799936pt;}
.x1_c00410{left:161.759935pt;}
.x7_c00410{left:286.079886pt;}
.x2_c00410{left:292.639474pt;}
.x8_c00410{left:302.399879pt;}
.xb_c00410{left:366.720803pt;}
.x4_c00410{left:385.919846pt;}
.x9_c00410{left:672.160110pt;}
.x3_c00410{left:680.479728pt;}
.xc_c00410{left:695.519267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d2f128a1796a0731202a669.woff2')format("woff");}.ff1_c00411{font-family:ff1_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:ff2_c00411;src:url('chunks/assets/font_3b12c7338b39a28cd3e4366f.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.311035;font-style:normal;font-weight:normal;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_2629d15c98fb7f4c81d01bad.woff2')format("woff");}.ff4_c00411{font-family:ff4_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;}
.m0_c00411{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls3_c00411{letter-spacing:0.000000px;}
.ls1_c00411{letter-spacing:0.153901px;}
.ls2_c00411{letter-spacing:0.182640px;}
.ls0_c00411{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00411{word-spacing:-14.939994px;}
.ws0_c00411{word-spacing:-12.434276px;}
.ws1_c00411{word-spacing:-8.786876px;}
.ws3_c00411{word-spacing:0.000000px;}
._3_c00411{margin-left:-12.716934px;}
._1_c00411{margin-left:-1.105374px;}
._0_c00411{width:1.195563px;}
._2_c00411{width:20.972550px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs4_c00411{font-size:38.879984px;}
.fs3_c00411{font-size:48.239981px;}
.fs0_c00411{font-size:59.759976px;}
.fs1_c00411{font-size:66.239974px;}
.fs2_c00411{font-size:71.999971px;}
.y0_c00411{bottom:0.000000px;}
.y4_c00411{bottom:75.719970px;}
.y3_c00411{bottom:113.879954px;}
.y1b_c00411{bottom:133.500247px;}
.y1a_c00411{bottom:141.060244px;}
.y19_c00411{bottom:151.499939px;}
.y18_c00411{bottom:169.139932px;}
.y17_c00411{bottom:176.699929px;}
.y16_c00411{bottom:188.039925px;}
.y15_c00411{bottom:251.219900px;}
.y14_c00411{bottom:291.539883px;}
.y13_c00411{bottom:393.239843px;}
.y12_c00411{bottom:424.379830px;}
.y11_c00411{bottom:469.199812px;}
.y10_c00411{bottom:509.519796px;}
.ye_c00411{bottom:665.219734px;}
.yf_c00411{bottom:673.499731px;}
.yd_c00411{bottom:696.179722px;}
.yc_c00411{bottom:741.179704px;}
.yb_c00411{bottom:781.319687px;}
.y9_c00411{bottom:876.359649px;}
.ya_c00411{bottom:884.639646px;}
.y8_c00411{bottom:907.319637px;}
.y7_c00411{bottom:945.659622px;}
.y6_c00411{bottom:967.439613px;}
.y5_c00411{bottom:1007.759597px;}
.y2_c00411{bottom:1156.979537px;}
.y1_c00411{bottom:1195.859522px;}
.h7_c00411{height:32.064597px;}
.h6_c00411{height:47.344903px;}
.h2_c00411{height:54.628572px;}
.h1_c00411{height:58.651148px;}
.h4_c00411{height:65.010911px;}
.h5_c00411{height:70.664034px;}
.h3_c00411{height:72.562471px;}
.h0_c00411{height:1263.000000px;}
.w0_c00411{width:892.500000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:127.799949px;}
.x4_c00411{left:133.379947px;}
.xe_c00411{left:137.159945px;}
.x10_c00411{left:142.379943px;}
.x6_c00411{left:180.899928px;}
.xa_c00411{left:187.019925px;}
.x7_c00411{left:240.839904px;}
.x8_c00411{left:259.199896px;}
.xb_c00411{left:331.199868px;}
.xc_c00411{left:349.559860px;}
.x5_c00411{left:412.559436px;}
.x2_c00411{left:434.159514px;}
.x9_c00411{left:772.199842px;}
.x3_c00411{left:773.459691px;}
.xd_c00411{left:784.799243px;}
.xf_c00411{left:786.960398px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls3_c00411{letter-spacing:0.000000pt;}
.ls1_c00411{letter-spacing:0.136801pt;}
.ls2_c00411{letter-spacing:0.162347pt;}
.ls0_c00411{letter-spacing:0.332694pt;}
.ws2_c00411{word-spacing:-13.279995pt;}
.ws0_c00411{word-spacing:-11.052689pt;}
.ws1_c00411{word-spacing:-7.810557pt;}
.ws3_c00411{word-spacing:0.000000pt;}
._3_c00411{margin-left:-11.303941pt;}
._1_c00411{margin-left:-0.982555pt;}
._0_c00411{width:1.062723pt;}
._2_c00411{width:18.642266pt;}
.fs4_c00411{font-size:34.559986pt;}
.fs3_c00411{font-size:42.879983pt;}
.fs0_c00411{font-size:53.119979pt;}
.fs1_c00411{font-size:58.879976pt;}
.fs2_c00411{font-size:63.999974pt;}
.y0_c00411{bottom:0.000000pt;}
.y4_c00411{bottom:67.306640pt;}
.y3_c00411{bottom:101.226626pt;}
.y1b_c00411{bottom:118.666886pt;}
.y1a_c00411{bottom:125.386883pt;}
.y19_c00411{bottom:134.666613pt;}
.y18_c00411{bottom:150.346607pt;}
.y17_c00411{bottom:157.066604pt;}
.y16_c00411{bottom:167.146600pt;}
.y15_c00411{bottom:223.306577pt;}
.y14_c00411{bottom:259.146563pt;}
.y13_c00411{bottom:349.546527pt;}
.y12_c00411{bottom:377.226516pt;}
.y11_c00411{bottom:417.066500pt;}
.y10_c00411{bottom:452.906486pt;}
.ye_c00411{bottom:591.306430pt;}
.yf_c00411{bottom:598.666427pt;}
.yd_c00411{bottom:618.826419pt;}
.yc_c00411{bottom:658.826403pt;}
.yb_c00411{bottom:694.506389pt;}
.y9_c00411{bottom:778.986355pt;}
.ya_c00411{bottom:786.346352pt;}
.y8_c00411{bottom:806.506344pt;}
.y7_c00411{bottom:840.586330pt;}
.y6_c00411{bottom:859.946323pt;}
.y5_c00411{bottom:895.786308pt;}
.y2_c00411{bottom:1028.426255pt;}
.y1_c00411{bottom:1062.986241pt;}
.h7_c00411{height:28.501864pt;}
.h6_c00411{height:42.084358pt;}
.h2_c00411{height:48.558731pt;}
.h1_c00411{height:52.134354pt;}
.h4_c00411{height:57.787477pt;}
.h5_c00411{height:62.812475pt;}
.h3_c00411{height:64.499974pt;}
.h0_c00411{height:1122.666667pt;}
.w0_c00411{width:793.333333pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:113.599955pt;}
.x4_c00411{left:118.559953pt;}
.xe_c00411{left:121.919951pt;}
.x10_c00411{left:126.559949pt;}
.x6_c00411{left:160.799936pt;}
.xa_c00411{left:166.239934pt;}
.x7_c00411{left:214.079914pt;}
.x8_c00411{left:230.399908pt;}
.xb_c00411{left:294.399882pt;}
.xc_c00411{left:310.719876pt;}
.x5_c00411{left:366.719498pt;}
.x2_c00411{left:385.919568pt;}
.x9_c00411{left:686.399860pt;}
.x3_c00411{left:687.519725pt;}
.xd_c00411{left:697.599327pt;}
.xf_c00411{left:699.520354pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_82a995382db9c9eb24884779.woff2')format("woff");}.ff1_c00412{font-family:ff1_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:ff2_c00412;src:url('chunks/assets/font_57156e6e16611b136b998bb7.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00412{font-family:ff3_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;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_2629d15c98fb7f4c81d01bad.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls3_c00412{letter-spacing:0.000000px;}
.ls1_c00412{letter-spacing:0.153901px;}
.ls2_c00412{letter-spacing:0.182640px;}
.ls0_c00412{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00412{word-spacing:-14.939994px;}
.ws0_c00412{word-spacing:-12.434276px;}
.ws1_c00412{word-spacing:-8.786876px;}
.ws3_c00412{word-spacing:0.000000px;}
._5_c00412{margin-left:-12.716934px;}
._1_c00412{margin-left:-1.105374px;}
._0_c00412{width:1.478392px;}
._2_c00412{width:8.630965px;}
._3_c00412{width:9.994463px;}
._4_c00412{width:27.456363px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs4_c00412{font-size:38.879984px;}
.fs3_c00412{font-size:48.239981px;}
.fs0_c00412{font-size:59.759976px;}
.fs1_c00412{font-size:66.239974px;}
.fs2_c00412{font-size:71.999971px;}
.y0_c00412{bottom:0.000000px;}
.y4_c00412{bottom:75.720270px;}
.y3_c00412{bottom:113.880254px;}
.y17_c00412{bottom:133.499947px;}
.y16_c00412{bottom:151.859939px;}
.y15_c00412{bottom:170.219932px;}
.y14_c00412{bottom:177.779929px;}
.y13_c00412{bottom:188.579925px;}
.y12_c00412{bottom:206.759917px;}
.y11_c00412{bottom:214.319914px;}
.y10_c00412{bottom:225.659910px;}
.yf_c00412{bottom:303.959878px;}
.ye_c00412{bottom:344.099862px;}
.yc_c00412{bottom:700.139720px;}
.yd_c00412{bottom:708.419717px;}
.yb_c00412{bottom:731.099708px;}
.ya_c00412{bottom:769.439692px;}
.y9_c00412{bottom:791.219684px;}
.y8_c00412{bottom:831.359667px;}
.y6_c00412{bottom:1105.319558px;}
.y7_c00412{bottom:1113.599555px;}
.y5_c00412{bottom:1136.279545px;}
.y2_c00412{bottom:1175.879530px;}
.y1_c00412{bottom:1196.039522px;}
.h7_c00412{height:32.064597px;}
.h4_c00412{height:47.344903px;}
.h8_c00412{height:49.284472px;}
.h2_c00412{height:54.628572px;}
.h1_c00412{height:58.651148px;}
.h6_c00412{height:65.010911px;}
.h3_c00412{height:70.664034px;}
.h5_c00412{height:72.562471px;}
.h0_c00412{height:1263.000000px;}
.w0_c00412{width:892.500000px;}
.x0_c00412{left:0.000000px;}
.x5_c00412{left:127.800262px;}
.xa_c00412{left:133.199947px;}
.x10_c00412{left:142.379943px;}
.x6_c00412{left:180.899928px;}
.x1_c00412{left:181.979927px;}
.xf_c00412{left:187.019925px;}
.x2_c00412{left:329.219408px;}
.xb_c00412{left:412.559328px;}
.x4_c00412{left:434.159826px;}
.xc_c00412{left:453.599819px;}
.xd_c00412{left:471.959811px;}
.x7_c00412{left:579.239768px;}
.x8_c00412{left:597.599761px;}
.xe_c00412{left:751.499673px;}
.x9_c00412{left:754.919824px;}
.x3_c00412{left:765.539694px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls3_c00412{letter-spacing:0.000000pt;}
.ls1_c00412{letter-spacing:0.136801pt;}
.ls2_c00412{letter-spacing:0.162347pt;}
.ls0_c00412{letter-spacing:0.332694pt;}
.ws2_c00412{word-spacing:-13.279995pt;}
.ws0_c00412{word-spacing:-11.052689pt;}
.ws1_c00412{word-spacing:-7.810557pt;}
.ws3_c00412{word-spacing:0.000000pt;}
._5_c00412{margin-left:-11.303941pt;}
._1_c00412{margin-left:-0.982555pt;}
._0_c00412{width:1.314126pt;}
._2_c00412{width:7.671969pt;}
._3_c00412{width:8.883967pt;}
._4_c00412{width:24.405656pt;}
.fs4_c00412{font-size:34.559986pt;}
.fs3_c00412{font-size:42.879983pt;}
.fs0_c00412{font-size:53.119979pt;}
.fs1_c00412{font-size:58.879976pt;}
.fs2_c00412{font-size:63.999974pt;}
.y0_c00412{bottom:0.000000pt;}
.y4_c00412{bottom:67.306906pt;}
.y3_c00412{bottom:101.226893pt;}
.y17_c00412{bottom:118.666619pt;}
.y16_c00412{bottom:134.986613pt;}
.y15_c00412{bottom:151.306606pt;}
.y14_c00412{bottom:158.026603pt;}
.y13_c00412{bottom:167.626600pt;}
.y12_c00412{bottom:183.786593pt;}
.y11_c00412{bottom:190.506590pt;}
.y10_c00412{bottom:200.586586pt;}
.yf_c00412{bottom:270.186559pt;}
.ye_c00412{bottom:305.866544pt;}
.yc_c00412{bottom:622.346418pt;}
.yd_c00412{bottom:629.706415pt;}
.yb_c00412{bottom:649.866407pt;}
.ya_c00412{bottom:683.946393pt;}
.y9_c00412{bottom:703.306385pt;}
.y8_c00412{bottom:738.986371pt;}
.y6_c00412{bottom:982.506274pt;}
.y7_c00412{bottom:989.866271pt;}
.y5_c00412{bottom:1010.026263pt;}
.y2_c00412{bottom:1045.226249pt;}
.y1_c00412{bottom:1063.146241pt;}
.h7_c00412{height:28.501864pt;}
.h4_c00412{height:42.084358pt;}
.h8_c00412{height:43.808420pt;}
.h2_c00412{height:48.558731pt;}
.h1_c00412{height:52.134354pt;}
.h6_c00412{height:57.787477pt;}
.h3_c00412{height:62.812475pt;}
.h5_c00412{height:64.499974pt;}
.h0_c00412{height:1122.666667pt;}
.w0_c00412{width:793.333333pt;}
.x0_c00412{left:0.000000pt;}
.x5_c00412{left:113.600233pt;}
.xa_c00412{left:118.399953pt;}
.x10_c00412{left:126.559949pt;}
.x6_c00412{left:160.799936pt;}
.x1_c00412{left:161.759935pt;}
.xf_c00412{left:166.239934pt;}
.x2_c00412{left:292.639474pt;}
.xb_c00412{left:366.719403pt;}
.x4_c00412{left:385.919846pt;}
.xc_c00412{left:403.199839pt;}
.xd_c00412{left:419.519832pt;}
.x7_c00412{left:514.879794pt;}
.x8_c00412{left:531.199788pt;}
.xe_c00412{left:667.999710pt;}
.x9_c00412{left:671.039844pt;}
.x3_c00412{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_79594a25474c5cc5817943c6.woff2')format("woff");}.ff1_c00413{font-family:ff1_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:ff2_c00413;src:url('chunks/assets/font_e7b9a9499461d7efeb403c1d.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.311035;font-style:normal;font-weight:normal;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_d28429fcbf71a2a81b0c1acd.woff2')format("woff");}.ff4_c00413{font-family:ff4_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:ff5_c00413;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00413{font-family:ff5_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;}
.m0_c00413{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls1_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:0.009900px;}
.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;}
}
.ws0_c00413{word-spacing:0.000000px;}
._1_c00413{margin-left:-1.105374px;}
._0_c00413{width:1.195563px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs0_c00413{font-size:59.759976px;}
.fs1_c00413{font-size:66.239974px;}
.fs2_c00413{font-size:71.999971px;}
.y0_c00413{bottom:0.000000px;}
.y4_c00413{bottom:75.719970px;}
.y3_c00413{bottom:113.879954px;}
.y20_c00413{bottom:140.879944px;}
.y1f_c00413{bottom:169.319932px;}
.y1e_c00413{bottom:197.759921px;}
.y1d_c00413{bottom:226.199910px;}
.y1c_c00413{bottom:254.639898px;}
.y1b_c00413{bottom:283.079887px;}
.y1a_c00413{bottom:311.699875px;}
.y19_c00413{bottom:340.139864px;}
.y18_c00413{bottom:368.579853px;}
.y17_c00413{bottom:397.019841px;}
.y16_c00413{bottom:425.459830px;}
.y15_c00413{bottom:453.899818px;}
.y14_c00413{bottom:482.339807px;}
.y13_c00413{bottom:510.779796px;}
.y12_c00413{bottom:539.219784px;}
.y11_c00413{bottom:567.839773px;}
.y10_c00413{bottom:596.279761px;}
.yf_c00413{bottom:624.719750px;}
.ye_c00413{bottom:653.159739px;}
.yd_c00413{bottom:681.599727px;}
.yc_c00413{bottom:710.039716px;}
.yb_c00413{bottom:738.479705px;}
.ya_c00413{bottom:766.919693px;}
.y9_c00413{bottom:795.359682px;}
.y8_c00413{bottom:839.279664px;}
.y7_c00413{bottom:879.419648px;}
.y6_c00413{bottom:1086.959565px;}
.y5_c00413{bottom:1118.099553px;}
.y2_c00413{bottom:1156.979537px;}
.y1_c00413{bottom:1195.859522px;}
.h2_c00413{height:54.628572px;}
.h1_c00413{height:58.651148px;}
.h6_c00413{height:64.978568px;}
.h5_c00413{height:66.757473px;}
.h3_c00413{height:70.664034px;}
.h4_c00413{height:72.562471px;}
.h0_c00413{height:1263.000000px;}
.w0_c00413{width:892.500000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:127.799949px;}
.x5_c00413{left:161.279935px;}
.x3_c00413{left:180.899928px;}
.x2_c00413{left:434.159514px;}
.x4_c00413{left:814.139342px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:0.008800pt;}
.ws0_c00413{word-spacing:0.000000pt;}
._1_c00413{margin-left:-0.982555pt;}
._0_c00413{width:1.062723pt;}
.fs0_c00413{font-size:53.119979pt;}
.fs1_c00413{font-size:58.879976pt;}
.fs2_c00413{font-size:63.999974pt;}
.y0_c00413{bottom:0.000000pt;}
.y4_c00413{bottom:67.306640pt;}
.y3_c00413{bottom:101.226626pt;}
.y20_c00413{bottom:125.226617pt;}
.y1f_c00413{bottom:150.506606pt;}
.y1e_c00413{bottom:175.786596pt;}
.y1d_c00413{bottom:201.066586pt;}
.y1c_c00413{bottom:226.346576pt;}
.y1b_c00413{bottom:251.626566pt;}
.y1a_c00413{bottom:277.066556pt;}
.y19_c00413{bottom:302.346546pt;}
.y18_c00413{bottom:327.626536pt;}
.y17_c00413{bottom:352.906526pt;}
.y16_c00413{bottom:378.186515pt;}
.y15_c00413{bottom:403.466505pt;}
.y14_c00413{bottom:428.746495pt;}
.y13_c00413{bottom:454.026485pt;}
.y12_c00413{bottom:479.306475pt;}
.y11_c00413{bottom:504.746465pt;}
.y10_c00413{bottom:530.026455pt;}
.yf_c00413{bottom:555.306445pt;}
.ye_c00413{bottom:580.586434pt;}
.yd_c00413{bottom:605.866424pt;}
.yc_c00413{bottom:631.146414pt;}
.yb_c00413{bottom:656.426404pt;}
.ya_c00413{bottom:681.706394pt;}
.y9_c00413{bottom:706.986384pt;}
.y8_c00413{bottom:746.026368pt;}
.y7_c00413{bottom:781.706354pt;}
.y6_c00413{bottom:966.186280pt;}
.y5_c00413{bottom:993.866269pt;}
.y2_c00413{bottom:1028.426255pt;}
.y1_c00413{bottom:1062.986241pt;}
.h2_c00413{height:48.558731pt;}
.h1_c00413{height:52.134354pt;}
.h6_c00413{height:57.758727pt;}
.h5_c00413{height:59.339976pt;}
.h3_c00413{height:62.812475pt;}
.h4_c00413{height:64.499974pt;}
.h0_c00413{height:1122.666667pt;}
.w0_c00413{width:793.333333pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:113.599955pt;}
.x5_c00413{left:143.359943pt;}
.x3_c00413{left:160.799936pt;}
.x2_c00413{left:385.919568pt;}
.x4_c00413{left:723.679415pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aea3958c4bb73ae4340e5604.woff2')format("woff");}.ff1_c00414{font-family:ff1_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:ff2_c00414;src:url('chunks/assets/font_584f97fb2bbaa3c25142c8b4.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_0e5907ac6e3b8d40833f72ca.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.311035;font-style:normal;font-weight:normal;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_42475c15e3ddc256a60b484c.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_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:0.696777;font-style:normal;font-weight:normal;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_45268f7ad19327d5f6aef2a5.woff2')format("woff");}.ff6_c00414{font-family:ff6_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:ff7_c00414;src:url('chunks/assets/font_32fb22c0a87179fab4296844.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:0.670898;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls2_c00414{letter-spacing:0.000000px;}
.ls1_c00414{letter-spacing:0.021282px;}
.ls0_c00414{letter-spacing:0.297776px;}
.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;}
}
.ws1_c00414{word-spacing:-18.021275px;}
.ws0_c00414{word-spacing:-17.999993px;}
.ws2_c00414{word-spacing:0.000000px;}
._1_c00414{margin-left:-1.105374px;}
._0_c00414{width:1.478392px;}
._2_c00414{width:6.303143px;}
._3_c00414{width:7.699187px;}
._6_c00414{width:11.690973px;}
._4_c00414{width:13.585356px;}
._5_c00414{width:14.675229px;}
._7_c00414{width:20.069170px;}
.fc0_c00414{color:rgb(0,0,0);}
.fs0_c00414{font-size:59.759976px;}
.fs1_c00414{font-size:66.239974px;}
.fs2_c00414{font-size:71.999971px;}
.y0_c00414{bottom:0.000000px;}
.y4_c00414{bottom:75.720270px;}
.y3_c00414{bottom:113.880254px;}
.y16_c00414{bottom:178.499929px;}
.y15_c00414{bottom:208.739917px;}
.y14_c00414{bottom:239.699904px;}
.y13_c00414{bottom:270.839892px;}
.y12_c00414{bottom:301.799879px;}
.y11_c00414{bottom:332.939867px;}
.y10_c00414{bottom:363.899854px;}
.yf_c00414{bottom:395.039842px;}
.ye_c00414{bottom:425.999830px;}
.yd_c00414{bottom:457.139817px;}
.yc_c00414{bottom:488.099805px;}
.yb_c00414{bottom:519.239792px;}
.ya_c00414{bottom:550.199780px;}
.y9_c00414{bottom:580.079768px;}
.y8_c00414{bottom:609.779756px;}
.y7_c00414{bottom:635.519746px;}
.y6_c00414{bottom:1104.599558px;}
.y5_c00414{bottom:1135.919546px;}
.y2_c00414{bottom:1175.879530px;}
.y1_c00414{bottom:1196.039522px;}
.h7_c00414{height:44.149201px;}
.h2_c00414{height:54.628572px;}
.h1_c00414{height:58.651148px;}
.h4_c00414{height:59.378882px;}
.h5_c00414{height:65.010911px;}
.h6_c00414{height:70.664034px;}
.h3_c00414{height:72.562471px;}
.h0_c00414{height:1263.000000px;}
.w0_c00414{width:892.500000px;}
.x0_c00414{left:0.000000px;}
.x5_c00414{left:127.800262px;}
.x8_c00414{left:172.080719px;}
.x9_c00414{left:180.899930px;}
.x1_c00414{left:181.979927px;}
.x2_c00414{left:329.219408px;}
.x4_c00414{left:434.159826px;}
.x7_c00414{left:446.579861px;}
.x6_c00414{left:575.999770px;}
.x3_c00414{left:765.539694px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2_c00414{letter-spacing:0.000000pt;}
.ls1_c00414{letter-spacing:0.018917pt;}
.ls0_c00414{letter-spacing:0.264690pt;}
.ws1_c00414{word-spacing:-16.018911pt;}
.ws0_c00414{word-spacing:-15.999994pt;}
.ws2_c00414{word-spacing:0.000000pt;}
._1_c00414{margin-left:-0.982555pt;}
._0_c00414{width:1.314126pt;}
._2_c00414{width:5.602793pt;}
._3_c00414{width:6.843722pt;}
._6_c00414{width:10.391976pt;}
._4_c00414{width:12.075872pt;}
._5_c00414{width:13.044648pt;}
._7_c00414{width:17.839262pt;}
.fs0_c00414{font-size:53.119979pt;}
.fs1_c00414{font-size:58.879976pt;}
.fs2_c00414{font-size:63.999974pt;}
.y0_c00414{bottom:0.000000pt;}
.y4_c00414{bottom:67.306906pt;}
.y3_c00414{bottom:101.226893pt;}
.y16_c00414{bottom:158.666603pt;}
.y15_c00414{bottom:185.546592pt;}
.y14_c00414{bottom:213.066581pt;}
.y13_c00414{bottom:240.746570pt;}
.y12_c00414{bottom:268.266559pt;}
.y11_c00414{bottom:295.946548pt;}
.y10_c00414{bottom:323.466537pt;}
.yf_c00414{bottom:351.146526pt;}
.ye_c00414{bottom:378.666515pt;}
.yd_c00414{bottom:406.346504pt;}
.yc_c00414{bottom:433.866493pt;}
.yb_c00414{bottom:461.546482pt;}
.ya_c00414{bottom:489.066471pt;}
.y9_c00414{bottom:515.626460pt;}
.y8_c00414{bottom:542.026450pt;}
.y7_c00414{bottom:564.906441pt;}
.y6_c00414{bottom:981.866274pt;}
.y5_c00414{bottom:1009.706263pt;}
.y2_c00414{bottom:1045.226249pt;}
.y1_c00414{bottom:1063.146241pt;}
.h7_c00414{height:39.243734pt;}
.h2_c00414{height:48.558731pt;}
.h1_c00414{height:52.134354pt;}
.h4_c00414{height:52.781229pt;}
.h5_c00414{height:57.787477pt;}
.h6_c00414{height:62.812475pt;}
.h3_c00414{height:64.499974pt;}
.h0_c00414{height:1122.666667pt;}
.w0_c00414{width:793.333333pt;}
.x0_c00414{left:0.000000pt;}
.x5_c00414{left:113.600233pt;}
.x8_c00414{left:152.960639pt;}
.x9_c00414{left:160.799938pt;}
.x1_c00414{left:161.759935pt;}
.x2_c00414{left:292.639474pt;}
.x4_c00414{left:385.919846pt;}
.x7_c00414{left:396.959876pt;}
.x6_c00414{left:511.999795pt;}
.x3_c00414{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_298ce828d79d54f3409722b3.woff2')format("woff");}.ff1_c00415{font-family:ff1_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:ff2_c00415;src:url('chunks/assets/font_fc034b239848363595d58099.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_45268f7ad19327d5f6aef2a5.woff2')format("woff");}.ff3_c00415{font-family:ff3_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;}
.m0_c00415{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00415{word-spacing:-17.999993px;}
.ws1_c00415{word-spacing:-16.559993px;}
.ws2_c00415{word-spacing:0.000000px;}
._6_c00415{margin-left:-2.272977px;}
._1_c00415{margin-left:-1.105374px;}
._0_c00415{width:1.195563px;}
._8_c00415{width:3.587964px;}
._9_c00415{width:5.147179px;}
._b_c00415{width:8.431701px;}
._a_c00415{width:9.441099px;}
._7_c00415{width:11.512620px;}
._3_c00415{width:15.114778px;}
._2_c00415{width:16.463393px;}
._4_c00415{width:30.681837px;}
._5_c00415{width:31.882985px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs0_c00415{font-size:59.759976px;}
.fs1_c00415{font-size:66.239974px;}
.fs2_c00415{font-size:71.999971px;}
.y0_c00415{bottom:0.000000px;}
.y4_c00415{bottom:75.719970px;}
.y3_c00415{bottom:113.879954px;}
.y21_c00415{bottom:139.619944px;}
.y22_c00415{bottom:139.620244px;}
.y20_c00415{bottom:170.579932px;}
.y1f_c00415{bottom:201.719919px;}
.y1e_c00415{bottom:231.599907px;}
.y1d_c00415{bottom:261.119896px;}
.y1c_c00415{bottom:287.759885px;}
.y1b_c00415{bottom:374.339850px;}
.y1a_c00415{bottom:405.299838px;}
.y19_c00415{bottom:436.439825px;}
.y18_c00415{bottom:467.399813px;}
.y17_c00415{bottom:490.619804px;}
.y16_c00415{bottom:512.579795px;}
.y15_c00415{bottom:537.779785px;}
.y14_c00415{bottom:627.779749px;}
.y13_c00415{bottom:658.019737px;}
.y12_c00415{bottom:688.979724px;}
.y11_c00415{bottom:720.119712px;}
.y10_c00415{bottom:751.079700px;}
.yf_c00415{bottom:774.299690px;}
.ye_c00415{bottom:796.259681px;}
.yd_c00415{bottom:824.699670px;}
.yc_c00415{bottom:849.719660px;}
.yb_c00415{bottom:911.639635px;}
.ya_c00415{bottom:941.879623px;}
.y9_c00415{bottom:972.839611px;}
.y8_c00415{bottom:1002.719599px;}
.y7_c00415{bottom:1024.499590px;}
.y6_c00415{bottom:1046.459581px;}
.y5_c00415{bottom:1071.659571px;}
.y2_c00415{bottom:1156.979537px;}
.y1_c00415{bottom:1195.859522px;}
.h2_c00415{height:54.628572px;}
.h1_c00415{height:58.651148px;}
.h3_c00415{height:65.010911px;}
.h5_c00415{height:70.628878px;}
.h4_c00415{height:70.664034px;}
.h0_c00415{height:1263.000000px;}
.w0_c00415{width:892.500000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:127.799949px;}
.x4_c00415{left:136.620667px;}
.x9_c00415{left:148.500249px;}
.xe_c00415{left:156.959937px;}
.x6_c00415{left:180.899928px;}
.xc_c00415{left:327.420683px;}
.xa_c00415{left:389.879721px;}
.x5_c00415{left:424.440833px;}
.x2_c00415{left:434.159514px;}
.x7_c00415{left:446.579821px;}
.xf_c00415{left:647.459741px;}
.xd_c00415{left:740.339704px;}
.xb_c00415{left:747.539701px;}
.x3_c00415{left:816.300204px;}
.x8_c00415{left:834.300171px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:-15.999994pt;}
.ws1_c00415{word-spacing:-14.719994pt;}
.ws2_c00415{word-spacing:0.000000pt;}
._6_c00415{margin-left:-2.020424pt;}
._1_c00415{margin-left:-0.982555pt;}
._0_c00415{width:1.062723pt;}
._8_c00415{width:3.189302pt;}
._9_c00415{width:4.575270pt;}
._b_c00415{width:7.494845pt;}
._a_c00415{width:8.392088pt;}
._7_c00415{width:10.233440pt;}
._3_c00415{width:13.435358pt;}
._2_c00415{width:14.634127pt;}
._4_c00415{width:27.272744pt;}
._5_c00415{width:28.340431pt;}
.fs0_c00415{font-size:53.119979pt;}
.fs1_c00415{font-size:58.879976pt;}
.fs2_c00415{font-size:63.999974pt;}
.y0_c00415{bottom:0.000000pt;}
.y4_c00415{bottom:67.306640pt;}
.y3_c00415{bottom:101.226626pt;}
.y21_c00415{bottom:124.106617pt;}
.y22_c00415{bottom:124.106884pt;}
.y20_c00415{bottom:151.626606pt;}
.y1f_c00415{bottom:179.306595pt;}
.y1e_c00415{bottom:205.866584pt;}
.y1d_c00415{bottom:232.106574pt;}
.y1c_c00415{bottom:255.786564pt;}
.y1b_c00415{bottom:332.746534pt;}
.y1a_c00415{bottom:360.266523pt;}
.y19_c00415{bottom:387.946511pt;}
.y18_c00415{bottom:415.466500pt;}
.y17_c00415{bottom:436.106492pt;}
.y16_c00415{bottom:455.626484pt;}
.y15_c00415{bottom:478.026475pt;}
.y14_c00415{bottom:558.026443pt;}
.y13_c00415{bottom:584.906433pt;}
.y12_c00415{bottom:612.426422pt;}
.y11_c00415{bottom:640.106411pt;}
.y10_c00415{bottom:667.626400pt;}
.yf_c00415{bottom:688.266391pt;}
.ye_c00415{bottom:707.786384pt;}
.yd_c00415{bottom:733.066373pt;}
.yc_c00415{bottom:755.306365pt;}
.yb_c00415{bottom:810.346343pt;}
.ya_c00415{bottom:837.226332pt;}
.y9_c00415{bottom:864.746321pt;}
.y8_c00415{bottom:891.306310pt;}
.y7_c00415{bottom:910.666302pt;}
.y6_c00415{bottom:930.186295pt;}
.y5_c00415{bottom:952.586286pt;}
.y2_c00415{bottom:1028.426255pt;}
.y1_c00415{bottom:1062.986241pt;}
.h2_c00415{height:48.558731pt;}
.h1_c00415{height:52.134354pt;}
.h3_c00415{height:57.787477pt;}
.h5_c00415{height:62.781225pt;}
.h4_c00415{height:62.812475pt;}
.h0_c00415{height:1122.666667pt;}
.w0_c00415{width:793.333333pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:113.599955pt;}
.x4_c00415{left:121.440593pt;}
.x9_c00415{left:132.000221pt;}
.xe_c00415{left:139.519944pt;}
.x6_c00415{left:160.799936pt;}
.xc_c00415{left:291.040608pt;}
.xa_c00415{left:346.559752pt;}
.x5_c00415{left:377.280740pt;}
.x2_c00415{left:385.919568pt;}
.x7_c00415{left:396.959841pt;}
.xf_c00415{left:575.519770pt;}
.xd_c00415{left:658.079737pt;}
.xb_c00415{left:664.479734pt;}
.x3_c00415{left:725.600181pt;}
.x8_c00415{left:741.600152pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_460d485399ce2bae7e3d031b.woff2')format("woff");}.ff1_c00416{font-family:ff1_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:ff2_c00416;src:url('chunks/assets/font_1b3bbec771fafbcacb24dd74.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_a8ce079d7d7b6f4f1675069c.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;}
.m0_c00416{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00416{word-spacing:0.000000px;}
._1_c00416{margin-left:-1.105374px;}
._0_c00416{width:1.478392px;}
._3_c00416{width:9.842477px;}
._2_c00416{width:10.983109px;}
.fc0_c00416{color:rgb(0,0,0);}
.fs0_c00416{font-size:59.759976px;}
.fs1_c00416{font-size:66.239974px;}
.y0_c00416{bottom:0.000000px;}
.y4_c00416{bottom:75.720270px;}
.y3_c00416{bottom:113.880254px;}
.y24_c00416{bottom:164.640234px;}
.y23_c00416{bottom:193.080223px;}
.y22_c00416{bottom:222.780211px;}
.y21_c00416{bottom:253.020199px;}
.y20_c00416{bottom:283.260187px;}
.y1f_c00416{bottom:313.500175px;}
.y1e_c00416{bottom:343.560163px;}
.y1d_c00416{bottom:373.800150px;}
.y1c_c00416{bottom:404.040138px;}
.y1b_c00416{bottom:434.280126px;}
.y1a_c00416{bottom:464.520114px;}
.y19_c00416{bottom:494.760102px;}
.y18_c00416{bottom:524.820090px;}
.y17_c00416{bottom:555.060078px;}
.y16_c00416{bottom:585.300066px;}
.y15_c00416{bottom:615.540054px;}
.y14_c00416{bottom:645.780042px;}
.y13_c00416{bottom:676.020030px;}
.y12_c00416{bottom:706.260017px;}
.y11_c00416{bottom:736.320005px;}
.y10_c00416{bottom:766.559993px;}
.yf_c00416{bottom:796.799981px;}
.ye_c00416{bottom:827.039969px;}
.yd_c00416{bottom:857.279957px;}
.yc_c00416{bottom:886.259945px;}
.yb_c00416{bottom:908.039937px;}
.ya_c00416{bottom:929.819928px;}
.y9_c00416{bottom:951.779919px;}
.y8_c00416{bottom:976.799909px;}
.y7_c00416{bottom:1080.299868px;}
.y6_c00416{bottom:1109.279856px;}
.y5_c00416{bottom:1137.719845px;}
.y2_c00416{bottom:1175.879530px;}
.y1_c00416{bottom:1196.039522px;}
.h2_c00416{height:54.628572px;}
.h1_c00416{height:58.651148px;}
.h3_c00416{height:65.010911px;}
.h0_c00416{height:1263.000000px;}
.w0_c00416{width:892.500000px;}
.x0_c00416{left:0.000000px;}
.x5_c00416{left:127.800262px;}
.x8_c00416{left:135.720259px;}
.xa_c00416{left:180.900208px;}
.x1_c00416{left:181.979927px;}
.x2_c00416{left:329.219408px;}
.x9_c00416{left:424.439886px;}
.x4_c00416{left:434.159826px;}
.x6_c00416{left:446.579890px;}
.x3_c00416{left:765.539694px;}
.x7_c00416{left:804.959807px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
._1_c00416{margin-left:-0.982555pt;}
._0_c00416{width:1.314126pt;}
._3_c00416{width:8.748868pt;}
._2_c00416{width:9.762764pt;}
.fs0_c00416{font-size:53.119979pt;}
.fs1_c00416{font-size:58.879976pt;}
.y0_c00416{bottom:0.000000pt;}
.y4_c00416{bottom:67.306906pt;}
.y3_c00416{bottom:101.226893pt;}
.y24_c00416{bottom:146.346875pt;}
.y23_c00416{bottom:171.626865pt;}
.y22_c00416{bottom:198.026854pt;}
.y21_c00416{bottom:224.906843pt;}
.y20_c00416{bottom:251.786833pt;}
.y1f_c00416{bottom:278.666822pt;}
.y1e_c00416{bottom:305.386811pt;}
.y1d_c00416{bottom:332.266800pt;}
.y1c_c00416{bottom:359.146790pt;}
.y1b_c00416{bottom:386.026779pt;}
.y1a_c00416{bottom:412.906768pt;}
.y19_c00416{bottom:439.786757pt;}
.y18_c00416{bottom:466.506747pt;}
.y17_c00416{bottom:493.386736pt;}
.y16_c00416{bottom:520.266725pt;}
.y15_c00416{bottom:547.146714pt;}
.y14_c00416{bottom:574.026704pt;}
.y13_c00416{bottom:600.906693pt;}
.y12_c00416{bottom:627.786682pt;}
.y11_c00416{bottom:654.506672pt;}
.y10_c00416{bottom:681.386661pt;}
.yf_c00416{bottom:708.266650pt;}
.ye_c00416{bottom:735.146639pt;}
.yd_c00416{bottom:762.026629pt;}
.yc_c00416{bottom:787.786618pt;}
.yb_c00416{bottom:807.146610pt;}
.ya_c00416{bottom:826.506603pt;}
.y9_c00416{bottom:846.026595pt;}
.y8_c00416{bottom:868.266586pt;}
.y7_c00416{bottom:960.266549pt;}
.y6_c00416{bottom:986.026539pt;}
.y5_c00416{bottom:1011.306529pt;}
.y2_c00416{bottom:1045.226249pt;}
.y1_c00416{bottom:1063.146241pt;}
.h2_c00416{height:48.558731pt;}
.h1_c00416{height:52.134354pt;}
.h3_c00416{height:57.787477pt;}
.h0_c00416{height:1122.666667pt;}
.w0_c00416{width:793.333333pt;}
.x0_c00416{left:0.000000pt;}
.x5_c00416{left:113.600233pt;}
.x8_c00416{left:120.640231pt;}
.xa_c00416{left:160.800185pt;}
.x1_c00416{left:161.759935pt;}
.x2_c00416{left:292.639474pt;}
.x9_c00416{left:377.279899pt;}
.x4_c00416{left:385.919846pt;}
.x6_c00416{left:396.959902pt;}
.x3_c00416{left:680.479728pt;}
.x7_c00416{left:715.519828pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fc4019be5a54e7eda9359163.woff2')format("woff");}.ff1_c00417{font-family:ff1_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;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_05874d3bbd2772b4abf1d3d3.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_0a628060d4a93d618b7036ed.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_40c3c48d638cd8819b7a7f23.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_60fc7097300906a62b60e674.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls1_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:0.021238px;}
.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;}
._f_c00417{margin-left:-2.298777px;}
._1_c00417{margin-left:-1.105374px;}
._0_c00417{width:1.195563px;}
._8_c00417{width:2.214479px;}
._7_c00417{width:3.429843px;}
._3_c00417{width:4.443029px;}
._9_c00417{width:6.141021px;}
._e_c00417{width:7.503052px;}
._10_c00417{width:8.655621px;}
._4_c00417{width:9.870982px;}
._6_c00417{width:10.975318px;}
._5_c00417{width:12.139826px;}
._2_c00417{width:13.794594px;}
._a_c00417{width:15.068696px;}
._b_c00417{width:16.550181px;}
._c_c00417{width:22.476095px;}
._d_c00417{width:23.643905px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs0_c00417{font-size:59.759976px;}
.fs1_c00417{font-size:66.239974px;}
.fs2_c00417{font-size:71.999971px;}
.y0_c00417{bottom:0.000000px;}
.y4_c00417{bottom:75.719970px;}
.y3_c00417{bottom:113.879954px;}
.y18_c00417{bottom:139.619944px;}
.y17_c00417{bottom:170.759932px;}
.y16_c00417{bottom:201.719919px;}
.y15_c00417{bottom:232.859907px;}
.y14_c00417{bottom:263.819894px;}
.y13_c00417{bottom:294.959882px;}
.y12_c00417{bottom:325.919870px;}
.y11_c00417{bottom:357.059857px;}
.y10_c00417{bottom:388.019845px;}
.yf_c00417{bottom:419.159832px;}
.ye_c00417{bottom:450.119820px;}
.yd_c00417{bottom:481.259807px;}
.yc_c00417{bottom:512.219795px;}
.yb_c00417{bottom:543.179783px;}
.ya_c00417{bottom:574.319770px;}
.y9_c00417{bottom:605.279758px;}
.y8_c00417{bottom:650.279740px;}
.y7_c00417{bottom:690.419724px;}
.y6_c00417{bottom:1086.599565px;}
.y5_c00417{bottom:1117.739553px;}
.y2_c00417{bottom:1156.979537px;}
.y1_c00417{bottom:1195.859522px;}
.h2_c00417{height:54.628572px;}
.h1_c00417{height:58.651148px;}
.h4_c00417{height:65.010911px;}
.h6_c00417{height:70.628878px;}
.h5_c00417{height:70.664034px;}
.h3_c00417{height:72.562471px;}
.h0_c00417{height:1263.000000px;}
.w0_c00417{width:892.500000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:127.799949px;}
.x4_c00417{left:133.019947px;}
.x7_c00417{left:180.899928px;}
.x2_c00417{left:434.159514px;}
.x3_c00417{left:604.079238px;}
.x5_c00417{left:701.459719px;}
.x6_c00417{left:705.959718px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls1_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:0.018878pt;}
.ws0_c00417{word-spacing:0.000000pt;}
._f_c00417{margin-left:-2.043358pt;}
._1_c00417{margin-left:-0.982555pt;}
._0_c00417{width:1.062723pt;}
._8_c00417{width:1.968425pt;}
._7_c00417{width:3.048749pt;}
._3_c00417{width:3.949359pt;}
._9_c00417{width:5.458685pt;}
._e_c00417{width:6.669380pt;}
._10_c00417{width:7.693885pt;}
._4_c00417{width:8.774207pt;}
._6_c00417{width:9.755838pt;}
._5_c00417{width:10.790956pt;}
._2_c00417{width:12.261862pt;}
._a_c00417{width:13.394396pt;}
._b_c00417{width:14.711272pt;}
._c_c00417{width:19.978751pt;}
._d_c00417{width:21.016805pt;}
.fs0_c00417{font-size:53.119979pt;}
.fs1_c00417{font-size:58.879976pt;}
.fs2_c00417{font-size:63.999974pt;}
.y0_c00417{bottom:0.000000pt;}
.y4_c00417{bottom:67.306640pt;}
.y3_c00417{bottom:101.226626pt;}
.y18_c00417{bottom:124.106617pt;}
.y17_c00417{bottom:151.786606pt;}
.y16_c00417{bottom:179.306595pt;}
.y15_c00417{bottom:206.986584pt;}
.y14_c00417{bottom:234.506573pt;}
.y13_c00417{bottom:262.186562pt;}
.y12_c00417{bottom:289.706551pt;}
.y11_c00417{bottom:317.386540pt;}
.y10_c00417{bottom:344.906529pt;}
.yf_c00417{bottom:372.586518pt;}
.ye_c00417{bottom:400.106507pt;}
.yd_c00417{bottom:427.786496pt;}
.yc_c00417{bottom:455.306485pt;}
.yb_c00417{bottom:482.826474pt;}
.ya_c00417{bottom:510.506462pt;}
.y9_c00417{bottom:538.026451pt;}
.y8_c00417{bottom:578.026435pt;}
.y7_c00417{bottom:613.706421pt;}
.y6_c00417{bottom:965.866280pt;}
.y5_c00417{bottom:993.546269pt;}
.y2_c00417{bottom:1028.426255pt;}
.y1_c00417{bottom:1062.986241pt;}
.h2_c00417{height:48.558731pt;}
.h1_c00417{height:52.134354pt;}
.h4_c00417{height:57.787477pt;}
.h6_c00417{height:62.781225pt;}
.h5_c00417{height:62.812475pt;}
.h3_c00417{height:64.499974pt;}
.h0_c00417{height:1122.666667pt;}
.w0_c00417{width:793.333333pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:113.599955pt;}
.x4_c00417{left:118.239953pt;}
.x7_c00417{left:160.799936pt;}
.x2_c00417{left:385.919568pt;}
.x3_c00417{left:536.959322pt;}
.x5_c00417{left:623.519751pt;}
.x6_c00417{left:627.519749pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6747f2c3dfff8c00a050770d.woff2')format("woff");}.ff1_c00418{font-family:ff1_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:ff2_c00418;src:url('chunks/assets/font_16776eae13bdb80c8b8ff375.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_d87af6a85b487eb88a81fd53.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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,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;}
._1_c00418{margin-left:-1.105374px;}
._0_c00418{width:1.478392px;}
._6_c00418{width:2.764823px;}
._7_c00418{width:4.329686px;}
._10_c00418{width:5.482355px;}
._9_c00418{width:6.629277px;}
._b_c00418{width:7.839571px;}
._5_c00418{width:9.528600px;}
._a_c00418{width:10.944608px;}
._c_c00418{width:15.332265px;}
._d_c00418{width:16.603851px;}
._4_c00418{width:19.011715px;}
._e_c00418{width:21.102595px;}
._f_c00418{width:22.450233px;}
._8_c00418{width:24.565446px;}
._2_c00418{width:30.020502px;}
._3_c00418{width:31.291091px;}
.fc0_c00418{color:rgb(0,0,0);}
.fs0_c00418{font-size:59.759976px;}
.fs1_c00418{font-size:66.239974px;}
.fs2_c00418{font-size:71.999971px;}
.y0_c00418{bottom:0.000000px;}
.y4_c00418{bottom:75.900270px;}
.y3_c00418{bottom:114.060254px;}
.y24_c00418{bottom:159.059936px;}
.y23_c00418{bottom:190.019924px;}
.y22_c00418{bottom:221.159912px;}
.y21_c00418{bottom:252.119899px;}
.y20_c00418{bottom:283.259887px;}
.y1f_c00418{bottom:314.219874px;}
.y1e_c00418{bottom:345.359862px;}
.y1d_c00418{bottom:376.319849px;}
.y1c_c00418{bottom:407.459837px;}
.y1b_c00418{bottom:438.419825px;}
.y1a_c00418{bottom:469.559812px;}
.y19_c00418{bottom:500.519800px;}
.y18_c00418{bottom:531.659787px;}
.y17_c00418{bottom:562.619775px;}
.y16_c00418{bottom:593.759762px;}
.y15_c00418{bottom:624.719750px;}
.y14_c00418{bottom:655.859738px;}
.y13_c00418{bottom:686.819725px;}
.y12_c00418{bottom:717.959713px;}
.y11_c00418{bottom:748.919700px;}
.y10_c00418{bottom:780.059688px;}
.yf_c00418{bottom:811.019676px;}
.ye_c00418{bottom:842.159663px;}
.yd_c00418{bottom:873.119651px;}
.yc_c00418{bottom:904.259638px;}
.yb_c00418{bottom:935.219626px;}
.ya_c00418{bottom:966.359613px;}
.y9_c00418{bottom:997.319601px;}
.y8_c00418{bottom:1028.459589px;}
.y7_c00418{bottom:1074.359570px;}
.y6_c00418{bottom:1105.499558px;}
.y5_c00418{bottom:1136.459545px;}
.y2_c00418{bottom:1176.059530px;}
.y1_c00418{bottom:1196.219522px;}
.h2_c00418{height:54.628572px;}
.h1_c00418{height:58.651148px;}
.h4_c00418{height:70.628878px;}
.h3_c00418{height:70.664034px;}
.h0_c00418{height:1263.000000px;}
.w0_c00418{width:892.500000px;}
.x0_c00418{left:0.000000px;}
.x5_c00418{left:127.620262px;}
.x6_c00418{left:180.719930px;}
.x1_c00418{left:181.799927px;}
.x2_c00418{left:329.039408px;}
.x4_c00418{left:433.979826px;}
.x3_c00418{left:765.359694px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
._1_c00418{margin-left:-0.982555pt;}
._0_c00418{width:1.314126pt;}
._6_c00418{width:2.457620pt;}
._7_c00418{width:3.848609pt;}
._10_c00418{width:4.873204pt;}
._9_c00418{width:5.892691pt;}
._b_c00418{width:6.968508pt;}
._5_c00418{width:8.469867pt;}
._a_c00418{width:9.728540pt;}
._c_c00418{width:13.628680pt;}
._d_c00418{width:14.758978pt;}
._4_c00418{width:16.899302pt;}
._e_c00418{width:18.757863pt;}
._f_c00418{width:19.955763pt;}
._8_c00418{width:21.835952pt;}
._2_c00418{width:26.684891pt;}
._3_c00418{width:27.814303pt;}
.fs0_c00418{font-size:53.119979pt;}
.fs1_c00418{font-size:58.879976pt;}
.fs2_c00418{font-size:63.999974pt;}
.y0_c00418{bottom:0.000000pt;}
.y4_c00418{bottom:67.466906pt;}
.y3_c00418{bottom:101.386893pt;}
.y24_c00418{bottom:141.386610pt;}
.y23_c00418{bottom:168.906599pt;}
.y22_c00418{bottom:196.586588pt;}
.y21_c00418{bottom:224.106577pt;}
.y20_c00418{bottom:251.786566pt;}
.y1f_c00418{bottom:279.306555pt;}
.y1e_c00418{bottom:306.986544pt;}
.y1d_c00418{bottom:334.506533pt;}
.y1c_c00418{bottom:362.186522pt;}
.y1b_c00418{bottom:389.706511pt;}
.y1a_c00418{bottom:417.386500pt;}
.y19_c00418{bottom:444.906489pt;}
.y18_c00418{bottom:472.586478pt;}
.y17_c00418{bottom:500.106467pt;}
.y16_c00418{bottom:527.786456pt;}
.y15_c00418{bottom:555.306445pt;}
.y14_c00418{bottom:582.986433pt;}
.y13_c00418{bottom:610.506422pt;}
.y12_c00418{bottom:638.186411pt;}
.y11_c00418{bottom:665.706400pt;}
.y10_c00418{bottom:693.386389pt;}
.yf_c00418{bottom:720.906378pt;}
.ye_c00418{bottom:748.586367pt;}
.yd_c00418{bottom:776.106356pt;}
.yc_c00418{bottom:803.786345pt;}
.yb_c00418{bottom:831.306334pt;}
.ya_c00418{bottom:858.986323pt;}
.y9_c00418{bottom:886.506312pt;}
.y8_c00418{bottom:914.186301pt;}
.y7_c00418{bottom:954.986285pt;}
.y6_c00418{bottom:982.666274pt;}
.y5_c00418{bottom:1010.186263pt;}
.y2_c00418{bottom:1045.386249pt;}
.y1_c00418{bottom:1063.306241pt;}
.h2_c00418{height:48.558731pt;}
.h1_c00418{height:52.134354pt;}
.h4_c00418{height:62.781225pt;}
.h3_c00418{height:62.812475pt;}
.h0_c00418{height:1122.666667pt;}
.w0_c00418{width:793.333333pt;}
.x0_c00418{left:0.000000pt;}
.x5_c00418{left:113.440233pt;}
.x6_c00418{left:160.639938pt;}
.x1_c00418{left:161.599935pt;}
.x2_c00418{left:292.479474pt;}
.x4_c00418{left:385.759846pt;}
.x3_c00418{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1da8b70887fb73ad3c50e77e.woff2')format("woff");}.ff1_c00419{font-family:ff1_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:ff2_c00419;src:url('chunks/assets/font_b402aa9ba2db7de05d6d09d3.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_4a456c8e0a95693ade0b617d.woff2')format("woff");}.ff3_c00419{font-family:ff3_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;}
.m0_c00419{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls4_c00419{letter-spacing:0.000000px;}
.ls2_c00419{letter-spacing:0.010620px;}
.ls3_c00419{letter-spacing:0.012620px;}
.ls0_c00419{letter-spacing:0.021282px;}
.ls1_c00419{letter-spacing:0.374281px;}
.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.021275px;}
.ws1_c00419{word-spacing:-12.434276px;}
.ws2_c00419{word-spacing:-10.452616px;}
.ws3_c00419{word-spacing:0.000000px;}
._14_c00419{margin-left:-9.340795px;}
._1_c00419{margin-left:-1.105374px;}
._0_c00419{width:1.195563px;}
._b_c00419{width:2.349637px;}
._6_c00419{width:3.570375px;}
._7_c00419{width:5.298666px;}
._3_c00419{width:6.353942px;}
._2_c00419{width:7.548027px;}
._11_c00419{width:8.864963px;}
._8_c00419{width:9.951449px;}
._9_c00419{width:11.008314px;}
._a_c00419{width:12.244351px;}
._e_c00419{width:13.401117px;}
._f_c00419{width:15.029730px;}
._12_c00419{width:20.945524px;}
._13_c00419{width:22.078495px;}
._5_c00419{width:24.648370px;}
._4_c00419{width:25.888212px;}
._c_c00419{width:28.057693px;}
._d_c00419{width:29.551491px;}
._10_c00419{width:41.135159px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs4_c00419{font-size:41.759983px;}
.fs3_c00419{font-size:48.239981px;}
.fs0_c00419{font-size:59.759976px;}
.fs1_c00419{font-size:66.239974px;}
.fs2_c00419{font-size:71.999971px;}
.y0_c00419{bottom:0.000000px;}
.y4_c00419{bottom:75.899970px;}
.y3_c00419{bottom:114.059954px;}
.y27_c00419{bottom:133.319947px;}
.y26_c00419{bottom:150.599940px;}
.y25_c00419{bottom:167.879933px;}
.y24_c00419{bottom:185.339926px;}
.y23_c00419{bottom:192.899923px;}
.y22_c00419{bottom:204.959918px;}
.y21_c00419{bottom:279.839888px;}
.y20_c00419{bottom:310.979876px;}
.y1f_c00419{bottom:341.939863px;}
.y1e_c00419{bottom:373.079851px;}
.y1d_c00419{bottom:404.039838px;}
.y1c_c00419{bottom:435.179826px;}
.y1b_c00419{bottom:466.139814px;}
.y1a_c00419{bottom:497.279801px;}
.y19_c00419{bottom:528.239789px;}
.y18_c00419{bottom:559.379776px;}
.y17_c00419{bottom:590.339764px;}
.y16_c00419{bottom:621.479751px;}
.y15_c00419{bottom:652.439739px;}
.y14_c00419{bottom:683.579727px;}
.y13_c00419{bottom:714.539714px;}
.y12_c00419{bottom:745.679702px;}
.y11_c00419{bottom:776.639689px;}
.y10_c00419{bottom:807.779677px;}
.yf_c00419{bottom:838.739665px;}
.ye_c00419{bottom:869.879652px;}
.yd_c00419{bottom:900.839640px;}
.yb_c00419{bottom:931.979627px;}
.yc_c00419{bottom:940.259624px;}
.ya_c00419{bottom:962.939615px;}
.y9_c00419{bottom:994.079602px;}
.y8_c00419{bottom:1025.039590px;}
.y7_c00419{bottom:1056.179578px;}
.y6_c00419{bottom:1087.139565px;}
.y5_c00419{bottom:1118.279553px;}
.y2_c00419{bottom:1157.159537px;}
.y1_c00419{bottom:1196.039522px;}
.h6_c00419{height:40.985140px;}
.h4_c00419{height:47.321348px;}
.h2_c00419{height:54.628572px;}
.h7_c00419{height:58.621969px;}
.h1_c00419{height:58.651148px;}
.h3_c00419{height:70.628878px;}
.h5_c00419{height:70.664034px;}
.h0_c00419{height:1263.000000px;}
.w0_c00419{width:892.500000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:127.619949px;}
.x6_c00419{left:143.279943px;}
.x3_c00419{left:180.719928px;}
.x4_c00419{left:248.219901px;}
.x5_c00419{left:266.579893px;}
.x2_c00419{left:433.979514px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls4_c00419{letter-spacing:0.000000pt;}
.ls2_c00419{letter-spacing:0.009440pt;}
.ls3_c00419{letter-spacing:0.011218pt;}
.ls0_c00419{letter-spacing:0.018917pt;}
.ls1_c00419{letter-spacing:0.332694pt;}
.ws0_c00419{word-spacing:-16.018911pt;}
.ws1_c00419{word-spacing:-11.052689pt;}
.ws2_c00419{word-spacing:-9.291214pt;}
.ws3_c00419{word-spacing:0.000000pt;}
._14_c00419{margin-left:-8.302929pt;}
._1_c00419{margin-left:-0.982555pt;}
._0_c00419{width:1.062723pt;}
._b_c00419{width:2.088566pt;}
._6_c00419{width:3.173667pt;}
._7_c00419{width:4.709925pt;}
._3_c00419{width:5.647949pt;}
._2_c00419{width:6.709358pt;}
._11_c00419{width:7.879968pt;}
._8_c00419{width:8.845732pt;}
._9_c00419{width:9.785168pt;}
._a_c00419{width:10.883867pt;}
._e_c00419{width:11.912104pt;}
._f_c00419{width:13.359760pt;}
._12_c00419{width:18.618243pt;}
._13_c00419{width:19.625329pt;}
._5_c00419{width:21.909662pt;}
._4_c00419{width:23.011744pt;}
._c_c00419{width:24.940171pt;}
._d_c00419{width:26.267992pt;}
._10_c00419{width:36.564586pt;}
.fs4_c00419{font-size:37.119985pt;}
.fs3_c00419{font-size:42.879983pt;}
.fs0_c00419{font-size:53.119979pt;}
.fs1_c00419{font-size:58.879976pt;}
.fs2_c00419{font-size:63.999974pt;}
.y0_c00419{bottom:0.000000pt;}
.y4_c00419{bottom:67.466640pt;}
.y3_c00419{bottom:101.386626pt;}
.y27_c00419{bottom:118.506619pt;}
.y26_c00419{bottom:133.866613pt;}
.y25_c00419{bottom:149.226607pt;}
.y24_c00419{bottom:164.746601pt;}
.y23_c00419{bottom:171.466598pt;}
.y22_c00419{bottom:182.186594pt;}
.y21_c00419{bottom:248.746567pt;}
.y20_c00419{bottom:276.426556pt;}
.y1f_c00419{bottom:303.946545pt;}
.y1e_c00419{bottom:331.626534pt;}
.y1d_c00419{bottom:359.146523pt;}
.y1c_c00419{bottom:386.826512pt;}
.y1b_c00419{bottom:414.346501pt;}
.y1a_c00419{bottom:442.026490pt;}
.y19_c00419{bottom:469.546479pt;}
.y18_c00419{bottom:497.226468pt;}
.y17_c00419{bottom:524.746457pt;}
.y16_c00419{bottom:552.426446pt;}
.y15_c00419{bottom:579.946435pt;}
.y14_c00419{bottom:607.626424pt;}
.y13_c00419{bottom:635.146413pt;}
.y12_c00419{bottom:662.826402pt;}
.y11_c00419{bottom:690.346391pt;}
.y10_c00419{bottom:718.026379pt;}
.yf_c00419{bottom:745.546368pt;}
.ye_c00419{bottom:773.226357pt;}
.yd_c00419{bottom:800.746346pt;}
.yb_c00419{bottom:828.426335pt;}
.yc_c00419{bottom:835.786332pt;}
.ya_c00419{bottom:855.946324pt;}
.y9_c00419{bottom:883.626313pt;}
.y8_c00419{bottom:911.146302pt;}
.y7_c00419{bottom:938.826291pt;}
.y6_c00419{bottom:966.346280pt;}
.y5_c00419{bottom:994.026269pt;}
.y2_c00419{bottom:1028.586255pt;}
.y1_c00419{bottom:1063.146241pt;}
.h6_c00419{height:36.431235pt;}
.h4_c00419{height:42.063421pt;}
.h2_c00419{height:48.558731pt;}
.h7_c00419{height:52.108417pt;}
.h1_c00419{height:52.134354pt;}
.h3_c00419{height:62.781225pt;}
.h5_c00419{height:62.812475pt;}
.h0_c00419{height:1122.666667pt;}
.w0_c00419{width:793.333333pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:113.439955pt;}
.x6_c00419{left:127.359949pt;}
.x3_c00419{left:160.639936pt;}
.x4_c00419{left:220.639912pt;}
.x5_c00419{left:236.959905pt;}
.x2_c00419{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d258f75898f0339cb1f467d9.woff2')format("woff");}.ff1_c00420{font-family:ff1_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:ff2_c00420;src:url('chunks/assets/font_9aabde5e53c38ddb5b4970a8.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_907632ef442eba5dacc184ce.woff2')format("woff");}.ff3_c00420{font-family:ff3_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;}
.m0_c00420{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls5_c00420{letter-spacing:0.000000px;}
.ls2_c00420{letter-spacing:0.011169px;}
.ls1_c00420{letter-spacing:0.153901px;}
.ls4_c00420{letter-spacing:0.189257px;}
.ls3_c00420{letter-spacing:0.189300px;}
.ls0_c00420{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00420{word-spacing:-17.999993px;}
.ws2_c00420{word-spacing:-16.559993px;}
.ws4_c00420{word-spacing:-14.939994px;}
.ws1_c00420{word-spacing:-12.434276px;}
.ws3_c00420{word-spacing:-9.731165px;}
.ws5_c00420{word-spacing:0.000000px;}
._5_c00420{margin-left:-12.716934px;}
._1_c00420{margin-left:-1.105374px;}
._0_c00420{width:1.478392px;}
._4_c00420{width:3.314024px;}
._3_c00420{width:5.749238px;}
._2_c00420{width:19.315751px;}
.fc0_c00420{color:rgb(0,0,0);}
.fs4_c00420{font-size:38.879984px;}
.fs3_c00420{font-size:48.239981px;}
.fs0_c00420{font-size:59.759976px;}
.fs1_c00420{font-size:66.239974px;}
.fs2_c00420{font-size:71.999971px;}
.y0_c00420{bottom:0.000000px;}
.y4_c00420{bottom:75.720270px;}
.y3_c00420{bottom:113.880254px;}
.y24_c00420{bottom:133.499947px;}
.y23_c00420{bottom:151.499939px;}
.y22_c00420{bottom:158.339937px;}
.y21_c00420{bottom:169.139932px;}
.y20_c00420{bottom:187.139925px;}
.y1f_c00420{bottom:193.979922px;}
.y1e_c00420{bottom:204.419918px;}
.y1d_c00420{bottom:221.519911px;}
.y1c_c00420{bottom:228.359909px;}
.y1b_c00420{bottom:239.699904px;}
.y1a_c00420{bottom:317.459873px;}
.y19_c00420{bottom:355.799858px;}
.y18_c00420{bottom:377.579849px;}
.y17_c00420{bottom:402.959839px;}
.y15_c00420{bottom:561.539775px;}
.y16_c00420{bottom:569.819772px;}
.y14_c00420{bottom:592.679763px;}
.y13_c00420{bottom:623.639751px;}
.y12_c00420{bottom:654.779738px;}
.y11_c00420{bottom:685.739726px;}
.y10_c00420{bottom:716.879713px;}
.yf_c00420{bottom:755.039698px;}
.ye_c00420{bottom:776.819689px;}
.yd_c00420{bottom:802.199679px;}
.yc_c00420{bottom:981.119608px;}
.ya_c00420{bottom:1012.079595px;}
.yb_c00420{bottom:1020.359592px;}
.y9_c00420{bottom:1043.219583px;}
.y8_c00420{bottom:1074.179570px;}
.y6_c00420{bottom:1105.319558px;}
.y7_c00420{bottom:1113.599555px;}
.y5_c00420{bottom:1136.279545px;}
.y2_c00420{bottom:1175.879530px;}
.y1_c00420{bottom:1196.039522px;}
.h7_c00420{height:38.158578px;}
.h4_c00420{height:47.321348px;}
.h8_c00420{height:49.284472px;}
.h2_c00420{height:54.628572px;}
.h1_c00420{height:58.651148px;}
.h6_c00420{height:65.010911px;}
.h3_c00420{height:70.628878px;}
.h5_c00420{height:70.664034px;}
.h0_c00420{height:1263.000000px;}
.w0_c00420{width:892.500000px;}
.x0_c00420{left:0.000000px;}
.x5_c00420{left:127.800262px;}
.xf_c00420{left:134.819946px;}
.x11_c00420{left:142.379943px;}
.xb_c00420{left:143.459943px;}
.x6_c00420{left:180.899928px;}
.x1_c00420{left:181.979927px;}
.xd_c00420{left:236.339905px;}
.x7_c00420{left:247.319901px;}
.xe_c00420{left:254.699898px;}
.x8_c00420{left:265.679894px;}
.xc_c00420{left:327.240273px;}
.x2_c00420{left:329.219408px;}
.x10_c00420{left:383.401106px;}
.x9_c00420{left:425.159830px;}
.x4_c00420{left:434.159826px;}
.xa_c00420{left:443.519823px;}
.x3_c00420{left:765.539694px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls5_c00420{letter-spacing:0.000000pt;}
.ls2_c00420{letter-spacing:0.009928pt;}
.ls1_c00420{letter-spacing:0.136801pt;}
.ls4_c00420{letter-spacing:0.168228pt;}
.ls3_c00420{letter-spacing:0.168267pt;}
.ls0_c00420{letter-spacing:0.332694pt;}
.ws0_c00420{word-spacing:-15.999994pt;}
.ws2_c00420{word-spacing:-14.719994pt;}
.ws4_c00420{word-spacing:-13.279995pt;}
.ws1_c00420{word-spacing:-11.052689pt;}
.ws3_c00420{word-spacing:-8.649924pt;}
.ws5_c00420{word-spacing:0.000000pt;}
._5_c00420{margin-left:-11.303941pt;}
._1_c00420{margin-left:-0.982555pt;}
._0_c00420{width:1.314126pt;}
._4_c00420{width:2.945799pt;}
._3_c00420{width:5.110434pt;}
._2_c00420{width:17.169557pt;}
.fs4_c00420{font-size:34.559986pt;}
.fs3_c00420{font-size:42.879983pt;}
.fs0_c00420{font-size:53.119979pt;}
.fs1_c00420{font-size:58.879976pt;}
.fs2_c00420{font-size:63.999974pt;}
.y0_c00420{bottom:0.000000pt;}
.y4_c00420{bottom:67.306906pt;}
.y3_c00420{bottom:101.226893pt;}
.y24_c00420{bottom:118.666619pt;}
.y23_c00420{bottom:134.666613pt;}
.y22_c00420{bottom:140.746610pt;}
.y21_c00420{bottom:150.346607pt;}
.y20_c00420{bottom:166.346600pt;}
.y1f_c00420{bottom:172.426598pt;}
.y1e_c00420{bottom:181.706594pt;}
.y1d_c00420{bottom:196.906588pt;}
.y1c_c00420{bottom:202.986585pt;}
.y1b_c00420{bottom:213.066581pt;}
.y1a_c00420{bottom:282.186554pt;}
.y19_c00420{bottom:316.266540pt;}
.y18_c00420{bottom:335.626532pt;}
.y17_c00420{bottom:358.186523pt;}
.y15_c00420{bottom:499.146467pt;}
.y16_c00420{bottom:506.506464pt;}
.y14_c00420{bottom:526.826456pt;}
.y13_c00420{bottom:554.346445pt;}
.y12_c00420{bottom:582.026434pt;}
.y11_c00420{bottom:609.546423pt;}
.y10_c00420{bottom:637.226412pt;}
.yf_c00420{bottom:671.146398pt;}
.ye_c00420{bottom:690.506390pt;}
.yd_c00420{bottom:713.066381pt;}
.yc_c00420{bottom:872.106318pt;}
.ya_c00420{bottom:899.626307pt;}
.yb_c00420{bottom:906.986304pt;}
.y9_c00420{bottom:927.306296pt;}
.y8_c00420{bottom:954.826285pt;}
.y6_c00420{bottom:982.506274pt;}
.y7_c00420{bottom:989.866271pt;}
.y5_c00420{bottom:1010.026263pt;}
.y2_c00420{bottom:1045.226249pt;}
.y1_c00420{bottom:1063.146241pt;}
.h7_c00420{height:33.918736pt;}
.h4_c00420{height:42.063421pt;}
.h8_c00420{height:43.808420pt;}
.h2_c00420{height:48.558731pt;}
.h1_c00420{height:52.134354pt;}
.h6_c00420{height:57.787477pt;}
.h3_c00420{height:62.781225pt;}
.h5_c00420{height:62.812475pt;}
.h0_c00420{height:1122.666667pt;}
.w0_c00420{width:793.333333pt;}
.x0_c00420{left:0.000000pt;}
.x5_c00420{left:113.600233pt;}
.xf_c00420{left:119.839952pt;}
.x11_c00420{left:126.559949pt;}
.xb_c00420{left:127.519949pt;}
.x6_c00420{left:160.799936pt;}
.x1_c00420{left:161.759935pt;}
.xd_c00420{left:210.079916pt;}
.x7_c00420{left:219.839912pt;}
.xe_c00420{left:226.399909pt;}
.x8_c00420{left:236.159906pt;}
.xc_c00420{left:290.880242pt;}
.x2_c00420{left:292.639474pt;}
.x10_c00420{left:340.800983pt;}
.x9_c00420{left:377.919849pt;}
.x4_c00420{left:385.919846pt;}
.xa_c00420{left:394.239842pt;}
.x3_c00420{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55ee3d382f520b15c64cac27.woff2')format("woff");}.ff1_c00421{font-family:ff1_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:ff2_c00421;src:url('chunks/assets/font_a3ccbec7ea223f80f6eae0e1.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_f06c9691298fd7423302b094.woff2')format("woff");}.ff3_c00421{font-family:ff3_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;}
.m0_c00421{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls4_c00421{letter-spacing:0.000000px;}
.ls2_c00421{letter-spacing:0.011169px;}
.ls1_c00421{letter-spacing:0.153901px;}
.ls3_c00421{letter-spacing:0.189300px;}
.ls0_c00421{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00421{word-spacing:-14.939994px;}
.ws0_c00421{word-spacing:-12.434276px;}
.ws1_c00421{word-spacing:-9.731165px;}
.ws3_c00421{word-spacing:0.000000px;}
._c_c00421{margin-left:-12.716934px;}
._1_c00421{margin-left:-1.105374px;}
._0_c00421{width:1.195563px;}
._8_c00421{width:3.638788px;}
._7_c00421{width:4.654355px;}
._9_c00421{width:5.750305px;}
._3_c00421{width:7.744013px;}
._4_c00421{width:8.878903px;}
._2_c00421{width:10.071756px;}
._5_c00421{width:12.953483px;}
._b_c00421{width:16.431661px;}
._6_c00421{width:19.437296px;}
._a_c00421{width:24.105853px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs4_c00421{font-size:38.879984px;}
.fs3_c00421{font-size:48.239981px;}
.fs0_c00421{font-size:59.759976px;}
.fs1_c00421{font-size:66.239974px;}
.fs2_c00421{font-size:71.999971px;}
.y0_c00421{bottom:0.000000px;}
.y4_c00421{bottom:75.719970px;}
.y3_c00421{bottom:113.879954px;}
.y27_c00421{bottom:133.139947px;}
.y26_c00421{bottom:150.419940px;}
.y25_c00421{bottom:157.259937px;}
.y24_c00421{bottom:168.059933px;}
.y23_c00421{bottom:186.059926px;}
.y22_c00421{bottom:192.899923px;}
.y21_c00421{bottom:204.239918px;}
.y20_c00421{bottom:238.259905px;}
.y1f_c00421{bottom:269.219892px;}
.y1e_c00421{bottom:300.359880px;}
.y1c_c00421{bottom:331.319867px;}
.y1d_c00421{bottom:339.599864px;}
.y1b_c00421{bottom:362.459855px;}
.y1a_c00421{bottom:393.419843px;}
.y19_c00421{bottom:424.559830px;}
.y18_c00421{bottom:455.519818px;}
.y17_c00421{bottom:486.659805px;}
.y16_c00421{bottom:517.619793px;}
.y15_c00421{bottom:548.759780px;}
.y14_c00421{bottom:579.719768px;}
.y13_c00421{bottom:610.859756px;}
.y12_c00421{bottom:641.819743px;}
.y11_c00421{bottom:672.959731px;}
.y10_c00421{bottom:703.919718px;}
.yf_c00421{bottom:735.059706px;}
.ye_c00421{bottom:766.019694px;}
.yd_c00421{bottom:789.779684px;}
.yc_c00421{bottom:828.119669px;}
.yb_c00421{bottom:849.899660px;}
.ya_c00421{bottom:875.279650px;}
.y9_c00421{bottom:1024.859590px;}
.y7_c00421{bottom:1055.999578px;}
.y8_c00421{bottom:1064.279574px;}
.y6_c00421{bottom:1086.959565px;}
.y5_c00421{bottom:1118.099553px;}
.y2_c00421{bottom:1156.979537px;}
.y1_c00421{bottom:1195.859522px;}
.h7_c00421{height:38.158578px;}
.h5_c00421{height:47.321348px;}
.h8_c00421{height:49.284472px;}
.h2_c00421{height:54.628572px;}
.h1_c00421{height:58.651148px;}
.h6_c00421{height:65.010911px;}
.h4_c00421{height:70.628878px;}
.h3_c00421{height:70.664034px;}
.h0_c00421{height:1263.000000px;}
.w0_c00421{width:892.500000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:127.799949px;}
.xa_c00421{left:142.379943px;}
.x3_c00421{left:180.899928px;}
.x4_c00421{left:237.779905px;}
.x5_c00421{left:256.139898px;}
.x7_c00421{left:298.799585px;}
.x2_c00421{left:434.159514px;}
.x8_c00421{left:486.899805px;}
.x9_c00421{left:505.259798px;}
.x6_c00421{left:802.800209px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls4_c00421{letter-spacing:0.000000pt;}
.ls2_c00421{letter-spacing:0.009928pt;}
.ls1_c00421{letter-spacing:0.136801pt;}
.ls3_c00421{letter-spacing:0.168267pt;}
.ls0_c00421{letter-spacing:0.332694pt;}
.ws2_c00421{word-spacing:-13.279995pt;}
.ws0_c00421{word-spacing:-11.052689pt;}
.ws1_c00421{word-spacing:-8.649924pt;}
.ws3_c00421{word-spacing:0.000000pt;}
._c_c00421{margin-left:-11.303941pt;}
._1_c00421{margin-left:-0.982555pt;}
._0_c00421{width:1.062723pt;}
._8_c00421{width:3.234478pt;}
._7_c00421{width:4.137204pt;}
._9_c00421{width:5.111383pt;}
._3_c00421{width:6.883567pt;}
._4_c00421{width:7.892358pt;}
._2_c00421{width:8.952672pt;}
._5_c00421{width:11.514207pt;}
._b_c00421{width:14.605921pt;}
._6_c00421{width:17.277597pt;}
._a_c00421{width:21.427425pt;}
.fs4_c00421{font-size:34.559986pt;}
.fs3_c00421{font-size:42.879983pt;}
.fs0_c00421{font-size:53.119979pt;}
.fs1_c00421{font-size:58.879976pt;}
.fs2_c00421{font-size:63.999974pt;}
.y0_c00421{bottom:0.000000pt;}
.y4_c00421{bottom:67.306640pt;}
.y3_c00421{bottom:101.226626pt;}
.y27_c00421{bottom:118.346619pt;}
.y26_c00421{bottom:133.706613pt;}
.y25_c00421{bottom:139.786611pt;}
.y24_c00421{bottom:149.386607pt;}
.y23_c00421{bottom:165.386601pt;}
.y22_c00421{bottom:171.466598pt;}
.y21_c00421{bottom:181.546594pt;}
.y20_c00421{bottom:211.786582pt;}
.y1f_c00421{bottom:239.306571pt;}
.y1e_c00421{bottom:266.986560pt;}
.y1c_c00421{bottom:294.506549pt;}
.y1d_c00421{bottom:301.866546pt;}
.y1b_c00421{bottom:322.186538pt;}
.y1a_c00421{bottom:349.706527pt;}
.y19_c00421{bottom:377.386516pt;}
.y18_c00421{bottom:404.906505pt;}
.y17_c00421{bottom:432.586494pt;}
.y16_c00421{bottom:460.106483pt;}
.y15_c00421{bottom:487.786472pt;}
.y14_c00421{bottom:515.306461pt;}
.y13_c00421{bottom:542.986449pt;}
.y12_c00421{bottom:570.506438pt;}
.y11_c00421{bottom:598.186427pt;}
.y10_c00421{bottom:625.706416pt;}
.yf_c00421{bottom:653.386405pt;}
.ye_c00421{bottom:680.906394pt;}
.yd_c00421{bottom:702.026386pt;}
.yc_c00421{bottom:736.106372pt;}
.yb_c00421{bottom:755.466364pt;}
.ya_c00421{bottom:778.026355pt;}
.y9_c00421{bottom:910.986302pt;}
.y7_c00421{bottom:938.666291pt;}
.y8_c00421{bottom:946.026288pt;}
.y6_c00421{bottom:966.186280pt;}
.y5_c00421{bottom:993.866269pt;}
.y2_c00421{bottom:1028.426255pt;}
.y1_c00421{bottom:1062.986241pt;}
.h7_c00421{height:33.918736pt;}
.h5_c00421{height:42.063421pt;}
.h8_c00421{height:43.808420pt;}
.h2_c00421{height:48.558731pt;}
.h1_c00421{height:52.134354pt;}
.h6_c00421{height:57.787477pt;}
.h4_c00421{height:62.781225pt;}
.h3_c00421{height:62.812475pt;}
.h0_c00421{height:1122.666667pt;}
.w0_c00421{width:793.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:113.599955pt;}
.xa_c00421{left:126.559949pt;}
.x3_c00421{left:160.799936pt;}
.x4_c00421{left:211.359915pt;}
.x5_c00421{left:227.679909pt;}
.x7_c00421{left:265.599631pt;}
.x2_c00421{left:385.919568pt;}
.x8_c00421{left:432.799827pt;}
.x9_c00421{left:449.119820pt;}
.x6_c00421{left:713.600186pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_209b28685053ea44e39c4b82.woff2')format("woff");}.ff1_c00422{font-family:ff1_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:ff2_c00422;src:url('chunks/assets/font_e7b9a9499461d7efeb403c1d.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_a9195af8a6d9e63fc9a5c91e.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00422{font-family:ff4_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;}
.m0_c00422{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls5_c00422{letter-spacing:0.000000px;}
.ls3_c00422{letter-spacing:0.011169px;}
.ls2_c00422{letter-spacing:0.153901px;}
.ls4_c00422{letter-spacing:0.189300px;}
.ls0_c00422{letter-spacing:0.374281px;}
.ls1_c00422{letter-spacing:2.892299px;}
.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;}
}
.ws1_c00422{word-spacing:-17.999993px;}
.ws3_c00422{word-spacing:-14.939994px;}
.ws0_c00422{word-spacing:-12.434276px;}
.ws2_c00422{word-spacing:-9.731165px;}
.ws4_c00422{word-spacing:0.000000px;}
._9_c00422{margin-left:-12.716934px;}
._1_c00422{margin-left:-1.105374px;}
._0_c00422{width:1.478392px;}
._3_c00422{width:2.958211px;}
._2_c00422{width:4.119577px;}
._7_c00422{width:5.260189px;}
._5_c00422{width:7.860932px;}
._6_c00422{width:9.265296px;}
._8_c00422{width:15.235346px;}
._4_c00422{width:16.332444px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs4_c00422{font-size:38.879984px;}
.fs3_c00422{font-size:48.239981px;}
.fs0_c00422{font-size:59.759976px;}
.fs1_c00422{font-size:66.239974px;}
.fs2_c00422{font-size:71.999971px;}
.y0_c00422{bottom:0.000000px;}
.y4_c00422{bottom:75.720270px;}
.y3_c00422{bottom:113.880254px;}
.y22_c00422{bottom:133.139947px;}
.y21_c00422{bottom:150.419940px;}
.y20_c00422{bottom:157.259937px;}
.y1f_c00422{bottom:168.059933px;}
.y1e_c00422{bottom:186.059926px;}
.y1d_c00422{bottom:192.899923px;}
.y1c_c00422{bottom:204.239918px;}
.y1b_c00422{bottom:337.079865px;}
.y19_c00422{bottom:368.039853px;}
.y1a_c00422{bottom:376.319849px;}
.y18_c00422{bottom:399.179840px;}
.y17_c00422{bottom:430.139828px;}
.y16_c00422{bottom:461.279815px;}
.y15_c00422{bottom:492.239803px;}
.y14_c00422{bottom:523.379791px;}
.y13_c00422{bottom:554.339778px;}
.y12_c00422{bottom:585.479766px;}
.y11_c00422{bottom:616.439753px;}
.y10_c00422{bottom:654.779738px;}
.yf_c00422{bottom:676.559729px;}
.ye_c00422{bottom:701.759719px;}
.yd_c00422{bottom:919.019632px;}
.yb_c00422{bottom:949.979620px;}
.yc_c00422{bottom:958.259617px;}
.ya_c00422{bottom:981.119608px;}
.y9_c00422{bottom:1012.079595px;}
.y8_c00422{bottom:1043.219583px;}
.y7_c00422{bottom:1074.179570px;}
.y6_c00422{bottom:1105.319558px;}
.y5_c00422{bottom:1136.279545px;}
.y2_c00422{bottom:1175.879530px;}
.y1_c00422{bottom:1196.039522px;}
.h7_c00422{height:38.158578px;}
.h5_c00422{height:47.321348px;}
.h8_c00422{height:49.284472px;}
.h2_c00422{height:54.628572px;}
.h1_c00422{height:58.651148px;}
.h6_c00422{height:65.010911px;}
.h4_c00422{height:70.628878px;}
.h3_c00422{height:70.664034px;}
.h0_c00422{height:1263.000000px;}
.w0_c00422{width:892.500000px;}
.x0_c00422{left:0.000000px;}
.x5_c00422{left:127.800262px;}
.x9_c00422{left:129.239948px;}
.xd_c00422{left:142.379943px;}
.x6_c00422{left:180.899930px;}
.x1_c00422{left:181.979927px;}
.xa_c00422{left:201.959907px;}
.x2_c00422{left:329.219408px;}
.x4_c00422{left:434.159826px;}
.x7_c00422{left:691.379723px;}
.x8_c00422{left:709.739716px;}
.xb_c00422{left:719.279712px;}
.xc_c00422{left:737.639705px;}
.x3_c00422{left:765.539694px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls5_c00422{letter-spacing:0.000000pt;}
.ls3_c00422{letter-spacing:0.009928pt;}
.ls2_c00422{letter-spacing:0.136801pt;}
.ls4_c00422{letter-spacing:0.168267pt;}
.ls0_c00422{letter-spacing:0.332694pt;}
.ls1_c00422{letter-spacing:2.570932pt;}
.ws1_c00422{word-spacing:-15.999994pt;}
.ws3_c00422{word-spacing:-13.279995pt;}
.ws0_c00422{word-spacing:-11.052689pt;}
.ws2_c00422{word-spacing:-8.649924pt;}
.ws4_c00422{word-spacing:0.000000pt;}
._9_c00422{margin-left:-11.303941pt;}
._1_c00422{margin-left:-0.982555pt;}
._0_c00422{width:1.314126pt;}
._3_c00422{width:2.629521pt;}
._2_c00422{width:3.661846pt;}
._7_c00422{width:4.675723pt;}
._5_c00422{width:6.987495pt;}
._6_c00422{width:8.235819pt;}
._8_c00422{width:13.542530pt;}
._4_c00422{width:14.517728pt;}
.fs4_c00422{font-size:34.559986pt;}
.fs3_c00422{font-size:42.879983pt;}
.fs0_c00422{font-size:53.119979pt;}
.fs1_c00422{font-size:58.879976pt;}
.fs2_c00422{font-size:63.999974pt;}
.y0_c00422{bottom:0.000000pt;}
.y4_c00422{bottom:67.306906pt;}
.y3_c00422{bottom:101.226893pt;}
.y22_c00422{bottom:118.346619pt;}
.y21_c00422{bottom:133.706613pt;}
.y20_c00422{bottom:139.786611pt;}
.y1f_c00422{bottom:149.386607pt;}
.y1e_c00422{bottom:165.386601pt;}
.y1d_c00422{bottom:171.466598pt;}
.y1c_c00422{bottom:181.546594pt;}
.y1b_c00422{bottom:299.626547pt;}
.y19_c00422{bottom:327.146536pt;}
.y1a_c00422{bottom:334.506533pt;}
.y18_c00422{bottom:354.826525pt;}
.y17_c00422{bottom:382.346514pt;}
.y16_c00422{bottom:410.026503pt;}
.y15_c00422{bottom:437.546492pt;}
.y14_c00422{bottom:465.226481pt;}
.y13_c00422{bottom:492.746470pt;}
.y12_c00422{bottom:520.426458pt;}
.y11_c00422{bottom:547.946447pt;}
.y10_c00422{bottom:582.026434pt;}
.yf_c00422{bottom:601.386426pt;}
.ye_c00422{bottom:623.786417pt;}
.yd_c00422{bottom:816.906340pt;}
.yb_c00422{bottom:844.426329pt;}
.yc_c00422{bottom:851.786326pt;}
.ya_c00422{bottom:872.106318pt;}
.y9_c00422{bottom:899.626307pt;}
.y8_c00422{bottom:927.306296pt;}
.y7_c00422{bottom:954.826285pt;}
.y6_c00422{bottom:982.506274pt;}
.y5_c00422{bottom:1010.026263pt;}
.y2_c00422{bottom:1045.226249pt;}
.y1_c00422{bottom:1063.146241pt;}
.h7_c00422{height:33.918736pt;}
.h5_c00422{height:42.063421pt;}
.h8_c00422{height:43.808420pt;}
.h2_c00422{height:48.558731pt;}
.h1_c00422{height:52.134354pt;}
.h6_c00422{height:57.787477pt;}
.h4_c00422{height:62.781225pt;}
.h3_c00422{height:62.812475pt;}
.h0_c00422{height:1122.666667pt;}
.w0_c00422{width:793.333333pt;}
.x0_c00422{left:0.000000pt;}
.x5_c00422{left:113.600233pt;}
.x9_c00422{left:114.879954pt;}
.xd_c00422{left:126.559949pt;}
.x6_c00422{left:160.799938pt;}
.x1_c00422{left:161.759935pt;}
.xa_c00422{left:179.519917pt;}
.x2_c00422{left:292.639474pt;}
.x4_c00422{left:385.919846pt;}
.x7_c00422{left:614.559754pt;}
.x8_c00422{left:630.879748pt;}
.xb_c00422{left:639.359744pt;}
.xc_c00422{left:655.679738pt;}
.x3_c00422{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cabc69203beb7a895cd53897.woff2')format("woff");}.ff1_c00423{font-family:ff1_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:ff2_c00423;src:url('chunks/assets/font_376a8e43d74d542497db30db.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_230b7fc7432d0e67410ff73f.woff2')format("woff");}.ff3_c00423{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls5_c00423{letter-spacing:0.000000px;}
.ls3_c00423{letter-spacing:0.011169px;}
.ls2_c00423{letter-spacing:0.153901px;}
.ls4_c00423{letter-spacing:0.189300px;}
.ls1_c00423{letter-spacing:0.374281px;}
.ls0_c00423{letter-spacing:22.343811px;}
.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;}
}
.ws2_c00423{word-spacing:-14.939994px;}
.ws0_c00423{word-spacing:-12.434276px;}
.ws1_c00423{word-spacing:-9.731165px;}
.ws3_c00423{word-spacing:0.000000px;}
._4_c00423{margin-left:-12.716934px;}
._1_c00423{margin-left:-1.105374px;}
._0_c00423{width:1.195563px;}
._2_c00423{width:21.598592px;}
._3_c00423{width:23.123162px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs4_c00423{font-size:38.879984px;}
.fs3_c00423{font-size:48.239981px;}
.fs0_c00423{font-size:59.759976px;}
.fs1_c00423{font-size:66.239974px;}
.fs2_c00423{font-size:71.999971px;}
.y0_c00423{bottom:0.000000px;}
.y4_c00423{bottom:75.719970px;}
.y3_c00423{bottom:113.879954px;}
.y14_c00423{bottom:133.499947px;}
.y13_c00423{bottom:151.859939px;}
.y12_c00423{bottom:169.859932px;}
.y11_c00423{bottom:176.699929px;}
.y10_c00423{bottom:188.039925px;}
.yf_c00423{bottom:229.259908px;}
.ye_c00423{bottom:251.039900px;}
.yd_c00423{bottom:280.739888px;}
.yc_c00423{bottom:307.559877px;}
.ya_c00423{bottom:603.299759px;}
.yb_c00423{bottom:611.579755px;}
.y9_c00423{bottom:634.439746px;}
.y8_c00423{bottom:665.399734px;}
.y7_c00423{bottom:703.739719px;}
.y6_c00423{bottom:725.519710px;}
.y5_c00423{bottom:750.899700px;}
.y2_c00423{bottom:1156.979537px;}
.y1_c00423{bottom:1195.859522px;}
.h7_c00423{height:38.158578px;}
.h6_c00423{height:47.344903px;}
.h8_c00423{height:49.284472px;}
.h2_c00423{height:54.628572px;}
.h1_c00423{height:58.651148px;}
.h4_c00423{height:65.010911px;}
.h3_c00423{height:70.628878px;}
.h5_c00423{height:70.664034px;}
.h0_c00423{height:1263.000000px;}
.w0_c00423{width:892.500000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:127.799949px;}
.x4_c00423{left:130.679948px;}
.xa_c00423{left:134.279946px;}
.xc_c00423{left:142.379943px;}
.x6_c00423{left:180.899928px;}
.x5_c00423{left:258.479926px;}
.xb_c00423{left:383.399284px;}
.x7_c00423{left:411.299835px;}
.x8_c00423{left:429.659828px;}
.x2_c00423{left:434.159514px;}
.x3_c00423{left:701.999719px;}
.x9_c00423{left:715.860256px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls5_c00423{letter-spacing:0.000000pt;}
.ls3_c00423{letter-spacing:0.009928pt;}
.ls2_c00423{letter-spacing:0.136801pt;}
.ls4_c00423{letter-spacing:0.168267pt;}
.ls1_c00423{letter-spacing:0.332694pt;}
.ls0_c00423{letter-spacing:19.861165pt;}
.ws2_c00423{word-spacing:-13.279995pt;}
.ws0_c00423{word-spacing:-11.052689pt;}
.ws1_c00423{word-spacing:-8.649924pt;}
.ws3_c00423{word-spacing:0.000000pt;}
._4_c00423{margin-left:-11.303941pt;}
._1_c00423{margin-left:-0.982555pt;}
._0_c00423{width:1.062723pt;}
._2_c00423{width:19.198748pt;}
._3_c00423{width:20.553922pt;}
.fs4_c00423{font-size:34.559986pt;}
.fs3_c00423{font-size:42.879983pt;}
.fs0_c00423{font-size:53.119979pt;}
.fs1_c00423{font-size:58.879976pt;}
.fs2_c00423{font-size:63.999974pt;}
.y0_c00423{bottom:0.000000pt;}
.y4_c00423{bottom:67.306640pt;}
.y3_c00423{bottom:101.226626pt;}
.y14_c00423{bottom:118.666619pt;}
.y13_c00423{bottom:134.986613pt;}
.y12_c00423{bottom:150.986606pt;}
.y11_c00423{bottom:157.066604pt;}
.y10_c00423{bottom:167.146600pt;}
.yf_c00423{bottom:203.786585pt;}
.ye_c00423{bottom:223.146577pt;}
.yd_c00423{bottom:249.546567pt;}
.yc_c00423{bottom:273.386557pt;}
.ya_c00423{bottom:536.266452pt;}
.yb_c00423{bottom:543.626449pt;}
.y9_c00423{bottom:563.946441pt;}
.y8_c00423{bottom:591.466430pt;}
.y7_c00423{bottom:625.546416pt;}
.y6_c00423{bottom:644.906409pt;}
.y5_c00423{bottom:667.466400pt;}
.y2_c00423{bottom:1028.426255pt;}
.y1_c00423{bottom:1062.986241pt;}
.h7_c00423{height:33.918736pt;}
.h6_c00423{height:42.084358pt;}
.h8_c00423{height:43.808420pt;}
.h2_c00423{height:48.558731pt;}
.h1_c00423{height:52.134354pt;}
.h4_c00423{height:57.787477pt;}
.h3_c00423{height:62.781225pt;}
.h5_c00423{height:62.812475pt;}
.h0_c00423{height:1122.666667pt;}
.w0_c00423{width:793.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:113.599955pt;}
.x4_c00423{left:116.159954pt;}
.xa_c00423{left:119.359952pt;}
.xc_c00423{left:126.559949pt;}
.x6_c00423{left:160.799936pt;}
.x5_c00423{left:229.759935pt;}
.xb_c00423{left:340.799364pt;}
.x7_c00423{left:365.599854pt;}
.x8_c00423{left:381.919847pt;}
.x2_c00423{left:385.919568pt;}
.x3_c00423{left:623.999750pt;}
.x9_c00423{left:636.320227pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c26c9e018dd8f477d4b5cc2.woff2')format("woff");}.ff1_c00424{font-family:ff1_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:ff2_c00424;src:url('chunks/assets/font_5983cad38ae0b4e23ed44d7b.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_7e9d68f4f8dfd9d619234685.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;}
.m0_c00424{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls4_c00424{letter-spacing:0.000000px;}
.ls2_c00424{letter-spacing:0.011169px;}
.ls1_c00424{letter-spacing:0.153901px;}
.ls3_c00424{letter-spacing:0.189300px;}
.ls0_c00424{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00424{word-spacing:-14.939994px;}
.ws0_c00424{word-spacing:-12.434276px;}
.ws1_c00424{word-spacing:-9.731165px;}
.ws3_c00424{word-spacing:0.000000px;}
._3_c00424{margin-left:-12.716934px;}
._1_c00424{margin-left:-1.105374px;}
._0_c00424{width:1.478392px;}
._2_c00424{width:23.759887px;}
.fc0_c00424{color:rgb(0,0,0);}
.fs4_c00424{font-size:38.879984px;}
.fs3_c00424{font-size:48.239981px;}
.fs0_c00424{font-size:59.759976px;}
.fs1_c00424{font-size:66.239974px;}
.fs2_c00424{font-size:71.999971px;}
.y0_c00424{bottom:0.000000px;}
.y4_c00424{bottom:75.720270px;}
.y3_c00424{bottom:113.880254px;}
.y15_c00424{bottom:133.499947px;}
.y14_c00424{bottom:151.859939px;}
.y13_c00424{bottom:169.859932px;}
.y12_c00424{bottom:176.699929px;}
.y11_c00424{bottom:188.039925px;}
.y10_c00424{bottom:226.559909px;}
.yf_c00424{bottom:257.519897px;}
.ye_c00424{bottom:288.479885px;}
.yd_c00424{bottom:319.619872px;}
.yc_c00424{bottom:350.579860px;}
.yb_c00424{bottom:388.919844px;}
.ya_c00424{bottom:410.699836px;}
.y9_c00424{bottom:436.079826px;}
.y8_c00424{bottom:1074.179570px;}
.y6_c00424{bottom:1105.319558px;}
.y7_c00424{bottom:1113.599555px;}
.y5_c00424{bottom:1136.279545px;}
.y2_c00424{bottom:1175.879530px;}
.y1_c00424{bottom:1196.039522px;}
.h7_c00424{height:38.158578px;}
.h4_c00424{height:47.344903px;}
.h8_c00424{height:49.284472px;}
.h2_c00424{height:54.628572px;}
.h1_c00424{height:58.651148px;}
.h6_c00424{height:65.010911px;}
.h5_c00424{height:70.628878px;}
.h3_c00424{height:70.664034px;}
.h0_c00424{height:1263.000000px;}
.w0_c00424{width:892.500000px;}
.x0_c00424{left:0.000000px;}
.x5_c00424{left:127.800262px;}
.xc_c00424{left:142.379943px;}
.xa_c00424{left:144.719942px;}
.x6_c00424{left:180.899928px;}
.x1_c00424{left:181.979927px;}
.x2_c00424{left:329.219408px;}
.xb_c00424{left:349.380400px;}
.x4_c00424{left:434.159826px;}
.x7_c00424{left:690.659724px;}
.x9_c00424{left:705.418844px;}
.x8_c00424{left:709.019716px;}
.x3_c00424{left:765.539694px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls4_c00424{letter-spacing:0.000000pt;}
.ls2_c00424{letter-spacing:0.009928pt;}
.ls1_c00424{letter-spacing:0.136801pt;}
.ls3_c00424{letter-spacing:0.168267pt;}
.ls0_c00424{letter-spacing:0.332694pt;}
.ws2_c00424{word-spacing:-13.279995pt;}
.ws0_c00424{word-spacing:-11.052689pt;}
.ws1_c00424{word-spacing:-8.649924pt;}
.ws3_c00424{word-spacing:0.000000pt;}
._3_c00424{margin-left:-11.303941pt;}
._1_c00424{margin-left:-0.982555pt;}
._0_c00424{width:1.314126pt;}
._2_c00424{width:21.119899pt;}
.fs4_c00424{font-size:34.559986pt;}
.fs3_c00424{font-size:42.879983pt;}
.fs0_c00424{font-size:53.119979pt;}
.fs1_c00424{font-size:58.879976pt;}
.fs2_c00424{font-size:63.999974pt;}
.y0_c00424{bottom:0.000000pt;}
.y4_c00424{bottom:67.306906pt;}
.y3_c00424{bottom:101.226893pt;}
.y15_c00424{bottom:118.666619pt;}
.y14_c00424{bottom:134.986613pt;}
.y13_c00424{bottom:150.986606pt;}
.y12_c00424{bottom:157.066604pt;}
.y11_c00424{bottom:167.146600pt;}
.y10_c00424{bottom:201.386586pt;}
.yf_c00424{bottom:228.906575pt;}
.ye_c00424{bottom:256.426564pt;}
.yd_c00424{bottom:284.106553pt;}
.yc_c00424{bottom:311.626542pt;}
.yb_c00424{bottom:345.706528pt;}
.ya_c00424{bottom:365.066521pt;}
.y9_c00424{bottom:387.626512pt;}
.y8_c00424{bottom:954.826285pt;}
.y6_c00424{bottom:982.506274pt;}
.y7_c00424{bottom:989.866271pt;}
.y5_c00424{bottom:1010.026263pt;}
.y2_c00424{bottom:1045.226249pt;}
.y1_c00424{bottom:1063.146241pt;}
.h7_c00424{height:33.918736pt;}
.h4_c00424{height:42.084358pt;}
.h8_c00424{height:43.808420pt;}
.h2_c00424{height:48.558731pt;}
.h1_c00424{height:52.134354pt;}
.h6_c00424{height:57.787477pt;}
.h5_c00424{height:62.781225pt;}
.h3_c00424{height:62.812475pt;}
.h0_c00424{height:1122.666667pt;}
.w0_c00424{width:793.333333pt;}
.x0_c00424{left:0.000000pt;}
.x5_c00424{left:113.600233pt;}
.xc_c00424{left:126.559949pt;}
.xa_c00424{left:128.639949pt;}
.x6_c00424{left:160.799936pt;}
.x1_c00424{left:161.759935pt;}
.x2_c00424{left:292.639474pt;}
.xb_c00424{left:310.560356pt;}
.x4_c00424{left:385.919846pt;}
.x7_c00424{left:613.919754pt;}
.x9_c00424{left:627.038972pt;}
.x8_c00424{left:630.239748pt;}
.x3_c00424{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e84c08f3caf1df907cadefb.woff2')format("woff");}.ff1_c00425{font-family:ff1_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:ff2_c00425;src:url('chunks/assets/font_376a8e43d74d542497db30db.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_faeee19477461472536f69f1.woff2')format("woff");}.ff3_c00425{font-family:ff3_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;}
.m0_c00425{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls4_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:0.010620px;}
.ls2_c00425{letter-spacing:0.011169px;}
.ls3_c00425{letter-spacing:0.189300px;}
.ls0_c00425{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00425{word-spacing:-17.999993px;}
.ws3_c00425{word-spacing:-14.939994px;}
.ws1_c00425{word-spacing:-12.434276px;}
.ws2_c00425{word-spacing:-9.731165px;}
.ws4_c00425{word-spacing:0.000000px;}
._11_c00425{margin-left:-9.492626px;}
._1_c00425{margin-left:-1.105374px;}
._0_c00425{width:1.195563px;}
._8_c00425{width:2.320889px;}
._5_c00425{width:4.360214px;}
._4_c00425{width:5.450497px;}
._7_c00425{width:6.803945px;}
._3_c00425{width:8.911061px;}
._10_c00425{width:9.961852px;}
._f_c00425{width:11.022596px;}
._2_c00425{width:12.233051px;}
._d_c00425{width:14.188913px;}
._e_c00425{width:15.267176px;}
._b_c00425{width:16.865132px;}
._6_c00425{width:20.014902px;}
._c_c00425{width:23.979654px;}
._a_c00425{width:40.102883px;}
._9_c00425{width:41.205954px;}
.fc0_c00425{color:rgb(0,0,0);}
.fs4_c00425{font-size:38.879984px;}
.fs3_c00425{font-size:48.239981px;}
.fs0_c00425{font-size:59.759976px;}
.fs1_c00425{font-size:66.239974px;}
.fs2_c00425{font-size:71.999971px;}
.y0_c00425{bottom:0.000000px;}
.y4_c00425{bottom:75.899970px;}
.y3_c00425{bottom:114.059954px;}
.y28_c00425{bottom:133.679947px;}
.y27_c00425{bottom:152.039939px;}
.y26_c00425{bottom:170.039932px;}
.y25_c00425{bottom:176.879929px;}
.y24_c00425{bottom:187.319925px;}
.y23_c00425{bottom:204.599918px;}
.y22_c00425{bottom:211.439915px;}
.y21_c00425{bottom:222.599911px;}
.y20_c00425{bottom:341.939863px;}
.y1f_c00425{bottom:373.079851px;}
.y1e_c00425{bottom:404.039838px;}
.y1d_c00425{bottom:435.179826px;}
.y1b_c00425{bottom:466.139814px;}
.y1c_c00425{bottom:474.419810px;}
.y1a_c00425{bottom:497.279801px;}
.y19_c00425{bottom:528.239789px;}
.y18_c00425{bottom:559.379776px;}
.y17_c00425{bottom:590.339764px;}
.y16_c00425{bottom:621.479751px;}
.y15_c00425{bottom:652.439739px;}
.y14_c00425{bottom:683.579727px;}
.y12_c00425{bottom:714.539714px;}
.y13_c00425{bottom:722.819711px;}
.y11_c00425{bottom:745.679702px;}
.y10_c00425{bottom:776.639689px;}
.yf_c00425{bottom:807.779677px;}
.ye_c00425{bottom:838.739665px;}
.yd_c00425{bottom:869.879652px;}
.yc_c00425{bottom:900.839640px;}
.yb_c00425{bottom:931.979627px;}
.ya_c00425{bottom:962.939615px;}
.y9_c00425{bottom:994.079602px;}
.y8_c00425{bottom:1025.039590px;}
.y7_c00425{bottom:1056.179578px;}
.y6_c00425{bottom:1087.139565px;}
.y5_c00425{bottom:1118.279553px;}
.y2_c00425{bottom:1157.159537px;}
.y1_c00425{bottom:1196.039522px;}
.h6_c00425{height:38.158578px;}
.h5_c00425{height:47.321348px;}
.h7_c00425{height:49.284472px;}
.h2_c00425{height:54.628572px;}
.h1_c00425{height:58.651148px;}
.h4_c00425{height:70.628878px;}
.h3_c00425{height:70.664034px;}
.h0_c00425{height:1263.000000px;}
.w0_c00425{width:892.500000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:127.619949px;}
.x8_c00425{left:142.199943px;}
.x3_c00425{left:180.539887px;}
.x6_c00425{left:228.059909px;}
.x7_c00425{left:246.419901px;}
.x4_c00425{left:268.019893px;}
.x5_c00425{left:286.379885px;}
.x2_c00425{left:433.979514px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls4_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:0.009440pt;}
.ls2_c00425{letter-spacing:0.009928pt;}
.ls3_c00425{letter-spacing:0.168267pt;}
.ls0_c00425{letter-spacing:0.332694pt;}
.ws0_c00425{word-spacing:-15.999994pt;}
.ws3_c00425{word-spacing:-13.279995pt;}
.ws1_c00425{word-spacing:-11.052689pt;}
.ws2_c00425{word-spacing:-8.649924pt;}
.ws4_c00425{word-spacing:0.000000pt;}
._11_c00425{margin-left:-8.437889pt;}
._1_c00425{margin-left:-0.982555pt;}
._0_c00425{width:1.062723pt;}
._8_c00425{width:2.063013pt;}
._5_c00425{width:3.875746pt;}
._4_c00425{width:4.844886pt;}
._7_c00425{width:6.047951pt;}
._3_c00425{width:7.920943pt;}
._10_c00425{width:8.854980pt;}
._f_c00425{width:9.797863pt;}
._2_c00425{width:10.873823pt;}
._d_c00425{width:12.612367pt;}
._e_c00425{width:13.570823pt;}
._b_c00425{width:14.991229pt;}
._6_c00425{width:17.791024pt;}
._c_c00425{width:21.315248pt;}
._a_c00425{width:35.647007pt;}
._9_c00425{width:36.627514pt;}
.fs4_c00425{font-size:34.559986pt;}
.fs3_c00425{font-size:42.879983pt;}
.fs0_c00425{font-size:53.119979pt;}
.fs1_c00425{font-size:58.879976pt;}
.fs2_c00425{font-size:63.999974pt;}
.y0_c00425{bottom:0.000000pt;}
.y4_c00425{bottom:67.466640pt;}
.y3_c00425{bottom:101.386626pt;}
.y28_c00425{bottom:118.826619pt;}
.y27_c00425{bottom:135.146613pt;}
.y26_c00425{bottom:151.146606pt;}
.y25_c00425{bottom:157.226604pt;}
.y24_c00425{bottom:166.506600pt;}
.y23_c00425{bottom:181.866594pt;}
.y22_c00425{bottom:187.946591pt;}
.y21_c00425{bottom:197.866588pt;}
.y20_c00425{bottom:303.946545pt;}
.y1f_c00425{bottom:331.626534pt;}
.y1e_c00425{bottom:359.146523pt;}
.y1d_c00425{bottom:386.826512pt;}
.y1b_c00425{bottom:414.346501pt;}
.y1c_c00425{bottom:421.706498pt;}
.y1a_c00425{bottom:442.026490pt;}
.y19_c00425{bottom:469.546479pt;}
.y18_c00425{bottom:497.226468pt;}
.y17_c00425{bottom:524.746457pt;}
.y16_c00425{bottom:552.426446pt;}
.y15_c00425{bottom:579.946435pt;}
.y14_c00425{bottom:607.626424pt;}
.y12_c00425{bottom:635.146413pt;}
.y13_c00425{bottom:642.506410pt;}
.y11_c00425{bottom:662.826402pt;}
.y10_c00425{bottom:690.346391pt;}
.yf_c00425{bottom:718.026379pt;}
.ye_c00425{bottom:745.546368pt;}
.yd_c00425{bottom:773.226357pt;}
.yc_c00425{bottom:800.746346pt;}
.yb_c00425{bottom:828.426335pt;}
.ya_c00425{bottom:855.946324pt;}
.y9_c00425{bottom:883.626313pt;}
.y8_c00425{bottom:911.146302pt;}
.y7_c00425{bottom:938.826291pt;}
.y6_c00425{bottom:966.346280pt;}
.y5_c00425{bottom:994.026269pt;}
.y2_c00425{bottom:1028.586255pt;}
.y1_c00425{bottom:1063.146241pt;}
.h6_c00425{height:33.918736pt;}
.h5_c00425{height:42.063421pt;}
.h7_c00425{height:43.808420pt;}
.h2_c00425{height:48.558731pt;}
.h1_c00425{height:52.134354pt;}
.h4_c00425{height:62.781225pt;}
.h3_c00425{height:62.812475pt;}
.h0_c00425{height:1122.666667pt;}
.w0_c00425{width:793.333333pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:113.439955pt;}
.x8_c00425{left:126.399949pt;}
.x3_c00425{left:160.479899pt;}
.x6_c00425{left:202.719919pt;}
.x7_c00425{left:219.039912pt;}
.x4_c00425{left:238.239905pt;}
.x5_c00425{left:254.559898pt;}
.x2_c00425{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_523cc78fdc8d7a819985e8a1.woff2')format("woff");}.ff1_c00426{font-family:ff1_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:ff2_c00426;src:url('chunks/assets/font_439146fd860bf601c1ea85cb.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_5176355a101b408e038a334f.woff2')format("woff");}.ff3_c00426{font-family:ff3_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:ff4_c00426;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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;}
.m0_c00426{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls4_c00426{letter-spacing:0.000000px;}
.ls2_c00426{letter-spacing:0.011169px;}
.ls1_c00426{letter-spacing:0.153901px;}
.ls3_c00426{letter-spacing:0.189300px;}
.ls0_c00426{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00426{word-spacing:-14.939994px;}
.ws0_c00426{word-spacing:-12.434276px;}
.ws1_c00426{word-spacing:-9.731165px;}
.ws3_c00426{word-spacing:0.000000px;}
._5_c00426{margin-left:-12.716934px;}
._1_c00426{margin-left:-1.105374px;}
._0_c00426{width:1.478392px;}
._3_c00426{width:7.862979px;}
._2_c00426{width:8.942809px;}
._4_c00426{width:10.367158px;}
.fc0_c00426{color:rgb(0,0,0);}
.fs4_c00426{font-size:38.879984px;}
.fs3_c00426{font-size:48.239981px;}
.fs0_c00426{font-size:59.759976px;}
.fs1_c00426{font-size:66.239974px;}
.fs2_c00426{font-size:71.999971px;}
.y0_c00426{bottom:0.000000px;}
.y4_c00426{bottom:75.720270px;}
.y3_c00426{bottom:113.880254px;}
.y17_c00426{bottom:133.499947px;}
.y16_c00426{bottom:151.499939px;}
.y15_c00426{bottom:158.339937px;}
.y14_c00426{bottom:169.679932px;}
.y13_c00426{bottom:328.799868px;}
.y12_c00426{bottom:359.759856px;}
.y11_c00426{bottom:390.899844px;}
.y10_c00426{bottom:421.859831px;}
.yf_c00426{bottom:460.199816px;}
.ye_c00426{bottom:481.979807px;}
.yd_c00426{bottom:507.359797px;}
.yc_c00426{bottom:677.279729px;}
.ya_c00426{bottom:708.239717px;}
.yb_c00426{bottom:716.519713px;}
.y9_c00426{bottom:739.379704px;}
.y8_c00426{bottom:770.339692px;}
.y7_c00426{bottom:808.679677px;}
.y6_c00426{bottom:830.459668px;}
.y5_c00426{bottom:855.659658px;}
.y2_c00426{bottom:1175.879530px;}
.y1_c00426{bottom:1196.039522px;}
.h7_c00426{height:38.158578px;}
.h6_c00426{height:47.344903px;}
.h8_c00426{height:49.284472px;}
.h2_c00426{height:54.628572px;}
.h1_c00426{height:58.651148px;}
.h4_c00426{height:65.010911px;}
.h3_c00426{height:70.628878px;}
.h5_c00426{height:70.664034px;}
.h0_c00426{height:1263.000000px;}
.w0_c00426{width:892.500000px;}
.x0_c00426{left:0.000000px;}
.x5_c00426{left:127.800262px;}
.xd_c00426{left:136.439945px;}
.xe_c00426{left:142.379943px;}
.x7_c00426{left:158.759936px;}
.x9_c00426{left:180.899928px;}
.x1_c00426{left:181.979927px;}
.x2_c00426{left:329.219408px;}
.x8_c00426{left:383.400431px;}
.x4_c00426{left:434.159826px;}
.x6_c00426{left:690.659724px;}
.xa_c00426{left:718.739713px;}
.xc_c00426{left:727.919709px;}
.xb_c00426{left:737.099705px;}
.x3_c00426{left:765.539694px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls4_c00426{letter-spacing:0.000000pt;}
.ls2_c00426{letter-spacing:0.009928pt;}
.ls1_c00426{letter-spacing:0.136801pt;}
.ls3_c00426{letter-spacing:0.168267pt;}
.ls0_c00426{letter-spacing:0.332694pt;}
.ws2_c00426{word-spacing:-13.279995pt;}
.ws0_c00426{word-spacing:-11.052689pt;}
.ws1_c00426{word-spacing:-8.649924pt;}
.ws3_c00426{word-spacing:0.000000pt;}
._5_c00426{margin-left:-11.303941pt;}
._1_c00426{margin-left:-0.982555pt;}
._0_c00426{width:1.314126pt;}
._3_c00426{width:6.989314pt;}
._2_c00426{width:7.949164pt;}
._4_c00426{width:9.215251pt;}
.fs4_c00426{font-size:34.559986pt;}
.fs3_c00426{font-size:42.879983pt;}
.fs0_c00426{font-size:53.119979pt;}
.fs1_c00426{font-size:58.879976pt;}
.fs2_c00426{font-size:63.999974pt;}
.y0_c00426{bottom:0.000000pt;}
.y4_c00426{bottom:67.306906pt;}
.y3_c00426{bottom:101.226893pt;}
.y17_c00426{bottom:118.666619pt;}
.y16_c00426{bottom:134.666613pt;}
.y15_c00426{bottom:140.746610pt;}
.y14_c00426{bottom:150.826606pt;}
.y13_c00426{bottom:292.266550pt;}
.y12_c00426{bottom:319.786539pt;}
.y11_c00426{bottom:347.466528pt;}
.y10_c00426{bottom:374.986517pt;}
.yf_c00426{bottom:409.066503pt;}
.ye_c00426{bottom:428.426495pt;}
.yd_c00426{bottom:450.986486pt;}
.yc_c00426{bottom:602.026426pt;}
.ya_c00426{bottom:629.546415pt;}
.yb_c00426{bottom:636.906412pt;}
.y9_c00426{bottom:657.226404pt;}
.y8_c00426{bottom:684.746393pt;}
.y7_c00426{bottom:718.826379pt;}
.y6_c00426{bottom:738.186371pt;}
.y5_c00426{bottom:760.586362pt;}
.y2_c00426{bottom:1045.226249pt;}
.y1_c00426{bottom:1063.146241pt;}
.h7_c00426{height:33.918736pt;}
.h6_c00426{height:42.084358pt;}
.h8_c00426{height:43.808420pt;}
.h2_c00426{height:48.558731pt;}
.h1_c00426{height:52.134354pt;}
.h4_c00426{height:57.787477pt;}
.h3_c00426{height:62.781225pt;}
.h5_c00426{height:62.812475pt;}
.h0_c00426{height:1122.666667pt;}
.w0_c00426{width:793.333333pt;}
.x0_c00426{left:0.000000pt;}
.x5_c00426{left:113.600233pt;}
.xd_c00426{left:121.279951pt;}
.xe_c00426{left:126.559949pt;}
.x7_c00426{left:141.119944pt;}
.x9_c00426{left:160.799936pt;}
.x1_c00426{left:161.759935pt;}
.x2_c00426{left:292.639474pt;}
.x8_c00426{left:340.800383pt;}
.x4_c00426{left:385.919846pt;}
.x6_c00426{left:613.919754pt;}
.xa_c00426{left:638.879744pt;}
.xc_c00426{left:647.039741pt;}
.xb_c00426{left:655.199738pt;}
.x3_c00426{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_caafd6610fad4a78ceb14f20.woff2')format("woff");}.ff1_c00427{font-family:ff1_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:ff2_c00427;src:url('chunks/assets/font_9c0dba549325613737740e50.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c00427{font-family:ff3_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:ff4_c00427;src:url('chunks/assets/font_7e7ab17e4b8f017923f581ce.woff2')format("woff");}.ff4_c00427{font-family:ff4_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;}
.m0_c00427{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls4_c00427{letter-spacing:0.000000px;}
.ls2_c00427{letter-spacing:0.011169px;}
.ls1_c00427{letter-spacing:0.153901px;}
.ls3_c00427{letter-spacing:0.189300px;}
.ls0_c00427{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00427{word-spacing:-14.939994px;}
.ws0_c00427{word-spacing:-12.434276px;}
.ws1_c00427{word-spacing:-9.731165px;}
.ws3_c00427{word-spacing:0.000000px;}
._3_c00427{margin-left:-12.716934px;}
._1_c00427{margin-left:-1.105374px;}
._0_c00427{width:1.195563px;}
._2_c00427{width:25.154596px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs4_c00427{font-size:38.879984px;}
.fs3_c00427{font-size:48.239981px;}
.fs0_c00427{font-size:59.759976px;}
.fs1_c00427{font-size:66.239974px;}
.fs2_c00427{font-size:71.999971px;}
.y0_c00427{bottom:0.000000px;}
.y4_c00427{bottom:75.719970px;}
.y3_c00427{bottom:113.879954px;}
.y15_c00427{bottom:133.139947px;}
.y14_c00427{bottom:150.419940px;}
.y13_c00427{bottom:157.259937px;}
.y12_c00427{bottom:168.599933px;}
.y11_c00427{bottom:210.719916px;}
.y10_c00427{bottom:241.679903px;}
.yf_c00427{bottom:280.019888px;}
.ye_c00427{bottom:301.799879px;}
.yd_c00427{bottom:331.319867px;}
.yc_c00427{bottom:358.139857px;}
.ya_c00427{bottom:541.559783px;}
.yb_c00427{bottom:549.839780px;}
.y9_c00427{bottom:572.519771px;}
.y8_c00427{bottom:610.859756px;}
.y7_c00427{bottom:647.579741px;}
.y6_c00427{bottom:669.539732px;}
.y5_c00427{bottom:694.919722px;}
.y2_c00427{bottom:1156.979537px;}
.y1_c00427{bottom:1195.859522px;}
.h7_c00427{height:38.158578px;}
.h6_c00427{height:47.344903px;}
.h2_c00427{height:54.628572px;}
.h1_c00427{height:58.651148px;}
.h4_c00427{height:65.010911px;}
.h3_c00427{height:70.628878px;}
.h5_c00427{height:70.664034px;}
.h0_c00427{height:1263.000000px;}
.w0_c00427{width:892.500000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:127.799949px;}
.xb_c00427{left:131.579947px;}
.xd_c00427{left:142.379943px;}
.x4_c00427{left:146.159942px;}
.x7_c00427{left:180.899928px;}
.x5_c00427{left:298.799597px;}
.xc_c00427{left:419.400113px;}
.x2_c00427{left:434.159514px;}
.x6_c00427{left:446.579463px;}
.x8_c00427{left:518.219793px;}
.x9_c00427{left:536.579785px;}
.x3_c00427{left:703.079719px;}
.xa_c00427{left:734.759706px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls4_c00427{letter-spacing:0.000000pt;}
.ls2_c00427{letter-spacing:0.009928pt;}
.ls1_c00427{letter-spacing:0.136801pt;}
.ls3_c00427{letter-spacing:0.168267pt;}
.ls0_c00427{letter-spacing:0.332694pt;}
.ws2_c00427{word-spacing:-13.279995pt;}
.ws0_c00427{word-spacing:-11.052689pt;}
.ws1_c00427{word-spacing:-8.649924pt;}
.ws3_c00427{word-spacing:0.000000pt;}
._3_c00427{margin-left:-11.303941pt;}
._1_c00427{margin-left:-0.982555pt;}
._0_c00427{width:1.062723pt;}
._2_c00427{width:22.359641pt;}
.fs4_c00427{font-size:34.559986pt;}
.fs3_c00427{font-size:42.879983pt;}
.fs0_c00427{font-size:53.119979pt;}
.fs1_c00427{font-size:58.879976pt;}
.fs2_c00427{font-size:63.999974pt;}
.y0_c00427{bottom:0.000000pt;}
.y4_c00427{bottom:67.306640pt;}
.y3_c00427{bottom:101.226626pt;}
.y15_c00427{bottom:118.346619pt;}
.y14_c00427{bottom:133.706613pt;}
.y13_c00427{bottom:139.786611pt;}
.y12_c00427{bottom:149.866607pt;}
.y11_c00427{bottom:187.306592pt;}
.y10_c00427{bottom:214.826581pt;}
.yf_c00427{bottom:248.906567pt;}
.ye_c00427{bottom:268.266559pt;}
.yd_c00427{bottom:294.506549pt;}
.yc_c00427{bottom:318.346539pt;}
.ya_c00427{bottom:481.386474pt;}
.yb_c00427{bottom:488.746471pt;}
.y9_c00427{bottom:508.906463pt;}
.y8_c00427{bottom:542.986449pt;}
.y7_c00427{bottom:575.626436pt;}
.y6_c00427{bottom:595.146429pt;}
.y5_c00427{bottom:617.706420pt;}
.y2_c00427{bottom:1028.426255pt;}
.y1_c00427{bottom:1062.986241pt;}
.h7_c00427{height:33.918736pt;}
.h6_c00427{height:42.084358pt;}
.h2_c00427{height:48.558731pt;}
.h1_c00427{height:52.134354pt;}
.h4_c00427{height:57.787477pt;}
.h3_c00427{height:62.781225pt;}
.h5_c00427{height:62.812475pt;}
.h0_c00427{height:1122.666667pt;}
.w0_c00427{width:793.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:113.599955pt;}
.xb_c00427{left:116.959953pt;}
.xd_c00427{left:126.559949pt;}
.x4_c00427{left:129.919948pt;}
.x7_c00427{left:160.799936pt;}
.x5_c00427{left:265.599642pt;}
.xc_c00427{left:372.800100pt;}
.x2_c00427{left:385.919568pt;}
.x6_c00427{left:396.959523pt;}
.x8_c00427{left:460.639816pt;}
.x9_c00427{left:476.959809pt;}
.x3_c00427{left:624.959750pt;}
.xa_c00427{left:653.119739pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1ffd6f449246cacb777ff31.woff2')format("woff");}.ff1_c00428{font-family:ff1_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:ff2_c00428;src:url('chunks/assets/font_9cc07d7cd0438a37243f8b49.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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_7274b22944117438a0beea14.woff2')format("woff");}.ff4_c00428{font-family:ff4_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;}
.m0_c00428{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls4_c00428{letter-spacing:0.000000px;}
.ls2_c00428{letter-spacing:0.011169px;}
.ls1_c00428{letter-spacing:0.153901px;}
.ls3_c00428{letter-spacing:0.189300px;}
.ls0_c00428{letter-spacing:0.374281px;}
.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:-14.939994px;}
.ws0_c00428{word-spacing:-12.434276px;}
.ws1_c00428{word-spacing:-9.731165px;}
.ws3_c00428{word-spacing:0.000000px;}
._d_c00428{margin-left:-12.716934px;}
._1_c00428{margin-left:-1.105374px;}
._0_c00428{width:1.478392px;}
._9_c00428{width:2.842828px;}
._4_c00428{width:4.990624px;}
._3_c00428{width:6.011569px;}
._8_c00428{width:8.052871px;}
._7_c00428{width:9.073930px;}
._5_c00428{width:10.135602px;}
._6_c00428{width:11.368115px;}
._b_c00428{width:15.406578px;}
._c_c00428{width:16.830661px;}
._2_c00428{width:21.598592px;}
._a_c00428{width:23.326586px;}
.fc0_c00428{color:rgb(0,0,0);}
.fs4_c00428{font-size:38.879984px;}
.fs3_c00428{font-size:48.239981px;}
.fs0_c00428{font-size:59.759976px;}
.fs1_c00428{font-size:66.239974px;}
.fs2_c00428{font-size:71.999971px;}
.y0_c00428{bottom:0.000000px;}
.y4_c00428{bottom:75.720270px;}
.y3_c00428{bottom:113.880254px;}
.y25_c00428{bottom:133.499947px;}
.y24_c00428{bottom:151.859939px;}
.y23_c00428{bottom:170.219932px;}
.y22_c00428{bottom:188.219925px;}
.y21_c00428{bottom:195.059922px;}
.y20_c00428{bottom:206.399917px;}
.y1f_c00428{bottom:298.739881px;}
.y1e_c00428{bottom:329.699868px;}
.y1d_c00428{bottom:360.839856px;}
.y1c_c00428{bottom:391.799843px;}
.y1b_c00428{bottom:422.939831px;}
.y1a_c00428{bottom:453.899818px;}
.y19_c00428{bottom:484.859806px;}
.y18_c00428{bottom:515.999794px;}
.y17_c00428{bottom:546.959781px;}
.y16_c00428{bottom:578.099769px;}
.y15_c00428{bottom:609.059756px;}
.y14_c00428{bottom:640.199744px;}
.y13_c00428{bottom:671.159732px;}
.y12_c00428{bottom:702.299719px;}
.y11_c00428{bottom:733.259707px;}
.y10_c00428{bottom:764.399694px;}
.yf_c00428{bottom:795.359682px;}
.ye_c00428{bottom:826.499669px;}
.yd_c00428{bottom:857.459657px;}
.yc_c00428{bottom:888.599645px;}
.yb_c00428{bottom:919.199632px;}
.ya_c00428{bottom:957.899617px;}
.y9_c00428{bottom:979.679608px;}
.y8_c00428{bottom:1004.879598px;}
.y7_c00428{bottom:1105.319558px;}
.y5_c00428{bottom:1136.279545px;}
.y6_c00428{bottom:1144.559542px;}
.y2_c00428{bottom:1175.879530px;}
.y1_c00428{bottom:1196.039522px;}
.h7_c00428{height:38.158578px;}
.h4_c00428{height:47.344903px;}
.h8_c00428{height:49.284472px;}
.h2_c00428{height:54.628572px;}
.h1_c00428{height:58.651148px;}
.h6_c00428{height:65.010911px;}
.h5_c00428{height:70.628878px;}
.h3_c00428{height:70.664034px;}
.h0_c00428{height:1263.000000px;}
.w0_c00428{width:892.500000px;}
.x0_c00428{left:0.000000px;}
.x5_c00428{left:127.800262px;}
.x9_c00428{left:140.939944px;}
.xc_c00428{left:142.379943px;}
.xb_c00428{left:180.899928px;}
.x1_c00428{left:181.979927px;}
.x2_c00428{left:329.219408px;}
.xa_c00428{left:383.400269px;}
.x4_c00428{left:434.159826px;}
.x6_c00428{left:691.199724px;}
.x7_c00428{left:709.559716px;}
.x8_c00428{left:721.619711px;}
.x3_c00428{left:765.539694px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls4_c00428{letter-spacing:0.000000pt;}
.ls2_c00428{letter-spacing:0.009928pt;}
.ls1_c00428{letter-spacing:0.136801pt;}
.ls3_c00428{letter-spacing:0.168267pt;}
.ls0_c00428{letter-spacing:0.332694pt;}
.ws2_c00428{word-spacing:-13.279995pt;}
.ws0_c00428{word-spacing:-11.052689pt;}
.ws1_c00428{word-spacing:-8.649924pt;}
.ws3_c00428{word-spacing:0.000000pt;}
._d_c00428{margin-left:-11.303941pt;}
._1_c00428{margin-left:-0.982555pt;}
._0_c00428{width:1.314126pt;}
._9_c00428{width:2.526958pt;}
._4_c00428{width:4.436110pt;}
._3_c00428{width:5.343617pt;}
._8_c00428{width:7.158107pt;}
._7_c00428{width:8.065715pt;}
._5_c00428{width:9.009424pt;}
._6_c00428{width:10.104991pt;}
._b_c00428{width:13.694736pt;}
._c_c00428{width:14.960588pt;}
._2_c00428{width:19.198748pt;}
._a_c00428{width:20.734743pt;}
.fs4_c00428{font-size:34.559986pt;}
.fs3_c00428{font-size:42.879983pt;}
.fs0_c00428{font-size:53.119979pt;}
.fs1_c00428{font-size:58.879976pt;}
.fs2_c00428{font-size:63.999974pt;}
.y0_c00428{bottom:0.000000pt;}
.y4_c00428{bottom:67.306906pt;}
.y3_c00428{bottom:101.226893pt;}
.y25_c00428{bottom:118.666619pt;}
.y24_c00428{bottom:134.986613pt;}
.y23_c00428{bottom:151.306606pt;}
.y22_c00428{bottom:167.306600pt;}
.y21_c00428{bottom:173.386597pt;}
.y20_c00428{bottom:183.466593pt;}
.y1f_c00428{bottom:265.546560pt;}
.y1e_c00428{bottom:293.066549pt;}
.y1d_c00428{bottom:320.746538pt;}
.y1c_c00428{bottom:348.266527pt;}
.y1b_c00428{bottom:375.946516pt;}
.y1a_c00428{bottom:403.466505pt;}
.y19_c00428{bottom:430.986494pt;}
.y18_c00428{bottom:458.666483pt;}
.y17_c00428{bottom:486.186472pt;}
.y16_c00428{bottom:513.866461pt;}
.y15_c00428{bottom:541.386450pt;}
.y14_c00428{bottom:569.066439pt;}
.y13_c00428{bottom:596.586428pt;}
.y12_c00428{bottom:624.266417pt;}
.y11_c00428{bottom:651.786406pt;}
.y10_c00428{bottom:679.466395pt;}
.yf_c00428{bottom:706.986384pt;}
.ye_c00428{bottom:734.666373pt;}
.yd_c00428{bottom:762.186362pt;}
.yc_c00428{bottom:789.866351pt;}
.yb_c00428{bottom:817.066340pt;}
.ya_c00428{bottom:851.466326pt;}
.y9_c00428{bottom:870.826318pt;}
.y8_c00428{bottom:893.226309pt;}
.y7_c00428{bottom:982.506274pt;}
.y5_c00428{bottom:1010.026263pt;}
.y6_c00428{bottom:1017.386260pt;}
.y2_c00428{bottom:1045.226249pt;}
.y1_c00428{bottom:1063.146241pt;}
.h7_c00428{height:33.918736pt;}
.h4_c00428{height:42.084358pt;}
.h8_c00428{height:43.808420pt;}
.h2_c00428{height:48.558731pt;}
.h1_c00428{height:52.134354pt;}
.h6_c00428{height:57.787477pt;}
.h5_c00428{height:62.781225pt;}
.h3_c00428{height:62.812475pt;}
.h0_c00428{height:1122.666667pt;}
.w0_c00428{width:793.333333pt;}
.x0_c00428{left:0.000000pt;}
.x5_c00428{left:113.600233pt;}
.x9_c00428{left:125.279950pt;}
.xc_c00428{left:126.559949pt;}
.xb_c00428{left:160.799936pt;}
.x1_c00428{left:161.759935pt;}
.x2_c00428{left:292.639474pt;}
.xa_c00428{left:340.800239pt;}
.x4_c00428{left:385.919846pt;}
.x6_c00428{left:614.399754pt;}
.x7_c00428{left:630.719748pt;}
.x8_c00428{left:641.439743pt;}
.x3_c00428{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b249c0af22b180424eb205fe.woff2')format("woff");}.ff1_c00429{font-family:ff1_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:ff2_c00429;src:url('chunks/assets/font_eda5495f5954b8fc63cde009.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_129626d10aabe927c2d62026.woff2')format("woff");}.ff3_c00429{font-family:ff3_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:ff4_c00429;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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;}
.m0_c00429{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls5_c00429{letter-spacing:0.000000px;}
.ls3_c00429{letter-spacing:0.011169px;}
.ls1_c00429{letter-spacing:0.012664px;}
.ls2_c00429{letter-spacing:0.153901px;}
.ls4_c00429{letter-spacing:0.189300px;}
.ls0_c00429{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00429{word-spacing:-17.999993px;}
.ws4_c00429{word-spacing:-14.939994px;}
.ws1_c00429{word-spacing:-12.434276px;}
.ws2_c00429{word-spacing:-10.452660px;}
.ws3_c00429{word-spacing:-9.731165px;}
.ws5_c00429{word-spacing:0.000000px;}
._7_c00429{margin-left:-12.716934px;}
._1_c00429{margin-left:-1.105374px;}
._0_c00429{width:1.195563px;}
._5_c00429{width:4.988623px;}
._6_c00429{width:6.479249px;}
._2_c00429{width:13.923151px;}
._3_c00429{width:15.785690px;}
._4_c00429{width:20.069170px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs5_c00429{font-size:38.879984px;}
.fs4_c00429{font-size:41.759983px;}
.fs3_c00429{font-size:48.239981px;}
.fs0_c00429{font-size:59.759976px;}
.fs1_c00429{font-size:66.239974px;}
.fs2_c00429{font-size:71.999971px;}
.y0_c00429{bottom:0.000000px;}
.y4_c00429{bottom:75.719970px;}
.y3_c00429{bottom:113.879954px;}
.y20_c00429{bottom:133.140247px;}
.y1f_c00429{bottom:139.980244px;}
.y1e_c00429{bottom:150.419940px;}
.y1d_c00429{bottom:167.699933px;}
.y1c_c00429{bottom:174.539930px;}
.y1b_c00429{bottom:184.979926px;}
.y1a_c00429{bottom:202.259919px;}
.y19_c00429{bottom:209.099916px;}
.y18_c00429{bottom:220.439912px;}
.y16_c00429{bottom:269.939892px;}
.y17_c00429{bottom:277.499889px;}
.y15_c00429{bottom:291.719883px;}
.y14_c00429{bottom:321.059872px;}
.y13_c00429{bottom:348.059861px;}
.y12_c00429{bottom:580.079768px;}
.y10_c00429{bottom:603.659759px;}
.y11_c00429{bottom:611.219756px;}
.yf_c00429{bottom:625.619750px;}
.ye_c00429{bottom:647.399741px;}
.yd_c00429{bottom:671.879731px;}
.yc_c00429{bottom:931.799627px;}
.yb_c00429{bottom:962.759615px;}
.ya_c00429{bottom:993.899602px;}
.y9_c00429{bottom:1024.859590px;}
.y8_c00429{bottom:1055.999578px;}
.y6_c00429{bottom:1086.959565px;}
.y7_c00429{bottom:1095.239562px;}
.y5_c00429{bottom:1118.099553px;}
.y2_c00429{bottom:1156.979537px;}
.y1_c00429{bottom:1195.859522px;}
.h8_c00429{height:38.158578px;}
.h7_c00429{height:40.985140px;}
.h4_c00429{height:47.321348px;}
.h2_c00429{height:54.628572px;}
.h1_c00429{height:58.651148px;}
.h6_c00429{height:65.010911px;}
.h3_c00429{height:70.628878px;}
.h5_c00429{height:70.664034px;}
.h0_c00429{height:1263.000000px;}
.w0_c00429{width:892.500000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:127.799949px;}
.xd_c00429{left:131.219948px;}
.x13_c00429{left:142.379943px;}
.x7_c00429{left:148.859940px;}
.x3_c00429{left:180.899928px;}
.x4_c00429{left:255.419898px;}
.x5_c00429{left:273.779890px;}
.x8_c00429{left:291.059884px;}
.x10_c00429{left:375.479572px;}
.x2_c00429{left:434.159514px;}
.xb_c00429{left:446.579821px;}
.x11_c00429{left:502.019799px;}
.x12_c00429{left:517.679793px;}
.x9_c00429{left:586.619765px;}
.xa_c00429{left:602.279759px;}
.xe_c00429{left:693.899722px;}
.xf_c00429{left:698.399721px;}
.xc_c00429{left:710.999716px;}
.x6_c00429{left:742.679703px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls5_c00429{letter-spacing:0.000000pt;}
.ls3_c00429{letter-spacing:0.009928pt;}
.ls1_c00429{letter-spacing:0.011257pt;}
.ls2_c00429{letter-spacing:0.136801pt;}
.ls4_c00429{letter-spacing:0.168267pt;}
.ls0_c00429{letter-spacing:0.332694pt;}
.ws0_c00429{word-spacing:-15.999994pt;}
.ws4_c00429{word-spacing:-13.279995pt;}
.ws1_c00429{word-spacing:-11.052689pt;}
.ws2_c00429{word-spacing:-9.291253pt;}
.ws3_c00429{word-spacing:-8.649924pt;}
.ws5_c00429{word-spacing:0.000000pt;}
._7_c00429{margin-left:-11.303941pt;}
._1_c00429{margin-left:-0.982555pt;}
._0_c00429{width:1.062723pt;}
._5_c00429{width:4.434332pt;}
._6_c00429{width:5.759333pt;}
._2_c00429{width:12.376134pt;}
._3_c00429{width:14.031725pt;}
._4_c00429{width:17.839262pt;}
.fs5_c00429{font-size:34.559986pt;}
.fs4_c00429{font-size:37.119985pt;}
.fs3_c00429{font-size:42.879983pt;}
.fs0_c00429{font-size:53.119979pt;}
.fs1_c00429{font-size:58.879976pt;}
.fs2_c00429{font-size:63.999974pt;}
.y0_c00429{bottom:0.000000pt;}
.y4_c00429{bottom:67.306640pt;}
.y3_c00429{bottom:101.226626pt;}
.y20_c00429{bottom:118.346886pt;}
.y1f_c00429{bottom:124.426884pt;}
.y1e_c00429{bottom:133.706613pt;}
.y1d_c00429{bottom:149.066607pt;}
.y1c_c00429{bottom:155.146605pt;}
.y1b_c00429{bottom:164.426601pt;}
.y1a_c00429{bottom:179.786595pt;}
.y19_c00429{bottom:185.866592pt;}
.y18_c00429{bottom:195.946588pt;}
.y16_c00429{bottom:239.946571pt;}
.y17_c00429{bottom:246.666568pt;}
.y15_c00429{bottom:259.306563pt;}
.y14_c00429{bottom:285.386553pt;}
.y13_c00429{bottom:309.386543pt;}
.y12_c00429{bottom:515.626460pt;}
.y10_c00429{bottom:536.586452pt;}
.y11_c00429{bottom:543.306449pt;}
.yf_c00429{bottom:556.106444pt;}
.ye_c00429{bottom:575.466436pt;}
.yd_c00429{bottom:597.226428pt;}
.yc_c00429{bottom:828.266335pt;}
.yb_c00429{bottom:855.786324pt;}
.ya_c00429{bottom:883.466313pt;}
.y9_c00429{bottom:910.986302pt;}
.y8_c00429{bottom:938.666291pt;}
.y6_c00429{bottom:966.186280pt;}
.y7_c00429{bottom:973.546277pt;}
.y5_c00429{bottom:993.866269pt;}
.y2_c00429{bottom:1028.426255pt;}
.y1_c00429{bottom:1062.986241pt;}
.h8_c00429{height:33.918736pt;}
.h7_c00429{height:36.431235pt;}
.h4_c00429{height:42.063421pt;}
.h2_c00429{height:48.558731pt;}
.h1_c00429{height:52.134354pt;}
.h6_c00429{height:57.787477pt;}
.h3_c00429{height:62.781225pt;}
.h5_c00429{height:62.812475pt;}
.h0_c00429{height:1122.666667pt;}
.w0_c00429{width:793.333333pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:113.599955pt;}
.xd_c00429{left:116.639953pt;}
.x13_c00429{left:126.559949pt;}
.x7_c00429{left:132.319947pt;}
.x3_c00429{left:160.799936pt;}
.x4_c00429{left:227.039909pt;}
.x5_c00429{left:243.359903pt;}
.x8_c00429{left:258.719897pt;}
.x10_c00429{left:333.759619pt;}
.x2_c00429{left:385.919568pt;}
.xb_c00429{left:396.959841pt;}
.x11_c00429{left:446.239822pt;}
.x12_c00429{left:460.159816pt;}
.x9_c00429{left:521.439791pt;}
.xa_c00429{left:535.359786pt;}
.xe_c00429{left:616.799753pt;}
.xf_c00429{left:620.799752pt;}
.xc_c00429{left:631.999747pt;}
.x6_c00429{left:660.159736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ccf7f47c0ed79b6b0605c97.woff2')format("woff");}.ff1_c00430{font-family:ff1_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:ff2_c00430;src:url('chunks/assets/font_a76c0eb3cfe3d573047c4d0c.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c00430{font-family:ff3_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:ff4_c00430;src:url('chunks/assets/font_7e7ab17e4b8f017923f581ce.woff2')format("woff");}.ff4_c00430{font-family:ff4_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:ff5_c00430;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00430{font-family:ff5_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;}
.m0_c00430{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls4_c00430{letter-spacing:0.000000px;}
.ls2_c00430{letter-spacing:0.011169px;}
.ls0_c00430{letter-spacing:0.012664px;}
.ls1_c00430{letter-spacing:0.153901px;}
.ls3_c00430{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00430{word-spacing:-14.939994px;}
.ws0_c00430{word-spacing:-10.452660px;}
.ws1_c00430{word-spacing:-9.731165px;}
.ws3_c00430{word-spacing:0.000000px;}
._2_c00430{margin-left:-3.571519px;}
._1_c00430{margin-left:-1.105374px;}
._0_c00430{width:1.478392px;}
.fc0_c00430{color:rgb(0,0,0);}
.fs4_c00430{font-size:38.879984px;}
.fs3_c00430{font-size:41.759983px;}
.fs0_c00430{font-size:59.759976px;}
.fs1_c00430{font-size:66.239974px;}
.fs2_c00430{font-size:71.999971px;}
.y0_c00430{bottom:0.000000px;}
.y4_c00430{bottom:75.720270px;}
.y3_c00430{bottom:113.880254px;}
.y21_c00430{bottom:133.499947px;}
.y20_c00430{bottom:151.859939px;}
.y1f_c00430{bottom:169.859932px;}
.y1e_c00430{bottom:176.699929px;}
.y1d_c00430{bottom:187.499925px;}
.y1c_c00430{bottom:206.399917px;}
.y1b_c00430{bottom:235.559906px;}
.y1a_c00430{bottom:256.259897px;}
.y19_c00430{bottom:276.959889px;}
.y18_c00430{bottom:297.659881px;}
.y17_c00430{bottom:318.359873px;}
.y16_c00430{bottom:339.059864px;}
.y15_c00430{bottom:359.759856px;}
.y14_c00430{bottom:380.459848px;}
.y13_c00430{bottom:401.159840px;}
.y12_c00430{bottom:421.859831px;}
.y11_c00430{bottom:442.559823px;}
.y10_c00430{bottom:463.259815px;}
.yf_c00430{bottom:483.959806px;}
.ye_c00430{bottom:504.659798px;}
.yd_c00430{bottom:525.359790px;}
.yc_c00430{bottom:546.059782px;}
.yb_c00430{bottom:566.759773px;}
.ya_c00430{bottom:587.459765px;}
.y8_c00430{bottom:625.979750px;}
.y9_c00430{bottom:633.539747px;}
.y7_c00430{bottom:647.759741px;}
.y6_c00430{bottom:677.279729px;}
.y5_c00430{bottom:704.099718px;}
.y2_c00430{bottom:1175.879530px;}
.y1_c00430{bottom:1196.039522px;}
.h9_c00430{height:38.158578px;}
.h6_c00430{height:40.985140px;}
.h8_c00430{height:49.284472px;}
.h2_c00430{height:54.628572px;}
.h1_c00430{height:58.651148px;}
.h5_c00430{height:65.010911px;}
.h3_c00430{height:70.628878px;}
.h4_c00430{height:70.664034px;}
.h7_c00430{height:72.562471px;}
.h0_c00430{height:1263.000000px;}
.w0_c00430{width:892.500000px;}
.x0_c00430{left:0.000000px;}
.x5_c00430{left:127.800262px;}
.x7_c00430{left:139.679944px;}
.xb_c00430{left:142.379943px;}
.x1_c00430{left:181.979927px;}
.x2_c00430{left:329.219408px;}
.x8_c00430{left:375.479757px;}
.x4_c00430{left:434.159826px;}
.x9_c00430{left:502.019799px;}
.xa_c00430{left:517.679793px;}
.x6_c00430{left:695.699722px;}
.x3_c00430{left:765.539694px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls4_c00430{letter-spacing:0.000000pt;}
.ls2_c00430{letter-spacing:0.009928pt;}
.ls0_c00430{letter-spacing:0.011257pt;}
.ls1_c00430{letter-spacing:0.136801pt;}
.ls3_c00430{letter-spacing:0.168267pt;}
.ws2_c00430{word-spacing:-13.279995pt;}
.ws0_c00430{word-spacing:-9.291253pt;}
.ws1_c00430{word-spacing:-8.649924pt;}
.ws3_c00430{word-spacing:0.000000pt;}
._2_c00430{margin-left:-3.174684pt;}
._1_c00430{margin-left:-0.982555pt;}
._0_c00430{width:1.314126pt;}
.fs4_c00430{font-size:34.559986pt;}
.fs3_c00430{font-size:37.119985pt;}
.fs0_c00430{font-size:53.119979pt;}
.fs1_c00430{font-size:58.879976pt;}
.fs2_c00430{font-size:63.999974pt;}
.y0_c00430{bottom:0.000000pt;}
.y4_c00430{bottom:67.306906pt;}
.y3_c00430{bottom:101.226893pt;}
.y21_c00430{bottom:118.666619pt;}
.y20_c00430{bottom:134.986613pt;}
.y1f_c00430{bottom:150.986606pt;}
.y1e_c00430{bottom:157.066604pt;}
.y1d_c00430{bottom:166.666600pt;}
.y1c_c00430{bottom:183.466593pt;}
.y1b_c00430{bottom:209.386583pt;}
.y1a_c00430{bottom:227.786576pt;}
.y19_c00430{bottom:246.186568pt;}
.y18_c00430{bottom:264.586561pt;}
.y17_c00430{bottom:282.986553pt;}
.y16_c00430{bottom:301.386546pt;}
.y15_c00430{bottom:319.786539pt;}
.y14_c00430{bottom:338.186531pt;}
.y13_c00430{bottom:356.586524pt;}
.y12_c00430{bottom:374.986517pt;}
.y11_c00430{bottom:393.386509pt;}
.y10_c00430{bottom:411.786502pt;}
.yf_c00430{bottom:430.186495pt;}
.ye_c00430{bottom:448.586487pt;}
.yd_c00430{bottom:466.986480pt;}
.yc_c00430{bottom:485.386473pt;}
.yb_c00430{bottom:503.786465pt;}
.ya_c00430{bottom:522.186458pt;}
.y8_c00430{bottom:556.426444pt;}
.y9_c00430{bottom:563.146441pt;}
.y7_c00430{bottom:575.786436pt;}
.y6_c00430{bottom:602.026426pt;}
.y5_c00430{bottom:625.866416pt;}
.y2_c00430{bottom:1045.226249pt;}
.y1_c00430{bottom:1063.146241pt;}
.h9_c00430{height:33.918736pt;}
.h6_c00430{height:36.431235pt;}
.h8_c00430{height:43.808420pt;}
.h2_c00430{height:48.558731pt;}
.h1_c00430{height:52.134354pt;}
.h5_c00430{height:57.787477pt;}
.h3_c00430{height:62.781225pt;}
.h4_c00430{height:62.812475pt;}
.h7_c00430{height:64.499974pt;}
.h0_c00430{height:1122.666667pt;}
.w0_c00430{width:793.333333pt;}
.x0_c00430{left:0.000000pt;}
.x5_c00430{left:113.600233pt;}
.x7_c00430{left:124.159950pt;}
.xb_c00430{left:126.559949pt;}
.x1_c00430{left:161.759935pt;}
.x2_c00430{left:292.639474pt;}
.x8_c00430{left:333.759784pt;}
.x4_c00430{left:385.919846pt;}
.x9_c00430{left:446.239822pt;}
.xa_c00430{left:460.159816pt;}
.x6_c00430{left:618.399753pt;}
.x3_c00430{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cde88afb672fe419ffa1a277.woff2')format("woff");}.ff1_c00431{font-family:ff1_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:ff2_c00431;src:url('chunks/assets/font_4570fa660d8e7ffae65f6ea0.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_84a9ccc0ec2734a948a365a5.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.311035;font-style:normal;font-weight:normal;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_79b0732e7ead25b24f5d4654.woff2')format("woff");}.ff4_c00431{font-family:ff4_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;}
@font-face{font-family:ff5_c00431;src:url('chunks/assets/font_c3ee9032fe24acc5e685f32c.woff2')format("woff");}.ff5_c00431{font-family:ff5_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v1_c00431{vertical-align:-82.799967px;}
.v0_c00431{vertical-align:0.000000px;}
.ls1_c00431{letter-spacing:0.000000px;}
.ls0_c00431{letter-spacing:1257.869497px;}
.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;}
}
.ws0_c00431{word-spacing:-17.999993px;}
.ws1_c00431{word-spacing:0.000000px;}
._1_c00431{margin-left:-1.105374px;}
._0_c00431{width:1.195563px;}
._8_c00431{width:2.910103px;}
._2_c00431{width:4.308389px;}
._b_c00431{width:6.981910px;}
._a_c00431{width:8.119659px;}
._4_c00431{width:10.805838px;}
._3_c00431{width:11.943616px;}
._9_c00431{width:13.719997px;}
._7_c00431{width:15.698222px;}
._5_c00431{width:22.028391px;}
._6_c00431{width:23.634456px;}
.fc0_c00431{color:rgb(0,0,0);}
.fs0_c00431{font-size:59.759976px;}
.fs1_c00431{font-size:66.239974px;}
.fs2_c00431{font-size:71.999971px;}
.y0_c00431{bottom:0.000000px;}
.y4_c00431{bottom:75.719970px;}
.y3_c00431{bottom:113.879954px;}
.y17_c00431{bottom:194.519922px;}
.y16_c00431{bottom:225.659910px;}
.y15_c00431{bottom:256.619897px;}
.y14_c00431{bottom:287.759885px;}
.y13_c00431{bottom:318.719873px;}
.y12_c00431{bottom:349.859860px;}
.y11_c00431{bottom:380.819848px;}
.y10_c00431{bottom:411.959835px;}
.yf_c00431{bottom:442.919823px;}
.ye_c00431{bottom:474.059810px;}
.yd_c00431{bottom:505.019798px;}
.yc_c00431{bottom:535.979786px;}
.yb_c00431{bottom:567.119773px;}
.ya_c00431{bottom:598.079761px;}
.y9_c00431{bottom:628.139749px;}
.y8_c00431{bottom:657.299737px;}
.y7_c00431{bottom:674.219730px;}
.y6_c00431{bottom:1097.219561px;}
.y5_c00431{bottom:1117.919553px;}
.y2_c00431{bottom:1156.979537px;}
.y1_c00431{bottom:1195.859522px;}
.h2_c00431{height:54.628572px;}
.h1_c00431{height:58.651148px;}
.h5_c00431{height:65.010911px;}
.h4_c00431{height:70.628878px;}
.h6_c00431{height:70.664034px;}
.h3_c00431{height:72.562471px;}
.h0_c00431{height:1263.000000px;}
.w0_c00431{width:892.500000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:127.799949px;}
.x6_c00431{left:180.899272px;}
.x4_c00431{left:208.799916px;}
.x2_c00431{left:434.159514px;}
.x5_c00431{left:446.579821px;}
.x3_c00431{left:573.658908px;}
@media print{
.v1_c00431{vertical-align:-73.599971pt;}
.v0_c00431{vertical-align:0.000000pt;}
.ls1_c00431{letter-spacing:0.000000pt;}
.ls0_c00431{letter-spacing:1118.106219pt;}
.ws0_c00431{word-spacing:-15.999994pt;}
.ws1_c00431{word-spacing:0.000000pt;}
._1_c00431{margin-left:-0.982555pt;}
._0_c00431{width:1.062723pt;}
._8_c00431{width:2.586759pt;}
._2_c00431{width:3.829679pt;}
._b_c00431{width:6.206142pt;}
._a_c00431{width:7.217475pt;}
._4_c00431{width:9.605189pt;}
._3_c00431{width:10.616548pt;}
._9_c00431{width:12.195553pt;}
._7_c00431{width:13.953975pt;}
._5_c00431{width:19.580792pt;}
._6_c00431{width:21.008405pt;}
.fs0_c00431{font-size:53.119979pt;}
.fs1_c00431{font-size:58.879976pt;}
.fs2_c00431{font-size:63.999974pt;}
.y0_c00431{bottom:0.000000pt;}
.y4_c00431{bottom:67.306640pt;}
.y3_c00431{bottom:101.226626pt;}
.y17_c00431{bottom:172.906598pt;}
.y16_c00431{bottom:200.586586pt;}
.y15_c00431{bottom:228.106575pt;}
.y14_c00431{bottom:255.786564pt;}
.y13_c00431{bottom:283.306553pt;}
.y12_c00431{bottom:310.986542pt;}
.y11_c00431{bottom:338.506531pt;}
.y10_c00431{bottom:366.186520pt;}
.yf_c00431{bottom:393.706509pt;}
.ye_c00431{bottom:421.386498pt;}
.yd_c00431{bottom:448.906487pt;}
.yc_c00431{bottom:476.426476pt;}
.yb_c00431{bottom:504.106465pt;}
.ya_c00431{bottom:531.626454pt;}
.y9_c00431{bottom:558.346443pt;}
.y8_c00431{bottom:584.266433pt;}
.y7_c00431{bottom:599.306427pt;}
.y6_c00431{bottom:975.306277pt;}
.y5_c00431{bottom:993.706269pt;}
.y2_c00431{bottom:1028.426255pt;}
.y1_c00431{bottom:1062.986241pt;}
.h2_c00431{height:48.558731pt;}
.h1_c00431{height:52.134354pt;}
.h5_c00431{height:57.787477pt;}
.h4_c00431{height:62.781225pt;}
.h6_c00431{height:62.812475pt;}
.h3_c00431{height:64.499974pt;}
.h0_c00431{height:1122.666667pt;}
.w0_c00431{width:793.333333pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:113.599955pt;}
.x6_c00431{left:160.799353pt;}
.x4_c00431{left:185.599926pt;}
.x2_c00431{left:385.919568pt;}
.x5_c00431{left:396.959841pt;}
.x3_c00431{left:509.919030pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a24f459d34066f4eeac8282a.woff2')format("woff");}.ff1_c00432{font-family:ff1_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:ff2_c00432;src:url('chunks/assets/font_584f97fb2bbaa3c25142c8b4.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_2061598bf3889cec314ed162.woff2')format("woff");}.ff3_c00432{font-family:ff3_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;}
.m0_c00432{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls2_c00432{letter-spacing:0.000000px;}
.ls1_c00432{letter-spacing:0.012620px;}
.ls0_c00432{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00432{word-spacing:-17.999993px;}
.ws1_c00432{word-spacing:-12.434276px;}
.ws2_c00432{word-spacing:-10.452616px;}
.ws3_c00432{word-spacing:0.000000px;}
._d_c00432{margin-left:-10.235204px;}
._1_c00432{margin-left:-1.105374px;}
._0_c00432{width:1.478392px;}
._8_c00432{width:3.900907px;}
._4_c00432{width:4.982731px;}
._5_c00432{width:6.193075px;}
._2_c00432{width:9.053886px;}
._3_c00432{width:10.116823px;}
._b_c00432{width:11.691696px;}
._6_c00432{width:19.214054px;}
._7_c00432{width:20.779092px;}
._c_c00432{width:22.294311px;}
._9_c00432{width:24.998674px;}
._a_c00432{width:26.039670px;}
.fc0_c00432{color:rgb(0,0,0);}
.fs4_c00432{font-size:41.759983px;}
.fs3_c00432{font-size:48.239981px;}
.fs0_c00432{font-size:59.759976px;}
.fs1_c00432{font-size:66.239974px;}
.fs2_c00432{font-size:71.999971px;}
.y0_c00432{bottom:0.000000px;}
.y4_c00432{bottom:75.900270px;}
.y3_c00432{bottom:114.060254px;}
.y18_c00432{bottom:133.679947px;}
.y17_c00432{bottom:151.679939px;}
.y16_c00432{bottom:177.779929px;}
.y15_c00432{bottom:185.339926px;}
.y14_c00432{bottom:197.399921px;}
.y13_c00432{bottom:732.899707px;}
.y11_c00432{bottom:764.039694px;}
.y12_c00432{bottom:772.319691px;}
.y10_c00432{bottom:794.999682px;}
.yf_c00432{bottom:825.959670px;}
.ye_c00432{bottom:857.099657px;}
.yd_c00432{bottom:888.059645px;}
.yc_c00432{bottom:919.199632px;}
.yb_c00432{bottom:950.159620px;}
.ya_c00432{bottom:981.299607px;}
.y9_c00432{bottom:1012.259595px;}
.y8_c00432{bottom:1043.399583px;}
.y7_c00432{bottom:1074.359570px;}
.y6_c00432{bottom:1105.499558px;}
.y5_c00432{bottom:1136.459545px;}
.y2_c00432{bottom:1176.059530px;}
.y1_c00432{bottom:1196.219522px;}
.h6_c00432{height:40.985140px;}
.h5_c00432{height:47.344903px;}
.h7_c00432{height:49.284472px;}
.h2_c00432{height:54.628572px;}
.h1_c00432{height:58.651148px;}
.h3_c00432{height:70.628878px;}
.h4_c00432{height:70.664034px;}
.h0_c00432{height:1263.000000px;}
.w0_c00432{width:892.500000px;}
.x0_c00432{left:0.000000px;}
.x5_c00432{left:127.620262px;}
.x9_c00432{left:143.279943px;}
.x6_c00432{left:180.719928px;}
.x1_c00432{left:181.799927px;}
.x2_c00432{left:329.039408px;}
.x7_c00432{left:396.539841px;}
.x8_c00432{left:414.899834px;}
.x4_c00432{left:433.979826px;}
.x3_c00432{left:765.359694px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls2_c00432{letter-spacing:0.000000pt;}
.ls1_c00432{letter-spacing:0.011218pt;}
.ls0_c00432{letter-spacing:0.332694pt;}
.ws0_c00432{word-spacing:-15.999994pt;}
.ws1_c00432{word-spacing:-11.052689pt;}
.ws2_c00432{word-spacing:-9.291214pt;}
.ws3_c00432{word-spacing:0.000000pt;}
._d_c00432{margin-left:-9.097959pt;}
._1_c00432{margin-left:-0.982555pt;}
._0_c00432{width:1.314126pt;}
._8_c00432{width:3.467473pt;}
._4_c00432{width:4.429094pt;}
._5_c00432{width:5.504955pt;}
._2_c00432{width:8.047899pt;}
._3_c00432{width:8.992732pt;}
._b_c00432{width:10.392618pt;}
._6_c00432{width:17.079160pt;}
._7_c00432{width:18.470304pt;}
._c_c00432{width:19.817166pt;}
._9_c00432{width:22.221044pt;}
._a_c00432{width:23.146373pt;}
.fs4_c00432{font-size:37.119985pt;}
.fs3_c00432{font-size:42.879983pt;}
.fs0_c00432{font-size:53.119979pt;}
.fs1_c00432{font-size:58.879976pt;}
.fs2_c00432{font-size:63.999974pt;}
.y0_c00432{bottom:0.000000pt;}
.y4_c00432{bottom:67.466906pt;}
.y3_c00432{bottom:101.386893pt;}
.y18_c00432{bottom:118.826619pt;}
.y17_c00432{bottom:134.826613pt;}
.y16_c00432{bottom:158.026603pt;}
.y15_c00432{bottom:164.746601pt;}
.y14_c00432{bottom:175.466596pt;}
.y13_c00432{bottom:651.466406pt;}
.y11_c00432{bottom:679.146395pt;}
.y12_c00432{bottom:686.506392pt;}
.y10_c00432{bottom:706.666384pt;}
.yf_c00432{bottom:734.186373pt;}
.ye_c00432{bottom:761.866362pt;}
.yd_c00432{bottom:789.386351pt;}
.yc_c00432{bottom:817.066340pt;}
.yb_c00432{bottom:844.586329pt;}
.ya_c00432{bottom:872.266318pt;}
.y9_c00432{bottom:899.786307pt;}
.y8_c00432{bottom:927.466296pt;}
.y7_c00432{bottom:954.986285pt;}
.y6_c00432{bottom:982.666274pt;}
.y5_c00432{bottom:1010.186263pt;}
.y2_c00432{bottom:1045.386249pt;}
.y1_c00432{bottom:1063.306241pt;}
.h6_c00432{height:36.431235pt;}
.h5_c00432{height:42.084358pt;}
.h7_c00432{height:43.808420pt;}
.h2_c00432{height:48.558731pt;}
.h1_c00432{height:52.134354pt;}
.h3_c00432{height:62.781225pt;}
.h4_c00432{height:62.812475pt;}
.h0_c00432{height:1122.666667pt;}
.w0_c00432{width:793.333333pt;}
.x0_c00432{left:0.000000pt;}
.x5_c00432{left:113.440233pt;}
.x9_c00432{left:127.359949pt;}
.x6_c00432{left:160.639936pt;}
.x1_c00432{left:161.599935pt;}
.x2_c00432{left:292.479474pt;}
.x7_c00432{left:352.479859pt;}
.x8_c00432{left:368.799852pt;}
.x4_c00432{left:385.759846pt;}
.x3_c00432{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32a5cb7b286119ded9ab4d18.woff2')format("woff");}.ff1_c00433{font-family:ff1_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:ff2_c00433;src:url('chunks/assets/font_5983cad38ae0b4e23ed44d7b.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_c35079b9543782f052178b5d.woff2')format("woff");}.ff3_c00433{font-family:ff3_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;}
.m0_c00433{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00433{word-spacing:0.000000px;}
._1_c00433{margin-left:-1.105374px;}
._0_c00433{width:1.195563px;}
._2_c00433{width:2.778981px;}
._7_c00433{width:4.153990px;}
._4_c00433{width:5.791714px;}
._3_c00433{width:7.236139px;}
._8_c00433{width:8.500257px;}
._9_c00433{width:10.000619px;}
._a_c00433{width:11.559851px;}
._b_c00433{width:12.813840px;}
._5_c00433{width:20.810840px;}
._6_c00433{width:22.388560px;}
.fc0_c00433{color:rgb(0,0,0);}
.fs0_c00433{font-size:59.759976px;}
.fs1_c00433{font-size:66.239974px;}
.fs2_c00433{font-size:71.999971px;}
.y0_c00433{bottom:0.000000px;}
.y4_c00433{bottom:75.719970px;}
.y3_c00433{bottom:113.879954px;}
.y15_c00433{bottom:145.199942px;}
.y14_c00433{bottom:176.159930px;}
.y13_c00433{bottom:207.299917px;}
.y12_c00433{bottom:238.259905px;}
.y11_c00433{bottom:269.399892px;}
.y10_c00433{bottom:300.359880px;}
.yf_c00433{bottom:331.499867px;}
.ye_c00433{bottom:362.459855px;}
.yd_c00433{bottom:393.599843px;}
.yc_c00433{bottom:424.559830px;}
.yb_c00433{bottom:455.699818px;}
.ya_c00433{bottom:486.659805px;}
.y9_c00433{bottom:517.799793px;}
.y8_c00433{bottom:548.759780px;}
.y7_c00433{bottom:571.979771px;}
.y6_c00433{bottom:593.939762px;}
.y5_c00433{bottom:619.319752px;}
.y2_c00433{bottom:1156.979537px;}
.y1_c00433{bottom:1195.859522px;}
.h2_c00433{height:54.628572px;}
.h1_c00433{height:58.651148px;}
.h4_c00433{height:65.010911px;}
.h5_c00433{height:70.628878px;}
.h3_c00433{height:70.664034px;}
.h0_c00433{height:1263.000000px;}
.w0_c00433{width:892.500000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:127.799949px;}
.x6_c00433{left:180.899928px;}
.x4_c00433{left:194.399922px;}
.x5_c00433{left:376.019326px;}
.x2_c00433{left:434.159514px;}
.x3_c00433{left:709.199716px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
._1_c00433{margin-left:-0.982555pt;}
._0_c00433{width:1.062723pt;}
._2_c00433{width:2.470206pt;}
._7_c00433{width:3.692436pt;}
._4_c00433{width:5.148190pt;}
._3_c00433{width:6.432124pt;}
._8_c00433{width:7.555784pt;}
._9_c00433{width:8.889439pt;}
._a_c00433{width:10.275423pt;}
._b_c00433{width:11.390080pt;}
._5_c00433{width:18.498524pt;}
._6_c00433{width:19.900942pt;}
.fs0_c00433{font-size:53.119979pt;}
.fs1_c00433{font-size:58.879976pt;}
.fs2_c00433{font-size:63.999974pt;}
.y0_c00433{bottom:0.000000pt;}
.y4_c00433{bottom:67.306640pt;}
.y3_c00433{bottom:101.226626pt;}
.y15_c00433{bottom:129.066615pt;}
.y14_c00433{bottom:156.586604pt;}
.y13_c00433{bottom:184.266593pt;}
.y12_c00433{bottom:211.786582pt;}
.y11_c00433{bottom:239.466571pt;}
.y10_c00433{bottom:266.986560pt;}
.yf_c00433{bottom:294.666549pt;}
.ye_c00433{bottom:322.186538pt;}
.yd_c00433{bottom:349.866527pt;}
.yc_c00433{bottom:377.386516pt;}
.yb_c00433{bottom:405.066505pt;}
.ya_c00433{bottom:432.586494pt;}
.y9_c00433{bottom:460.266483pt;}
.y8_c00433{bottom:487.786472pt;}
.y7_c00433{bottom:508.426463pt;}
.y6_c00433{bottom:527.946455pt;}
.y5_c00433{bottom:550.506446pt;}
.y2_c00433{bottom:1028.426255pt;}
.y1_c00433{bottom:1062.986241pt;}
.h2_c00433{height:48.558731pt;}
.h1_c00433{height:52.134354pt;}
.h4_c00433{height:57.787477pt;}
.h5_c00433{height:62.781225pt;}
.h3_c00433{height:62.812475pt;}
.h0_c00433{height:1122.666667pt;}
.w0_c00433{width:793.333333pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:113.599955pt;}
.x6_c00433{left:160.799936pt;}
.x4_c00433{left:172.799931pt;}
.x5_c00433{left:334.239401pt;}
.x2_c00433{left:385.919568pt;}
.x3_c00433{left:630.399748pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bd9d0fff0404408a17d1bb7.woff2')format("woff");}.ff1_c00434{font-family:ff1_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:ff2_c00434;src:url('chunks/assets/font_1788d4656d1ca093d0a590d0.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_1238deb8cea7868b7c82af35.woff2')format("woff");}.ff3_c00434{font-family:ff3_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;}
.m0_c00434{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls4_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:0.011169px;}
.ls1_c00434{letter-spacing:0.153901px;}
.ls3_c00434{letter-spacing:0.189300px;}
.ls0_c00434{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00434{word-spacing:-17.999993px;}
.ws3_c00434{word-spacing:-14.939994px;}
.ws1_c00434{word-spacing:-12.434276px;}
.ws2_c00434{word-spacing:-9.731165px;}
.ws4_c00434{word-spacing:-8.786876px;}
.ws5_c00434{word-spacing:0.000000px;}
._8_c00434{margin-left:-12.716934px;}
._1_c00434{margin-left:-1.105374px;}
._0_c00434{width:1.478392px;}
._7_c00434{width:5.547322px;}
._6_c00434{width:7.105492px;}
._5_c00434{width:8.137423px;}
._4_c00434{width:13.706845px;}
._3_c00434{width:14.745236px;}
._2_c00434{width:23.057218px;}
.fc0_c00434{color:rgb(0,0,0);}
.fs4_c00434{font-size:38.879984px;}
.fs3_c00434{font-size:48.239981px;}
.fs0_c00434{font-size:59.759976px;}
.fs1_c00434{font-size:66.239974px;}
.fs2_c00434{font-size:71.999971px;}
.y0_c00434{bottom:0.000000px;}
.y4_c00434{bottom:75.720270px;}
.y3_c00434{bottom:113.880254px;}
.y21_c00434{bottom:133.500247px;}
.y20_c00434{bottom:141.060244px;}
.y1f_c00434{bottom:151.859939px;}
.y1e_c00434{bottom:170.219932px;}
.y1d_c00434{bottom:188.219925px;}
.y1c_c00434{bottom:195.059922px;}
.y1b_c00434{bottom:205.319918px;}
.y1a_c00434{bottom:222.599911px;}
.y19_c00434{bottom:229.439908px;}
.y18_c00434{bottom:240.779904px;}
.y16_c00434{bottom:336.359865px;}
.y17_c00434{bottom:344.639862px;}
.y15_c00434{bottom:367.319853px;}
.y14_c00434{bottom:398.459841px;}
.y12_c00434{bottom:429.419828px;}
.y13_c00434{bottom:437.699825px;}
.y11_c00434{bottom:460.559816px;}
.y10_c00434{bottom:491.519803px;}
.yf_c00434{bottom:522.659791px;}
.ye_c00434{bottom:553.619779px;}
.yd_c00434{bottom:584.579766px;}
.yc_c00434{bottom:607.979757px;}
.yb_c00434{bottom:629.759748px;}
.ya_c00434{bottom:654.959738px;}
.y8_c00434{bottom:1043.219583px;}
.y9_c00434{bottom:1051.499579px;}
.y7_c00434{bottom:1074.179570px;}
.y6_c00434{bottom:1105.319558px;}
.y5_c00434{bottom:1136.279545px;}
.y2_c00434{bottom:1175.879530px;}
.y1_c00434{bottom:1196.039522px;}
.ha_c00434{height:32.064597px;}
.h8_c00434{height:38.158578px;}
.h4_c00434{height:47.321348px;}
.h7_c00434{height:47.344903px;}
.h9_c00434{height:49.284472px;}
.h2_c00434{height:54.628572px;}
.h1_c00434{height:58.651148px;}
.h6_c00434{height:65.010911px;}
.h3_c00434{height:70.628878px;}
.h5_c00434{height:70.664034px;}
.h0_c00434{height:1263.000000px;}
.w0_c00434{width:892.500000px;}
.x0_c00434{left:0.000000px;}
.x5_c00434{left:127.800262px;}
.x10_c00434{left:142.379943px;}
.x6_c00434{left:180.899928px;}
.x1_c00434{left:181.979927px;}
.xa_c00434{left:202.679919px;}
.x7_c00434{left:251.819899px;}
.xe_c00434{left:258.299897px;}
.x8_c00434{left:270.179892px;}
.xf_c00434{left:276.659889px;}
.x2_c00434{left:329.219408px;}
.xc_c00434{left:356.399857px;}
.xd_c00434{left:374.759850px;}
.xb_c00434{left:376.019630px;}
.x4_c00434{left:434.159826px;}
.x9_c00434{left:696.959772px;}
.x3_c00434{left:765.539694px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls4_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:0.009928pt;}
.ls1_c00434{letter-spacing:0.136801pt;}
.ls3_c00434{letter-spacing:0.168267pt;}
.ls0_c00434{letter-spacing:0.332694pt;}
.ws0_c00434{word-spacing:-15.999994pt;}
.ws3_c00434{word-spacing:-13.279995pt;}
.ws1_c00434{word-spacing:-11.052689pt;}
.ws2_c00434{word-spacing:-8.649924pt;}
.ws4_c00434{word-spacing:-7.810557pt;}
.ws5_c00434{word-spacing:0.000000pt;}
._8_c00434{margin-left:-11.303941pt;}
._1_c00434{margin-left:-0.982555pt;}
._0_c00434{width:1.314126pt;}
._7_c00434{width:4.930953pt;}
._6_c00434{width:6.315993pt;}
._5_c00434{width:7.233265pt;}
._4_c00434{width:12.183863pt;}
._3_c00434{width:13.106876pt;}
._2_c00434{width:20.495305pt;}
.fs4_c00434{font-size:34.559986pt;}
.fs3_c00434{font-size:42.879983pt;}
.fs0_c00434{font-size:53.119979pt;}
.fs1_c00434{font-size:58.879976pt;}
.fs2_c00434{font-size:63.999974pt;}
.y0_c00434{bottom:0.000000pt;}
.y4_c00434{bottom:67.306906pt;}
.y3_c00434{bottom:101.226893pt;}
.y21_c00434{bottom:118.666886pt;}
.y20_c00434{bottom:125.386883pt;}
.y1f_c00434{bottom:134.986613pt;}
.y1e_c00434{bottom:151.306606pt;}
.y1d_c00434{bottom:167.306600pt;}
.y1c_c00434{bottom:173.386597pt;}
.y1b_c00434{bottom:182.506594pt;}
.y1a_c00434{bottom:197.866588pt;}
.y19_c00434{bottom:203.946585pt;}
.y18_c00434{bottom:214.026581pt;}
.y16_c00434{bottom:298.986547pt;}
.y17_c00434{bottom:306.346544pt;}
.y15_c00434{bottom:326.506536pt;}
.y14_c00434{bottom:354.186525pt;}
.y12_c00434{bottom:381.706514pt;}
.y13_c00434{bottom:389.066511pt;}
.y11_c00434{bottom:409.386503pt;}
.y10_c00434{bottom:436.906492pt;}
.yf_c00434{bottom:464.586481pt;}
.ye_c00434{bottom:492.106470pt;}
.yd_c00434{bottom:519.626459pt;}
.yc_c00434{bottom:540.426450pt;}
.yb_c00434{bottom:559.786443pt;}
.ya_c00434{bottom:582.186434pt;}
.y8_c00434{bottom:927.306296pt;}
.y9_c00434{bottom:934.666293pt;}
.y7_c00434{bottom:954.826285pt;}
.y6_c00434{bottom:982.506274pt;}
.y5_c00434{bottom:1010.026263pt;}
.y2_c00434{bottom:1045.226249pt;}
.y1_c00434{bottom:1063.146241pt;}
.ha_c00434{height:28.501864pt;}
.h8_c00434{height:33.918736pt;}
.h4_c00434{height:42.063421pt;}
.h7_c00434{height:42.084358pt;}
.h9_c00434{height:43.808420pt;}
.h2_c00434{height:48.558731pt;}
.h1_c00434{height:52.134354pt;}
.h6_c00434{height:57.787477pt;}
.h3_c00434{height:62.781225pt;}
.h5_c00434{height:62.812475pt;}
.h0_c00434{height:1122.666667pt;}
.w0_c00434{width:793.333333pt;}
.x0_c00434{left:0.000000pt;}
.x5_c00434{left:113.600233pt;}
.x10_c00434{left:126.559949pt;}
.x6_c00434{left:160.799936pt;}
.x1_c00434{left:161.759935pt;}
.xa_c00434{left:180.159928pt;}
.x7_c00434{left:223.839910pt;}
.xe_c00434{left:229.599908pt;}
.x8_c00434{left:240.159904pt;}
.xf_c00434{left:245.919902pt;}
.x2_c00434{left:292.639474pt;}
.xc_c00434{left:316.799873pt;}
.xd_c00434{left:333.119867pt;}
.xb_c00434{left:334.239671pt;}
.x4_c00434{left:385.919846pt;}
.x9_c00434{left:619.519798pt;}
.x3_c00434{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec2a50704080b0cb19df5b3e.woff2')format("woff");}.ff1_c00435{font-family:ff1_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:ff2_c00435;src:url('chunks/assets/font_ebd52e5080591d0dfd17dd6e.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_2a0955493bb90f6d3b21d510.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;}
.m0_c00435{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls4_c00435{letter-spacing:0.000000px;}
.ls2_c00435{letter-spacing:0.011169px;}
.ls0_c00435{letter-spacing:0.012664px;}
.ls1_c00435{letter-spacing:0.153901px;}
.ls3_c00435{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00435{word-spacing:-14.939994px;}
.ws0_c00435{word-spacing:-10.452660px;}
.ws1_c00435{word-spacing:-9.731165px;}
.ws3_c00435{word-spacing:0.000000px;}
._4_c00435{margin-left:-12.716934px;}
._1_c00435{margin-left:-1.105374px;}
._0_c00435{width:1.195563px;}
._2_c00435{width:19.387741px;}
._3_c00435{width:23.032375px;}
.fc0_c00435{color:rgb(0,0,0);}
.fs4_c00435{font-size:38.879984px;}
.fs3_c00435{font-size:41.759983px;}
.fs0_c00435{font-size:59.759976px;}
.fs1_c00435{font-size:66.239974px;}
.fs2_c00435{font-size:71.999971px;}
.y0_c00435{bottom:0.000000px;}
.y4_c00435{bottom:75.719970px;}
.y3_c00435{bottom:113.879954px;}
.y20_c00435{bottom:133.499947px;}
.y1f_c00435{bottom:151.859939px;}
.y1e_c00435{bottom:169.859932px;}
.y1d_c00435{bottom:176.699929px;}
.y1c_c00435{bottom:187.139925px;}
.y1b_c00435{bottom:204.419918px;}
.y1a_c00435{bottom:211.259915px;}
.y19_c00435{bottom:221.519911px;}
.y18_c00435{bottom:238.799904px;}
.y17_c00435{bottom:245.639902px;}
.y16_c00435{bottom:256.979897px;}
.y15_c00435{bottom:306.299877px;}
.y14_c00435{bottom:337.439865px;}
.y13_c00435{bottom:368.399853px;}
.y12_c00435{bottom:399.539840px;}
.y11_c00435{bottom:430.499828px;}
.yf_c00435{bottom:460.379816px;}
.y10_c00435{bottom:467.939813px;}
.ye_c00435{bottom:485.759806px;}
.yd_c00435{bottom:657.839737px;}
.yc_c00435{bottom:688.979724px;}
.ya_c00435{bottom:718.859712px;}
.yb_c00435{bottom:726.419709px;}
.y9_c00435{bottom:744.059702px;}
.y8_c00435{bottom:911.819635px;}
.y6_c00435{bottom:941.699623px;}
.y7_c00435{bottom:949.259620px;}
.y5_c00435{bottom:967.079613px;}
.y2_c00435{bottom:1156.979537px;}
.y1_c00435{bottom:1195.859522px;}
.h6_c00435{height:38.158578px;}
.h5_c00435{height:40.985140px;}
.h7_c00435{height:49.284472px;}
.h2_c00435{height:54.628572px;}
.h1_c00435{height:58.651148px;}
.h4_c00435{height:65.010911px;}
.h3_c00435{height:70.664034px;}
.h0_c00435{height:1263.000000px;}
.w0_c00435{width:892.500000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:127.799949px;}
.xb_c00435{left:142.379943px;}
.x4_c00435{left:178.019929px;}
.xa_c00435{left:180.899272px;}
.x2_c00435{left:434.159514px;}
.x7_c00435{left:446.579821px;}
.x3_c00435{left:609.119756px;}
.x8_c00435{left:614.159824px;}
.x9_c00435{left:632.519478px;}
.x5_c00435{left:699.479720px;}
.x6_c00435{left:715.139714px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls4_c00435{letter-spacing:0.000000pt;}
.ls2_c00435{letter-spacing:0.009928pt;}
.ls0_c00435{letter-spacing:0.011257pt;}
.ls1_c00435{letter-spacing:0.136801pt;}
.ls3_c00435{letter-spacing:0.168267pt;}
.ws2_c00435{word-spacing:-13.279995pt;}
.ws0_c00435{word-spacing:-9.291253pt;}
.ws1_c00435{word-spacing:-8.649924pt;}
.ws3_c00435{word-spacing:0.000000pt;}
._4_c00435{margin-left:-11.303941pt;}
._1_c00435{margin-left:-0.982555pt;}
._0_c00435{width:1.062723pt;}
._2_c00435{width:17.233548pt;}
._3_c00435{width:20.473222pt;}
.fs4_c00435{font-size:34.559986pt;}
.fs3_c00435{font-size:37.119985pt;}
.fs0_c00435{font-size:53.119979pt;}
.fs1_c00435{font-size:58.879976pt;}
.fs2_c00435{font-size:63.999974pt;}
.y0_c00435{bottom:0.000000pt;}
.y4_c00435{bottom:67.306640pt;}
.y3_c00435{bottom:101.226626pt;}
.y20_c00435{bottom:118.666619pt;}
.y1f_c00435{bottom:134.986613pt;}
.y1e_c00435{bottom:150.986606pt;}
.y1d_c00435{bottom:157.066604pt;}
.y1c_c00435{bottom:166.346600pt;}
.y1b_c00435{bottom:181.706594pt;}
.y1a_c00435{bottom:187.786592pt;}
.y19_c00435{bottom:196.906588pt;}
.y18_c00435{bottom:212.266582pt;}
.y17_c00435{bottom:218.346579pt;}
.y16_c00435{bottom:228.426575pt;}
.y15_c00435{bottom:272.266558pt;}
.y14_c00435{bottom:299.946547pt;}
.y13_c00435{bottom:327.466536pt;}
.y12_c00435{bottom:355.146525pt;}
.y11_c00435{bottom:382.666514pt;}
.yf_c00435{bottom:409.226503pt;}
.y10_c00435{bottom:415.946500pt;}
.ye_c00435{bottom:431.786494pt;}
.yd_c00435{bottom:584.746433pt;}
.yc_c00435{bottom:612.426422pt;}
.ya_c00435{bottom:638.986411pt;}
.yb_c00435{bottom:645.706408pt;}
.y9_c00435{bottom:661.386402pt;}
.y8_c00435{bottom:810.506342pt;}
.y6_c00435{bottom:837.066332pt;}
.y7_c00435{bottom:843.786329pt;}
.y5_c00435{bottom:859.626323pt;}
.y2_c00435{bottom:1028.426255pt;}
.y1_c00435{bottom:1062.986241pt;}
.h6_c00435{height:33.918736pt;}
.h5_c00435{height:36.431235pt;}
.h7_c00435{height:43.808420pt;}
.h2_c00435{height:48.558731pt;}
.h1_c00435{height:52.134354pt;}
.h4_c00435{height:57.787477pt;}
.h3_c00435{height:62.812475pt;}
.h0_c00435{height:1122.666667pt;}
.w0_c00435{width:793.333333pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:113.599955pt;}
.xb_c00435{left:126.559949pt;}
.x4_c00435{left:158.239937pt;}
.xa_c00435{left:160.799353pt;}
.x2_c00435{left:385.919568pt;}
.x7_c00435{left:396.959841pt;}
.x3_c00435{left:541.439783pt;}
.x8_c00435{left:545.919843pt;}
.x9_c00435{left:562.239536pt;}
.x5_c00435{left:621.759751pt;}
.x6_c00435{left:635.679746pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_480bc19bd78fb54b4558cf3a.woff2')format("woff");}.ff1_c00436{font-family:ff1_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:ff2_c00436;src:url('chunks/assets/font_b9a98e06c50f208490394263.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_66a25be46350adfca0af52f6.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;}
.m0_c00436{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00436{margin-left:-1.105374px;}
._0_c00436{width:1.478392px;}
._2_c00436{width:2.509781px;}
._3_c00436{width:7.708529px;}
._4_c00436{width:8.810356px;}
.fc0_c00436{color:rgb(0,0,0);}
.fs0_c00436{font-size:59.759976px;}
.fs1_c00436{font-size:66.239974px;}
.fs2_c00436{font-size:71.999971px;}
.y0_c00436{bottom:0.000000px;}
.y4_c00436{bottom:75.720270px;}
.y3_c00436{bottom:113.880254px;}
.y22_c00436{bottom:145.559942px;}
.y21_c00436{bottom:176.519929px;}
.y20_c00436{bottom:207.659917px;}
.y1f_c00436{bottom:238.619905px;}
.y1e_c00436{bottom:269.579892px;}
.y1d_c00436{bottom:300.719880px;}
.y1c_c00436{bottom:331.679867px;}
.y1b_c00436{bottom:362.819855px;}
.y1a_c00436{bottom:393.779842px;}
.y19_c00436{bottom:424.919830px;}
.y18_c00436{bottom:455.879818px;}
.y17_c00436{bottom:487.019805px;}
.y16_c00436{bottom:517.979793px;}
.y15_c00436{bottom:549.119780px;}
.y14_c00436{bottom:580.079768px;}
.y13_c00436{bottom:611.219756px;}
.y12_c00436{bottom:634.439746px;}
.y11_c00436{bottom:656.219738px;}
.y10_c00436{bottom:681.599727px;}
.yf_c00436{bottom:802.919679px;}
.ye_c00436{bottom:826.679669px;}
.yd_c00436{bottom:850.619660px;}
.yc_c00436{bottom:874.379650px;}
.yb_c00436{bottom:898.139641px;}
.ya_c00436{bottom:921.359631px;}
.y9_c00436{bottom:951.059620px;}
.y8_c00436{bottom:977.699609px;}
.y7_c00436{bottom:1074.179570px;}
.y6_c00436{bottom:1105.319558px;}
.y5_c00436{bottom:1136.279545px;}
.y2_c00436{bottom:1175.879530px;}
.y1_c00436{bottom:1196.039522px;}
.h2_c00436{height:54.628572px;}
.h1_c00436{height:58.651148px;}
.h4_c00436{height:65.010911px;}
.h3_c00436{height:70.664034px;}
.h0_c00436{height:1263.000000px;}
.w0_c00436{width:892.500000px;}
.x0_c00436{left:0.000000px;}
.x5_c00436{left:127.800262px;}
.x7_c00436{left:142.019943px;}
.xa_c00436{left:180.899930px;}
.x1_c00436{left:181.979927px;}
.x2_c00436{left:329.219408px;}
.x9_c00436{left:426.239695px;}
.x4_c00436{left:434.159826px;}
.x6_c00436{left:446.579880px;}
.x8_c00436{left:733.499133px;}
.x3_c00436{left:765.539694px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
._1_c00436{margin-left:-0.982555pt;}
._0_c00436{width:1.314126pt;}
._2_c00436{width:2.230917pt;}
._3_c00436{width:6.852026pt;}
._4_c00436{width:7.831427pt;}
.fs0_c00436{font-size:53.119979pt;}
.fs1_c00436{font-size:58.879976pt;}
.fs2_c00436{font-size:63.999974pt;}
.y0_c00436{bottom:0.000000pt;}
.y4_c00436{bottom:67.306906pt;}
.y3_c00436{bottom:101.226893pt;}
.y22_c00436{bottom:129.386615pt;}
.y21_c00436{bottom:156.906604pt;}
.y20_c00436{bottom:184.586593pt;}
.y1f_c00436{bottom:212.106582pt;}
.y1e_c00436{bottom:239.626571pt;}
.y1d_c00436{bottom:267.306560pt;}
.y1c_c00436{bottom:294.826549pt;}
.y1b_c00436{bottom:322.506538pt;}
.y1a_c00436{bottom:350.026527pt;}
.y19_c00436{bottom:377.706516pt;}
.y18_c00436{bottom:405.226505pt;}
.y17_c00436{bottom:432.906494pt;}
.y16_c00436{bottom:460.426482pt;}
.y15_c00436{bottom:488.106471pt;}
.y14_c00436{bottom:515.626460pt;}
.y13_c00436{bottom:543.306449pt;}
.y12_c00436{bottom:563.946441pt;}
.y11_c00436{bottom:583.306433pt;}
.y10_c00436{bottom:605.866424pt;}
.yf_c00436{bottom:713.706381pt;}
.ye_c00436{bottom:734.826373pt;}
.yd_c00436{bottom:756.106364pt;}
.yc_c00436{bottom:777.226356pt;}
.yb_c00436{bottom:798.346347pt;}
.ya_c00436{bottom:818.986339pt;}
.y9_c00436{bottom:845.386329pt;}
.y8_c00436{bottom:869.066319pt;}
.y7_c00436{bottom:954.826285pt;}
.y6_c00436{bottom:982.506274pt;}
.y5_c00436{bottom:1010.026263pt;}
.y2_c00436{bottom:1045.226249pt;}
.y1_c00436{bottom:1063.146241pt;}
.h2_c00436{height:48.558731pt;}
.h1_c00436{height:52.134354pt;}
.h4_c00436{height:57.787477pt;}
.h3_c00436{height:62.812475pt;}
.h0_c00436{height:1122.666667pt;}
.w0_c00436{width:793.333333pt;}
.x0_c00436{left:0.000000pt;}
.x5_c00436{left:113.600233pt;}
.x7_c00436{left:126.239950pt;}
.xa_c00436{left:160.799938pt;}
.x1_c00436{left:161.759935pt;}
.x2_c00436{left:292.639474pt;}
.x9_c00436{left:378.879729pt;}
.x4_c00436{left:385.919846pt;}
.x6_c00436{left:396.959893pt;}
.x8_c00436{left:651.999229pt;}
.x3_c00436{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_962973647e5c9decb42099e6.woff2')format("woff");}.ff1_c00437{font-family:ff1_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:ff2_c00437;src:url('chunks/assets/font_e7fbffe10c6ca8c1a3b836c1.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_dd43b55b070bd2d8eee4e897.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.311035;font-style:normal;font-weight:normal;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_efaa8243fc777089fb6ce21d.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_63b1c647c7ec0e4fe84da084.woff2')format("woff");}.ff5_c00437{font-family:ff5_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;}
.m0_c00437{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00437{word-spacing:-17.999993px;}
.ws1_c00437{word-spacing:0.000000px;}
._1_c00437{margin-left:-1.105374px;}
._0_c00437{width:1.195563px;}
._7_c00437{width:2.232656px;}
._3_c00437{width:3.233152px;}
._2_c00437{width:5.156417px;}
._6_c00437{width:9.416357px;}
._4_c00437{width:10.568946px;}
._5_c00437{width:11.783851px;}
.fc0_c00437{color:rgb(0,0,0);}
.fs0_c00437{font-size:59.759976px;}
.fs1_c00437{font-size:66.239974px;}
.fs2_c00437{font-size:71.999971px;}
.y0_c00437{bottom:0.000000px;}
.y4_c00437{bottom:75.719970px;}
.y3_c00437{bottom:113.879954px;}
.y16_c00437{bottom:188.939924px;}
.y15_c00437{bottom:219.899912px;}
.y14_c00437{bottom:251.039900px;}
.y13_c00437{bottom:281.999887px;}
.y12_c00437{bottom:312.959875px;}
.y11_c00437{bottom:344.099862px;}
.y10_c00437{bottom:375.059850px;}
.yf_c00437{bottom:406.199838px;}
.ye_c00437{bottom:437.159825px;}
.yd_c00437{bottom:468.299813px;}
.yc_c00437{bottom:499.259800px;}
.yb_c00437{bottom:523.199791px;}
.ya_c00437{bottom:546.419781px;}
.y9_c00437{bottom:568.199773px;}
.y8_c00437{bottom:593.579763px;}
.y7_c00437{bottom:1055.639578px;}
.y6_c00437{bottom:1086.599565px;}
.y5_c00437{bottom:1117.739553px;}
.y2_c00437{bottom:1156.979537px;}
.y1_c00437{bottom:1195.859522px;}
.h2_c00437{height:54.628572px;}
.h1_c00437{height:58.651148px;}
.h5_c00437{height:65.010911px;}
.h4_c00437{height:70.628878px;}
.h6_c00437{height:70.664034px;}
.h3_c00437{height:72.562471px;}
.h0_c00437{height:1263.000000px;}
.w0_c00437{width:892.500000px;}
.x0_c00437{left:0.000000px;}
.x1_c00437{left:127.799949px;}
.x5_c00437{left:136.259945px;}
.x9_c00437{left:180.899928px;}
.x8_c00437{left:358.379857px;}
.x2_c00437{left:434.159514px;}
.x3_c00437{left:446.579821px;}
.x4_c00437{left:574.019770px;}
.x6_c00437{left:682.919727px;}
.x7_c00437{left:687.239725px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:-15.999994pt;}
.ws1_c00437{word-spacing:0.000000pt;}
._1_c00437{margin-left:-0.982555pt;}
._0_c00437{width:1.062723pt;}
._7_c00437{width:1.984583pt;}
._3_c00437{width:2.873913pt;}
._2_c00437{width:4.583482pt;}
._6_c00437{width:8.370095pt;}
._4_c00437{width:9.394619pt;}
._5_c00437{width:10.474535pt;}
.fs0_c00437{font-size:53.119979pt;}
.fs1_c00437{font-size:58.879976pt;}
.fs2_c00437{font-size:63.999974pt;}
.y0_c00437{bottom:0.000000pt;}
.y4_c00437{bottom:67.306640pt;}
.y3_c00437{bottom:101.226626pt;}
.y16_c00437{bottom:167.946599pt;}
.y15_c00437{bottom:195.466588pt;}
.y14_c00437{bottom:223.146577pt;}
.y13_c00437{bottom:250.666566pt;}
.y12_c00437{bottom:278.186555pt;}
.y11_c00437{bottom:305.866544pt;}
.y10_c00437{bottom:333.386533pt;}
.yf_c00437{bottom:361.066522pt;}
.ye_c00437{bottom:388.586511pt;}
.yd_c00437{bottom:416.266500pt;}
.yc_c00437{bottom:443.786489pt;}
.yb_c00437{bottom:465.066481pt;}
.ya_c00437{bottom:485.706472pt;}
.y9_c00437{bottom:505.066465pt;}
.y8_c00437{bottom:527.626456pt;}
.y7_c00437{bottom:938.346291pt;}
.y6_c00437{bottom:965.866280pt;}
.y5_c00437{bottom:993.546269pt;}
.y2_c00437{bottom:1028.426255pt;}
.y1_c00437{bottom:1062.986241pt;}
.h2_c00437{height:48.558731pt;}
.h1_c00437{height:52.134354pt;}
.h5_c00437{height:57.787477pt;}
.h4_c00437{height:62.781225pt;}
.h6_c00437{height:62.812475pt;}
.h3_c00437{height:64.499974pt;}
.h0_c00437{height:1122.666667pt;}
.w0_c00437{width:793.333333pt;}
.x0_c00437{left:0.000000pt;}
.x1_c00437{left:113.599955pt;}
.x5_c00437{left:121.119952pt;}
.x9_c00437{left:160.799936pt;}
.x8_c00437{left:318.559873pt;}
.x2_c00437{left:385.919568pt;}
.x3_c00437{left:396.959841pt;}
.x4_c00437{left:510.239796pt;}
.x6_c00437{left:607.039757pt;}
.x7_c00437{left:610.879756pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5e9f4a92396d4b4a083fa34.woff2')format("woff");}.ff1_c00438{font-family:ff1_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:ff2_c00438;src:url('chunks/assets/font_389634518e7a4e1a468c4583.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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_e8f08eccae6a8044baf64406.woff2')format("woff");}.ff4_c00438{font-family:ff4_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;}
.m0_c00438{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls8_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.009900px;}
.ls6_c00438{letter-spacing:0.011169px;}
.ls3_c00438{letter-spacing:0.012620px;}
.ls1_c00438{letter-spacing:0.012664px;}
.ls2_c00438{letter-spacing:0.153901px;}
.ls4_c00438{letter-spacing:0.186542px;}
.ls7_c00438{letter-spacing:0.189300px;}
.ls5_c00438{letter-spacing:0.909731px;}
.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:-17.999993px;}
.ws4_c00438{word-spacing:-14.939994px;}
.ws0_c00438{word-spacing:-10.452660px;}
.ws2_c00438{word-spacing:-10.452616px;}
.ws3_c00438{word-spacing:-9.731165px;}
.ws5_c00438{word-spacing:0.000000px;}
._4_c00438{margin-left:-12.716934px;}
._1_c00438{margin-left:-1.105374px;}
._0_c00438{width:1.478392px;}
._3_c00438{width:4.308389px;}
._2_c00438{width:26.641542px;}
.fc1_c00438{color:rgb(103,103,103);}
.fc0_c00438{color:rgb(0,0,0);}
.fs4_c00438{font-size:38.879984px;}
.fs3_c00438{font-size:41.759983px;}
.fs0_c00438{font-size:59.759976px;}
.fs1_c00438{font-size:66.239974px;}
.fs2_c00438{font-size:71.999971px;}
.y0_c00438{bottom:0.000000px;}
.y4_c00438{bottom:75.720270px;}
.y3_c00438{bottom:113.880254px;}
.y20_c00438{bottom:133.499947px;}
.y1f_c00438{bottom:151.859939px;}
.y1e_c00438{bottom:169.859932px;}
.y1d_c00438{bottom:176.699929px;}
.y1c_c00438{bottom:187.139925px;}
.y1b_c00438{bottom:204.419918px;}
.y1a_c00438{bottom:221.879911px;}
.y19_c00438{bottom:229.439908px;}
.y18_c00438{bottom:241.499903px;}
.y17_c00438{bottom:385.859846px;}
.y16_c00438{bottom:417.359833px;}
.y15_c00438{bottom:448.319821px;}
.y14_c00438{bottom:479.459808px;}
.y13_c00438{bottom:510.059796px;}
.y11_c00438{bottom:533.639787px;}
.y12_c00438{bottom:541.199784px;}
.y10_c00438{bottom:555.599778px;}
.yf_c00438{bottom:577.379769px;}
.ye_c00438{bottom:602.579759px;}
.yd_c00438{bottom:778.979688px;}
.yc_c00438{bottom:810.299676px;}
.yb_c00438{bottom:841.439663px;}
.ya_c00438{bottom:872.399651px;}
.y9_c00438{bottom:903.539639px;}
.y7_c00438{bottom:926.759629px;}
.y8_c00438{bottom:934.319626px;}
.y6_c00438{bottom:948.539621px;}
.y5_c00438{bottom:973.739611px;}
.y2_c00438{bottom:1175.879530px;}
.y1_c00438{bottom:1196.039522px;}
.h7_c00438{height:38.158578px;}
.h5_c00438{height:40.985140px;}
.h8_c00438{height:49.284472px;}
.h2_c00438{height:54.628572px;}
.h1_c00438{height:58.651148px;}
.h4_c00438{height:65.010911px;}
.h3_c00438{height:70.628878px;}
.h6_c00438{height:70.664034px;}
.h0_c00438{height:1263.000000px;}
.w0_c00438{width:892.500000px;}
.x0_c00438{left:0.000000px;}
.x5_c00438{left:127.800262px;}
.x7_c00438{left:143.279943px;}
.xe_c00438{left:144.719942px;}
.xb_c00438{left:180.899928px;}
.x1_c00438{left:181.979927px;}
.x8_c00438{left:279.719888px;}
.xf_c00438{left:313.739875px;}
.x2_c00438{left:329.219408px;}
.x4_c00438{left:434.159826px;}
.xc_c00438{left:446.579821px;}
.x6_c00438{left:539.999784px;}
.x10_c00438{left:563.939774px;}
.x11_c00438{left:579.599768px;}
.x9_c00438{left:597.779761px;}
.xa_c00438{left:613.439755px;}
.xd_c00438{left:734.759706px;}
.x3_c00438{left:765.539694px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls8_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.008800pt;}
.ls6_c00438{letter-spacing:0.009928pt;}
.ls3_c00438{letter-spacing:0.011218pt;}
.ls1_c00438{letter-spacing:0.011257pt;}
.ls2_c00438{letter-spacing:0.136801pt;}
.ls4_c00438{letter-spacing:0.165815pt;}
.ls7_c00438{letter-spacing:0.168267pt;}
.ls5_c00438{letter-spacing:0.808650pt;}
.ws1_c00438{word-spacing:-15.999994pt;}
.ws4_c00438{word-spacing:-13.279995pt;}
.ws0_c00438{word-spacing:-9.291253pt;}
.ws2_c00438{word-spacing:-9.291214pt;}
.ws3_c00438{word-spacing:-8.649924pt;}
.ws5_c00438{word-spacing:0.000000pt;}
._4_c00438{margin-left:-11.303941pt;}
._1_c00438{margin-left:-0.982555pt;}
._0_c00438{width:1.314126pt;}
._3_c00438{width:3.829679pt;}
._2_c00438{width:23.681370pt;}
.fs4_c00438{font-size:34.559986pt;}
.fs3_c00438{font-size:37.119985pt;}
.fs0_c00438{font-size:53.119979pt;}
.fs1_c00438{font-size:58.879976pt;}
.fs2_c00438{font-size:63.999974pt;}
.y0_c00438{bottom:0.000000pt;}
.y4_c00438{bottom:67.306906pt;}
.y3_c00438{bottom:101.226893pt;}
.y20_c00438{bottom:118.666619pt;}
.y1f_c00438{bottom:134.986613pt;}
.y1e_c00438{bottom:150.986606pt;}
.y1d_c00438{bottom:157.066604pt;}
.y1c_c00438{bottom:166.346600pt;}
.y1b_c00438{bottom:181.706594pt;}
.y1a_c00438{bottom:197.226588pt;}
.y19_c00438{bottom:203.946585pt;}
.y18_c00438{bottom:214.666581pt;}
.y17_c00438{bottom:342.986529pt;}
.y16_c00438{bottom:370.986518pt;}
.y15_c00438{bottom:398.506507pt;}
.y14_c00438{bottom:426.186496pt;}
.y13_c00438{bottom:453.386485pt;}
.y11_c00438{bottom:474.346477pt;}
.y12_c00438{bottom:481.066474pt;}
.y10_c00438{bottom:493.866469pt;}
.yf_c00438{bottom:513.226461pt;}
.ye_c00438{bottom:535.626452pt;}
.yd_c00438{bottom:692.426390pt;}
.yc_c00438{bottom:720.266379pt;}
.yb_c00438{bottom:747.946367pt;}
.ya_c00438{bottom:775.466356pt;}
.y9_c00438{bottom:803.146345pt;}
.y7_c00438{bottom:823.786337pt;}
.y8_c00438{bottom:830.506334pt;}
.y6_c00438{bottom:843.146329pt;}
.y5_c00438{bottom:865.546320pt;}
.y2_c00438{bottom:1045.226249pt;}
.y1_c00438{bottom:1063.146241pt;}
.h7_c00438{height:33.918736pt;}
.h5_c00438{height:36.431235pt;}
.h8_c00438{height:43.808420pt;}
.h2_c00438{height:48.558731pt;}
.h1_c00438{height:52.134354pt;}
.h4_c00438{height:57.787477pt;}
.h3_c00438{height:62.781225pt;}
.h6_c00438{height:62.812475pt;}
.h0_c00438{height:1122.666667pt;}
.w0_c00438{width:793.333333pt;}
.x0_c00438{left:0.000000pt;}
.x5_c00438{left:113.600233pt;}
.x7_c00438{left:127.359949pt;}
.xe_c00438{left:128.639949pt;}
.xb_c00438{left:160.799936pt;}
.x1_c00438{left:161.759935pt;}
.x8_c00438{left:248.639901pt;}
.xf_c00438{left:278.879888pt;}
.x2_c00438{left:292.639474pt;}
.x4_c00438{left:385.919846pt;}
.xc_c00438{left:396.959841pt;}
.x6_c00438{left:479.999808pt;}
.x10_c00438{left:501.279799pt;}
.x11_c00438{left:515.199794pt;}
.x9_c00438{left:531.359787pt;}
.xa_c00438{left:545.279782pt;}
.xd_c00438{left:653.119739pt;}
.x3_c00438{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd3393fa08b08a6303c59139.woff2')format("woff");}.ff1_c00439{font-family:ff1_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:ff2_c00439;src:url('chunks/assets/font_4474da9ccf17bb2cf3b40e4e.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c00439{font-family:ff3_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:ff4_c00439;src:url('chunks/assets/font_4439525f5dd14d758389d36e.woff2')format("woff");}.ff4_c00439{font-family:ff4_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;}
.m0_c00439{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls4_c00439{letter-spacing:0.000000px;}
.ls2_c00439{letter-spacing:0.011169px;}
.ls0_c00439{letter-spacing:0.012664px;}
.ls1_c00439{letter-spacing:0.153901px;}
.ls3_c00439{letter-spacing:0.189300px;}
.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:-17.999993px;}
.ws3_c00439{word-spacing:-14.939994px;}
.ws0_c00439{word-spacing:-10.452660px;}
.ws2_c00439{word-spacing:-9.731165px;}
.ws4_c00439{word-spacing:0.000000px;}
._2_c00439{margin-left:-12.716934px;}
._1_c00439{margin-left:-1.105374px;}
._0_c00439{width:1.195563px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs4_c00439{font-size:38.879984px;}
.fs3_c00439{font-size:41.759983px;}
.fs0_c00439{font-size:59.759976px;}
.fs1_c00439{font-size:66.239974px;}
.fs2_c00439{font-size:71.999971px;}
.y0_c00439{bottom:0.000000px;}
.y4_c00439{bottom:75.719970px;}
.y3_c00439{bottom:113.879954px;}
.y21_c00439{bottom:133.140247px;}
.y20_c00439{bottom:139.980244px;}
.y1f_c00439{bottom:150.419940px;}
.y1e_c00439{bottom:157.259937px;}
.y1d_c00439{bottom:167.699933px;}
.y1c_c00439{bottom:174.539930px;}
.y1b_c00439{bottom:185.879926px;}
.y19_c00439{bottom:209.099916px;}
.y1a_c00439{bottom:216.659913px;}
.y18_c00439{bottom:230.879908px;}
.y17_c00439{bottom:256.259897px;}
.y16_c00439{bottom:385.499846px;}
.y15_c00439{bottom:416.639833px;}
.y14_c00439{bottom:447.599821px;}
.y13_c00439{bottom:478.739809px;}
.y12_c00439{bottom:508.619797px;}
.y10_c00439{bottom:530.399788px;}
.y11_c00439{bottom:537.959785px;}
.yf_c00439{bottom:552.179779px;}
.ye_c00439{bottom:581.519767px;}
.yd_c00439{bottom:608.519757px;}
.yc_c00439{bottom:712.199715px;}
.yb_c00439{bottom:743.159703px;}
.ya_c00439{bottom:774.299690px;}
.y9_c00439{bottom:805.259678px;}
.y7_c00439{bottom:828.479669px;}
.y8_c00439{bottom:836.039666px;}
.y6_c00439{bottom:850.439660px;}
.y5_c00439{bottom:875.819650px;}
.y2_c00439{bottom:1156.979537px;}
.y1_c00439{bottom:1195.859522px;}
.h7_c00439{height:38.158578px;}
.h5_c00439{height:40.985140px;}
.h2_c00439{height:54.628572px;}
.h1_c00439{height:58.651148px;}
.h4_c00439{height:65.010911px;}
.h3_c00439{height:70.628878px;}
.h6_c00439{height:70.664034px;}
.h0_c00439{height:1263.000000px;}
.w0_c00439{width:892.500000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:127.799949px;}
.x4_c00439{left:128.879948px;}
.xb_c00439{left:137.519945px;}
.x14_c00439{left:142.379943px;}
.x10_c00439{left:145.079942px;}
.x8_c00439{left:180.899928px;}
.x11_c00439{left:218.339913px;}
.xc_c00439{left:279.719888px;}
.x5_c00439{left:350.639860px;}
.x2_c00439{left:434.159514px;}
.xa_c00439{left:446.579821px;}
.x6_c00439{left:527.039789px;}
.x7_c00439{left:542.699783px;}
.xd_c00439{left:597.779761px;}
.xe_c00439{left:613.439755px;}
.x12_c00439{left:659.159736px;}
.x3_c00439{left:661.859735px;}
.x13_c00439{left:674.819730px;}
.x9_c00439{left:733.499707px;}
.xf_c00439{left:750.419700px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls4_c00439{letter-spacing:0.000000pt;}
.ls2_c00439{letter-spacing:0.009928pt;}
.ls0_c00439{letter-spacing:0.011257pt;}
.ls1_c00439{letter-spacing:0.136801pt;}
.ls3_c00439{letter-spacing:0.168267pt;}
.ws1_c00439{word-spacing:-15.999994pt;}
.ws3_c00439{word-spacing:-13.279995pt;}
.ws0_c00439{word-spacing:-9.291253pt;}
.ws2_c00439{word-spacing:-8.649924pt;}
.ws4_c00439{word-spacing:0.000000pt;}
._2_c00439{margin-left:-11.303941pt;}
._1_c00439{margin-left:-0.982555pt;}
._0_c00439{width:1.062723pt;}
.fs4_c00439{font-size:34.559986pt;}
.fs3_c00439{font-size:37.119985pt;}
.fs0_c00439{font-size:53.119979pt;}
.fs1_c00439{font-size:58.879976pt;}
.fs2_c00439{font-size:63.999974pt;}
.y0_c00439{bottom:0.000000pt;}
.y4_c00439{bottom:67.306640pt;}
.y3_c00439{bottom:101.226626pt;}
.y21_c00439{bottom:118.346886pt;}
.y20_c00439{bottom:124.426884pt;}
.y1f_c00439{bottom:133.706613pt;}
.y1e_c00439{bottom:139.786611pt;}
.y1d_c00439{bottom:149.066607pt;}
.y1c_c00439{bottom:155.146605pt;}
.y1b_c00439{bottom:165.226601pt;}
.y19_c00439{bottom:185.866592pt;}
.y1a_c00439{bottom:192.586590pt;}
.y18_c00439{bottom:205.226585pt;}
.y17_c00439{bottom:227.786576pt;}
.y16_c00439{bottom:342.666530pt;}
.y15_c00439{bottom:370.346519pt;}
.y14_c00439{bottom:397.866508pt;}
.y13_c00439{bottom:425.546496pt;}
.y12_c00439{bottom:452.106486pt;}
.y10_c00439{bottom:471.466478pt;}
.y11_c00439{bottom:478.186475pt;}
.yf_c00439{bottom:490.826470pt;}
.ye_c00439{bottom:516.906460pt;}
.yd_c00439{bottom:540.906450pt;}
.yc_c00439{bottom:633.066413pt;}
.yb_c00439{bottom:660.586402pt;}
.ya_c00439{bottom:688.266391pt;}
.y9_c00439{bottom:715.786380pt;}
.y7_c00439{bottom:736.426372pt;}
.y8_c00439{bottom:743.146369pt;}
.y6_c00439{bottom:755.946364pt;}
.y5_c00439{bottom:778.506355pt;}
.y2_c00439{bottom:1028.426255pt;}
.y1_c00439{bottom:1062.986241pt;}
.h7_c00439{height:33.918736pt;}
.h5_c00439{height:36.431235pt;}
.h2_c00439{height:48.558731pt;}
.h1_c00439{height:52.134354pt;}
.h4_c00439{height:57.787477pt;}
.h3_c00439{height:62.781225pt;}
.h6_c00439{height:62.812475pt;}
.h0_c00439{height:1122.666667pt;}
.w0_c00439{width:793.333333pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:113.599955pt;}
.x4_c00439{left:114.559954pt;}
.xb_c00439{left:122.239951pt;}
.x14_c00439{left:126.559949pt;}
.x10_c00439{left:128.959948pt;}
.x8_c00439{left:160.799936pt;}
.x11_c00439{left:194.079922pt;}
.xc_c00439{left:248.639901pt;}
.x5_c00439{left:311.679875pt;}
.x2_c00439{left:385.919568pt;}
.xa_c00439{left:396.959841pt;}
.x6_c00439{left:468.479813pt;}
.x7_c00439{left:482.399807pt;}
.xd_c00439{left:531.359787pt;}
.xe_c00439{left:545.279782pt;}
.x12_c00439{left:585.919766pt;}
.x3_c00439{left:588.319765pt;}
.x13_c00439{left:599.839760pt;}
.x9_c00439{left:651.999739pt;}
.xf_c00439{left:667.039733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94d83219f0de4811030fa67e.woff2')format("woff");}.ff1_c00440{font-family:ff1_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:ff2_c00440;src:url('chunks/assets/font_f85a7eb22a4093bb97166649.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_4439525f5dd14d758389d36e.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00440{font-family:ff4_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;}
.m0_c00440{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00440{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls2_c00440{letter-spacing:0.011169px;}
.ls0_c00440{letter-spacing:0.012664px;}
.ls1_c00440{letter-spacing:0.153901px;}
.ls3_c00440{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00440{word-spacing:-17.999993px;}
.ws2_c00440{word-spacing:-16.559993px;}
.ws4_c00440{word-spacing:-14.939994px;}
.ws1_c00440{word-spacing:-10.452660px;}
.ws3_c00440{word-spacing:-9.731165px;}
.ws5_c00440{word-spacing:0.000000px;}
._6_c00440{margin-left:-3.571519px;}
._1_c00440{margin-left:-1.105374px;}
._0_c00440{width:1.478392px;}
._4_c00440{width:4.780771px;}
._5_c00440{width:6.309081px;}
._2_c00440{width:12.233051px;}
._3_c00440{width:13.250943px;}
.fc0_c00440{color:rgb(0,0,0);}
.fs4_c00440{font-size:38.879984px;}
.fs3_c00440{font-size:41.759983px;}
.fs0_c00440{font-size:59.759976px;}
.fs1_c00440{font-size:66.239974px;}
.fs2_c00440{font-size:71.999971px;}
.y0_c00440{bottom:0.000000px;}
.y4_c00440{bottom:75.720270px;}
.y3_c00440{bottom:113.880254px;}
.y1e_c00440{bottom:133.499947px;}
.y1d_c00440{bottom:151.859939px;}
.y1c_c00440{bottom:169.859932px;}
.y1b_c00440{bottom:176.699929px;}
.y1a_c00440{bottom:187.139925px;}
.y19_c00440{bottom:204.419918px;}
.y18_c00440{bottom:211.259915px;}
.y17_c00440{bottom:221.879911px;}
.y16_c00440{bottom:240.239904px;}
.y15_c00440{bottom:259.139896px;}
.y14_c00440{bottom:300.359880px;}
.y12_c00440{bottom:323.579871px;}
.y13_c00440{bottom:331.139868px;}
.y11_c00440{bottom:345.359862px;}
.y10_c00440{bottom:370.739852px;}
.yf_c00440{bottom:734.159706px;}
.ye_c00440{bottom:765.119694px;}
.yd_c00440{bottom:796.079682px;}
.yc_c00440{bottom:827.219669px;}
.yb_c00440{bottom:858.179657px;}
.y9_c00440{bottom:881.579647px;}
.ya_c00440{bottom:889.139644px;}
.y8_c00440{bottom:903.359639px;}
.y7_c00440{bottom:928.559629px;}
.y6_c00440{bottom:1105.319558px;}
.y5_c00440{bottom:1136.279545px;}
.y2_c00440{bottom:1175.879530px;}
.y1_c00440{bottom:1196.039522px;}
.h8_c00440{height:38.158578px;}
.h6_c00440{height:40.985140px;}
.h7_c00440{height:49.284472px;}
.h2_c00440{height:54.628572px;}
.h1_c00440{height:58.651148px;}
.h5_c00440{height:65.010911px;}
.h4_c00440{height:70.628878px;}
.h3_c00440{height:70.664034px;}
.h0_c00440{height:1263.000000px;}
.w0_c00440{width:892.500000px;}
.x0_c00440{left:0.000000px;}
.x5_c00440{left:127.800262px;}
.x8_c00440{left:137.519945px;}
.x11_c00440{left:142.379943px;}
.xd_c00440{left:158.579937px;}
.x6_c00440{left:180.899928px;}
.x1_c00440{left:181.979927px;}
.xe_c00440{left:238.679905px;}
.x9_c00440{left:279.719888px;}
.x2_c00440{left:329.219408px;}
.x4_c00440{left:434.159826px;}
.xa_c00440{left:597.779761px;}
.xb_c00440{left:613.439755px;}
.xf_c00440{left:638.819744px;}
.xc_c00440{left:647.999741px;}
.x10_c00440{left:654.479738px;}
.x7_c00440{left:725.579710px;}
.x3_c00440{left:765.539694px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls2_c00440{letter-spacing:0.009928pt;}
.ls0_c00440{letter-spacing:0.011257pt;}
.ls1_c00440{letter-spacing:0.136801pt;}
.ls3_c00440{letter-spacing:0.168267pt;}
.ws0_c00440{word-spacing:-15.999994pt;}
.ws2_c00440{word-spacing:-14.719994pt;}
.ws4_c00440{word-spacing:-13.279995pt;}
.ws1_c00440{word-spacing:-9.291253pt;}
.ws3_c00440{word-spacing:-8.649924pt;}
.ws5_c00440{word-spacing:0.000000pt;}
._6_c00440{margin-left:-3.174684pt;}
._1_c00440{margin-left:-0.982555pt;}
._0_c00440{width:1.314126pt;}
._4_c00440{width:4.249574pt;}
._5_c00440{width:5.608072pt;}
._2_c00440{width:10.873823pt;}
._3_c00440{width:11.778616pt;}
.fs4_c00440{font-size:34.559986pt;}
.fs3_c00440{font-size:37.119985pt;}
.fs0_c00440{font-size:53.119979pt;}
.fs1_c00440{font-size:58.879976pt;}
.fs2_c00440{font-size:63.999974pt;}
.y0_c00440{bottom:0.000000pt;}
.y4_c00440{bottom:67.306906pt;}
.y3_c00440{bottom:101.226893pt;}
.y1e_c00440{bottom:118.666619pt;}
.y1d_c00440{bottom:134.986613pt;}
.y1c_c00440{bottom:150.986606pt;}
.y1b_c00440{bottom:157.066604pt;}
.y1a_c00440{bottom:166.346600pt;}
.y19_c00440{bottom:181.706594pt;}
.y18_c00440{bottom:187.786592pt;}
.y17_c00440{bottom:197.226588pt;}
.y16_c00440{bottom:213.546581pt;}
.y15_c00440{bottom:230.346575pt;}
.y14_c00440{bottom:266.986560pt;}
.y12_c00440{bottom:287.626552pt;}
.y13_c00440{bottom:294.346549pt;}
.y11_c00440{bottom:306.986544pt;}
.y10_c00440{bottom:329.546535pt;}
.yf_c00440{bottom:652.586406pt;}
.ye_c00440{bottom:680.106395pt;}
.yd_c00440{bottom:707.626384pt;}
.yc_c00440{bottom:735.306373pt;}
.yb_c00440{bottom:762.826362pt;}
.y9_c00440{bottom:783.626353pt;}
.ya_c00440{bottom:790.346351pt;}
.y8_c00440{bottom:802.986345pt;}
.y7_c00440{bottom:825.386337pt;}
.y6_c00440{bottom:982.506274pt;}
.y5_c00440{bottom:1010.026263pt;}
.y2_c00440{bottom:1045.226249pt;}
.y1_c00440{bottom:1063.146241pt;}
.h8_c00440{height:33.918736pt;}
.h6_c00440{height:36.431235pt;}
.h7_c00440{height:43.808420pt;}
.h2_c00440{height:48.558731pt;}
.h1_c00440{height:52.134354pt;}
.h5_c00440{height:57.787477pt;}
.h4_c00440{height:62.781225pt;}
.h3_c00440{height:62.812475pt;}
.h0_c00440{height:1122.666667pt;}
.w0_c00440{width:793.333333pt;}
.x0_c00440{left:0.000000pt;}
.x5_c00440{left:113.600233pt;}
.x8_c00440{left:122.239951pt;}
.x11_c00440{left:126.559949pt;}
.xd_c00440{left:140.959944pt;}
.x6_c00440{left:160.799936pt;}
.x1_c00440{left:161.759935pt;}
.xe_c00440{left:212.159915pt;}
.x9_c00440{left:248.639901pt;}
.x2_c00440{left:292.639474pt;}
.x4_c00440{left:385.919846pt;}
.xa_c00440{left:531.359787pt;}
.xb_c00440{left:545.279782pt;}
.xf_c00440{left:567.839773pt;}
.xc_c00440{left:575.999770pt;}
.x10_c00440{left:581.759767pt;}
.x7_c00440{left:644.959742pt;}
.x3_c00440{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4802b31dcc745f1603dd61c2.woff2')format("woff");}.ff1_c00441{font-family:ff1_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:ff2_c00441;src:url('chunks/assets/font_d63b2a3b2ee646e9e26f932b.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_4439525f5dd14d758389d36e.woff2')format("woff");}.ff3_c00441{font-family:ff3_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;}
.m0_c00441{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls4_c00441{letter-spacing:0.000000px;}
.ls2_c00441{letter-spacing:0.011169px;}
.ls0_c00441{letter-spacing:0.012664px;}
.ls1_c00441{letter-spacing:0.153901px;}
.ls3_c00441{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00441{word-spacing:-14.939994px;}
.ws0_c00441{word-spacing:-10.452660px;}
.ws1_c00441{word-spacing:-9.731165px;}
.ws3_c00441{word-spacing:0.000000px;}
._7_c00441{margin-left:-12.716934px;}
._4_c00441{margin-left:-2.139990px;}
._1_c00441{margin-left:-1.105374px;}
._0_c00441{width:1.195563px;}
._6_c00441{width:2.870809px;}
._2_c00441{width:4.308389px;}
._3_c00441{width:5.646097px;}
._5_c00441{width:15.835210px;}
.fc0_c00441{color:rgb(0,0,0);}
.fs4_c00441{font-size:38.879984px;}
.fs3_c00441{font-size:41.759983px;}
.fs0_c00441{font-size:59.759976px;}
.fs1_c00441{font-size:66.239974px;}
.fs2_c00441{font-size:71.999971px;}
.y0_c00441{bottom:0.000000px;}
.y4_c00441{bottom:75.719970px;}
.y3_c00441{bottom:113.879954px;}
.y20_c00441{bottom:133.499947px;}
.y1f_c00441{bottom:151.499939px;}
.y1e_c00441{bottom:158.339937px;}
.y1d_c00441{bottom:168.779932px;}
.y1c_c00441{bottom:175.619930px;}
.y1b_c00441{bottom:186.059926px;}
.y1a_c00441{bottom:192.899923px;}
.y19_c00441{bottom:204.239918px;}
.y17_c00441{bottom:241.859903px;}
.y18_c00441{bottom:249.419900px;}
.y16_c00441{bottom:263.639895px;}
.y15_c00441{bottom:289.019884px;}
.y14_c00441{bottom:449.759820px;}
.y13_c00441{bottom:480.899808px;}
.y12_c00441{bottom:511.859795px;}
.y10_c00441{bottom:535.079786px;}
.y11_c00441{bottom:542.639783px;}
.yf_c00441{bottom:557.039777px;}
.ye_c00441{bottom:582.419767px;}
.yd_c00441{bottom:834.059666px;}
.yc_c00441{bottom:865.199654px;}
.yb_c00441{bottom:896.159642px;}
.y9_c00441{bottom:919.379632px;}
.ya_c00441{bottom:926.939629px;}
.y8_c00441{bottom:941.339623px;}
.y7_c00441{bottom:966.719613px;}
.y6_c00441{bottom:1086.959565px;}
.y5_c00441{bottom:1118.099553px;}
.y2_c00441{bottom:1156.979537px;}
.y1_c00441{bottom:1195.859522px;}
.h8_c00441{height:38.158578px;}
.h6_c00441{height:40.985140px;}
.h9_c00441{height:49.284472px;}
.h2_c00441{height:54.628572px;}
.h1_c00441{height:58.651148px;}
.h7_c00441{height:64.978568px;}
.h5_c00441{height:65.010911px;}
.h4_c00441{height:70.628878px;}
.h3_c00441{height:70.664034px;}
.h0_c00441{height:1263.000000px;}
.w0_c00441{width:892.500000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:127.799949px;}
.x5_c00441{left:134.099946px;}
.x13_c00441{left:142.379943px;}
.xa_c00441{left:151.559939px;}
.x3_c00441{left:180.899928px;}
.xb_c00441{left:279.719888px;}
.x10_c00441{left:303.839878px;}
.x6_c00441{left:313.739875px;}
.x2_c00441{left:434.159514px;}
.xe_c00441{left:446.579821px;}
.x7_c00441{left:563.939774px;}
.x11_c00441{left:573.839770px;}
.x8_c00441{left:579.599768px;}
.x12_c00441{left:589.499764px;}
.xc_c00441{left:597.779761px;}
.xd_c00441{left:613.439755px;}
.x9_c00441{left:696.419721px;}
.xf_c00441{left:700.199720px;}
.x4_c00441{left:753.839698px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls4_c00441{letter-spacing:0.000000pt;}
.ls2_c00441{letter-spacing:0.009928pt;}
.ls0_c00441{letter-spacing:0.011257pt;}
.ls1_c00441{letter-spacing:0.136801pt;}
.ls3_c00441{letter-spacing:0.168267pt;}
.ws2_c00441{word-spacing:-13.279995pt;}
.ws0_c00441{word-spacing:-9.291253pt;}
.ws1_c00441{word-spacing:-8.649924pt;}
.ws3_c00441{word-spacing:0.000000pt;}
._7_c00441{margin-left:-11.303941pt;}
._4_c00441{margin-left:-1.902214pt;}
._1_c00441{margin-left:-0.982555pt;}
._0_c00441{width:1.062723pt;}
._6_c00441{width:2.551830pt;}
._2_c00441{width:3.829679pt;}
._3_c00441{width:5.018753pt;}
._5_c00441{width:14.075742pt;}
.fs4_c00441{font-size:34.559986pt;}
.fs3_c00441{font-size:37.119985pt;}
.fs0_c00441{font-size:53.119979pt;}
.fs1_c00441{font-size:58.879976pt;}
.fs2_c00441{font-size:63.999974pt;}
.y0_c00441{bottom:0.000000pt;}
.y4_c00441{bottom:67.306640pt;}
.y3_c00441{bottom:101.226626pt;}
.y20_c00441{bottom:118.666619pt;}
.y1f_c00441{bottom:134.666613pt;}
.y1e_c00441{bottom:140.746610pt;}
.y1d_c00441{bottom:150.026607pt;}
.y1c_c00441{bottom:156.106604pt;}
.y1b_c00441{bottom:165.386601pt;}
.y1a_c00441{bottom:171.466598pt;}
.y19_c00441{bottom:181.546594pt;}
.y17_c00441{bottom:214.986581pt;}
.y18_c00441{bottom:221.706578pt;}
.y16_c00441{bottom:234.346573pt;}
.y15_c00441{bottom:256.906564pt;}
.y14_c00441{bottom:399.786507pt;}
.y13_c00441{bottom:427.466496pt;}
.y12_c00441{bottom:454.986485pt;}
.y10_c00441{bottom:475.626476pt;}
.y11_c00441{bottom:482.346474pt;}
.yf_c00441{bottom:495.146469pt;}
.ye_c00441{bottom:517.706460pt;}
.yd_c00441{bottom:741.386370pt;}
.yc_c00441{bottom:769.066359pt;}
.yb_c00441{bottom:796.586348pt;}
.y9_c00441{bottom:817.226340pt;}
.ya_c00441{bottom:823.946337pt;}
.y8_c00441{bottom:836.746332pt;}
.y7_c00441{bottom:859.306323pt;}
.y6_c00441{bottom:966.186280pt;}
.y5_c00441{bottom:993.866269pt;}
.y2_c00441{bottom:1028.426255pt;}
.y1_c00441{bottom:1062.986241pt;}
.h8_c00441{height:33.918736pt;}
.h6_c00441{height:36.431235pt;}
.h9_c00441{height:43.808420pt;}
.h2_c00441{height:48.558731pt;}
.h1_c00441{height:52.134354pt;}
.h7_c00441{height:57.758727pt;}
.h5_c00441{height:57.787477pt;}
.h4_c00441{height:62.781225pt;}
.h3_c00441{height:62.812475pt;}
.h0_c00441{height:1122.666667pt;}
.w0_c00441{width:793.333333pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:113.599955pt;}
.x5_c00441{left:119.199952pt;}
.x13_c00441{left:126.559949pt;}
.xa_c00441{left:134.719946pt;}
.x3_c00441{left:160.799936pt;}
.xb_c00441{left:248.639901pt;}
.x10_c00441{left:270.079892pt;}
.x6_c00441{left:278.879888pt;}
.x2_c00441{left:385.919568pt;}
.xe_c00441{left:396.959841pt;}
.x7_c00441{left:501.279799pt;}
.x11_c00441{left:510.079796pt;}
.x8_c00441{left:515.199794pt;}
.x12_c00441{left:523.999790pt;}
.xc_c00441{left:531.359787pt;}
.xd_c00441{left:545.279782pt;}
.x9_c00441{left:619.039752pt;}
.xf_c00441{left:622.399751pt;}
.x4_c00441{left:670.079732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a89b2d0b07cc79ca24337837.woff2')format("woff");}.ff1_c00442{font-family:ff1_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:ff2_c00442;src:url('chunks/assets/font_fc034b239848363595d58099.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_953bfa3247187bb4c4cc9ddc.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00442{font-family:ff4_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;}
.m0_c00442{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00442{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls5_c00442{letter-spacing:0.000000px;}
.ls3_c00442{letter-spacing:0.011169px;}
.ls1_c00442{letter-spacing:0.012664px;}
.ls2_c00442{letter-spacing:0.153901px;}
.ls4_c00442{letter-spacing:0.189300px;}
.ls0_c00442{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00442{word-spacing:-17.999993px;}
.ws2_c00442{word-spacing:-16.559993px;}
.ws5_c00442{word-spacing:-14.939994px;}
.ws0_c00442{word-spacing:-12.434276px;}
.ws3_c00442{word-spacing:-10.452660px;}
.ws4_c00442{word-spacing:-9.731165px;}
.ws6_c00442{word-spacing:0.000000px;}
._5_c00442{margin-left:-12.716934px;}
._1_c00442{margin-left:-1.105374px;}
._0_c00442{width:1.478392px;}
._4_c00442{width:15.835210px;}
._2_c00442{width:19.724298px;}
._3_c00442{width:558.626924px;}
.fc0_c00442{color:rgb(0,0,0);}
.fs5_c00442{font-size:38.879984px;}
.fs4_c00442{font-size:41.759983px;}
.fs3_c00442{font-size:48.239981px;}
.fs0_c00442{font-size:59.759976px;}
.fs1_c00442{font-size:66.239974px;}
.fs2_c00442{font-size:71.999971px;}
.y0_c00442{bottom:0.000000px;}
.y4_c00442{bottom:75.720270px;}
.y3_c00442{bottom:113.880254px;}
.y22_c00442{bottom:133.499947px;}
.y21_c00442{bottom:151.499939px;}
.y20_c00442{bottom:158.339937px;}
.y1f_c00442{bottom:168.779932px;}
.y1e_c00442{bottom:186.059926px;}
.y1d_c00442{bottom:192.899923px;}
.y1c_c00442{bottom:204.239918px;}
.y1b_c00442{bottom:249.419900px;}
.y1a_c00442{bottom:280.559888px;}
.y19_c00442{bottom:311.519875px;}
.y18_c00442{bottom:342.659863px;}
.y17_c00442{bottom:373.619851px;}
.y16_c00442{bottom:404.759838px;}
.y14_c00442{bottom:427.979829px;}
.y15_c00442{bottom:435.539826px;}
.y13_c00442{bottom:449.759820px;}
.y12_c00442{bottom:475.139810px;}
.y11_c00442{bottom:726.059710px;}
.y10_c00442{bottom:757.019697px;}
.yf_c00442{bottom:788.159685px;}
.ye_c00442{bottom:819.119672px;}
.yd_c00442{bottom:849.719660px;}
.yc_c00442{bottom:873.479651px;}
.yb_c00442{bottom:895.259642px;}
.ya_c00442{bottom:924.419630px;}
.y9_c00442{bottom:951.599619px;}
.y8_c00442{bottom:1074.179570px;}
.y7_c00442{bottom:1082.459567px;}
.y6_c00442{bottom:1105.319558px;}
.y5_c00442{bottom:1136.279545px;}
.y2_c00442{bottom:1175.879530px;}
.y1_c00442{bottom:1196.039522px;}
.h9_c00442{height:38.158578px;}
.h7_c00442{height:40.985140px;}
.h4_c00442{height:47.321348px;}
.ha_c00442{height:49.284472px;}
.h2_c00442{height:54.628572px;}
.h1_c00442{height:58.651148px;}
.h8_c00442{height:64.978568px;}
.h5_c00442{height:65.010911px;}
.h3_c00442{height:70.628878px;}
.h6_c00442{height:70.664034px;}
.h0_c00442{height:1263.000000px;}
.w0_c00442{width:892.500000px;}
.x0_c00442{left:0.000000px;}
.x5_c00442{left:127.800262px;}
.xd_c00442{left:130.499948px;}
.x11_c00442{left:142.379943px;}
.x9_c00442{left:145.079942px;}
.x7_c00442{left:146.159942px;}
.x6_c00442{left:180.899928px;}
.x1_c00442{left:181.979927px;}
.x8_c00442{left:224.459910px;}
.xa_c00442{left:226.259909px;}
.xe_c00442{left:279.719888px;}
.x2_c00442{left:329.219408px;}
.x4_c00442{left:434.159826px;}
.xb_c00442{left:446.579821px;}
.xf_c00442{left:597.779761px;}
.x10_c00442{left:613.439755px;}
.xc_c00442{left:734.579706px;}
.x3_c00442{left:765.539694px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls5_c00442{letter-spacing:0.000000pt;}
.ls3_c00442{letter-spacing:0.009928pt;}
.ls1_c00442{letter-spacing:0.011257pt;}
.ls2_c00442{letter-spacing:0.136801pt;}
.ls4_c00442{letter-spacing:0.168267pt;}
.ls0_c00442{letter-spacing:0.332694pt;}
.ws1_c00442{word-spacing:-15.999994pt;}
.ws2_c00442{word-spacing:-14.719994pt;}
.ws5_c00442{word-spacing:-13.279995pt;}
.ws0_c00442{word-spacing:-11.052689pt;}
.ws3_c00442{word-spacing:-9.291253pt;}
.ws4_c00442{word-spacing:-8.649924pt;}
.ws6_c00442{word-spacing:0.000000pt;}
._5_c00442{margin-left:-11.303941pt;}
._1_c00442{margin-left:-0.982555pt;}
._0_c00442{width:1.314126pt;}
._4_c00442{width:14.075742pt;}
._2_c00442{width:17.532709pt;}
._3_c00442{width:496.557266pt;}
.fs5_c00442{font-size:34.559986pt;}
.fs4_c00442{font-size:37.119985pt;}
.fs3_c00442{font-size:42.879983pt;}
.fs0_c00442{font-size:53.119979pt;}
.fs1_c00442{font-size:58.879976pt;}
.fs2_c00442{font-size:63.999974pt;}
.y0_c00442{bottom:0.000000pt;}
.y4_c00442{bottom:67.306906pt;}
.y3_c00442{bottom:101.226893pt;}
.y22_c00442{bottom:118.666619pt;}
.y21_c00442{bottom:134.666613pt;}
.y20_c00442{bottom:140.746610pt;}
.y1f_c00442{bottom:150.026607pt;}
.y1e_c00442{bottom:165.386601pt;}
.y1d_c00442{bottom:171.466598pt;}
.y1c_c00442{bottom:181.546594pt;}
.y1b_c00442{bottom:221.706578pt;}
.y1a_c00442{bottom:249.386567pt;}
.y19_c00442{bottom:276.906556pt;}
.y18_c00442{bottom:304.586545pt;}
.y17_c00442{bottom:332.106534pt;}
.y16_c00442{bottom:359.786523pt;}
.y14_c00442{bottom:380.426514pt;}
.y15_c00442{bottom:387.146512pt;}
.y13_c00442{bottom:399.786507pt;}
.y12_c00442{bottom:422.346498pt;}
.y11_c00442{bottom:645.386409pt;}
.y10_c00442{bottom:672.906398pt;}
.yf_c00442{bottom:700.586386pt;}
.ye_c00442{bottom:728.106375pt;}
.yd_c00442{bottom:755.306365pt;}
.yc_c00442{bottom:776.426356pt;}
.yb_c00442{bottom:795.786348pt;}
.ya_c00442{bottom:821.706338pt;}
.y9_c00442{bottom:845.866328pt;}
.y8_c00442{bottom:954.826285pt;}
.y7_c00442{bottom:962.186282pt;}
.y6_c00442{bottom:982.506274pt;}
.y5_c00442{bottom:1010.026263pt;}
.y2_c00442{bottom:1045.226249pt;}
.y1_c00442{bottom:1063.146241pt;}
.h9_c00442{height:33.918736pt;}
.h7_c00442{height:36.431235pt;}
.h4_c00442{height:42.063421pt;}
.ha_c00442{height:43.808420pt;}
.h2_c00442{height:48.558731pt;}
.h1_c00442{height:52.134354pt;}
.h8_c00442{height:57.758727pt;}
.h5_c00442{height:57.787477pt;}
.h3_c00442{height:62.781225pt;}
.h6_c00442{height:62.812475pt;}
.h0_c00442{height:1122.666667pt;}
.w0_c00442{width:793.333333pt;}
.x0_c00442{left:0.000000pt;}
.x5_c00442{left:113.600233pt;}
.xd_c00442{left:115.999954pt;}
.x11_c00442{left:126.559949pt;}
.x9_c00442{left:128.959948pt;}
.x7_c00442{left:129.919948pt;}
.x6_c00442{left:160.799936pt;}
.x1_c00442{left:161.759935pt;}
.x8_c00442{left:199.519920pt;}
.xa_c00442{left:201.119920pt;}
.xe_c00442{left:248.639901pt;}
.x2_c00442{left:292.639474pt;}
.x4_c00442{left:385.919846pt;}
.xb_c00442{left:396.959841pt;}
.xf_c00442{left:531.359787pt;}
.x10_c00442{left:545.279782pt;}
.xc_c00442{left:652.959739pt;}
.x3_c00442{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb45310f9473ee76f41f90c8.woff2')format("woff");}.ff1_c00443{font-family:ff1_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:ff2_c00443;src:url('chunks/assets/font_376a8e43d74d542497db30db.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_b8737a9275f8a95557d4cd42.woff2')format("woff");}.ff3_c00443{font-family:ff3_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:ff4_c00443;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00443{font-family:ff5_c00443;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls4_c00443{letter-spacing:0.000000px;}
.ls2_c00443{letter-spacing:0.011169px;}
.ls0_c00443{letter-spacing:0.012664px;}
.ls1_c00443{letter-spacing:0.153901px;}
.ls3_c00443{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00443{word-spacing:-14.939994px;}
.ws0_c00443{word-spacing:-10.452660px;}
.ws1_c00443{word-spacing:-9.731165px;}
.ws3_c00443{word-spacing:0.000000px;}
._2_c00443{margin-left:-12.716934px;}
._1_c00443{margin-left:-1.105374px;}
._0_c00443{width:1.195563px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs4_c00443{font-size:38.879984px;}
.fs3_c00443{font-size:41.759983px;}
.fs0_c00443{font-size:59.759976px;}
.fs1_c00443{font-size:66.239974px;}
.fs2_c00443{font-size:71.999971px;}
.y0_c00443{bottom:0.000000px;}
.y4_c00443{bottom:75.719970px;}
.y3_c00443{bottom:113.879954px;}
.y2b_c00443{bottom:133.499947px;}
.y2a_c00443{bottom:151.499939px;}
.y29_c00443{bottom:158.339937px;}
.y28_c00443{bottom:168.779932px;}
.y27_c00443{bottom:186.059926px;}
.y26_c00443{bottom:192.899923px;}
.y25_c00443{bottom:203.339919px;}
.y24_c00443{bottom:220.439912px;}
.y23_c00443{bottom:227.279909px;}
.y22_c00443{bottom:238.619905px;}
.y21_c00443{bottom:259.319896px;}
.y20_c00443{bottom:290.279884px;}
.y1f_c00443{bottom:321.419871px;}
.y1e_c00443{bottom:352.379859px;}
.y1d_c00443{bottom:383.519847px;}
.y1c_c00443{bottom:414.479834px;}
.y1b_c00443{bottom:445.619822px;}
.y1a_c00443{bottom:476.579809px;}
.y18_c00443{bottom:499.799800px;}
.y19_c00443{bottom:507.359797px;}
.y17_c00443{bottom:521.759791px;}
.y16_c00443{bottom:546.959781px;}
.y15_c00443{bottom:638.399745px;}
.y14_c00443{bottom:668.999732px;}
.y13_c00443{bottom:692.759723px;}
.y11_c00443{bottom:714.539714px;}
.y12_c00443{bottom:722.099711px;}
.y10_c00443{bottom:736.319705px;}
.yf_c00443{bottom:761.699695px;}
.ye_c00443{bottom:845.939662px;}
.yd_c00443{bottom:877.079649px;}
.yc_c00443{bottom:900.299640px;}
.ya_c00443{bottom:922.079631px;}
.yb_c00443{bottom:929.639628px;}
.y9_c00443{bottom:944.039622px;}
.y8_c00443{bottom:973.559611px;}
.y7_c00443{bottom:1000.379600px;}
.y6_c00443{bottom:1086.959565px;}
.y5_c00443{bottom:1118.099553px;}
.y2_c00443{bottom:1156.979537px;}
.y1_c00443{bottom:1195.859522px;}
.h9_c00443{height:38.158578px;}
.h6_c00443{height:40.985140px;}
.ha_c00443{height:49.284472px;}
.h2_c00443{height:54.628572px;}
.h1_c00443{height:58.651148px;}
.h7_c00443{height:64.978568px;}
.h5_c00443{height:65.010911px;}
.h4_c00443{height:70.628878px;}
.h3_c00443{height:70.664034px;}
.h8_c00443{height:72.562471px;}
.h0_c00443{height:1263.000000px;}
.w0_c00443{width:892.500000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:127.799949px;}
.x5_c00443{left:135.719946px;}
.xe_c00443{left:142.379943px;}
.x6_c00443{left:279.719888px;}
.xb_c00443{left:303.839878px;}
.x2_c00443{left:434.159514px;}
.x3_c00443{left:446.579821px;}
.xc_c00443{left:573.839770px;}
.xd_c00443{left:589.499764px;}
.x7_c00443{left:597.779761px;}
.x8_c00443{left:613.439755px;}
.x4_c00443{left:753.659699px;}
.x9_c00443{left:761.579695px;}
.xa_c00443{left:765.539694px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls4_c00443{letter-spacing:0.000000pt;}
.ls2_c00443{letter-spacing:0.009928pt;}
.ls0_c00443{letter-spacing:0.011257pt;}
.ls1_c00443{letter-spacing:0.136801pt;}
.ls3_c00443{letter-spacing:0.168267pt;}
.ws2_c00443{word-spacing:-13.279995pt;}
.ws0_c00443{word-spacing:-9.291253pt;}
.ws1_c00443{word-spacing:-8.649924pt;}
.ws3_c00443{word-spacing:0.000000pt;}
._2_c00443{margin-left:-11.303941pt;}
._1_c00443{margin-left:-0.982555pt;}
._0_c00443{width:1.062723pt;}
.fs4_c00443{font-size:34.559986pt;}
.fs3_c00443{font-size:37.119985pt;}
.fs0_c00443{font-size:53.119979pt;}
.fs1_c00443{font-size:58.879976pt;}
.fs2_c00443{font-size:63.999974pt;}
.y0_c00443{bottom:0.000000pt;}
.y4_c00443{bottom:67.306640pt;}
.y3_c00443{bottom:101.226626pt;}
.y2b_c00443{bottom:118.666619pt;}
.y2a_c00443{bottom:134.666613pt;}
.y29_c00443{bottom:140.746610pt;}
.y28_c00443{bottom:150.026607pt;}
.y27_c00443{bottom:165.386601pt;}
.y26_c00443{bottom:171.466598pt;}
.y25_c00443{bottom:180.746594pt;}
.y24_c00443{bottom:195.946588pt;}
.y23_c00443{bottom:202.026586pt;}
.y22_c00443{bottom:212.106582pt;}
.y21_c00443{bottom:230.506574pt;}
.y20_c00443{bottom:258.026563pt;}
.y1f_c00443{bottom:285.706552pt;}
.y1e_c00443{bottom:313.226541pt;}
.y1d_c00443{bottom:340.906530pt;}
.y1c_c00443{bottom:368.426519pt;}
.y1b_c00443{bottom:396.106508pt;}
.y1a_c00443{bottom:423.626497pt;}
.y18_c00443{bottom:444.266489pt;}
.y19_c00443{bottom:450.986486pt;}
.y17_c00443{bottom:463.786481pt;}
.y16_c00443{bottom:486.186472pt;}
.y15_c00443{bottom:567.466440pt;}
.y14_c00443{bottom:594.666429pt;}
.y13_c00443{bottom:615.786420pt;}
.y11_c00443{bottom:635.146413pt;}
.y12_c00443{bottom:641.866410pt;}
.y10_c00443{bottom:654.506405pt;}
.yf_c00443{bottom:677.066396pt;}
.ye_c00443{bottom:751.946366pt;}
.yd_c00443{bottom:779.626355pt;}
.yc_c00443{bottom:800.266347pt;}
.ya_c00443{bottom:819.626339pt;}
.yb_c00443{bottom:826.346336pt;}
.y9_c00443{bottom:839.146331pt;}
.y8_c00443{bottom:865.386321pt;}
.y7_c00443{bottom:889.226311pt;}
.y6_c00443{bottom:966.186280pt;}
.y5_c00443{bottom:993.866269pt;}
.y2_c00443{bottom:1028.426255pt;}
.y1_c00443{bottom:1062.986241pt;}
.h9_c00443{height:33.918736pt;}
.h6_c00443{height:36.431235pt;}
.ha_c00443{height:43.808420pt;}
.h2_c00443{height:48.558731pt;}
.h1_c00443{height:52.134354pt;}
.h7_c00443{height:57.758727pt;}
.h5_c00443{height:57.787477pt;}
.h4_c00443{height:62.781225pt;}
.h3_c00443{height:62.812475pt;}
.h8_c00443{height:64.499974pt;}
.h0_c00443{height:1122.666667pt;}
.w0_c00443{width:793.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:113.599955pt;}
.x5_c00443{left:120.639952pt;}
.xe_c00443{left:126.559949pt;}
.x6_c00443{left:248.639901pt;}
.xb_c00443{left:270.079892pt;}
.x2_c00443{left:385.919568pt;}
.x3_c00443{left:396.959841pt;}
.xc_c00443{left:510.079796pt;}
.xd_c00443{left:523.999790pt;}
.x7_c00443{left:531.359787pt;}
.x8_c00443{left:545.279782pt;}
.x4_c00443{left:669.919732pt;}
.x9_c00443{left:676.959729pt;}
.xa_c00443{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c19d6f1e0519e3cd6bdd4fbc.woff2')format("woff");}.ff1_c00444{font-family:ff1_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:ff2_c00444;src:url('chunks/assets/font_ebd52e5080591d0dfd17dd6e.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_5ff3ec42495943cf45143548.woff2')format("woff");}.ff3_c00444{font-family:ff3_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;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_e1c93acd63ab72443e82a276.woff2')format("woff");}.ff4_c00444{font-family:ff4_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:ff5_c00444;src:url('chunks/assets/font_fdab600c71e4ce89e0f009b6.woff2')format("woff");}.ff5_c00444{font-family:ff5_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;}
.m0_c00444{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls1_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.021238px;}
.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;}
}
.ws0_c00444{word-spacing:-17.999993px;}
.ws1_c00444{word-spacing:0.000000px;}
._1_c00444{margin-left:-1.105374px;}
._0_c00444{width:1.478392px;}
._4_c00444{width:2.661079px;}
._2_c00444{width:3.708164px;}
._3_c00444{width:4.924763px;}
._b_c00444{width:6.169880px;}
._5_c00444{width:8.926195px;}
._6_c00444{width:10.068303px;}
._7_c00444{width:11.535094px;}
._8_c00444{width:13.893638px;}
._9_c00444{width:15.108931px;}
._a_c00444{width:16.268772px;}
.fc0_c00444{color:rgb(0,0,0);}
.fs0_c00444{font-size:59.759976px;}
.fs1_c00444{font-size:66.239974px;}
.fs2_c00444{font-size:71.999971px;}
.y0_c00444{bottom:0.000000px;}
.y4_c00444{bottom:75.720270px;}
.y3_c00444{bottom:113.880254px;}
.y18_c00444{bottom:157.979937px;}
.y17_c00444{bottom:188.939924px;}
.y16_c00444{bottom:220.079912px;}
.y15_c00444{bottom:251.039900px;}
.y14_c00444{bottom:282.179887px;}
.y13_c00444{bottom:313.139875px;}
.y12_c00444{bottom:344.279862px;}
.y11_c00444{bottom:375.239850px;}
.y10_c00444{bottom:406.379837px;}
.yf_c00444{bottom:437.339825px;}
.ye_c00444{bottom:468.479813px;}
.yd_c00444{bottom:499.439800px;}
.yc_c00444{bottom:530.579788px;}
.yb_c00444{bottom:561.539775px;}
.ya_c00444{bottom:592.679763px;}
.y9_c00444{bottom:622.559751px;}
.y8_c00444{bottom:651.719739px;}
.y7_c00444{bottom:678.899728px;}
.y6_c00444{bottom:1104.959558px;}
.y5_c00444{bottom:1135.919546px;}
.y2_c00444{bottom:1175.879530px;}
.y1_c00444{bottom:1196.039522px;}
.h2_c00444{height:54.628572px;}
.h1_c00444{height:58.651148px;}
.h4_c00444{height:65.010911px;}
.h6_c00444{height:70.628878px;}
.h5_c00444{height:70.664034px;}
.h3_c00444{height:72.562471px;}
.h0_c00444{height:1263.000000px;}
.w0_c00444{width:892.500000px;}
.x0_c00444{left:0.000000px;}
.x5_c00444{left:127.800262px;}
.x7_c00444{left:138.239945px;}
.x8_c00444{left:180.899928px;}
.x1_c00444{left:181.979927px;}
.x2_c00444{left:329.219408px;}
.x4_c00444{left:434.159826px;}
.x6_c00444{left:590.939764px;}
.x3_c00444{left:765.539694px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls1_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.018878pt;}
.ws0_c00444{word-spacing:-15.999994pt;}
.ws1_c00444{word-spacing:0.000000pt;}
._1_c00444{margin-left:-0.982555pt;}
._0_c00444{width:1.314126pt;}
._4_c00444{width:2.365403pt;}
._2_c00444{width:3.296146pt;}
._3_c00444{width:4.377567pt;}
._b_c00444{width:5.484338pt;}
._5_c00444{width:7.934395pt;}
._6_c00444{width:8.949602pt;}
._7_c00444{width:10.253417pt;}
._8_c00444{width:12.349901pt;}
._9_c00444{width:13.430161pt;}
._a_c00444{width:14.461131pt;}
.fs0_c00444{font-size:53.119979pt;}
.fs1_c00444{font-size:58.879976pt;}
.fs2_c00444{font-size:63.999974pt;}
.y0_c00444{bottom:0.000000pt;}
.y4_c00444{bottom:67.306906pt;}
.y3_c00444{bottom:101.226893pt;}
.y18_c00444{bottom:140.426610pt;}
.y17_c00444{bottom:167.946599pt;}
.y16_c00444{bottom:195.626588pt;}
.y15_c00444{bottom:223.146577pt;}
.y14_c00444{bottom:250.826566pt;}
.y13_c00444{bottom:278.346555pt;}
.y12_c00444{bottom:306.026544pt;}
.y11_c00444{bottom:333.546533pt;}
.y10_c00444{bottom:361.226522pt;}
.yf_c00444{bottom:388.746511pt;}
.ye_c00444{bottom:416.426500pt;}
.yd_c00444{bottom:443.946489pt;}
.yc_c00444{bottom:471.626478pt;}
.yb_c00444{bottom:499.146467pt;}
.ya_c00444{bottom:526.826456pt;}
.y9_c00444{bottom:553.386445pt;}
.y8_c00444{bottom:579.306435pt;}
.y7_c00444{bottom:603.466425pt;}
.y6_c00444{bottom:982.186274pt;}
.y5_c00444{bottom:1009.706263pt;}
.y2_c00444{bottom:1045.226249pt;}
.y1_c00444{bottom:1063.146241pt;}
.h2_c00444{height:48.558731pt;}
.h1_c00444{height:52.134354pt;}
.h4_c00444{height:57.787477pt;}
.h6_c00444{height:62.781225pt;}
.h5_c00444{height:62.812475pt;}
.h3_c00444{height:64.499974pt;}
.h0_c00444{height:1122.666667pt;}
.w0_c00444{width:793.333333pt;}
.x0_c00444{left:0.000000pt;}
.x5_c00444{left:113.600233pt;}
.x7_c00444{left:122.879951pt;}
.x8_c00444{left:160.799936pt;}
.x1_c00444{left:161.759935pt;}
.x2_c00444{left:292.639474pt;}
.x4_c00444{left:385.919846pt;}
.x6_c00444{left:525.279790pt;}
.x3_c00444{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49591941db6f8ec8240d93d3.woff2')format("woff");}.ff1_c00445{font-family:ff1_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:ff2_c00445;src:url('chunks/assets/font_4d2c3f3ec6d284337224f5c9.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_bda4bb5bbe8fc5bdfea65242.woff2')format("woff");}.ff3_c00445{font-family:ff3_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;}
@font-face{font-family:ff4_c00445;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls6_c00445{letter-spacing:0.000000px;}
.ls4_c00445{letter-spacing:0.011169px;}
.ls3_c00445{letter-spacing:0.012620px;}
.ls1_c00445{letter-spacing:0.012664px;}
.ls2_c00445{letter-spacing:0.153901px;}
.ls5_c00445{letter-spacing:0.189300px;}
.ls0_c00445{letter-spacing:0.374281px;}
.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;}
}
.ws4_c00445{word-spacing:-14.939994px;}
.ws0_c00445{word-spacing:-12.434276px;}
.ws1_c00445{word-spacing:-10.452660px;}
.ws2_c00445{word-spacing:-10.452616px;}
.ws3_c00445{word-spacing:-9.731165px;}
.ws5_c00445{word-spacing:0.000000px;}
._a_c00445{margin-left:-12.716934px;}
._1_c00445{margin-left:-1.105374px;}
._0_c00445{width:1.195563px;}
._4_c00445{width:2.313429px;}
._5_c00445{width:4.127755px;}
._6_c00445{width:5.318150px;}
._2_c00445{width:6.356304px;}
._3_c00445{width:7.489482px;}
._7_c00445{width:9.128198px;}
._8_c00445{width:10.181595px;}
._9_c00445{width:22.993373px;}
.fc0_c00445{color:rgb(0,0,0);}
.fs5_c00445{font-size:38.879984px;}
.fs4_c00445{font-size:41.759983px;}
.fs3_c00445{font-size:48.239981px;}
.fs0_c00445{font-size:59.759976px;}
.fs1_c00445{font-size:66.239974px;}
.fs2_c00445{font-size:71.999971px;}
.y0_c00445{bottom:0.000000px;}
.y4_c00445{bottom:75.719970px;}
.y3_c00445{bottom:113.879954px;}
.y23_c00445{bottom:133.499947px;}
.y22_c00445{bottom:151.859939px;}
.y21_c00445{bottom:169.859932px;}
.y20_c00445{bottom:176.699929px;}
.y1f_c00445{bottom:187.139925px;}
.y1e_c00445{bottom:204.599918px;}
.y1d_c00445{bottom:212.159915px;}
.y1c_c00445{bottom:224.219910px;}
.y1b_c00445{bottom:296.219882px;}
.y19_c00445{bottom:317.999873px;}
.y1a_c00445{bottom:325.559870px;}
.y18_c00445{bottom:339.959864px;}
.y17_c00445{bottom:369.119852px;}
.y16_c00445{bottom:396.299841px;}
.y15_c00445{bottom:496.019802px;}
.y14_c00445{bottom:523.199791px;}
.y13_c00445{bottom:713.999714px;}
.y12_c00445{bottom:745.499702px;}
.y11_c00445{bottom:776.459689px;}
.y10_c00445{bottom:807.599677px;}
.yf_c00445{bottom:838.559665px;}
.ye_c00445{bottom:869.699652px;}
.yd_c00445{bottom:900.659640px;}
.yc_c00445{bottom:931.799627px;}
.ya_c00445{bottom:962.759615px;}
.yb_c00445{bottom:971.039612px;}
.y9_c00445{bottom:993.899602px;}
.y8_c00445{bottom:1024.859590px;}
.y7_c00445{bottom:1055.999578px;}
.y6_c00445{bottom:1086.959565px;}
.y5_c00445{bottom:1118.099553px;}
.y2_c00445{bottom:1156.979537px;}
.y1_c00445{bottom:1195.859522px;}
.h9_c00445{height:38.158578px;}
.h8_c00445{height:40.985140px;}
.h4_c00445{height:47.321348px;}
.ha_c00445{height:49.284472px;}
.h2_c00445{height:54.628572px;}
.h1_c00445{height:58.651148px;}
.h7_c00445{height:65.010911px;}
.h3_c00445{height:70.628878px;}
.h5_c00445{height:70.664034px;}
.h6_c00445{height:72.562471px;}
.h0_c00445{height:1263.000000px;}
.w0_c00445{width:892.500000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:127.799949px;}
.x9_c00445{left:140.219944px;}
.xe_c00445{left:142.379943px;}
.xd_c00445{left:143.459943px;}
.x3_c00445{left:180.899928px;}
.xa_c00445{left:331.739867px;}
.x2_c00445{left:434.159514px;}
.x7_c00445{left:446.579821px;}
.xb_c00445{left:545.759782px;}
.xc_c00445{left:561.419775px;}
.x4_c00445{left:678.779728px;}
.x5_c00445{left:697.139721px;}
.x6_c00445{left:721.079712px;}
.x8_c00445{left:750.419700px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls6_c00445{letter-spacing:0.000000pt;}
.ls4_c00445{letter-spacing:0.009928pt;}
.ls3_c00445{letter-spacing:0.011218pt;}
.ls1_c00445{letter-spacing:0.011257pt;}
.ls2_c00445{letter-spacing:0.136801pt;}
.ls5_c00445{letter-spacing:0.168267pt;}
.ls0_c00445{letter-spacing:0.332694pt;}
.ws4_c00445{word-spacing:-13.279995pt;}
.ws0_c00445{word-spacing:-11.052689pt;}
.ws1_c00445{word-spacing:-9.291253pt;}
.ws2_c00445{word-spacing:-9.291214pt;}
.ws3_c00445{word-spacing:-8.649924pt;}
.ws5_c00445{word-spacing:0.000000pt;}
._a_c00445{margin-left:-11.303941pt;}
._1_c00445{margin-left:-0.982555pt;}
._0_c00445{width:1.062723pt;}
._4_c00445{width:2.056381pt;}
._5_c00445{width:3.669116pt;}
._6_c00445{width:4.727245pt;}
._2_c00445{width:5.650048pt;}
._3_c00445{width:6.657318pt;}
._7_c00445{width:8.113954pt;}
._8_c00445{width:9.050307pt;}
._9_c00445{width:20.438553pt;}
.fs5_c00445{font-size:34.559986pt;}
.fs4_c00445{font-size:37.119985pt;}
.fs3_c00445{font-size:42.879983pt;}
.fs0_c00445{font-size:53.119979pt;}
.fs1_c00445{font-size:58.879976pt;}
.fs2_c00445{font-size:63.999974pt;}
.y0_c00445{bottom:0.000000pt;}
.y4_c00445{bottom:67.306640pt;}
.y3_c00445{bottom:101.226626pt;}
.y23_c00445{bottom:118.666619pt;}
.y22_c00445{bottom:134.986613pt;}
.y21_c00445{bottom:150.986606pt;}
.y20_c00445{bottom:157.066604pt;}
.y1f_c00445{bottom:166.346600pt;}
.y1e_c00445{bottom:181.866594pt;}
.y1d_c00445{bottom:188.586591pt;}
.y1c_c00445{bottom:199.306587pt;}
.y1b_c00445{bottom:263.306561pt;}
.y19_c00445{bottom:282.666554pt;}
.y1a_c00445{bottom:289.386551pt;}
.y18_c00445{bottom:302.186546pt;}
.y17_c00445{bottom:328.106535pt;}
.y16_c00445{bottom:352.266526pt;}
.y15_c00445{bottom:440.906490pt;}
.y14_c00445{bottom:465.066481pt;}
.y13_c00445{bottom:634.666413pt;}
.y12_c00445{bottom:662.666402pt;}
.y11_c00445{bottom:690.186391pt;}
.y10_c00445{bottom:717.866380pt;}
.yf_c00445{bottom:745.386369pt;}
.ye_c00445{bottom:773.066357pt;}
.yd_c00445{bottom:800.586346pt;}
.yc_c00445{bottom:828.266335pt;}
.ya_c00445{bottom:855.786324pt;}
.yb_c00445{bottom:863.146321pt;}
.y9_c00445{bottom:883.466313pt;}
.y8_c00445{bottom:910.986302pt;}
.y7_c00445{bottom:938.666291pt;}
.y6_c00445{bottom:966.186280pt;}
.y5_c00445{bottom:993.866269pt;}
.y2_c00445{bottom:1028.426255pt;}
.y1_c00445{bottom:1062.986241pt;}
.h9_c00445{height:33.918736pt;}
.h8_c00445{height:36.431235pt;}
.h4_c00445{height:42.063421pt;}
.ha_c00445{height:43.808420pt;}
.h2_c00445{height:48.558731pt;}
.h1_c00445{height:52.134354pt;}
.h7_c00445{height:57.787477pt;}
.h3_c00445{height:62.781225pt;}
.h5_c00445{height:62.812475pt;}
.h6_c00445{height:64.499974pt;}
.h0_c00445{height:1122.666667pt;}
.w0_c00445{width:793.333333pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:113.599955pt;}
.x9_c00445{left:124.639950pt;}
.xe_c00445{left:126.559949pt;}
.xd_c00445{left:127.519949pt;}
.x3_c00445{left:160.799936pt;}
.xa_c00445{left:294.879882pt;}
.x2_c00445{left:385.919568pt;}
.x7_c00445{left:396.959841pt;}
.xb_c00445{left:485.119806pt;}
.xc_c00445{left:499.039800pt;}
.x4_c00445{left:603.359759pt;}
.x5_c00445{left:619.679752pt;}
.x6_c00445{left:640.959744pt;}
.x8_c00445{left:667.039733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_110904d586ce5932db81079a.woff2')format("woff");}.ff1_c00446{font-family:ff1_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:ff2_c00446;src:url('chunks/assets/font_e71b951e6bacede4accd16d4.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_a7cdbf7739effa9d73613e3e.woff2')format("woff");}.ff3_c00446{font-family:ff3_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:ff4_c00446;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00446{font-family:ff4_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;}
.m0_c00446{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls0_c00446{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00446{word-spacing:0.000000px;}
._6_c00446{margin-left:-2.139990px;}
._1_c00446{margin-left:-1.105374px;}
._0_c00446{width:1.478392px;}
._3_c00446{width:3.424962px;}
._4_c00446{width:4.983588px;}
._5_c00446{width:6.225108px;}
._2_c00446{width:9.418760px;}
.fc0_c00446{color:rgb(0,0,0);}
.fs0_c00446{font-size:59.759976px;}
.fs1_c00446{font-size:66.239974px;}
.fs2_c00446{font-size:71.999971px;}
.y0_c00446{bottom:0.000000px;}
.y4_c00446{bottom:75.720270px;}
.y3_c00446{bottom:113.880254px;}
.y19_c00446{bottom:192.359923px;}
.y18_c00446{bottom:223.319911px;}
.y17_c00446{bottom:254.459898px;}
.y16_c00446{bottom:285.419886px;}
.y15_c00446{bottom:308.999876px;}
.y14_c00446{bottom:332.579867px;}
.y13_c00446{bottom:354.359858px;}
.y12_c00446{bottom:379.739848px;}
.y11_c00446{bottom:660.539736px;}
.y10_c00446{bottom:692.039723px;}
.yf_c00446{bottom:722.999711px;}
.ye_c00446{bottom:754.139698px;}
.yd_c00446{bottom:785.099686px;}
.yc_c00446{bottom:816.239674px;}
.yb_c00446{bottom:839.459664px;}
.ya_c00446{bottom:861.239656px;}
.y9_c00446{bottom:886.439645px;}
.y8_c00446{bottom:1043.219583px;}
.y7_c00446{bottom:1074.179570px;}
.y6_c00446{bottom:1105.319558px;}
.y5_c00446{bottom:1136.279545px;}
.y2_c00446{bottom:1175.879530px;}
.y1_c00446{bottom:1196.039522px;}
.h2_c00446{height:54.628572px;}
.h1_c00446{height:58.651148px;}
.h4_c00446{height:65.010911px;}
.h3_c00446{height:70.664034px;}
.h5_c00446{height:72.562471px;}
.h0_c00446{height:1263.000000px;}
.w0_c00446{width:892.500000px;}
.x0_c00446{left:0.000000px;}
.x5_c00446{left:127.800262px;}
.x8_c00446{left:129.599948px;}
.xb_c00446{left:149.939940px;}
.x6_c00446{left:180.899928px;}
.x1_c00446{left:181.979927px;}
.x2_c00446{left:329.219408px;}
.xc_c00446{left:403.919838px;}
.x9_c00446{left:428.579829px;}
.x4_c00446{left:434.159826px;}
.x7_c00446{left:722.699711px;}
.xa_c00446{left:725.939710px;}
.x3_c00446{left:765.539694px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:0.000000pt;}
._6_c00446{margin-left:-1.902214pt;}
._1_c00446{margin-left:-0.982555pt;}
._0_c00446{width:1.314126pt;}
._3_c00446{width:3.044410pt;}
._4_c00446{width:4.429856pt;}
._5_c00446{width:5.533429pt;}
._2_c00446{width:8.372231pt;}
.fs0_c00446{font-size:53.119979pt;}
.fs1_c00446{font-size:58.879976pt;}
.fs2_c00446{font-size:63.999974pt;}
.y0_c00446{bottom:0.000000pt;}
.y4_c00446{bottom:67.306906pt;}
.y3_c00446{bottom:101.226893pt;}
.y19_c00446{bottom:170.986598pt;}
.y18_c00446{bottom:198.506587pt;}
.y17_c00446{bottom:226.186576pt;}
.y16_c00446{bottom:253.706565pt;}
.y15_c00446{bottom:274.666557pt;}
.y14_c00446{bottom:295.626548pt;}
.y13_c00446{bottom:314.986541pt;}
.y12_c00446{bottom:337.546532pt;}
.y11_c00446{bottom:587.146432pt;}
.y10_c00446{bottom:615.146421pt;}
.yf_c00446{bottom:642.666410pt;}
.ye_c00446{bottom:670.346399pt;}
.yd_c00446{bottom:697.866388pt;}
.yc_c00446{bottom:725.546376pt;}
.yb_c00446{bottom:746.186368pt;}
.ya_c00446{bottom:765.546360pt;}
.y9_c00446{bottom:787.946351pt;}
.y8_c00446{bottom:927.306296pt;}
.y7_c00446{bottom:954.826285pt;}
.y6_c00446{bottom:982.506274pt;}
.y5_c00446{bottom:1010.026263pt;}
.y2_c00446{bottom:1045.226249pt;}
.y1_c00446{bottom:1063.146241pt;}
.h2_c00446{height:48.558731pt;}
.h1_c00446{height:52.134354pt;}
.h4_c00446{height:57.787477pt;}
.h3_c00446{height:62.812475pt;}
.h5_c00446{height:64.499974pt;}
.h0_c00446{height:1122.666667pt;}
.w0_c00446{width:793.333333pt;}
.x0_c00446{left:0.000000pt;}
.x5_c00446{left:113.600233pt;}
.x8_c00446{left:115.199954pt;}
.xb_c00446{left:133.279947pt;}
.x6_c00446{left:160.799936pt;}
.x1_c00446{left:161.759935pt;}
.x2_c00446{left:292.639474pt;}
.xc_c00446{left:359.039856pt;}
.x9_c00446{left:380.959848pt;}
.x4_c00446{left:385.919846pt;}
.x7_c00446{left:642.399743pt;}
.xa_c00446{left:645.279742pt;}
.x3_c00446{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50422a0d0c8d71bc87f03052.woff2')format("woff");}.ff1_c00447{font-family:ff1_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:ff2_c00447;src:url('chunks/assets/font_94e03b20e2544d3af230dae7.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.311035;font-style:normal;font-weight:normal;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_a7cdbf7739effa9d73613e3e.woff2')format("woff");}.ff4_c00447{font-family:ff4_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:ff5_c00447;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00447{font-family:ff5_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;}
.m0_c00447{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.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:0.000000px;}
._1_c00447{margin-left:-1.105374px;}
._0_c00447{width:1.195563px;}
.fc0_c00447{color:rgb(0,0,0);}
.fs0_c00447{font-size:59.759976px;}
.fs1_c00447{font-size:66.239974px;}
.fs2_c00447{font-size:71.999971px;}
.y0_c00447{bottom:0.000000px;}
.y4_c00447{bottom:75.719970px;}
.y3_c00447{bottom:113.879954px;}
.y22_c00447{bottom:144.480242px;}
.y21_c00447{bottom:175.439930px;}
.y20_c00447{bottom:206.579917px;}
.y1f_c00447{bottom:237.539905px;}
.y1e_c00447{bottom:268.679893px;}
.y1d_c00447{bottom:299.639880px;}
.y1c_c00447{bottom:330.779868px;}
.y1b_c00447{bottom:361.739855px;}
.y1a_c00447{bottom:392.879843px;}
.y19_c00447{bottom:423.839830px;}
.y18_c00447{bottom:454.979818px;}
.y17_c00447{bottom:485.939806px;}
.y16_c00447{bottom:517.079793px;}
.y15_c00447{bottom:548.039781px;}
.y14_c00447{bottom:579.179768px;}
.y13_c00447{bottom:610.139756px;}
.y12_c00447{bottom:641.099744px;}
.y11_c00447{bottom:672.239731px;}
.y10_c00447{bottom:703.199719px;}
.yf_c00447{bottom:734.339706px;}
.ye_c00447{bottom:765.299694px;}
.yd_c00447{bottom:796.439681px;}
.yc_c00447{bottom:827.399669px;}
.yb_c00447{bottom:851.339659px;}
.ya_c00447{bottom:874.919650px;}
.y9_c00447{bottom:896.699641px;}
.y8_c00447{bottom:922.079631px;}
.y7_c00447{bottom:1055.639578px;}
.y6_c00447{bottom:1086.959565px;}
.y5_c00447{bottom:1118.099553px;}
.y2_c00447{bottom:1156.979537px;}
.y1_c00447{bottom:1195.859522px;}
.h2_c00447{height:54.628572px;}
.h1_c00447{height:58.651148px;}
.h5_c00447{height:65.010911px;}
.h6_c00447{height:70.628878px;}
.h3_c00447{height:70.664034px;}
.h4_c00447{height:72.562471px;}
.h0_c00447{height:1263.000000px;}
.w0_c00447{width:892.500000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:127.799949px;}
.x6_c00447{left:145.259942px;}
.x3_c00447{left:180.899928px;}
.x7_c00447{left:428.579829px;}
.x2_c00447{left:434.159514px;}
.x4_c00447{left:446.579821px;}
.x5_c00447{left:721.619711px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
._1_c00447{margin-left:-0.982555pt;}
._0_c00447{width:1.062723pt;}
.fs0_c00447{font-size:53.119979pt;}
.fs1_c00447{font-size:58.879976pt;}
.fs2_c00447{font-size:63.999974pt;}
.y0_c00447{bottom:0.000000pt;}
.y4_c00447{bottom:67.306640pt;}
.y3_c00447{bottom:101.226626pt;}
.y22_c00447{bottom:128.426882pt;}
.y21_c00447{bottom:155.946604pt;}
.y20_c00447{bottom:183.626593pt;}
.y1f_c00447{bottom:211.146582pt;}
.y1e_c00447{bottom:238.826571pt;}
.y1d_c00447{bottom:266.346560pt;}
.y1c_c00447{bottom:294.026549pt;}
.y1b_c00447{bottom:321.546538pt;}
.y1a_c00447{bottom:349.226527pt;}
.y19_c00447{bottom:376.746516pt;}
.y18_c00447{bottom:404.426505pt;}
.y17_c00447{bottom:431.946494pt;}
.y16_c00447{bottom:459.626483pt;}
.y15_c00447{bottom:487.146472pt;}
.y14_c00447{bottom:514.826461pt;}
.y13_c00447{bottom:542.346450pt;}
.y12_c00447{bottom:569.866439pt;}
.y11_c00447{bottom:597.546428pt;}
.y10_c00447{bottom:625.066417pt;}
.yf_c00447{bottom:652.746406pt;}
.ye_c00447{bottom:680.266395pt;}
.yd_c00447{bottom:707.946383pt;}
.yc_c00447{bottom:735.466372pt;}
.yb_c00447{bottom:756.746364pt;}
.ya_c00447{bottom:777.706356pt;}
.y9_c00447{bottom:797.066348pt;}
.y8_c00447{bottom:819.626339pt;}
.y7_c00447{bottom:938.346291pt;}
.y6_c00447{bottom:966.186280pt;}
.y5_c00447{bottom:993.866269pt;}
.y2_c00447{bottom:1028.426255pt;}
.y1_c00447{bottom:1062.986241pt;}
.h2_c00447{height:48.558731pt;}
.h1_c00447{height:52.134354pt;}
.h5_c00447{height:57.787477pt;}
.h6_c00447{height:62.781225pt;}
.h3_c00447{height:62.812475pt;}
.h4_c00447{height:64.499974pt;}
.h0_c00447{height:1122.666667pt;}
.w0_c00447{width:793.333333pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:113.599955pt;}
.x6_c00447{left:129.119948pt;}
.x3_c00447{left:160.799936pt;}
.x7_c00447{left:380.959848pt;}
.x2_c00447{left:385.919568pt;}
.x4_c00447{left:396.959841pt;}
.x5_c00447{left:641.439743pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00c37183130d7b14fd0229e4.woff2')format("woff");}.ff1_c00448{font-family:ff1_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:ff2_c00448;src:url('chunks/assets/font_543d0bdb2809a21afa922cdb.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_71947d0ab78faf74d457f5d0.woff2')format("woff");}.ff3_c00448{font-family:ff3_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;}
@font-face{font-family:ff4_c00448;src:url('chunks/assets/font_3e427e85974b9b9382c069c2.woff2')format("woff");}.ff4_c00448{font-family:ff4_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:ff5_c00448;src:url('chunks/assets/font_23eb74ee8bb2e3f686a3f3a0.woff2')format("woff");}.ff5_c00448{font-family:ff5_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;}
.m0_c00448{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls0_c00448{letter-spacing:0.000000px;}
.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:-17.999993px;}
.ws1_c00448{word-spacing:0.000000px;}
._1_c00448{margin-left:-1.105374px;}
._0_c00448{width:1.478392px;}
._c_c00448{width:2.589083px;}
._3_c00448{width:5.341800px;}
._2_c00448{width:6.423582px;}
._6_c00448{width:7.749899px;}
._7_c00448{width:8.975122px;}
._b_c00448{width:9.980830px;}
._5_c00448{width:11.981655px;}
._4_c00448{width:13.450673px;}
._8_c00448{width:19.586228px;}
._9_c00448{width:30.536600px;}
._a_c00448{width:31.887833px;}
.fc0_c00448{color:rgb(0,0,0);}
.fs3_c00448{font-size:48.239981px;}
.fs0_c00448{font-size:59.759976px;}
.fs1_c00448{font-size:66.239974px;}
.fs2_c00448{font-size:71.999971px;}
.y0_c00448{bottom:0.000000px;}
.y4_c00448{bottom:75.720270px;}
.y3_c00448{bottom:113.880254px;}
.y19_c00448{bottom:157.619937px;}
.y18_c00448{bottom:188.579925px;}
.y17_c00448{bottom:219.539912px;}
.y16_c00448{bottom:250.679900px;}
.y15_c00448{bottom:281.639887px;}
.y14_c00448{bottom:312.779875px;}
.y13_c00448{bottom:343.739863px;}
.y12_c00448{bottom:374.879850px;}
.y11_c00448{bottom:401.159840px;}
.y10_c00448{bottom:426.539829px;}
.yf_c00448{bottom:457.679817px;}
.ye_c00448{bottom:488.639805px;}
.yd_c00448{bottom:519.779792px;}
.yc_c00448{bottom:550.739780px;}
.yb_c00448{bottom:581.879767px;}
.ya_c00448{bottom:612.479755px;}
.y9_c00448{bottom:642.719743px;}
.y8_c00448{bottom:672.059731px;}
.y7_c00448{bottom:699.059720px;}
.y6_c00448{bottom:1104.959558px;}
.y5_c00448{bottom:1135.919546px;}
.y2_c00448{bottom:1175.879530px;}
.y1_c00448{bottom:1196.039522px;}
.h6_c00448{height:47.344903px;}
.h2_c00448{height:54.628572px;}
.h1_c00448{height:58.651148px;}
.h4_c00448{height:65.010911px;}
.h5_c00448{height:70.664034px;}
.h3_c00448{height:72.562471px;}
.h0_c00448{height:1263.000000px;}
.w0_c00448{width:892.500000px;}
.x0_c00448{left:0.000000px;}
.x5_c00448{left:127.800262px;}
.x8_c00448{left:180.899930px;}
.x1_c00448{left:181.979927px;}
.x7_c00448{left:222.119911px;}
.x2_c00448{left:329.219408px;}
.x4_c00448{left:434.159826px;}
.x6_c00448{left:599.579760px;}
.x9_c00448{left:764.279694px;}
.x3_c00448{left:765.539694px;}
.xa_c00448{left:767.339693px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:-15.999994pt;}
.ws1_c00448{word-spacing:0.000000pt;}
._1_c00448{margin-left:-0.982555pt;}
._0_c00448{width:1.314126pt;}
._c_c00448{width:2.301407pt;}
._3_c00448{width:4.748267pt;}
._2_c00448{width:5.709851pt;}
._6_c00448{width:6.888799pt;}
._7_c00448{width:7.977886pt;}
._b_c00448{width:8.871849pt;}
._5_c00448{width:10.650360pt;}
._4_c00448{width:11.956154pt;}
._8_c00448{width:17.409980pt;}
._9_c00448{width:27.143645pt;}
._a_c00448{width:28.344740pt;}
.fs3_c00448{font-size:42.879983pt;}
.fs0_c00448{font-size:53.119979pt;}
.fs1_c00448{font-size:58.879976pt;}
.fs2_c00448{font-size:63.999974pt;}
.y0_c00448{bottom:0.000000pt;}
.y4_c00448{bottom:67.306906pt;}
.y3_c00448{bottom:101.226893pt;}
.y19_c00448{bottom:140.106611pt;}
.y18_c00448{bottom:167.626600pt;}
.y17_c00448{bottom:195.146589pt;}
.y16_c00448{bottom:222.826578pt;}
.y15_c00448{bottom:250.346567pt;}
.y14_c00448{bottom:278.026555pt;}
.y13_c00448{bottom:305.546544pt;}
.y12_c00448{bottom:333.226533pt;}
.y11_c00448{bottom:356.586524pt;}
.y10_c00448{bottom:379.146515pt;}
.yf_c00448{bottom:406.826504pt;}
.ye_c00448{bottom:434.346493pt;}
.yd_c00448{bottom:462.026482pt;}
.yc_c00448{bottom:489.546471pt;}
.yb_c00448{bottom:517.226460pt;}
.ya_c00448{bottom:544.426449pt;}
.y9_c00448{bottom:571.306438pt;}
.y8_c00448{bottom:597.386428pt;}
.y7_c00448{bottom:621.386418pt;}
.y6_c00448{bottom:982.186274pt;}
.y5_c00448{bottom:1009.706263pt;}
.y2_c00448{bottom:1045.226249pt;}
.y1_c00448{bottom:1063.146241pt;}
.h6_c00448{height:42.084358pt;}
.h2_c00448{height:48.558731pt;}
.h1_c00448{height:52.134354pt;}
.h4_c00448{height:57.787477pt;}
.h5_c00448{height:62.812475pt;}
.h3_c00448{height:64.499974pt;}
.h0_c00448{height:1122.666667pt;}
.w0_c00448{width:793.333333pt;}
.x0_c00448{left:0.000000pt;}
.x5_c00448{left:113.600233pt;}
.x8_c00448{left:160.799938pt;}
.x1_c00448{left:161.759935pt;}
.x7_c00448{left:197.439921pt;}
.x2_c00448{left:292.639474pt;}
.x4_c00448{left:385.919846pt;}
.x6_c00448{left:532.959787pt;}
.x9_c00448{left:679.359728pt;}
.x3_c00448{left:680.479728pt;}
.xa_c00448{left:682.079727pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8cdc79d431a20511eacf6fa.woff2')format("woff");}.ff1_c00449{font-family:ff1_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:ff2_c00449;src:url('chunks/assets/font_cb4d05c18b0602b9dde0ea7c.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_d922033aa217b2d21fc1021e.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;}
.m0_c00449{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:0.000000px;}
.ls2_c00449{letter-spacing:0.011169px;}
.ls3_c00449{letter-spacing:0.189300px;}
.ls0_c00449{letter-spacing:0.374281px;}
.ls1_c00449{letter-spacing:0.375684px;}
.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;}
}
.ws1_c00449{word-spacing:-13.875678px;}
.ws0_c00449{word-spacing:-12.434276px;}
.ws2_c00449{word-spacing:-9.731165px;}
.ws3_c00449{word-spacing:0.000000px;}
._e_c00449{margin-left:-9.897688px;}
._1_c00449{margin-left:-1.105374px;}
._0_c00449{width:1.195563px;}
._5_c00449{width:3.074291px;}
._4_c00449{width:4.831698px;}
._3_c00449{width:5.855560px;}
._6_c00449{width:7.653924px;}
._9_c00449{width:9.553400px;}
._d_c00449{width:11.100513px;}
._a_c00449{width:12.254333px;}
._b_c00449{width:14.934144px;}
._c_c00449{width:16.087870px;}
._2_c00449{width:19.157267px;}
._7_c00449{width:21.772365px;}
._8_c00449{width:22.819815px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs5_c00449{font-size:38.879984px;}
.fs3_c00449{font-size:48.239981px;}
.fs4_c00449{font-size:53.999978px;}
.fs0_c00449{font-size:59.759976px;}
.fs1_c00449{font-size:66.239974px;}
.fs2_c00449{font-size:71.999971px;}
.y0_c00449{bottom:0.000000px;}
.y4_c00449{bottom:75.899970px;}
.y3_c00449{bottom:114.059954px;}
.y28_c00449{bottom:133.320247px;}
.y27_c00449{bottom:140.160244px;}
.y26_c00449{bottom:150.959940px;}
.y25_c00449{bottom:172.919931px;}
.y24_c00449{bottom:182.639927px;}
.y23_c00449{bottom:232.679907px;}
.y21_c00449{bottom:279.839888px;}
.y22_c00449{bottom:288.119885px;}
.y20_c00449{bottom:310.979876px;}
.y1f_c00449{bottom:341.939863px;}
.y1e_c00449{bottom:373.079851px;}
.y1d_c00449{bottom:404.039838px;}
.y1c_c00449{bottom:435.179826px;}
.y1b_c00449{bottom:466.139814px;}
.y1a_c00449{bottom:497.279801px;}
.y19_c00449{bottom:528.239789px;}
.y18_c00449{bottom:559.379776px;}
.y16_c00449{bottom:590.339764px;}
.y17_c00449{bottom:598.619761px;}
.y15_c00449{bottom:621.479751px;}
.y14_c00449{bottom:652.439739px;}
.y13_c00449{bottom:683.579727px;}
.y12_c00449{bottom:714.539714px;}
.y11_c00449{bottom:745.679702px;}
.y10_c00449{bottom:776.639689px;}
.yf_c00449{bottom:807.779677px;}
.ye_c00449{bottom:838.739665px;}
.yd_c00449{bottom:869.879652px;}
.yc_c00449{bottom:900.839640px;}
.yb_c00449{bottom:931.979627px;}
.ya_c00449{bottom:962.939615px;}
.y9_c00449{bottom:994.079602px;}
.y8_c00449{bottom:1025.039590px;}
.y7_c00449{bottom:1056.179578px;}
.y6_c00449{bottom:1087.139565px;}
.y5_c00449{bottom:1118.279553px;}
.y2_c00449{bottom:1157.159537px;}
.y1_c00449{bottom:1196.039522px;}
.h8_c00449{height:38.158578px;}
.h5_c00449{height:47.321348px;}
.h7_c00449{height:49.284472px;}
.h6_c00449{height:52.998026px;}
.h2_c00449{height:54.628572px;}
.h1_c00449{height:58.651148px;}
.h4_c00449{height:70.628878px;}
.h3_c00449{height:70.664034px;}
.h0_c00449{height:1263.000000px;}
.w0_c00449{width:892.500000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:127.619949px;}
.x9_c00449{left:142.199943px;}
.x8_c00449{left:148.139941px;}
.x3_c00449{left:180.719930px;}
.x6_c00449{left:349.739860px;}
.x7_c00449{left:368.099853px;}
.x2_c00449{left:433.979514px;}
.x4_c00449{left:663.659735px;}
.x5_c00449{left:682.019727px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:0.000000pt;}
.ls2_c00449{letter-spacing:0.009928pt;}
.ls3_c00449{letter-spacing:0.168267pt;}
.ls0_c00449{letter-spacing:0.332694pt;}
.ls1_c00449{letter-spacing:0.333941pt;}
.ws1_c00449{word-spacing:-12.333936pt;}
.ws0_c00449{word-spacing:-11.052689pt;}
.ws2_c00449{word-spacing:-8.649924pt;}
.ws3_c00449{word-spacing:0.000000pt;}
._e_c00449{margin-left:-8.797945pt;}
._1_c00449{margin-left:-0.982555pt;}
._0_c00449{width:1.062723pt;}
._5_c00449{width:2.732703pt;}
._4_c00449{width:4.294843pt;}
._3_c00449{width:5.204942pt;}
._6_c00449{width:6.803488pt;}
._9_c00449{width:8.491911pt;}
._d_c00449{width:9.867123pt;}
._a_c00449{width:10.892740pt;}
._b_c00449{width:13.274795pt;}
._c_c00449{width:14.300329pt;}
._2_c00449{width:17.028682pt;}
._7_c00449{width:19.353214pt;}
._8_c00449{width:20.284280pt;}
.fs5_c00449{font-size:34.559986pt;}
.fs3_c00449{font-size:42.879983pt;}
.fs4_c00449{font-size:47.999981pt;}
.fs0_c00449{font-size:53.119979pt;}
.fs1_c00449{font-size:58.879976pt;}
.fs2_c00449{font-size:63.999974pt;}
.y0_c00449{bottom:0.000000pt;}
.y4_c00449{bottom:67.466640pt;}
.y3_c00449{bottom:101.386626pt;}
.y28_c00449{bottom:118.506886pt;}
.y27_c00449{bottom:124.586883pt;}
.y26_c00449{bottom:134.186613pt;}
.y25_c00449{bottom:153.706605pt;}
.y24_c00449{bottom:162.346602pt;}
.y23_c00449{bottom:206.826584pt;}
.y21_c00449{bottom:248.746567pt;}
.y22_c00449{bottom:256.106564pt;}
.y20_c00449{bottom:276.426556pt;}
.y1f_c00449{bottom:303.946545pt;}
.y1e_c00449{bottom:331.626534pt;}
.y1d_c00449{bottom:359.146523pt;}
.y1c_c00449{bottom:386.826512pt;}
.y1b_c00449{bottom:414.346501pt;}
.y1a_c00449{bottom:442.026490pt;}
.y19_c00449{bottom:469.546479pt;}
.y18_c00449{bottom:497.226468pt;}
.y16_c00449{bottom:524.746457pt;}
.y17_c00449{bottom:532.106454pt;}
.y15_c00449{bottom:552.426446pt;}
.y14_c00449{bottom:579.946435pt;}
.y13_c00449{bottom:607.626424pt;}
.y12_c00449{bottom:635.146413pt;}
.y11_c00449{bottom:662.826402pt;}
.y10_c00449{bottom:690.346391pt;}
.yf_c00449{bottom:718.026379pt;}
.ye_c00449{bottom:745.546368pt;}
.yd_c00449{bottom:773.226357pt;}
.yc_c00449{bottom:800.746346pt;}
.yb_c00449{bottom:828.426335pt;}
.ya_c00449{bottom:855.946324pt;}
.y9_c00449{bottom:883.626313pt;}
.y8_c00449{bottom:911.146302pt;}
.y7_c00449{bottom:938.826291pt;}
.y6_c00449{bottom:966.346280pt;}
.y5_c00449{bottom:994.026269pt;}
.y2_c00449{bottom:1028.586255pt;}
.y1_c00449{bottom:1063.146241pt;}
.h8_c00449{height:33.918736pt;}
.h5_c00449{height:42.063421pt;}
.h7_c00449{height:43.808420pt;}
.h6_c00449{height:47.109356pt;}
.h2_c00449{height:48.558731pt;}
.h1_c00449{height:52.134354pt;}
.h4_c00449{height:62.781225pt;}
.h3_c00449{height:62.812475pt;}
.h0_c00449{height:1122.666667pt;}
.w0_c00449{width:793.333333pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:113.439955pt;}
.x9_c00449{left:126.399949pt;}
.x8_c00449{left:131.679947pt;}
.x3_c00449{left:160.639938pt;}
.x6_c00449{left:310.879876pt;}
.x7_c00449{left:327.199869pt;}
.x2_c00449{left:385.759568pt;}
.x4_c00449{left:589.919764pt;}
.x5_c00449{left:606.239758pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7524dedeb35f02f641219d36.woff2')format("woff");}.ff1_c00450{font-family:ff1_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:ff2_c00450;src:url('chunks/assets/font_9326dea28cde8d0b463e3405.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_3e143fc37a23f9af5d286f21.woff2')format("woff");}.ff3_c00450{font-family:ff3_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:ff4_c00450;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00450{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls5_c00450{letter-spacing:0.000000px;}
.ls3_c00450{letter-spacing:0.011169px;}
.ls1_c00450{letter-spacing:0.012664px;}
.ls2_c00450{letter-spacing:0.153901px;}
.ls4_c00450{letter-spacing:0.189300px;}
.ls0_c00450{letter-spacing:12.978295px;}
.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;}
}
.ws0_c00450{word-spacing:-17.999993px;}
.ws1_c00450{word-spacing:-16.559993px;}
.ws2_c00450{word-spacing:-10.452660px;}
.ws3_c00450{word-spacing:-9.731165px;}
.ws4_c00450{word-spacing:0.000000px;}
._c_c00450{margin-left:-3.571519px;}
._1_c00450{margin-left:-1.105374px;}
._0_c00450{width:1.478392px;}
._8_c00450{width:3.061505px;}
._5_c00450{width:11.374418px;}
._2_c00450{width:12.840125px;}
._3_c00450{width:14.118030px;}
._4_c00450{width:15.182189px;}
._a_c00450{width:16.524593px;}
._6_c00450{width:19.029815px;}
._7_c00450{width:20.469703px;}
._b_c00450{width:23.039455px;}
._9_c00450{width:29.356882px;}
.fc0_c00450{color:rgb(0,0,0);}
.fs5_c00450{font-size:38.879984px;}
.fs4_c00450{font-size:41.759983px;}
.fs3_c00450{font-size:48.239981px;}
.fs0_c00450{font-size:59.759976px;}
.fs1_c00450{font-size:66.239974px;}
.fs2_c00450{font-size:71.999971px;}
.y0_c00450{bottom:0.000000px;}
.y4_c00450{bottom:75.720270px;}
.y3_c00450{bottom:113.880254px;}
.y24_c00450{bottom:133.499947px;}
.y23_c00450{bottom:151.499939px;}
.y22_c00450{bottom:158.339937px;}
.y21_c00450{bottom:168.779932px;}
.y20_c00450{bottom:186.959925px;}
.y1f_c00450{bottom:244.739902px;}
.y1e_c00450{bottom:322.499871px;}
.y1d_c00450{bottom:353.819858px;}
.y1c_c00450{bottom:384.959846px;}
.y1b_c00450{bottom:415.919834px;}
.y1a_c00450{bottom:447.059821px;}
.y19_c00450{bottom:478.019809px;}
.y18_c00450{bottom:509.159796px;}
.y17_c00450{bottom:540.119784px;}
.y16_c00450{bottom:563.339775px;}
.y14_c00450{bottom:585.299766px;}
.y15_c00450{bottom:592.859763px;}
.y13_c00450{bottom:607.079757px;}
.y12_c00450{bottom:628.859748px;}
.y11_c00450{bottom:654.239738px;}
.y10_c00450{bottom:794.819682px;}
.yf_c00450{bottom:825.779670px;}
.ye_c00450{bottom:856.919657px;}
.yd_c00450{bottom:887.879645px;}
.yc_c00450{bottom:919.019632px;}
.yb_c00450{bottom:949.979620px;}
.ya_c00450{bottom:981.119608px;}
.y9_c00450{bottom:1012.079595px;}
.y8_c00450{bottom:1043.219583px;}
.y7_c00450{bottom:1074.179570px;}
.y6_c00450{bottom:1105.319558px;}
.y5_c00450{bottom:1136.279545px;}
.y2_c00450{bottom:1175.879530px;}
.y1_c00450{bottom:1196.039522px;}
.ha_c00450{height:38.158578px;}
.h8_c00450{height:40.985140px;}
.h4_c00450{height:47.344903px;}
.hb_c00450{height:49.284472px;}
.h2_c00450{height:54.628572px;}
.h9_c00450{height:58.621969px;}
.h1_c00450{height:58.651148px;}
.h7_c00450{height:65.010911px;}
.h5_c00450{height:70.628878px;}
.h3_c00450{height:70.664034px;}
.h6_c00450{height:72.562471px;}
.h0_c00450{height:1263.000000px;}
.w0_c00450{width:892.500000px;}
.x0_c00450{left:0.000000px;}
.x5_c00450{left:127.800262px;}
.xf_c00450{left:142.379943px;}
.x9_c00450{left:147.779941px;}
.x7_c00450{left:179.099928px;}
.x6_c00450{left:180.899928px;}
.x1_c00450{left:181.979927px;}
.x2_c00450{left:329.219408px;}
.xa_c00450{left:334.079866px;}
.x4_c00450{left:434.159826px;}
.xd_c00450{left:446.579821px;}
.xb_c00450{left:543.419783px;}
.xc_c00450{left:559.079776px;}
.x8_c00450{left:741.419703px;}
.xe_c00450{left:754.919698px;}
.x3_c00450{left:765.539694px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls5_c00450{letter-spacing:0.000000pt;}
.ls3_c00450{letter-spacing:0.009928pt;}
.ls1_c00450{letter-spacing:0.011257pt;}
.ls2_c00450{letter-spacing:0.136801pt;}
.ls4_c00450{letter-spacing:0.168267pt;}
.ls0_c00450{letter-spacing:11.536262pt;}
.ws0_c00450{word-spacing:-15.999994pt;}
.ws1_c00450{word-spacing:-14.719994pt;}
.ws2_c00450{word-spacing:-9.291253pt;}
.ws3_c00450{word-spacing:-8.649924pt;}
.ws4_c00450{word-spacing:0.000000pt;}
._c_c00450{margin-left:-3.174684pt;}
._1_c00450{margin-left:-0.982555pt;}
._0_c00450{width:1.314126pt;}
._8_c00450{width:2.721338pt;}
._5_c00450{width:10.110594pt;}
._2_c00450{width:11.413444pt;}
._3_c00450{width:12.549360pt;}
._4_c00450{width:13.495279pt;}
._a_c00450{width:14.688527pt;}
._6_c00450{width:16.915391pt;}
._7_c00450{width:18.195291pt;}
._b_c00450{width:20.479516pt;}
._9_c00450{width:26.095006pt;}
.fs5_c00450{font-size:34.559986pt;}
.fs4_c00450{font-size:37.119985pt;}
.fs3_c00450{font-size:42.879983pt;}
.fs0_c00450{font-size:53.119979pt;}
.fs1_c00450{font-size:58.879976pt;}
.fs2_c00450{font-size:63.999974pt;}
.y0_c00450{bottom:0.000000pt;}
.y4_c00450{bottom:67.306906pt;}
.y3_c00450{bottom:101.226893pt;}
.y24_c00450{bottom:118.666619pt;}
.y23_c00450{bottom:134.666613pt;}
.y22_c00450{bottom:140.746610pt;}
.y21_c00450{bottom:150.026607pt;}
.y20_c00450{bottom:166.186600pt;}
.y1f_c00450{bottom:217.546580pt;}
.y1e_c00450{bottom:286.666552pt;}
.y1d_c00450{bottom:314.506541pt;}
.y1c_c00450{bottom:342.186530pt;}
.y1b_c00450{bottom:369.706519pt;}
.y1a_c00450{bottom:397.386508pt;}
.y19_c00450{bottom:424.906497pt;}
.y18_c00450{bottom:452.586486pt;}
.y17_c00450{bottom:480.106475pt;}
.y16_c00450{bottom:500.746466pt;}
.y14_c00450{bottom:520.266459pt;}
.y15_c00450{bottom:526.986456pt;}
.y13_c00450{bottom:539.626451pt;}
.y12_c00450{bottom:558.986443pt;}
.y11_c00450{bottom:581.546434pt;}
.y10_c00450{bottom:706.506384pt;}
.yf_c00450{bottom:734.026373pt;}
.ye_c00450{bottom:761.706362pt;}
.yd_c00450{bottom:789.226351pt;}
.yc_c00450{bottom:816.906340pt;}
.yb_c00450{bottom:844.426329pt;}
.ya_c00450{bottom:872.106318pt;}
.y9_c00450{bottom:899.626307pt;}
.y8_c00450{bottom:927.306296pt;}
.y7_c00450{bottom:954.826285pt;}
.y6_c00450{bottom:982.506274pt;}
.y5_c00450{bottom:1010.026263pt;}
.y2_c00450{bottom:1045.226249pt;}
.y1_c00450{bottom:1063.146241pt;}
.ha_c00450{height:33.918736pt;}
.h8_c00450{height:36.431235pt;}
.h4_c00450{height:42.084358pt;}
.hb_c00450{height:43.808420pt;}
.h2_c00450{height:48.558731pt;}
.h9_c00450{height:52.108417pt;}
.h1_c00450{height:52.134354pt;}
.h7_c00450{height:57.787477pt;}
.h5_c00450{height:62.781225pt;}
.h3_c00450{height:62.812475pt;}
.h6_c00450{height:64.499974pt;}
.h0_c00450{height:1122.666667pt;}
.w0_c00450{width:793.333333pt;}
.x0_c00450{left:0.000000pt;}
.x5_c00450{left:113.600233pt;}
.xf_c00450{left:126.559949pt;}
.x9_c00450{left:131.359947pt;}
.x7_c00450{left:159.199936pt;}
.x6_c00450{left:160.799936pt;}
.x1_c00450{left:161.759935pt;}
.x2_c00450{left:292.639474pt;}
.xa_c00450{left:296.959881pt;}
.x4_c00450{left:385.919846pt;}
.xd_c00450{left:396.959841pt;}
.xb_c00450{left:483.039807pt;}
.xc_c00450{left:496.959801pt;}
.x8_c00450{left:659.039736pt;}
.xe_c00450{left:671.039732pt;}
.x3_c00450{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdcbe0bd2fa7c92cd07f53d6.woff2')format("woff");}.ff1_c00451{font-family:ff1_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:ff2_c00451;src:url('chunks/assets/font_9514278c769e18593ddfa2f2.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00451{font-family:ff3_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:ff4_c00451;src:url('chunks/assets/font_b7c98b9578e336269f3e46a0.woff2')format("woff");}.ff4_c00451{font-family:ff4_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;}
.m0_c00451{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls4_c00451{letter-spacing:0.000000px;}
.ls2_c00451{letter-spacing:0.011169px;}
.ls0_c00451{letter-spacing:0.012664px;}
.ls1_c00451{letter-spacing:0.153901px;}
.ls3_c00451{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00451{word-spacing:-10.452660px;}
.ws1_c00451{word-spacing:-9.731165px;}
.ws2_c00451{word-spacing:0.000000px;}
._5_c00451{margin-left:-12.716934px;}
._1_c00451{margin-left:-1.105374px;}
._0_c00451{width:1.195563px;}
._4_c00451{width:2.337467px;}
._2_c00451{width:22.453663px;}
._3_c00451{width:23.520417px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs4_c00451{font-size:38.879984px;}
.fs3_c00451{font-size:41.759983px;}
.fs0_c00451{font-size:59.759976px;}
.fs1_c00451{font-size:66.239974px;}
.fs2_c00451{font-size:71.999971px;}
.y0_c00451{bottom:0.000000px;}
.y4_c00451{bottom:75.719970px;}
.y3_c00451{bottom:113.879954px;}
.y29_c00451{bottom:133.140247px;}
.y28_c00451{bottom:139.980244px;}
.y27_c00451{bottom:150.419940px;}
.y26_c00451{bottom:167.699933px;}
.y25_c00451{bottom:174.539930px;}
.y24_c00451{bottom:185.339926px;}
.y23_c00451{bottom:203.339919px;}
.y22_c00451{bottom:210.179916px;}
.y21_c00451{bottom:220.439912px;}
.y20_c00451{bottom:237.719905px;}
.y1f_c00451{bottom:244.559902px;}
.y1e_c00451{bottom:255.899898px;}
.y1c_c00451{bottom:298.019881px;}
.y1d_c00451{bottom:305.579878px;}
.y1b_c00451{bottom:323.399871px;}
.y1a_c00451{bottom:405.119838px;}
.y19_c00451{bottom:436.619825px;}
.y18_c00451{bottom:467.579813px;}
.y17_c00451{bottom:498.719801px;}
.y15_c00451{bottom:528.599789px;}
.y16_c00451{bottom:536.159786px;}
.y14_c00451{bottom:553.799778px;}
.y13_c00451{bottom:635.699746px;}
.y12_c00451{bottom:667.019733px;}
.y11_c00451{bottom:698.159721px;}
.y10_c00451{bottom:728.759708px;}
.ye_c00451{bottom:758.999696px;}
.yf_c00451{bottom:766.559693px;}
.yd_c00451{bottom:784.379686px;}
.yc_c00451{bottom:859.979656px;}
.yb_c00451{bottom:891.119644px;}
.ya_c00451{bottom:922.079631px;}
.y9_c00451{bottom:952.859619px;}
.y7_c00451{bottom:983.099607px;}
.y8_c00451{bottom:990.659604px;}
.y6_c00451{bottom:1008.479597px;}
.y5_c00451{bottom:1079.579568px;}
.y2_c00451{bottom:1156.979537px;}
.y1_c00451{bottom:1195.859522px;}
.h9_c00451{height:38.158578px;}
.h5_c00451{height:40.985140px;}
.ha_c00451{height:49.284472px;}
.h2_c00451{height:54.628572px;}
.h1_c00451{height:58.651148px;}
.h4_c00451{height:65.010911px;}
.h6_c00451{height:66.757473px;}
.h8_c00451{height:70.628878px;}
.h7_c00451{height:70.664034px;}
.h3_c00451{height:72.562471px;}
.h0_c00451{height:1263.000000px;}
.w0_c00451{width:892.500000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:127.799949px;}
.xd_c00451{left:142.379943px;}
.x9_c00451{left:180.899928px;}
.x5_c00451{left:182.519927px;}
.x2_c00451{left:434.159514px;}
.x8_c00451{left:446.579821px;}
.x6_c00451{left:695.159722px;}
.x7_c00451{left:710.819716px;}
.xa_c00451{left:731.159708px;}
.xb_c00451{left:735.119706px;}
.xc_c00451{left:748.079701px;}
.x4_c00451{left:752.579699px;}
.x3_c00451{left:754.199698px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls4_c00451{letter-spacing:0.000000pt;}
.ls2_c00451{letter-spacing:0.009928pt;}
.ls0_c00451{letter-spacing:0.011257pt;}
.ls1_c00451{letter-spacing:0.136801pt;}
.ls3_c00451{letter-spacing:0.168267pt;}
.ws0_c00451{word-spacing:-9.291253pt;}
.ws1_c00451{word-spacing:-8.649924pt;}
.ws2_c00451{word-spacing:0.000000pt;}
._5_c00451{margin-left:-11.303941pt;}
._1_c00451{margin-left:-0.982555pt;}
._0_c00451{width:1.062723pt;}
._4_c00451{width:2.077748pt;}
._2_c00451{width:19.958811pt;}
._3_c00451{width:20.907038pt;}
.fs4_c00451{font-size:34.559986pt;}
.fs3_c00451{font-size:37.119985pt;}
.fs0_c00451{font-size:53.119979pt;}
.fs1_c00451{font-size:58.879976pt;}
.fs2_c00451{font-size:63.999974pt;}
.y0_c00451{bottom:0.000000pt;}
.y4_c00451{bottom:67.306640pt;}
.y3_c00451{bottom:101.226626pt;}
.y29_c00451{bottom:118.346886pt;}
.y28_c00451{bottom:124.426884pt;}
.y27_c00451{bottom:133.706613pt;}
.y26_c00451{bottom:149.066607pt;}
.y25_c00451{bottom:155.146605pt;}
.y24_c00451{bottom:164.746601pt;}
.y23_c00451{bottom:180.746594pt;}
.y22_c00451{bottom:186.826592pt;}
.y21_c00451{bottom:195.946588pt;}
.y20_c00451{bottom:211.306582pt;}
.y1f_c00451{bottom:217.386580pt;}
.y1e_c00451{bottom:227.466576pt;}
.y1c_c00451{bottom:264.906561pt;}
.y1d_c00451{bottom:271.626558pt;}
.y1b_c00451{bottom:287.466552pt;}
.y1a_c00451{bottom:360.106523pt;}
.y19_c00451{bottom:388.106511pt;}
.y18_c00451{bottom:415.626500pt;}
.y17_c00451{bottom:443.306489pt;}
.y15_c00451{bottom:469.866479pt;}
.y16_c00451{bottom:476.586476pt;}
.y14_c00451{bottom:492.266470pt;}
.y13_c00451{bottom:565.066441pt;}
.y12_c00451{bottom:592.906430pt;}
.y11_c00451{bottom:620.586418pt;}
.y10_c00451{bottom:647.786408pt;}
.ye_c00451{bottom:674.666397pt;}
.yf_c00451{bottom:681.386394pt;}
.yd_c00451{bottom:697.226388pt;}
.yc_c00451{bottom:764.426361pt;}
.yb_c00451{bottom:792.106350pt;}
.ya_c00451{bottom:819.626339pt;}
.y9_c00451{bottom:846.986328pt;}
.y7_c00451{bottom:873.866317pt;}
.y8_c00451{bottom:880.586314pt;}
.y6_c00451{bottom:896.426308pt;}
.y5_c00451{bottom:959.626283pt;}
.y2_c00451{bottom:1028.426255pt;}
.y1_c00451{bottom:1062.986241pt;}
.h9_c00451{height:33.918736pt;}
.h5_c00451{height:36.431235pt;}
.ha_c00451{height:43.808420pt;}
.h2_c00451{height:48.558731pt;}
.h1_c00451{height:52.134354pt;}
.h4_c00451{height:57.787477pt;}
.h6_c00451{height:59.339976pt;}
.h8_c00451{height:62.781225pt;}
.h7_c00451{height:62.812475pt;}
.h3_c00451{height:64.499974pt;}
.h0_c00451{height:1122.666667pt;}
.w0_c00451{width:793.333333pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:113.599955pt;}
.xd_c00451{left:126.559949pt;}
.x9_c00451{left:160.799936pt;}
.x5_c00451{left:162.239935pt;}
.x2_c00451{left:385.919568pt;}
.x8_c00451{left:396.959841pt;}
.x6_c00451{left:617.919753pt;}
.x7_c00451{left:631.839747pt;}
.xa_c00451{left:649.919740pt;}
.xb_c00451{left:653.439739pt;}
.xc_c00451{left:664.959734pt;}
.x4_c00451{left:668.959732pt;}
.x3_c00451{left:670.399732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3c52bc2154dbe6f98e141ee.woff2')format("woff");}.ff1_c00452{font-family:ff1_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:ff2_c00452;src:url('chunks/assets/font_1b3bbec771fafbcacb24dd74.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00452{font-family:ff3_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:ff4_c00452;src:url('chunks/assets/font_aeef2b0c73ba0fa98a2a52eb.woff2')format("woff");}.ff4_c00452{font-family:ff4_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;}
.m0_c00452{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls1_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00452{word-spacing:0.000000px;}
._5_c00452{margin-left:-3.571519px;}
._1_c00452{margin-left:-1.105374px;}
._0_c00452{width:1.478392px;}
._3_c00452{width:5.525996px;}
._4_c00452{width:6.657692px;}
._2_c00452{width:8.264853px;}
.fc0_c00452{color:rgb(0,0,0);}
.fs0_c00452{font-size:59.759976px;}
.fs1_c00452{font-size:66.239974px;}
.fs2_c00452{font-size:71.999971px;}
.y0_c00452{bottom:0.000000px;}
.y4_c00452{bottom:75.720270px;}
.y3_c00452{bottom:113.880254px;}
.y18_c00452{bottom:133.500247px;}
.y17_c00452{bottom:152.399939px;}
.y16_c00452{bottom:200.459920px;}
.y15_c00452{bottom:231.959907px;}
.y14_c00452{bottom:262.919895px;}
.y13_c00452{bottom:294.059882px;}
.y12_c00452{bottom:325.019870px;}
.y11_c00452{bottom:354.899858px;}
.y10_c00452{bottom:380.279848px;}
.yf_c00452{bottom:727.859709px;}
.ye_c00452{bottom:758.999696px;}
.yd_c00452{bottom:788.879684px;}
.yc_c00452{bottom:814.079674px;}
.yb_c00452{bottom:900.839640px;}
.ya_c00452{bottom:931.799627px;}
.y9_c00452{bottom:961.679615px;}
.y8_c00452{bottom:987.059605px;}
.y7_c00452{bottom:1073.819570px;}
.y6_c00452{bottom:1105.319558px;}
.y5_c00452{bottom:1136.279545px;}
.y2_c00452{bottom:1175.879530px;}
.y1_c00452{bottom:1196.039522px;}
.h7_c00452{height:49.284472px;}
.h2_c00452{height:54.628572px;}
.h1_c00452{height:58.651148px;}
.h5_c00452{height:66.757473px;}
.h6_c00452{height:70.628878px;}
.h3_c00452{height:70.664034px;}
.h4_c00452{height:72.562471px;}
.h0_c00452{height:1263.000000px;}
.w0_c00452{width:892.500000px;}
.x0_c00452{left:0.000000px;}
.x5_c00452{left:127.800262px;}
.x6_c00452{left:180.899928px;}
.x1_c00452{left:181.979927px;}
.x9_c00452{left:190.259924px;}
.x2_c00452{left:329.219408px;}
.x4_c00452{left:434.159826px;}
.x7_c00452{left:446.579821px;}
.xa_c00452{left:699.659720px;}
.x8_c00452{left:739.079704px;}
.x3_c00452{left:765.539694px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls1_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:0.136801pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._5_c00452{margin-left:-3.174684pt;}
._1_c00452{margin-left:-0.982555pt;}
._0_c00452{width:1.314126pt;}
._3_c00452{width:4.911996pt;}
._4_c00452{width:5.917948pt;}
._2_c00452{width:7.346536pt;}
.fs0_c00452{font-size:53.119979pt;}
.fs1_c00452{font-size:58.879976pt;}
.fs2_c00452{font-size:63.999974pt;}
.y0_c00452{bottom:0.000000pt;}
.y4_c00452{bottom:67.306906pt;}
.y3_c00452{bottom:101.226893pt;}
.y18_c00452{bottom:118.666886pt;}
.y17_c00452{bottom:135.466612pt;}
.y16_c00452{bottom:178.186595pt;}
.y15_c00452{bottom:206.186584pt;}
.y14_c00452{bottom:233.706573pt;}
.y13_c00452{bottom:261.386562pt;}
.y12_c00452{bottom:288.906551pt;}
.y11_c00452{bottom:315.466540pt;}
.y10_c00452{bottom:338.026531pt;}
.yf_c00452{bottom:646.986408pt;}
.ye_c00452{bottom:674.666397pt;}
.yd_c00452{bottom:701.226386pt;}
.yc_c00452{bottom:723.626377pt;}
.yb_c00452{bottom:800.746346pt;}
.ya_c00452{bottom:828.266335pt;}
.y9_c00452{bottom:854.826325pt;}
.y8_c00452{bottom:877.386316pt;}
.y7_c00452{bottom:954.506285pt;}
.y6_c00452{bottom:982.506274pt;}
.y5_c00452{bottom:1010.026263pt;}
.y2_c00452{bottom:1045.226249pt;}
.y1_c00452{bottom:1063.146241pt;}
.h7_c00452{height:43.808420pt;}
.h2_c00452{height:48.558731pt;}
.h1_c00452{height:52.134354pt;}
.h5_c00452{height:59.339976pt;}
.h6_c00452{height:62.781225pt;}
.h3_c00452{height:62.812475pt;}
.h4_c00452{height:64.499974pt;}
.h0_c00452{height:1122.666667pt;}
.w0_c00452{width:793.333333pt;}
.x0_c00452{left:0.000000pt;}
.x5_c00452{left:113.600233pt;}
.x6_c00452{left:160.799936pt;}
.x1_c00452{left:161.759935pt;}
.x9_c00452{left:169.119932pt;}
.x2_c00452{left:292.639474pt;}
.x4_c00452{left:385.919846pt;}
.x7_c00452{left:396.959841pt;}
.xa_c00452{left:621.919751pt;}
.x8_c00452{left:656.959737pt;}
.x3_c00452{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98b78bcf05755591d4244e8d.woff2')format("woff");}.ff1_c00453{font-family:ff1_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:ff2_c00453;src:url('chunks/assets/font_439146fd860bf601c1ea85cb.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_b6154df27da47197afd4770b.woff2')format("woff");}.ff3_c00453{font-family:ff3_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:ff4_c00453;src:url('chunks/assets/font_1efc7a7681a3f98302db9e84.woff2')format("woff");}.ff4_c00453{font-family:ff4_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:ff5_c00453;src:url('chunks/assets/font_3a734719586e15c56649f40f.woff2')format("woff");}.ff5_c00453{font-family:ff5_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;}
.m0_c00453{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00453{word-spacing:-17.999993px;}
.ws1_c00453{word-spacing:0.000000px;}
._d_c00453{margin-left:-2.150676px;}
._1_c00453{margin-left:-1.105374px;}
._0_c00453{width:1.195563px;}
._5_c00453{width:2.308419px;}
._3_c00453{width:3.421445px;}
._4_c00453{width:5.092616px;}
._c_c00453{width:7.324741px;}
._8_c00453{width:10.625801px;}
._9_c00453{width:11.848605px;}
._6_c00453{width:12.907401px;}
._7_c00453{width:14.030944px;}
._a_c00453{width:37.537653px;}
._b_c00453{width:39.056290px;}
._2_c00453{width:44.786830px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:59.759976px;}
.fs1_c00453{font-size:66.239974px;}
.fs2_c00453{font-size:71.999971px;}
.y0_c00453{bottom:0.000000px;}
.y4_c00453{bottom:75.719970px;}
.y3_c00453{bottom:113.879954px;}
.y18_c00453{bottom:147.540241px;}
.y17_c00453{bottom:177.599929px;}
.y16_c00453{bottom:208.739917px;}
.y15_c00453{bottom:239.699904px;}
.y14_c00453{bottom:270.839892px;}
.y13_c00453{bottom:301.799879px;}
.y12_c00453{bottom:332.939867px;}
.y11_c00453{bottom:363.899854px;}
.y10_c00453{bottom:395.039842px;}
.yf_c00453{bottom:425.999830px;}
.ye_c00453{bottom:457.139817px;}
.yd_c00453{bottom:488.099805px;}
.yc_c00453{bottom:519.239792px;}
.yb_c00453{bottom:550.199780px;}
.ya_c00453{bottom:581.339767px;}
.y9_c00453{bottom:612.299755px;}
.y8_c00453{bottom:642.179743px;}
.y7_c00453{bottom:670.799732px;}
.y6_c00453{bottom:695.819722px;}
.y5_c00453{bottom:1117.739553px;}
.y2_c00453{bottom:1156.979537px;}
.y1_c00453{bottom:1195.859522px;}
.h2_c00453{height:54.628572px;}
.h1_c00453{height:58.651148px;}
.h4_c00453{height:65.010911px;}
.h5_c00453{height:70.664034px;}
.h3_c00453{height:72.562471px;}
.h0_c00453{height:1263.000000px;}
.w0_c00453{width:892.500000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:127.799949px;}
.x4_c00453{left:179.639410px;}
.x5_c00453{left:180.899928px;}
.x2_c00453{left:434.159514px;}
.x3_c00453{left:597.419761px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:-15.999994pt;}
.ws1_c00453{word-spacing:0.000000pt;}
._d_c00453{margin-left:-1.911712pt;}
._1_c00453{margin-left:-0.982555pt;}
._0_c00453{width:1.062723pt;}
._5_c00453{width:2.051928pt;}
._3_c00453{width:3.041284pt;}
._4_c00453{width:4.526770pt;}
._c_c00453{width:6.510881pt;}
._8_c00453{width:9.445157pt;}
._9_c00453{width:10.532094pt;}
._6_c00453{width:11.473245pt;}
._7_c00453{width:12.471951pt;}
._a_c00453{width:33.366803pt;}
._b_c00453{width:34.716702pt;}
._2_c00453{width:39.810516pt;}
.fs0_c00453{font-size:53.119979pt;}
.fs1_c00453{font-size:58.879976pt;}
.fs2_c00453{font-size:63.999974pt;}
.y0_c00453{bottom:0.000000pt;}
.y4_c00453{bottom:67.306640pt;}
.y3_c00453{bottom:101.226626pt;}
.y18_c00453{bottom:131.146881pt;}
.y17_c00453{bottom:157.866604pt;}
.y16_c00453{bottom:185.546592pt;}
.y15_c00453{bottom:213.066581pt;}
.y14_c00453{bottom:240.746570pt;}
.y13_c00453{bottom:268.266559pt;}
.y12_c00453{bottom:295.946548pt;}
.y11_c00453{bottom:323.466537pt;}
.y10_c00453{bottom:351.146526pt;}
.yf_c00453{bottom:378.666515pt;}
.ye_c00453{bottom:406.346504pt;}
.yd_c00453{bottom:433.866493pt;}
.yc_c00453{bottom:461.546482pt;}
.yb_c00453{bottom:489.066471pt;}
.ya_c00453{bottom:516.746460pt;}
.y9_c00453{bottom:544.266449pt;}
.y8_c00453{bottom:570.826438pt;}
.y7_c00453{bottom:596.266428pt;}
.y6_c00453{bottom:618.506419pt;}
.y5_c00453{bottom:993.546269pt;}
.y2_c00453{bottom:1028.426255pt;}
.y1_c00453{bottom:1062.986241pt;}
.h2_c00453{height:48.558731pt;}
.h1_c00453{height:52.134354pt;}
.h4_c00453{height:57.787477pt;}
.h5_c00453{height:62.812475pt;}
.h3_c00453{height:64.499974pt;}
.h0_c00453{height:1122.666667pt;}
.w0_c00453{width:793.333333pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:113.599955pt;}
.x4_c00453{left:159.679476pt;}
.x5_c00453{left:160.799936pt;}
.x2_c00453{left:385.919568pt;}
.x3_c00453{left:531.039788pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f240ebd42e749bb2c562e06.woff2')format("woff");}.ff1_c00454{font-family:ff1_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:ff2_c00454;src:url('chunks/assets/font_b9a98e06c50f208490394263.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_26923c33ff9c7c2ca5afa002.woff2')format("woff");}.ff3_c00454{font-family:ff3_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;}
.m0_c00454{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls5_c00454{letter-spacing:0.000000px;}
.ls3_c00454{letter-spacing:0.011169px;}
.ls2_c00454{letter-spacing:0.012620px;}
.ls0_c00454{letter-spacing:0.012664px;}
.ls1_c00454{letter-spacing:0.153901px;}
.ls4_c00454{letter-spacing:0.189300px;}
.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;}
}
.ws3_c00454{word-spacing:-14.939994px;}
.ws0_c00454{word-spacing:-10.452660px;}
.ws1_c00454{word-spacing:-10.452616px;}
.ws2_c00454{word-spacing:-9.731165px;}
.ws4_c00454{word-spacing:0.000000px;}
._7_c00454{margin-left:-12.716934px;}
._1_c00454{margin-left:-1.105374px;}
._0_c00454{width:1.478392px;}
._2_c00454{width:2.778981px;}
._3_c00454{width:4.221149px;}
._4_c00454{width:11.134686px;}
._5_c00454{width:12.444664px;}
._6_c00454{width:19.384179px;}
.fc0_c00454{color:rgb(0,0,0);}
.fs4_c00454{font-size:38.879984px;}
.fs2_c00454{font-size:41.759983px;}
.fs0_c00454{font-size:59.759976px;}
.fs1_c00454{font-size:66.239974px;}
.fs3_c00454{font-size:71.999971px;}
.y0_c00454{bottom:0.000000px;}
.y4_c00454{bottom:75.720270px;}
.y3_c00454{bottom:113.880254px;}
.y1e_c00454{bottom:133.499947px;}
.y1d_c00454{bottom:151.859939px;}
.y1c_c00454{bottom:169.859932px;}
.y1b_c00454{bottom:176.699929px;}
.y1a_c00454{bottom:208.559917px;}
.y19_c00454{bottom:216.119914px;}
.y18_c00454{bottom:249.059900px;}
.y17_c00454{bottom:297.479881px;}
.y16_c00454{bottom:328.439869px;}
.y15_c00454{bottom:359.579856px;}
.y14_c00454{bottom:390.539844px;}
.y13_c00454{bottom:421.679831px;}
.y11_c00454{bottom:451.559819px;}
.y12_c00454{bottom:459.119816px;}
.y10_c00454{bottom:479.999808px;}
.yf_c00454{bottom:505.199798px;}
.ye_c00454{bottom:769.979692px;}
.yd_c00454{bottom:800.039680px;}
.yc_c00454{bottom:831.179668px;}
.yb_c00454{bottom:862.139655px;}
.ya_c00454{bottom:894.359642px;}
.y9_c00454{bottom:924.959630px;}
.y7_c00454{bottom:924.959930px;}
.y8_c00454{bottom:932.519627px;}
.y6_c00454{bottom:953.399919px;}
.y5_c00454{bottom:978.599909px;}
.y2_c00454{bottom:1175.879530px;}
.y1_c00454{bottom:1196.039522px;}
.h7_c00454{height:38.158578px;}
.h4_c00454{height:40.985140px;}
.h8_c00454{height:49.284472px;}
.h2_c00454{height:54.628572px;}
.h1_c00454{height:58.651148px;}
.h5_c00454{height:59.378882px;}
.h3_c00454{height:65.010911px;}
.h6_c00454{height:70.664034px;}
.h0_c00454{height:1263.000000px;}
.w0_c00454{width:892.500000px;}
.x0_c00454{left:0.000000px;}
.x5_c00454{left:127.800262px;}
.x8_c00454{left:129.960468px;}
.xe_c00454{left:142.379943px;}
.xd_c00454{left:143.459943px;}
.xb_c00454{left:180.899928px;}
.x1_c00454{left:181.979927px;}
.x2_c00454{left:329.219408px;}
.x4_c00454{left:434.159826px;}
.x7_c00454{left:446.579890px;}
.xc_c00454{left:725.039591px;}
.x6_c00454{left:727.919435px;}
.x9_c00454{left:747.719701px;}
.xa_c00454{left:763.379695px;}
.x3_c00454{left:765.539694px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls5_c00454{letter-spacing:0.000000pt;}
.ls3_c00454{letter-spacing:0.009928pt;}
.ls2_c00454{letter-spacing:0.011218pt;}
.ls0_c00454{letter-spacing:0.011257pt;}
.ls1_c00454{letter-spacing:0.136801pt;}
.ls4_c00454{letter-spacing:0.168267pt;}
.ws3_c00454{word-spacing:-13.279995pt;}
.ws0_c00454{word-spacing:-9.291253pt;}
.ws1_c00454{word-spacing:-9.291214pt;}
.ws2_c00454{word-spacing:-8.649924pt;}
.ws4_c00454{word-spacing:0.000000pt;}
._7_c00454{margin-left:-11.303941pt;}
._1_c00454{margin-left:-0.982555pt;}
._0_c00454{width:1.314126pt;}
._2_c00454{width:2.470206pt;}
._3_c00454{width:3.752132pt;}
._4_c00454{width:9.897499pt;}
._5_c00454{width:11.061924pt;}
._6_c00454{width:17.230381pt;}
.fs4_c00454{font-size:34.559986pt;}
.fs2_c00454{font-size:37.119985pt;}
.fs0_c00454{font-size:53.119979pt;}
.fs1_c00454{font-size:58.879976pt;}
.fs3_c00454{font-size:63.999974pt;}
.y0_c00454{bottom:0.000000pt;}
.y4_c00454{bottom:67.306906pt;}
.y3_c00454{bottom:101.226893pt;}
.y1e_c00454{bottom:118.666619pt;}
.y1d_c00454{bottom:134.986613pt;}
.y1c_c00454{bottom:150.986606pt;}
.y1b_c00454{bottom:157.066604pt;}
.y1a_c00454{bottom:185.386593pt;}
.y19_c00454{bottom:192.106590pt;}
.y18_c00454{bottom:221.386578pt;}
.y17_c00454{bottom:264.426561pt;}
.y16_c00454{bottom:291.946550pt;}
.y15_c00454{bottom:319.626539pt;}
.y14_c00454{bottom:347.146528pt;}
.y13_c00454{bottom:374.826517pt;}
.y11_c00454{bottom:401.386506pt;}
.y12_c00454{bottom:408.106503pt;}
.y10_c00454{bottom:426.666496pt;}
.yf_c00454{bottom:449.066487pt;}
.ye_c00454{bottom:684.426393pt;}
.yd_c00454{bottom:711.146382pt;}
.yc_c00454{bottom:738.826371pt;}
.yb_c00454{bottom:766.346360pt;}
.ya_c00454{bottom:794.986349pt;}
.y9_c00454{bottom:822.186338pt;}
.y7_c00454{bottom:822.186604pt;}
.y8_c00454{bottom:828.906335pt;}
.y6_c00454{bottom:847.466594pt;}
.y5_c00454{bottom:869.866585pt;}
.y2_c00454{bottom:1045.226249pt;}
.y1_c00454{bottom:1063.146241pt;}
.h7_c00454{height:33.918736pt;}
.h4_c00454{height:36.431235pt;}
.h8_c00454{height:43.808420pt;}
.h2_c00454{height:48.558731pt;}
.h1_c00454{height:52.134354pt;}
.h5_c00454{height:52.781229pt;}
.h3_c00454{height:57.787477pt;}
.h6_c00454{height:62.812475pt;}
.h0_c00454{height:1122.666667pt;}
.w0_c00454{width:793.333333pt;}
.x0_c00454{left:0.000000pt;}
.x5_c00454{left:113.600233pt;}
.x8_c00454{left:115.520416pt;}
.xe_c00454{left:126.559949pt;}
.xd_c00454{left:127.519949pt;}
.xb_c00454{left:160.799936pt;}
.x1_c00454{left:161.759935pt;}
.x2_c00454{left:292.639474pt;}
.x4_c00454{left:385.919846pt;}
.x7_c00454{left:396.959902pt;}
.xc_c00454{left:644.479637pt;}
.x6_c00454{left:647.039498pt;}
.x9_c00454{left:664.639734pt;}
.xa_c00454{left:678.559729pt;}
.x3_c00454{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8f492fe91bed57795b63c47.woff2')format("woff");}.ff1_c00455{font-family:ff1_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:ff2_c00455;src:url('chunks/assets/font_e71b951e6bacede4accd16d4.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_a8c8ed86f3566975c73c81ab.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;}
.m0_c00455{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls4_c00455{letter-spacing:0.000000px;}
.ls2_c00455{letter-spacing:0.011169px;}
.ls0_c00455{letter-spacing:0.012664px;}
.ls1_c00455{letter-spacing:0.153901px;}
.ls3_c00455{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00455{word-spacing:-16.559993px;}
.ws1_c00455{word-spacing:-10.452660px;}
.ws2_c00455{word-spacing:-9.731165px;}
.ws3_c00455{word-spacing:0.000000px;}
._a_c00455{margin-left:-12.716934px;}
._1_c00455{margin-left:-1.105374px;}
._0_c00455{width:1.195563px;}
._5_c00455{width:4.191600px;}
._2_c00455{width:6.015000px;}
._7_c00455{width:7.404272px;}
._6_c00455{width:8.520061px;}
._8_c00455{width:9.983198px;}
._9_c00455{width:10.997710px;}
._3_c00455{width:29.300070px;}
._4_c00455{width:30.433998px;}
.fc0_c00455{color:rgb(0,0,0);}
.fs4_c00455{font-size:38.879984px;}
.fs3_c00455{font-size:41.759983px;}
.fs0_c00455{font-size:59.759976px;}
.fs1_c00455{font-size:66.239974px;}
.fs2_c00455{font-size:71.999971px;}
.y0_c00455{bottom:0.000000px;}
.y4_c00455{bottom:75.719970px;}
.y3_c00455{bottom:113.879954px;}
.y19_c00455{bottom:133.499947px;}
.y18_c00455{bottom:151.859939px;}
.y17_c00455{bottom:169.859932px;}
.y16_c00455{bottom:176.699929px;}
.y15_c00455{bottom:188.039925px;}
.y13_c00455{bottom:215.579914px;}
.y14_c00455{bottom:223.139911px;}
.y12_c00455{bottom:240.959904px;}
.y11_c00455{bottom:478.379809px;}
.y10_c00455{bottom:509.339796px;}
.yf_c00455{bottom:540.479784px;}
.ye_c00455{bottom:571.619771px;}
.yc_c00455{bottom:593.939762px;}
.yd_c00455{bottom:601.499759px;}
.yb_c00455{bottom:615.719754px;}
.ya_c00455{bottom:640.919744px;}
.y9_c00455{bottom:993.899602px;}
.y8_c00455{bottom:1024.859590px;}
.y7_c00455{bottom:1055.999578px;}
.y6_c00455{bottom:1086.959565px;}
.y5_c00455{bottom:1118.099553px;}
.y2_c00455{bottom:1156.979537px;}
.y1_c00455{bottom:1195.859522px;}
.h7_c00455{height:38.158578px;}
.h5_c00455{height:40.985140px;}
.h8_c00455{height:49.284472px;}
.h2_c00455{height:54.628572px;}
.h1_c00455{height:58.651148px;}
.h4_c00455{height:65.010911px;}
.h3_c00455{height:70.628878px;}
.h6_c00455{height:70.664034px;}
.h0_c00455{height:1263.000000px;}
.w0_c00455{width:892.500000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:127.799949px;}
.xc_c00455{left:142.379943px;}
.x5_c00455{left:156.960296px;}
.x3_c00455{left:180.899928px;}
.x6_c00455{left:406.440467px;}
.x2_c00455{left:434.159514px;}
.x7_c00455{left:471.059812px;}
.x8_c00455{left:486.719805px;}
.x9_c00455{left:680.039062px;}
.x4_c00455{left:683.999726px;}
.xa_c00455{left:719.999712px;}
.xb_c00455{left:735.659706px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls4_c00455{letter-spacing:0.000000pt;}
.ls2_c00455{letter-spacing:0.009928pt;}
.ls0_c00455{letter-spacing:0.011257pt;}
.ls1_c00455{letter-spacing:0.136801pt;}
.ls3_c00455{letter-spacing:0.168267pt;}
.ws0_c00455{word-spacing:-14.719994pt;}
.ws1_c00455{word-spacing:-9.291253pt;}
.ws2_c00455{word-spacing:-8.649924pt;}
.ws3_c00455{word-spacing:0.000000pt;}
._a_c00455{margin-left:-11.303941pt;}
._1_c00455{margin-left:-0.982555pt;}
._0_c00455{width:1.062723pt;}
._5_c00455{width:3.725866pt;}
._2_c00455{width:5.346667pt;}
._7_c00455{width:6.581575pt;}
._6_c00455{width:7.573388pt;}
._8_c00455{width:8.873954pt;}
._9_c00455{width:9.775742pt;}
._3_c00455{width:26.044507pt;}
._4_c00455{width:27.052443pt;}
.fs4_c00455{font-size:34.559986pt;}
.fs3_c00455{font-size:37.119985pt;}
.fs0_c00455{font-size:53.119979pt;}
.fs1_c00455{font-size:58.879976pt;}
.fs2_c00455{font-size:63.999974pt;}
.y0_c00455{bottom:0.000000pt;}
.y4_c00455{bottom:67.306640pt;}
.y3_c00455{bottom:101.226626pt;}
.y19_c00455{bottom:118.666619pt;}
.y18_c00455{bottom:134.986613pt;}
.y17_c00455{bottom:150.986606pt;}
.y16_c00455{bottom:157.066604pt;}
.y15_c00455{bottom:167.146600pt;}
.y13_c00455{bottom:191.626590pt;}
.y14_c00455{bottom:198.346587pt;}
.y12_c00455{bottom:214.186581pt;}
.y11_c00455{bottom:425.226497pt;}
.y10_c00455{bottom:452.746486pt;}
.yf_c00455{bottom:480.426474pt;}
.ye_c00455{bottom:508.106463pt;}
.yc_c00455{bottom:527.946455pt;}
.yd_c00455{bottom:534.666453pt;}
.yb_c00455{bottom:547.306448pt;}
.ya_c00455{bottom:569.706439pt;}
.y9_c00455{bottom:883.466313pt;}
.y8_c00455{bottom:910.986302pt;}
.y7_c00455{bottom:938.666291pt;}
.y6_c00455{bottom:966.186280pt;}
.y5_c00455{bottom:993.866269pt;}
.y2_c00455{bottom:1028.426255pt;}
.y1_c00455{bottom:1062.986241pt;}
.h7_c00455{height:33.918736pt;}
.h5_c00455{height:36.431235pt;}
.h8_c00455{height:43.808420pt;}
.h2_c00455{height:48.558731pt;}
.h1_c00455{height:52.134354pt;}
.h4_c00455{height:57.787477pt;}
.h3_c00455{height:62.781225pt;}
.h6_c00455{height:62.812475pt;}
.h0_c00455{height:1122.666667pt;}
.w0_c00455{width:793.333333pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:113.599955pt;}
.xc_c00455{left:126.559949pt;}
.x5_c00455{left:139.520263pt;}
.x3_c00455{left:160.799936pt;}
.x6_c00455{left:361.280415pt;}
.x2_c00455{left:385.919568pt;}
.x7_c00455{left:418.719833pt;}
.x8_c00455{left:432.639827pt;}
.x9_c00455{left:604.479166pt;}
.x4_c00455{left:607.999757pt;}
.xa_c00455{left:639.999744pt;}
.xb_c00455{left:653.919738pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2929302906a437342e1b9fa2.woff2')format("woff");}.ff1_c00456{font-family:ff1_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;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_e71b951e6bacede4accd16d4.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_bd097252d6b3942e0c1d341f.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls4_c00456{letter-spacing:0.000000px;}
.ls2_c00456{letter-spacing:0.011169px;}
.ls0_c00456{letter-spacing:0.012664px;}
.ls1_c00456{letter-spacing:0.153901px;}
.ls3_c00456{letter-spacing:0.189300px;}
.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:-10.452660px;}
.ws1_c00456{word-spacing:-9.731165px;}
.ws2_c00456{word-spacing:0.000000px;}
._4_c00456{margin-left:-3.571519px;}
._1_c00456{margin-left:-1.105374px;}
._0_c00456{width:1.478392px;}
._3_c00456{width:7.910533px;}
._2_c00456{width:24.391760px;}
.fc0_c00456{color:rgb(0,0,0);}
.fs4_c00456{font-size:38.879984px;}
.fs3_c00456{font-size:41.759983px;}
.fs0_c00456{font-size:59.759976px;}
.fs1_c00456{font-size:66.239974px;}
.fs2_c00456{font-size:71.999971px;}
.y0_c00456{bottom:0.000000px;}
.y4_c00456{bottom:75.720270px;}
.y3_c00456{bottom:113.880254px;}
.y18_c00456{bottom:133.499947px;}
.y17_c00456{bottom:151.859939px;}
.y16_c00456{bottom:169.859932px;}
.y15_c00456{bottom:176.699929px;}
.y14_c00456{bottom:187.139925px;}
.y13_c00456{bottom:193.979922px;}
.y12_c00456{bottom:205.319918px;}
.y10_c00456{bottom:244.919902px;}
.y11_c00456{bottom:252.479899px;}
.yf_c00456{bottom:270.119892px;}
.ye_c00456{bottom:723.359711px;}
.yd_c00456{bottom:754.499698px;}
.yc_c00456{bottom:785.459686px;}
.ya_c00456{bottom:815.339674px;}
.yb_c00456{bottom:822.899671px;}
.y9_c00456{bottom:840.539664px;}
.y8_c00456{bottom:1044.119582px;}
.y7_c00456{bottom:1074.179570px;}
.y6_c00456{bottom:1105.319558px;}
.y5_c00456{bottom:1136.279545px;}
.y2_c00456{bottom:1175.879530px;}
.y1_c00456{bottom:1196.039522px;}
.h6_c00456{height:38.158578px;}
.h5_c00456{height:40.985140px;}
.h7_c00456{height:49.284472px;}
.h2_c00456{height:54.628572px;}
.h1_c00456{height:58.651148px;}
.h4_c00456{height:65.010911px;}
.h3_c00456{height:70.664034px;}
.h0_c00456{height:1263.000000px;}
.w0_c00456{width:892.500000px;}
.x0_c00456{left:0.000000px;}
.x5_c00456{left:127.800262px;}
.xd_c00456{left:142.020055px;}
.x9_c00456{left:177.660339px;}
.x6_c00456{left:180.899928px;}
.x1_c00456{left:181.979927px;}
.x2_c00456{left:329.219408px;}
.x4_c00456{left:434.159826px;}
.x7_c00456{left:446.579821px;}
.xc_c00456{left:658.619737px;}
.xa_c00456{left:700.019720px;}
.x8_c00456{left:714.419950px;}
.xb_c00456{left:715.679714px;}
.xe_c00456{left:735.479706px;}
.xf_c00456{left:751.139700px;}
.x3_c00456{left:765.539694px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls4_c00456{letter-spacing:0.000000pt;}
.ls2_c00456{letter-spacing:0.009928pt;}
.ls0_c00456{letter-spacing:0.011257pt;}
.ls1_c00456{letter-spacing:0.136801pt;}
.ls3_c00456{letter-spacing:0.168267pt;}
.ws0_c00456{word-spacing:-9.291253pt;}
.ws1_c00456{word-spacing:-8.649924pt;}
.ws2_c00456{word-spacing:0.000000pt;}
._4_c00456{margin-left:-3.174684pt;}
._1_c00456{margin-left:-0.982555pt;}
._0_c00456{width:1.314126pt;}
._3_c00456{width:7.031585pt;}
._2_c00456{width:21.681564pt;}
.fs4_c00456{font-size:34.559986pt;}
.fs3_c00456{font-size:37.119985pt;}
.fs0_c00456{font-size:53.119979pt;}
.fs1_c00456{font-size:58.879976pt;}
.fs2_c00456{font-size:63.999974pt;}
.y0_c00456{bottom:0.000000pt;}
.y4_c00456{bottom:67.306906pt;}
.y3_c00456{bottom:101.226893pt;}
.y18_c00456{bottom:118.666619pt;}
.y17_c00456{bottom:134.986613pt;}
.y16_c00456{bottom:150.986606pt;}
.y15_c00456{bottom:157.066604pt;}
.y14_c00456{bottom:166.346600pt;}
.y13_c00456{bottom:172.426598pt;}
.y12_c00456{bottom:182.506594pt;}
.y10_c00456{bottom:217.706580pt;}
.y11_c00456{bottom:224.426577pt;}
.yf_c00456{bottom:240.106571pt;}
.ye_c00456{bottom:642.986409pt;}
.yd_c00456{bottom:670.666398pt;}
.yc_c00456{bottom:698.186387pt;}
.ya_c00456{bottom:724.746377pt;}
.yb_c00456{bottom:731.466374pt;}
.y9_c00456{bottom:747.146368pt;}
.y8_c00456{bottom:928.106295pt;}
.y7_c00456{bottom:954.826285pt;}
.y6_c00456{bottom:982.506274pt;}
.y5_c00456{bottom:1010.026263pt;}
.y2_c00456{bottom:1045.226249pt;}
.y1_c00456{bottom:1063.146241pt;}
.h6_c00456{height:33.918736pt;}
.h5_c00456{height:36.431235pt;}
.h7_c00456{height:43.808420pt;}
.h2_c00456{height:48.558731pt;}
.h1_c00456{height:52.134354pt;}
.h4_c00456{height:57.787477pt;}
.h3_c00456{height:62.812475pt;}
.h0_c00456{height:1122.666667pt;}
.w0_c00456{width:793.333333pt;}
.x0_c00456{left:0.000000pt;}
.x5_c00456{left:113.600233pt;}
.xd_c00456{left:126.240049pt;}
.x9_c00456{left:157.920301pt;}
.x6_c00456{left:160.799936pt;}
.x1_c00456{left:161.759935pt;}
.x2_c00456{left:292.639474pt;}
.x4_c00456{left:385.919846pt;}
.x7_c00456{left:396.959841pt;}
.xc_c00456{left:585.439766pt;}
.xa_c00456{left:622.239751pt;}
.x8_c00456{left:635.039955pt;}
.xb_c00456{left:636.159746pt;}
.xe_c00456{left:653.759738pt;}
.xf_c00456{left:667.679733pt;}
.x3_c00456{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd8340f28d49938d25cd8c8b.woff2')format("woff");}.ff1_c00457{font-family:ff1_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:ff2_c00457;src:url('chunks/assets/font_9a1da2b8766ef76e1e0bcf52.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_a8908e967f3cf9349fc72646.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;}
.m0_c00457{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls4_c00457{letter-spacing:0.000000px;}
.ls2_c00457{letter-spacing:0.011169px;}
.ls0_c00457{letter-spacing:0.012664px;}
.ls1_c00457{letter-spacing:0.153901px;}
.ls3_c00457{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00457{word-spacing:-16.559993px;}
.ws1_c00457{word-spacing:-10.452660px;}
.ws2_c00457{word-spacing:-9.731165px;}
.ws3_c00457{word-spacing:0.000000px;}
._a_c00457{margin-left:-3.571519px;}
._4_c00457{margin-left:-2.139990px;}
._1_c00457{margin-left:-1.105374px;}
._0_c00457{width:1.195563px;}
._7_c00457{width:6.981541px;}
._6_c00457{width:8.571382px;}
._5_c00457{width:9.876467px;}
._3_c00457{width:10.919747px;}
._2_c00457{width:19.437296px;}
._8_c00457{width:22.791413px;}
._9_c00457{width:23.982605px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs4_c00457{font-size:38.879984px;}
.fs3_c00457{font-size:41.759983px;}
.fs0_c00457{font-size:59.759976px;}
.fs1_c00457{font-size:66.239974px;}
.fs2_c00457{font-size:71.999971px;}
.y0_c00457{bottom:0.000000px;}
.y4_c00457{bottom:75.719970px;}
.y3_c00457{bottom:113.879954px;}
.y1e_c00457{bottom:133.499947px;}
.y1d_c00457{bottom:151.499939px;}
.y1c_c00457{bottom:158.339937px;}
.y1b_c00457{bottom:168.779932px;}
.y1a_c00457{bottom:186.059926px;}
.y19_c00457{bottom:192.899923px;}
.y18_c00457{bottom:204.239918px;}
.y17_c00457{bottom:287.039885px;}
.y16_c00457{bottom:317.999873px;}
.y15_c00457{bottom:349.139860px;}
.y14_c00457{bottom:380.099848px;}
.y13_c00457{bottom:411.239836px;}
.y12_c00457{bottom:442.199823px;}
.y11_c00457{bottom:473.339811px;}
.y10_c00457{bottom:504.299798px;}
.yf_c00457{bottom:535.439786px;}
.ye_c00457{bottom:566.399773px;}
.yd_c00457{bottom:597.539761px;}
.yc_c00457{bottom:621.299751px;}
.ya_c00457{bottom:644.519742px;}
.yb_c00457{bottom:652.079739px;}
.y9_c00457{bottom:666.299733px;}
.y8_c00457{bottom:691.499723px;}
.y7_c00457{bottom:1055.999578px;}
.y6_c00457{bottom:1086.959565px;}
.y5_c00457{bottom:1118.099553px;}
.y2_c00457{bottom:1156.979537px;}
.y1_c00457{bottom:1195.859522px;}
.h7_c00457{height:38.158578px;}
.h5_c00457{height:40.985140px;}
.h8_c00457{height:49.284472px;}
.h2_c00457{height:54.628572px;}
.h1_c00457{height:58.651148px;}
.h4_c00457{height:65.010911px;}
.h6_c00457{height:70.628878px;}
.h3_c00457{height:70.664034px;}
.h0_c00457{height:1263.000000px;}
.w0_c00457{width:892.500000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:127.799949px;}
.x9_c00457{left:142.379943px;}
.x5_c00457{left:153.719714px;}
.x3_c00457{left:180.899928px;}
.x6_c00457{left:406.439446px;}
.x2_c00457{left:434.159514px;}
.x7_c00457{left:471.059812px;}
.x8_c00457{left:486.719805px;}
.x4_c00457{left:699.839720px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls4_c00457{letter-spacing:0.000000pt;}
.ls2_c00457{letter-spacing:0.009928pt;}
.ls0_c00457{letter-spacing:0.011257pt;}
.ls1_c00457{letter-spacing:0.136801pt;}
.ls3_c00457{letter-spacing:0.168267pt;}
.ws0_c00457{word-spacing:-14.719994pt;}
.ws1_c00457{word-spacing:-9.291253pt;}
.ws2_c00457{word-spacing:-8.649924pt;}
.ws3_c00457{word-spacing:0.000000pt;}
._a_c00457{margin-left:-3.174684pt;}
._4_c00457{margin-left:-1.902214pt;}
._1_c00457{margin-left:-0.982555pt;}
._0_c00457{width:1.062723pt;}
._7_c00457{width:6.205814pt;}
._6_c00457{width:7.619006pt;}
._5_c00457{width:8.779081pt;}
._3_c00457{width:9.706442pt;}
._2_c00457{width:17.277597pt;}
._8_c00457{width:20.259034pt;}
._9_c00457{width:21.317871pt;}
.fs4_c00457{font-size:34.559986pt;}
.fs3_c00457{font-size:37.119985pt;}
.fs0_c00457{font-size:53.119979pt;}
.fs1_c00457{font-size:58.879976pt;}
.fs2_c00457{font-size:63.999974pt;}
.y0_c00457{bottom:0.000000pt;}
.y4_c00457{bottom:67.306640pt;}
.y3_c00457{bottom:101.226626pt;}
.y1e_c00457{bottom:118.666619pt;}
.y1d_c00457{bottom:134.666613pt;}
.y1c_c00457{bottom:140.746610pt;}
.y1b_c00457{bottom:150.026607pt;}
.y1a_c00457{bottom:165.386601pt;}
.y19_c00457{bottom:171.466598pt;}
.y18_c00457{bottom:181.546594pt;}
.y17_c00457{bottom:255.146565pt;}
.y16_c00457{bottom:282.666554pt;}
.y15_c00457{bottom:310.346543pt;}
.y14_c00457{bottom:337.866532pt;}
.y13_c00457{bottom:365.546520pt;}
.y12_c00457{bottom:393.066509pt;}
.y11_c00457{bottom:420.746498pt;}
.y10_c00457{bottom:448.266487pt;}
.yf_c00457{bottom:475.946476pt;}
.ye_c00457{bottom:503.466465pt;}
.yd_c00457{bottom:531.146454pt;}
.yc_c00457{bottom:552.266446pt;}
.ya_c00457{bottom:572.906438pt;}
.yb_c00457{bottom:579.626435pt;}
.y9_c00457{bottom:592.266430pt;}
.y8_c00457{bottom:614.666421pt;}
.y7_c00457{bottom:938.666291pt;}
.y6_c00457{bottom:966.186280pt;}
.y5_c00457{bottom:993.866269pt;}
.y2_c00457{bottom:1028.426255pt;}
.y1_c00457{bottom:1062.986241pt;}
.h7_c00457{height:33.918736pt;}
.h5_c00457{height:36.431235pt;}
.h8_c00457{height:43.808420pt;}
.h2_c00457{height:48.558731pt;}
.h1_c00457{height:52.134354pt;}
.h4_c00457{height:57.787477pt;}
.h6_c00457{height:62.781225pt;}
.h3_c00457{height:62.812475pt;}
.h0_c00457{height:1122.666667pt;}
.w0_c00457{width:793.333333pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:113.599955pt;}
.x9_c00457{left:126.559949pt;}
.x5_c00457{left:136.639746pt;}
.x3_c00457{left:160.799936pt;}
.x6_c00457{left:361.279507pt;}
.x2_c00457{left:385.919568pt;}
.x7_c00457{left:418.719833pt;}
.x8_c00457{left:432.639827pt;}
.x4_c00457{left:622.079751pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6b8d0d56e4b4f93fa109007.woff2')format("woff");}.ff1_c00458{font-family:ff1_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:ff2_c00458;src:url('chunks/assets/font_31712667fdbf58bd995ac180.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_ee52ebeee8d8294d41620995.woff2')format("woff");}.ff3_c00458{font-family:ff3_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:ff4_c00458;src:url('chunks/assets/font_32fb22c0a87179fab4296844.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:0.670898;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls4_c00458{letter-spacing:0.000000px;}
.ls2_c00458{letter-spacing:0.011169px;}
.ls0_c00458{letter-spacing:0.012664px;}
.ls1_c00458{letter-spacing:0.153901px;}
.ls3_c00458{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00458{word-spacing:-10.452660px;}
.ws1_c00458{word-spacing:-9.731165px;}
.ws2_c00458{word-spacing:0.000000px;}
._7_c00458{margin-left:-12.716934px;}
._2_c00458{margin-left:-2.262572px;}
._1_c00458{margin-left:-1.105374px;}
._0_c00458{width:1.478392px;}
._3_c00458{width:8.475219px;}
._4_c00458{width:9.891011px;}
._6_c00458{width:23.150123px;}
._5_c00458{width:24.264093px;}
.fc0_c00458{color:rgb(0,0,0);}
.fs4_c00458{font-size:38.879984px;}
.fs2_c00458{font-size:41.759983px;}
.fs0_c00458{font-size:59.759976px;}
.fs1_c00458{font-size:66.239974px;}
.fs3_c00458{font-size:71.999971px;}
.y0_c00458{bottom:0.000000px;}
.y4_c00458{bottom:75.720270px;}
.y3_c00458{bottom:113.880254px;}
.y1b_c00458{bottom:133.499947px;}
.y1a_c00458{bottom:151.499939px;}
.y19_c00458{bottom:158.339937px;}
.y18_c00458{bottom:168.779932px;}
.y17_c00458{bottom:186.059926px;}
.y16_c00458{bottom:192.899923px;}
.y15_c00458{bottom:204.239918px;}
.y14_c00458{bottom:270.299892px;}
.y13_c00458{bottom:301.439879px;}
.y12_c00458{bottom:332.399867px;}
.y11_c00458{bottom:363.539855px;}
.y10_c00458{bottom:394.499842px;}
.ye_c00458{bottom:423.659831px;}
.yf_c00458{bottom:431.219828px;}
.yd_c00458{bottom:448.679821px;}
.yc_c00458{bottom:857.099657px;}
.yb_c00458{bottom:887.159645px;}
.ya_c00458{bottom:918.299633px;}
.y9_c00458{bottom:949.259620px;}
.y8_c00458{bottom:979.139608px;}
.y6_c00458{bottom:979.139908px;}
.y7_c00458{bottom:986.699605px;}
.y5_c00458{bottom:1004.339898px;}
.y2_c00458{bottom:1175.879530px;}
.y1_c00458{bottom:1196.039522px;}
.h7_c00458{height:38.158578px;}
.h4_c00458{height:40.985140px;}
.h6_c00458{height:44.149201px;}
.h8_c00458{height:49.284472px;}
.h2_c00458{height:54.628572px;}
.h1_c00458{height:58.651148px;}
.h3_c00458{height:65.010911px;}
.h5_c00458{height:70.664034px;}
.h0_c00458{height:1263.000000px;}
.w0_c00458{width:892.500000px;}
.x0_c00458{left:0.000000px;}
.x5_c00458{left:127.800262px;}
.xe_c00458{left:142.379943px;}
.xc_c00458{left:148.139770px;}
.x7_c00458{left:164.159491px;}
.xa_c00458{left:180.899928px;}
.x1_c00458{left:181.979927px;}
.x2_c00458{left:329.219408px;}
.x4_c00458{left:434.159826px;}
.xb_c00458{left:660.960215px;}
.x8_c00458{left:713.519715px;}
.x6_c00458{left:722.519669px;}
.x9_c00458{left:729.179708px;}
.xd_c00458{left:745.199702px;}
.x3_c00458{left:765.539694px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls4_c00458{letter-spacing:0.000000pt;}
.ls2_c00458{letter-spacing:0.009928pt;}
.ls0_c00458{letter-spacing:0.011257pt;}
.ls1_c00458{letter-spacing:0.136801pt;}
.ls3_c00458{letter-spacing:0.168267pt;}
.ws0_c00458{word-spacing:-9.291253pt;}
.ws1_c00458{word-spacing:-8.649924pt;}
.ws2_c00458{word-spacing:0.000000pt;}
._7_c00458{margin-left:-11.303941pt;}
._2_c00458{margin-left:-2.011175pt;}
._1_c00458{margin-left:-0.982555pt;}
._0_c00458{width:1.314126pt;}
._3_c00458{width:7.533528pt;}
._4_c00458{width:8.792010pt;}
._6_c00458{width:20.577887pt;}
._5_c00458{width:21.568083pt;}
.fs4_c00458{font-size:34.559986pt;}
.fs2_c00458{font-size:37.119985pt;}
.fs0_c00458{font-size:53.119979pt;}
.fs1_c00458{font-size:58.879976pt;}
.fs3_c00458{font-size:63.999974pt;}
.y0_c00458{bottom:0.000000pt;}
.y4_c00458{bottom:67.306906pt;}
.y3_c00458{bottom:101.226893pt;}
.y1b_c00458{bottom:118.666619pt;}
.y1a_c00458{bottom:134.666613pt;}
.y19_c00458{bottom:140.746610pt;}
.y18_c00458{bottom:150.026607pt;}
.y17_c00458{bottom:165.386601pt;}
.y16_c00458{bottom:171.466598pt;}
.y15_c00458{bottom:181.546594pt;}
.y14_c00458{bottom:240.266571pt;}
.y13_c00458{bottom:267.946559pt;}
.y12_c00458{bottom:295.466548pt;}
.y11_c00458{bottom:323.146537pt;}
.y10_c00458{bottom:350.666526pt;}
.ye_c00458{bottom:376.586516pt;}
.yf_c00458{bottom:383.306513pt;}
.yd_c00458{bottom:398.826507pt;}
.yc_c00458{bottom:761.866362pt;}
.yb_c00458{bottom:788.586351pt;}
.ya_c00458{bottom:816.266340pt;}
.y9_c00458{bottom:843.786329pt;}
.y8_c00458{bottom:870.346319pt;}
.y6_c00458{bottom:870.346585pt;}
.y7_c00458{bottom:877.066316pt;}
.y5_c00458{bottom:892.746576pt;}
.y2_c00458{bottom:1045.226249pt;}
.y1_c00458{bottom:1063.146241pt;}
.h7_c00458{height:33.918736pt;}
.h4_c00458{height:36.431235pt;}
.h6_c00458{height:39.243734pt;}
.h8_c00458{height:43.808420pt;}
.h2_c00458{height:48.558731pt;}
.h1_c00458{height:52.134354pt;}
.h3_c00458{height:57.787477pt;}
.h5_c00458{height:62.812475pt;}
.h0_c00458{height:1122.666667pt;}
.w0_c00458{width:793.333333pt;}
.x0_c00458{left:0.000000pt;}
.x5_c00458{left:113.600233pt;}
.xe_c00458{left:126.559949pt;}
.xc_c00458{left:131.679796pt;}
.x7_c00458{left:145.919548pt;}
.xa_c00458{left:160.799936pt;}
.x1_c00458{left:161.759935pt;}
.x2_c00458{left:292.639474pt;}
.x4_c00458{left:385.919846pt;}
.xb_c00458{left:587.520191pt;}
.x8_c00458{left:634.239746pt;}
.x6_c00458{left:642.239705pt;}
.x9_c00458{left:648.159741pt;}
.xd_c00458{left:662.399735pt;}
.x3_c00458{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66e63bcd32388da2258ce85d.woff2')format("woff");}.ff1_c00459{font-family:ff1_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:ff2_c00459;src:url('chunks/assets/font_7eadfd57cfb40d55f7363fdd.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_959b4ecec47cfa559c4e578c.woff2')format("woff");}.ff3_c00459{font-family:ff3_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;}
.m0_c00459{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls4_c00459{letter-spacing:0.000000px;}
.ls2_c00459{letter-spacing:0.011169px;}
.ls0_c00459{letter-spacing:0.012664px;}
.ls1_c00459{letter-spacing:0.153901px;}
.ls3_c00459{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00459{word-spacing:-16.559993px;}
.ws3_c00459{word-spacing:-14.939994px;}
.ws1_c00459{word-spacing:-10.452660px;}
.ws2_c00459{word-spacing:-9.731165px;}
.ws4_c00459{word-spacing:0.000000px;}
._4_c00459{margin-left:-12.716934px;}
._1_c00459{margin-left:-1.105374px;}
._0_c00459{width:1.195563px;}
._3_c00459{width:2.270914px;}
._2_c00459{width:4.219830px;}
.fc0_c00459{color:rgb(0,0,0);}
.fs4_c00459{font-size:38.879984px;}
.fs3_c00459{font-size:41.759983px;}
.fs0_c00459{font-size:59.759976px;}
.fs1_c00459{font-size:66.239974px;}
.fs2_c00459{font-size:71.999971px;}
.y0_c00459{bottom:0.000000px;}
.y4_c00459{bottom:75.719970px;}
.y3_c00459{bottom:113.879954px;}
.y19_c00459{bottom:133.499947px;}
.y18_c00459{bottom:151.499939px;}
.y17_c00459{bottom:158.339937px;}
.y16_c00459{bottom:168.779932px;}
.y15_c00459{bottom:186.059926px;}
.y14_c00459{bottom:192.899923px;}
.y13_c00459{bottom:204.239918px;}
.y12_c00459{bottom:280.739888px;}
.y11_c00459{bottom:311.699875px;}
.y10_c00459{bottom:342.839863px;}
.yf_c00459{bottom:388.739845px;}
.yd_c00459{bottom:418.799832px;}
.ye_c00459{bottom:426.359829px;}
.yc_c00459{bottom:458.939816px;}
.yb_c00459{bottom:690.059724px;}
.ya_c00459{bottom:721.019712px;}
.y9_c00459{bottom:759.899696px;}
.y7_c00459{bottom:783.119687px;}
.y8_c00459{bottom:790.679684px;}
.y6_c00459{bottom:804.899678px;}
.y5_c00459{bottom:845.219662px;}
.y2_c00459{bottom:1156.979537px;}
.y1_c00459{bottom:1195.859522px;}
.h6_c00459{height:38.158578px;}
.h5_c00459{height:40.985140px;}
.h7_c00459{height:49.284472px;}
.h2_c00459{height:54.628572px;}
.h1_c00459{height:58.651148px;}
.h4_c00459{height:65.010911px;}
.h3_c00459{height:70.664034px;}
.h0_c00459{height:1263.000000px;}
.w0_c00459{width:892.500000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:127.799949px;}
.xc_c00459{left:142.379943px;}
.xa_c00459{left:166.319933px;}
.x4_c00459{left:169.559932px;}
.x8_c00459{left:180.899930px;}
.x5_c00459{left:406.439998px;}
.x2_c00459{left:434.159514px;}
.x6_c00459{left:471.059812px;}
.x7_c00459{left:486.719805px;}
.x3_c00459{left:684.719726px;}
.xb_c00459{left:711.359715px;}
.x9_c00459{left:726.298737px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls4_c00459{letter-spacing:0.000000pt;}
.ls2_c00459{letter-spacing:0.009928pt;}
.ls0_c00459{letter-spacing:0.011257pt;}
.ls1_c00459{letter-spacing:0.136801pt;}
.ls3_c00459{letter-spacing:0.168267pt;}
.ws0_c00459{word-spacing:-14.719994pt;}
.ws3_c00459{word-spacing:-13.279995pt;}
.ws1_c00459{word-spacing:-9.291253pt;}
.ws2_c00459{word-spacing:-8.649924pt;}
.ws4_c00459{word-spacing:0.000000pt;}
._4_c00459{margin-left:-11.303941pt;}
._1_c00459{margin-left:-0.982555pt;}
._0_c00459{width:1.062723pt;}
._3_c00459{width:2.018590pt;}
._2_c00459{width:3.750960pt;}
.fs4_c00459{font-size:34.559986pt;}
.fs3_c00459{font-size:37.119985pt;}
.fs0_c00459{font-size:53.119979pt;}
.fs1_c00459{font-size:58.879976pt;}
.fs2_c00459{font-size:63.999974pt;}
.y0_c00459{bottom:0.000000pt;}
.y4_c00459{bottom:67.306640pt;}
.y3_c00459{bottom:101.226626pt;}
.y19_c00459{bottom:118.666619pt;}
.y18_c00459{bottom:134.666613pt;}
.y17_c00459{bottom:140.746610pt;}
.y16_c00459{bottom:150.026607pt;}
.y15_c00459{bottom:165.386601pt;}
.y14_c00459{bottom:171.466598pt;}
.y13_c00459{bottom:181.546594pt;}
.y12_c00459{bottom:249.546567pt;}
.y11_c00459{bottom:277.066556pt;}
.y10_c00459{bottom:304.746545pt;}
.yf_c00459{bottom:345.546528pt;}
.yd_c00459{bottom:372.266518pt;}
.ye_c00459{bottom:378.986515pt;}
.yc_c00459{bottom:407.946503pt;}
.yb_c00459{bottom:613.386421pt;}
.ya_c00459{bottom:640.906410pt;}
.y9_c00459{bottom:675.466396pt;}
.y7_c00459{bottom:696.106388pt;}
.y8_c00459{bottom:702.826386pt;}
.y6_c00459{bottom:715.466380pt;}
.y5_c00459{bottom:751.306366pt;}
.y2_c00459{bottom:1028.426255pt;}
.y1_c00459{bottom:1062.986241pt;}
.h6_c00459{height:33.918736pt;}
.h5_c00459{height:36.431235pt;}
.h7_c00459{height:43.808420pt;}
.h2_c00459{height:48.558731pt;}
.h1_c00459{height:52.134354pt;}
.h4_c00459{height:57.787477pt;}
.h3_c00459{height:62.812475pt;}
.h0_c00459{height:1122.666667pt;}
.w0_c00459{width:793.333333pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:113.599955pt;}
.xc_c00459{left:126.559949pt;}
.xa_c00459{left:147.839941pt;}
.x4_c00459{left:150.719940pt;}
.x8_c00459{left:160.799938pt;}
.x5_c00459{left:361.279999pt;}
.x2_c00459{left:385.919568pt;}
.x6_c00459{left:418.719833pt;}
.x7_c00459{left:432.639827pt;}
.x3_c00459{left:608.639757pt;}
.xb_c00459{left:632.319747pt;}
.x9_c00459{left:645.598877pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_877ebdc0d8fcd4b38e38aabd.woff2')format("woff");}.ff1_c00460{font-family:ff1_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:ff2_c00460;src:url('chunks/assets/font_c5c7ea73e12c1e4586cec309.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_d90de80a150ad2e138d3cbf6.woff2')format("woff");}.ff3_c00460{font-family:ff3_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;}
.m0_c00460{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls4_c00460{letter-spacing:0.000000px;}
.ls2_c00460{letter-spacing:0.011169px;}
.ls0_c00460{letter-spacing:0.012664px;}
.ls1_c00460{letter-spacing:0.153901px;}
.ls3_c00460{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00460{word-spacing:-16.559993px;}
.ws1_c00460{word-spacing:-10.452660px;}
.ws2_c00460{word-spacing:-9.731165px;}
.ws3_c00460{word-spacing:0.000000px;}
._6_c00460{margin-left:-12.716934px;}
._1_c00460{margin-left:-1.105374px;}
._0_c00460{width:1.478392px;}
._4_c00460{width:3.219485px;}
._5_c00460{width:4.288977px;}
._2_c00460{width:6.469662px;}
._3_c00460{width:10.792188px;}
.fc0_c00460{color:rgb(0,0,0);}
.fs4_c00460{font-size:38.879984px;}
.fs3_c00460{font-size:41.759983px;}
.fs0_c00460{font-size:59.759976px;}
.fs1_c00460{font-size:66.239974px;}
.fs2_c00460{font-size:71.999971px;}
.y0_c00460{bottom:0.000000px;}
.y4_c00460{bottom:75.720270px;}
.y3_c00460{bottom:113.880254px;}
.y19_c00460{bottom:133.499947px;}
.y18_c00460{bottom:151.499939px;}
.y17_c00460{bottom:158.339937px;}
.y16_c00460{bottom:168.779932px;}
.y15_c00460{bottom:186.059926px;}
.y14_c00460{bottom:192.899923px;}
.y13_c00460{bottom:204.239918px;}
.y12_c00460{bottom:344.999862px;}
.y11_c00460{bottom:375.959850px;}
.y10_c00460{bottom:407.099837px;}
.yf_c00460{bottom:436.979825px;}
.yd_c00460{bottom:465.419814px;}
.ye_c00460{bottom:472.979811px;}
.yc_c00460{bottom:505.559798px;}
.yb_c00460{bottom:709.679716px;}
.ya_c00460{bottom:740.819704px;}
.y9_c00460{bottom:770.699692px;}
.y7_c00460{bottom:792.479683px;}
.y8_c00460{bottom:800.039680px;}
.y6_c00460{bottom:814.259674px;}
.y5_c00460{bottom:854.399658px;}
.y2_c00460{bottom:1175.879530px;}
.y1_c00460{bottom:1196.039522px;}
.h6_c00460{height:38.158578px;}
.h5_c00460{height:40.985140px;}
.h7_c00460{height:49.284472px;}
.h2_c00460{height:54.628572px;}
.h1_c00460{height:58.651148px;}
.h4_c00460{height:65.010911px;}
.h3_c00460{height:70.664034px;}
.h0_c00460{height:1263.000000px;}
.w0_c00460{width:892.500000px;}
.x0_c00460{left:0.000000px;}
.x5_c00460{left:127.800262px;}
.x7_c00460{left:139.859944px;}
.x11_c00460{left:142.379943px;}
.xe_c00460{left:145.799942px;}
.xc_c00460{left:180.899928px;}
.x1_c00460{left:181.979927px;}
.x2_c00460{left:329.219408px;}
.x8_c00460{left:406.439702px;}
.x4_c00460{left:434.159826px;}
.xb_c00460{left:446.579839px;}
.x9_c00460{left:471.059812px;}
.xa_c00460{left:486.719805px;}
.x6_c00460{left:658.799736px;}
.xf_c00460{left:731.879707px;}
.xd_c00460{left:743.038595px;}
.x10_c00460{left:747.539701px;}
.x3_c00460{left:765.539694px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls4_c00460{letter-spacing:0.000000pt;}
.ls2_c00460{letter-spacing:0.009928pt;}
.ls0_c00460{letter-spacing:0.011257pt;}
.ls1_c00460{letter-spacing:0.136801pt;}
.ls3_c00460{letter-spacing:0.168267pt;}
.ws0_c00460{word-spacing:-14.719994pt;}
.ws1_c00460{word-spacing:-9.291253pt;}
.ws2_c00460{word-spacing:-8.649924pt;}
.ws3_c00460{word-spacing:0.000000pt;}
._6_c00460{margin-left:-11.303941pt;}
._1_c00460{margin-left:-0.982555pt;}
._0_c00460{width:1.314126pt;}
._4_c00460{width:2.861764pt;}
._5_c00460{width:3.812424pt;}
._2_c00460{width:5.750811pt;}
._3_c00460{width:9.593056pt;}
.fs4_c00460{font-size:34.559986pt;}
.fs3_c00460{font-size:37.119985pt;}
.fs0_c00460{font-size:53.119979pt;}
.fs1_c00460{font-size:58.879976pt;}
.fs2_c00460{font-size:63.999974pt;}
.y0_c00460{bottom:0.000000pt;}
.y4_c00460{bottom:67.306906pt;}
.y3_c00460{bottom:101.226893pt;}
.y19_c00460{bottom:118.666619pt;}
.y18_c00460{bottom:134.666613pt;}
.y17_c00460{bottom:140.746610pt;}
.y16_c00460{bottom:150.026607pt;}
.y15_c00460{bottom:165.386601pt;}
.y14_c00460{bottom:171.466598pt;}
.y13_c00460{bottom:181.546594pt;}
.y12_c00460{bottom:306.666544pt;}
.y11_c00460{bottom:334.186533pt;}
.y10_c00460{bottom:361.866522pt;}
.yf_c00460{bottom:388.426511pt;}
.yd_c00460{bottom:413.706501pt;}
.ye_c00460{bottom:420.426498pt;}
.yc_c00460{bottom:449.386487pt;}
.yb_c00460{bottom:630.826414pt;}
.ya_c00460{bottom:658.506403pt;}
.y9_c00460{bottom:685.066393pt;}
.y7_c00460{bottom:704.426385pt;}
.y8_c00460{bottom:711.146382pt;}
.y6_c00460{bottom:723.786377pt;}
.y5_c00460{bottom:759.466363pt;}
.y2_c00460{bottom:1045.226249pt;}
.y1_c00460{bottom:1063.146241pt;}
.h6_c00460{height:33.918736pt;}
.h5_c00460{height:36.431235pt;}
.h7_c00460{height:43.808420pt;}
.h2_c00460{height:48.558731pt;}
.h1_c00460{height:52.134354pt;}
.h4_c00460{height:57.787477pt;}
.h3_c00460{height:62.812475pt;}
.h0_c00460{height:1122.666667pt;}
.w0_c00460{width:793.333333pt;}
.x0_c00460{left:0.000000pt;}
.x5_c00460{left:113.600233pt;}
.x7_c00460{left:124.319950pt;}
.x11_c00460{left:126.559949pt;}
.xe_c00460{left:129.599948pt;}
.xc_c00460{left:160.799936pt;}
.x1_c00460{left:161.759935pt;}
.x2_c00460{left:292.639474pt;}
.x8_c00460{left:361.279735pt;}
.x4_c00460{left:385.919846pt;}
.xb_c00460{left:396.959857pt;}
.x9_c00460{left:418.719833pt;}
.xa_c00460{left:432.639827pt;}
.x6_c00460{left:585.599766pt;}
.xf_c00460{left:650.559740pt;}
.xd_c00460{left:660.478751pt;}
.x10_c00460{left:664.479734pt;}
.x3_c00460{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c58668c10d68d4a1f34a8a2c.woff2')format("woff");}.ff1_c00461{font-family:ff1_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:ff2_c00461;src:url('chunks/assets/font_e24cfefc839b7e7f62d82fff.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_a7218f896c6225d32a2d00ce.woff2')format("woff");}.ff3_c00461{font-family:ff3_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;}
.m0_c00461{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls4_c00461{letter-spacing:0.000000px;}
.ls2_c00461{letter-spacing:0.011169px;}
.ls0_c00461{letter-spacing:0.012664px;}
.ls1_c00461{letter-spacing:0.153901px;}
.ls3_c00461{letter-spacing:0.189300px;}
.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:-16.559993px;}
.ws1_c00461{word-spacing:-10.452660px;}
.ws2_c00461{word-spacing:-9.731165px;}
.ws3_c00461{word-spacing:0.000000px;}
._7_c00461{margin-left:-12.716934px;}
._1_c00461{margin-left:-1.105374px;}
._0_c00461{width:1.195563px;}
._4_c00461{width:2.435390px;}
._5_c00461{width:3.520090px;}
._2_c00461{width:4.805615px;}
._3_c00461{width:5.868751px;}
._6_c00461{width:7.360536px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs4_c00461{font-size:38.879984px;}
.fs3_c00461{font-size:41.759983px;}
.fs0_c00461{font-size:59.759976px;}
.fs1_c00461{font-size:66.239974px;}
.fs2_c00461{font-size:71.999971px;}
.y0_c00461{bottom:0.000000px;}
.y4_c00461{bottom:75.719970px;}
.y3_c00461{bottom:113.879954px;}
.y1b_c00461{bottom:133.499947px;}
.y1a_c00461{bottom:151.499939px;}
.y19_c00461{bottom:158.339937px;}
.y18_c00461{bottom:168.779932px;}
.y17_c00461{bottom:186.059926px;}
.y16_c00461{bottom:192.899923px;}
.y15_c00461{bottom:204.239918px;}
.y14_c00461{bottom:232.679907px;}
.y13_c00461{bottom:263.819894px;}
.y12_c00461{bottom:294.779882px;}
.y11_c00461{bottom:325.919870px;}
.y10_c00461{bottom:371.999851px;}
.yf_c00461{bottom:410.699836px;}
.yd_c00461{bottom:433.919826px;}
.ye_c00461{bottom:441.479823px;}
.yc_c00461{bottom:455.879818px;}
.yb_c00461{bottom:496.019802px;}
.ya_c00461{bottom:764.219694px;}
.y9_c00461{bottom:810.299676px;}
.y7_c00461{bottom:833.519667px;}
.y8_c00461{bottom:841.079664px;}
.y6_c00461{bottom:855.299658px;}
.y5_c00461{bottom:895.619642px;}
.y2_c00461{bottom:1156.979537px;}
.y1_c00461{bottom:1195.859522px;}
.h7_c00461{height:38.158578px;}
.h5_c00461{height:40.985140px;}
.h8_c00461{height:49.284472px;}
.h2_c00461{height:54.628572px;}
.h1_c00461{height:58.651148px;}
.h4_c00461{height:65.010911px;}
.h6_c00461{height:70.628878px;}
.h3_c00461{height:70.664034px;}
.h0_c00461{height:1263.000000px;}
.w0_c00461{width:892.500000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:127.799949px;}
.xb_c00461{left:142.379943px;}
.x9_c00461{left:164.879934px;}
.x4_c00461{left:169.019932px;}
.xa_c00461{left:180.899930px;}
.x5_c00461{left:406.439675px;}
.x2_c00461{left:434.159514px;}
.x6_c00461{left:471.059812px;}
.x7_c00461{left:486.719805px;}
.x3_c00461{left:698.039721px;}
.x8_c00461{left:700.559092px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls4_c00461{letter-spacing:0.000000pt;}
.ls2_c00461{letter-spacing:0.009928pt;}
.ls0_c00461{letter-spacing:0.011257pt;}
.ls1_c00461{letter-spacing:0.136801pt;}
.ls3_c00461{letter-spacing:0.168267pt;}
.ws0_c00461{word-spacing:-14.719994pt;}
.ws1_c00461{word-spacing:-9.291253pt;}
.ws2_c00461{word-spacing:-8.649924pt;}
.ws3_c00461{word-spacing:0.000000pt;}
._7_c00461{margin-left:-11.303941pt;}
._1_c00461{margin-left:-0.982555pt;}
._0_c00461{width:1.062723pt;}
._4_c00461{width:2.164791pt;}
._5_c00461{width:3.128969pt;}
._2_c00461{width:4.271658pt;}
._3_c00461{width:5.216667pt;}
._6_c00461{width:6.542699pt;}
.fs4_c00461{font-size:34.559986pt;}
.fs3_c00461{font-size:37.119985pt;}
.fs0_c00461{font-size:53.119979pt;}
.fs1_c00461{font-size:58.879976pt;}
.fs2_c00461{font-size:63.999974pt;}
.y0_c00461{bottom:0.000000pt;}
.y4_c00461{bottom:67.306640pt;}
.y3_c00461{bottom:101.226626pt;}
.y1b_c00461{bottom:118.666619pt;}
.y1a_c00461{bottom:134.666613pt;}
.y19_c00461{bottom:140.746610pt;}
.y18_c00461{bottom:150.026607pt;}
.y17_c00461{bottom:165.386601pt;}
.y16_c00461{bottom:171.466598pt;}
.y15_c00461{bottom:181.546594pt;}
.y14_c00461{bottom:206.826584pt;}
.y13_c00461{bottom:234.506573pt;}
.y12_c00461{bottom:262.026562pt;}
.y11_c00461{bottom:289.706551pt;}
.y10_c00461{bottom:330.666534pt;}
.yf_c00461{bottom:365.066521pt;}
.yd_c00461{bottom:385.706512pt;}
.ye_c00461{bottom:392.426510pt;}
.yc_c00461{bottom:405.226505pt;}
.yb_c00461{bottom:440.906490pt;}
.ya_c00461{bottom:679.306395pt;}
.y9_c00461{bottom:720.266379pt;}
.y7_c00461{bottom:740.906370pt;}
.y8_c00461{bottom:747.626368pt;}
.y6_c00461{bottom:760.266363pt;}
.y5_c00461{bottom:796.106348pt;}
.y2_c00461{bottom:1028.426255pt;}
.y1_c00461{bottom:1062.986241pt;}
.h7_c00461{height:33.918736pt;}
.h5_c00461{height:36.431235pt;}
.h8_c00461{height:43.808420pt;}
.h2_c00461{height:48.558731pt;}
.h1_c00461{height:52.134354pt;}
.h4_c00461{height:57.787477pt;}
.h6_c00461{height:62.781225pt;}
.h3_c00461{height:62.812475pt;}
.h0_c00461{height:1122.666667pt;}
.w0_c00461{width:793.333333pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:113.599955pt;}
.xb_c00461{left:126.559949pt;}
.x9_c00461{left:146.559941pt;}
.x4_c00461{left:150.239940pt;}
.xa_c00461{left:160.799938pt;}
.x5_c00461{left:361.279711pt;}
.x2_c00461{left:385.919568pt;}
.x6_c00461{left:418.719833pt;}
.x7_c00461{left:432.639827pt;}
.x3_c00461{left:620.479752pt;}
.x8_c00461{left:622.719193pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8537db5f22bdb571c3f85a30.woff2')format("woff");}.ff1_c00462{font-family:ff1_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:ff2_c00462;src:url('chunks/assets/font_05874d3bbd2772b4abf1d3d3.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_92e34534d04f40e4bb55d307.woff2')format("woff");}.ff3_c00462{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls3_c00462{letter-spacing:0.000000px;}
.ls1_c00462{letter-spacing:0.011169px;}
.ls2_c00462{letter-spacing:0.189300px;}
.ls0_c00462{letter-spacing:0.374281px;}
.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;}
}
.ws0_c00462{word-spacing:-12.434276px;}
.ws1_c00462{word-spacing:-9.731165px;}
.ws2_c00462{word-spacing:0.000000px;}
._e_c00462{margin-left:-9.265914px;}
._1_c00462{margin-left:-1.105374px;}
._0_c00462{width:1.478392px;}
._8_c00462{width:2.684122px;}
._3_c00462{width:3.968314px;}
._4_c00462{width:5.223785px;}
._a_c00462{width:6.604302px;}
._2_c00462{width:8.201094px;}
._7_c00462{width:10.037686px;}
._6_c00462{width:11.135823px;}
._9_c00462{width:13.059892px;}
._5_c00462{width:14.348264px;}
._b_c00462{width:16.338347px;}
._c_c00462{width:21.879750px;}
._d_c00462{width:23.112793px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs4_c00462{font-size:38.879984px;}
.fs3_c00462{font-size:48.239981px;}
.fs0_c00462{font-size:59.759976px;}
.fs1_c00462{font-size:66.239974px;}
.fs2_c00462{font-size:71.999971px;}
.y0_c00462{bottom:0.000000px;}
.y4_c00462{bottom:75.900270px;}
.y3_c00462{bottom:114.060254px;}
.y23_c00462{bottom:133.679947px;}
.y22_c00462{bottom:151.679939px;}
.y21_c00462{bottom:158.519937px;}
.y20_c00462{bottom:169.859932px;}
.y1f_c00462{bottom:240.419904px;}
.y1e_c00462{bottom:271.379891px;}
.y1d_c00462{bottom:302.519879px;}
.y1c_c00462{bottom:333.479867px;}
.y1b_c00462{bottom:379.559848px;}
.y1a_c00462{bottom:410.519836px;}
.y19_c00462{bottom:441.659823px;}
.y18_c00462{bottom:487.739805px;}
.y17_c00462{bottom:518.699793px;}
.y16_c00462{bottom:549.839780px;}
.y15_c00462{bottom:580.799768px;}
.y14_c00462{bottom:611.939755px;}
.y13_c00462{bottom:657.839737px;}
.y12_c00462{bottom:688.979724px;}
.y11_c00462{bottom:735.059706px;}
.y10_c00462{bottom:780.959688px;}
.yf_c00462{bottom:812.099675px;}
.ye_c00462{bottom:858.179657px;}
.yd_c00462{bottom:889.139644px;}
.yc_c00462{bottom:920.279632px;}
.yb_c00462{bottom:966.359613px;}
.ya_c00462{bottom:997.319601px;}
.y9_c00462{bottom:1028.459589px;}
.y7_c00462{bottom:1074.359570px;}
.y8_c00462{bottom:1082.639567px;}
.y6_c00462{bottom:1105.499558px;}
.y5_c00462{bottom:1136.459545px;}
.y2_c00462{bottom:1176.059530px;}
.y1_c00462{bottom:1196.219522px;}
.h6_c00462{height:38.158578px;}
.h4_c00462{height:47.321348px;}
.h7_c00462{height:49.284472px;}
.h2_c00462{height:54.628572px;}
.h1_c00462{height:58.651148px;}
.h3_c00462{height:70.628878px;}
.h5_c00462{height:70.664034px;}
.h0_c00462{height:1263.000000px;}
.w0_c00462{width:892.500000px;}
.x0_c00462{left:0.000000px;}
.x5_c00462{left:127.620262px;}
.x9_c00462{left:142.199943px;}
.x6_c00462{left:180.719928px;}
.x1_c00462{left:181.799927px;}
.x2_c00462{left:329.039408px;}
.x4_c00462{left:433.979826px;}
.x7_c00462{left:436.319825px;}
.x8_c00462{left:454.679818px;}
.x3_c00462{left:765.359694px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls3_c00462{letter-spacing:0.000000pt;}
.ls1_c00462{letter-spacing:0.009928pt;}
.ls2_c00462{letter-spacing:0.168267pt;}
.ls0_c00462{letter-spacing:0.332694pt;}
.ws0_c00462{word-spacing:-11.052689pt;}
.ws1_c00462{word-spacing:-8.649924pt;}
.ws2_c00462{word-spacing:0.000000pt;}
._e_c00462{margin-left:-8.236368pt;}
._1_c00462{margin-left:-0.982555pt;}
._0_c00462{width:1.314126pt;}
._8_c00462{width:2.385886pt;}
._3_c00462{width:3.527391pt;}
._4_c00462{width:4.643364pt;}
._a_c00462{width:5.870491pt;}
._2_c00462{width:7.289862pt;}
._7_c00462{width:8.922388pt;}
._6_c00462{width:9.898509pt;}
._9_c00462{width:11.608793pt;}
._5_c00462{width:12.754013pt;}
._b_c00462{width:14.522975pt;}
._c_c00462{width:19.448667pt;}
._d_c00462{width:20.544705pt;}
.fs4_c00462{font-size:34.559986pt;}
.fs3_c00462{font-size:42.879983pt;}
.fs0_c00462{font-size:53.119979pt;}
.fs1_c00462{font-size:58.879976pt;}
.fs2_c00462{font-size:63.999974pt;}
.y0_c00462{bottom:0.000000pt;}
.y4_c00462{bottom:67.466906pt;}
.y3_c00462{bottom:101.386893pt;}
.y23_c00462{bottom:118.826619pt;}
.y22_c00462{bottom:134.826613pt;}
.y21_c00462{bottom:140.906610pt;}
.y20_c00462{bottom:150.986606pt;}
.y1f_c00462{bottom:213.706581pt;}
.y1e_c00462{bottom:241.226570pt;}
.y1d_c00462{bottom:268.906559pt;}
.y1c_c00462{bottom:296.426548pt;}
.y1b_c00462{bottom:337.386532pt;}
.y1a_c00462{bottom:364.906521pt;}
.y19_c00462{bottom:392.586510pt;}
.y18_c00462{bottom:433.546493pt;}
.y17_c00462{bottom:461.066482pt;}
.y16_c00462{bottom:488.746471pt;}
.y15_c00462{bottom:516.266460pt;}
.y14_c00462{bottom:543.946449pt;}
.y13_c00462{bottom:584.746433pt;}
.y12_c00462{bottom:612.426422pt;}
.y11_c00462{bottom:653.386405pt;}
.y10_c00462{bottom:694.186389pt;}
.yf_c00462{bottom:721.866378pt;}
.ye_c00462{bottom:762.826362pt;}
.yd_c00462{bottom:790.346351pt;}
.yc_c00462{bottom:818.026339pt;}
.yb_c00462{bottom:858.986323pt;}
.ya_c00462{bottom:886.506312pt;}
.y9_c00462{bottom:914.186301pt;}
.y7_c00462{bottom:954.986285pt;}
.y8_c00462{bottom:962.346282pt;}
.y6_c00462{bottom:982.666274pt;}
.y5_c00462{bottom:1010.186263pt;}
.y2_c00462{bottom:1045.386249pt;}
.y1_c00462{bottom:1063.306241pt;}
.h6_c00462{height:33.918736pt;}
.h4_c00462{height:42.063421pt;}
.h7_c00462{height:43.808420pt;}
.h2_c00462{height:48.558731pt;}
.h1_c00462{height:52.134354pt;}
.h3_c00462{height:62.781225pt;}
.h5_c00462{height:62.812475pt;}
.h0_c00462{height:1122.666667pt;}
.w0_c00462{width:793.333333pt;}
.x0_c00462{left:0.000000pt;}
.x5_c00462{left:113.440233pt;}
.x9_c00462{left:126.399949pt;}
.x6_c00462{left:160.639936pt;}
.x1_c00462{left:161.599935pt;}
.x2_c00462{left:292.479474pt;}
.x4_c00462{left:385.759846pt;}
.x7_c00462{left:387.839845pt;}
.x8_c00462{left:404.159838pt;}
.x3_c00462{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6eee50b8bf900c4b71299efd.woff2')format("woff");}.ff1_c00463{font-family:ff1_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:ff2_c00463;src:url('chunks/assets/font_9c0dba549325613737740e50.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_3dffe63b21612ab9521890cc.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;}
.m0_c00463{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls3_c00463{letter-spacing:0.000000px;}
.ls1_c00463{letter-spacing:0.011169px;}
.ls2_c00463{letter-spacing:0.189300px;}
.ls0_c00463{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00463{word-spacing:-17.999993px;}
.ws0_c00463{word-spacing:-12.434276px;}
.ws2_c00463{word-spacing:-9.731165px;}
.ws3_c00463{word-spacing:0.000000px;}
._e_c00463{margin-left:-9.607126px;}
._c_c00463{margin-left:-2.292525px;}
._1_c00463{margin-left:-1.105374px;}
._0_c00463{width:1.195563px;}
._d_c00463{width:2.235133px;}
._9_c00463{width:3.538452px;}
._a_c00463{width:5.564998px;}
._3_c00463{width:7.186671px;}
._4_c00463{width:8.609640px;}
._b_c00463{width:10.625801px;}
._7_c00463{width:12.706627px;}
._2_c00463{width:14.500668px;}
._5_c00463{width:23.288691px;}
._6_c00463{width:24.645019px;}
._8_c00463{width:25.921110px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs4_c00463{font-size:38.879984px;}
.fs3_c00463{font-size:48.239981px;}
.fs0_c00463{font-size:59.759976px;}
.fs1_c00463{font-size:66.239974px;}
.fs2_c00463{font-size:71.999971px;}
.y0_c00463{bottom:0.000000px;}
.y4_c00463{bottom:75.899970px;}
.y3_c00463{bottom:114.059954px;}
.y23_c00463{bottom:133.679947px;}
.y22_c00463{bottom:151.679939px;}
.y21_c00463{bottom:158.519937px;}
.y20_c00463{bottom:168.959932px;}
.y1f_c00463{bottom:186.239926px;}
.y1e_c00463{bottom:193.079923px;}
.y1d_c00463{bottom:204.419918px;}
.y1c_c00463{bottom:376.139850px;}
.y1b_c00463{bottom:422.219831px;}
.y1a_c00463{bottom:468.299813px;}
.y19_c00463{bottom:499.259800px;}
.y18_c00463{bottom:545.339782px;}
.y17_c00463{bottom:576.479769px;}
.y16_c00463{bottom:607.439757px;}
.y14_c00463{bottom:653.519739px;}
.y15_c00463{bottom:661.799735px;}
.y13_c00463{bottom:684.659726px;}
.y12_c00463{bottom:715.619714px;}
.y11_c00463{bottom:746.759701px;}
.y10_c00463{bottom:777.719689px;}
.yf_c00463{bottom:808.859676px;}
.ye_c00463{bottom:839.819664px;}
.yd_c00463{bottom:870.779652px;}
.yc_c00463{bottom:916.859633px;}
.ya_c00463{bottom:962.939615px;}
.yb_c00463{bottom:971.219612px;}
.y9_c00463{bottom:994.079602px;}
.y8_c00463{bottom:1025.039590px;}
.y7_c00463{bottom:1056.179578px;}
.y6_c00463{bottom:1087.139565px;}
.y5_c00463{bottom:1118.279553px;}
.y2_c00463{bottom:1157.159537px;}
.y1_c00463{bottom:1196.039522px;}
.h6_c00463{height:38.158578px;}
.h4_c00463{height:47.321348px;}
.h7_c00463{height:49.284472px;}
.h2_c00463{height:54.628572px;}
.h1_c00463{height:58.651148px;}
.h3_c00463{height:70.628878px;}
.h5_c00463{height:70.664034px;}
.h0_c00463{height:1263.000000px;}
.w0_c00463{width:892.500000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:127.619949px;}
.x8_c00463{left:142.199943px;}
.x3_c00463{left:180.539928px;}
.x6_c00463{left:269.459892px;}
.x7_c00463{left:287.819885px;}
.x2_c00463{left:433.979514px;}
.x4_c00463{left:593.099763px;}
.x5_c00463{left:611.459755px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls3_c00463{letter-spacing:0.000000pt;}
.ls1_c00463{letter-spacing:0.009928pt;}
.ls2_c00463{letter-spacing:0.168267pt;}
.ls0_c00463{letter-spacing:0.332694pt;}
.ws1_c00463{word-spacing:-15.999994pt;}
.ws0_c00463{word-spacing:-11.052689pt;}
.ws2_c00463{word-spacing:-8.649924pt;}
.ws3_c00463{word-spacing:0.000000pt;}
._e_c00463{margin-left:-8.539668pt;}
._c_c00463{margin-left:-2.037800pt;}
._1_c00463{margin-left:-0.982555pt;}
._0_c00463{width:1.062723pt;}
._d_c00463{width:1.986785pt;}
._9_c00463{width:3.145291pt;}
._a_c00463{width:4.946665pt;}
._3_c00463{width:6.388152pt;}
._4_c00463{width:7.653013pt;}
._b_c00463{width:9.445157pt;}
._7_c00463{width:11.294780pt;}
._2_c00463{width:12.889483pt;}
._5_c00463{width:20.701059pt;}
._6_c00463{width:21.906683pt;}
._8_c00463{width:23.040987pt;}
.fs4_c00463{font-size:34.559986pt;}
.fs3_c00463{font-size:42.879983pt;}
.fs0_c00463{font-size:53.119979pt;}
.fs1_c00463{font-size:58.879976pt;}
.fs2_c00463{font-size:63.999974pt;}
.y0_c00463{bottom:0.000000pt;}
.y4_c00463{bottom:67.466640pt;}
.y3_c00463{bottom:101.386626pt;}
.y23_c00463{bottom:118.826619pt;}
.y22_c00463{bottom:134.826613pt;}
.y21_c00463{bottom:140.906610pt;}
.y20_c00463{bottom:150.186607pt;}
.y1f_c00463{bottom:165.546600pt;}
.y1e_c00463{bottom:171.626598pt;}
.y1d_c00463{bottom:181.706594pt;}
.y1c_c00463{bottom:334.346533pt;}
.y1b_c00463{bottom:375.306517pt;}
.y1a_c00463{bottom:416.266500pt;}
.y19_c00463{bottom:443.786489pt;}
.y18_c00463{bottom:484.746473pt;}
.y17_c00463{bottom:512.426462pt;}
.y16_c00463{bottom:539.946451pt;}
.y14_c00463{bottom:580.906434pt;}
.y15_c00463{bottom:588.266431pt;}
.y13_c00463{bottom:608.586423pt;}
.y12_c00463{bottom:636.106412pt;}
.y11_c00463{bottom:663.786401pt;}
.y10_c00463{bottom:691.306390pt;}
.yf_c00463{bottom:718.986379pt;}
.ye_c00463{bottom:746.506368pt;}
.yd_c00463{bottom:774.026357pt;}
.yc_c00463{bottom:814.986341pt;}
.ya_c00463{bottom:855.946324pt;}
.yb_c00463{bottom:863.306321pt;}
.y9_c00463{bottom:883.626313pt;}
.y8_c00463{bottom:911.146302pt;}
.y7_c00463{bottom:938.826291pt;}
.y6_c00463{bottom:966.346280pt;}
.y5_c00463{bottom:994.026269pt;}
.y2_c00463{bottom:1028.586255pt;}
.y1_c00463{bottom:1063.146241pt;}
.h6_c00463{height:33.918736pt;}
.h4_c00463{height:42.063421pt;}
.h7_c00463{height:43.808420pt;}
.h2_c00463{height:48.558731pt;}
.h1_c00463{height:52.134354pt;}
.h3_c00463{height:62.781225pt;}
.h5_c00463{height:62.812475pt;}
.h0_c00463{height:1122.666667pt;}
.w0_c00463{width:793.333333pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:113.439955pt;}
.x8_c00463{left:126.399949pt;}
.x3_c00463{left:160.479936pt;}
.x6_c00463{left:239.519904pt;}
.x7_c00463{left:255.839898pt;}
.x2_c00463{left:385.759568pt;}
.x4_c00463{left:527.199789pt;}
.x5_c00463{left:543.519783pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87b951362a856d9439e4d9ac.woff2')format("woff");}.ff1_c00464{font-family:ff1_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:ff2_c00464;src:url('chunks/assets/font_e7fbffe10c6ca8c1a3b836c1.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_959b4ecec47cfa559c4e578c.woff2')format("woff");}.ff3_c00464{font-family:ff3_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;}
.m0_c00464{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls4_c00464{letter-spacing:0.000000px;}
.ls2_c00464{letter-spacing:0.011169px;}
.ls0_c00464{letter-spacing:0.012664px;}
.ls1_c00464{letter-spacing:0.153901px;}
.ls3_c00464{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00464{word-spacing:-16.559993px;}
.ws1_c00464{word-spacing:-10.452660px;}
.ws2_c00464{word-spacing:-9.731165px;}
.ws3_c00464{word-spacing:0.000000px;}
._2_c00464{margin-left:-12.716934px;}
._1_c00464{margin-left:-1.105374px;}
._0_c00464{width:1.478392px;}
.fc0_c00464{color:rgb(0,0,0);}
.fs4_c00464{font-size:38.879984px;}
.fs3_c00464{font-size:41.759983px;}
.fs0_c00464{font-size:59.759976px;}
.fs1_c00464{font-size:66.239974px;}
.fs2_c00464{font-size:71.999971px;}
.y0_c00464{bottom:0.000000px;}
.y4_c00464{bottom:75.720270px;}
.y3_c00464{bottom:113.880254px;}
.y14_c00464{bottom:133.499947px;}
.y13_c00464{bottom:151.499939px;}
.y12_c00464{bottom:158.339937px;}
.y11_c00464{bottom:168.779932px;}
.y10_c00464{bottom:186.059926px;}
.yf_c00464{bottom:192.899923px;}
.ye_c00464{bottom:204.239918px;}
.yc_c00464{bottom:289.019884px;}
.yd_c00464{bottom:296.579881px;}
.yb_c00464{bottom:329.339868px;}
.ya_c00464{bottom:851.339659px;}
.y9_c00464{bottom:879.779648px;}
.y7_c00464{bottom:901.559639px;}
.y8_c00464{bottom:909.119636px;}
.y6_c00464{bottom:923.519631px;}
.y5_c00464{bottom:963.659615px;}
.y2_c00464{bottom:1175.879530px;}
.y1_c00464{bottom:1196.039522px;}
.h6_c00464{height:38.158578px;}
.h5_c00464{height:40.985140px;}
.h7_c00464{height:49.284472px;}
.h2_c00464{height:54.628572px;}
.h1_c00464{height:58.651148px;}
.h4_c00464{height:65.010911px;}
.h3_c00464{height:70.664034px;}
.h0_c00464{height:1263.000000px;}
.w0_c00464{width:892.500000px;}
.x0_c00464{left:0.000000px;}
.x5_c00464{left:127.800262px;}
.x10_c00464{left:142.379943px;}
.x7_c00464{left:161.819935px;}
.xd_c00464{left:175.319930px;}
.x1_c00464{left:181.979927px;}
.x2_c00464{left:329.219408px;}
.x8_c00464{left:406.439867px;}
.x4_c00464{left:434.159826px;}
.xb_c00464{left:446.579839px;}
.x9_c00464{left:471.059812px;}
.xa_c00464{left:486.719805px;}
.xc_c00464{left:671.579731px;}
.xe_c00464{left:702.179719px;}
.x6_c00464{left:704.159718px;}
.xf_c00464{left:717.839713px;}
.x3_c00464{left:765.539694px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls4_c00464{letter-spacing:0.000000pt;}
.ls2_c00464{letter-spacing:0.009928pt;}
.ls0_c00464{letter-spacing:0.011257pt;}
.ls1_c00464{letter-spacing:0.136801pt;}
.ls3_c00464{letter-spacing:0.168267pt;}
.ws0_c00464{word-spacing:-14.719994pt;}
.ws1_c00464{word-spacing:-9.291253pt;}
.ws2_c00464{word-spacing:-8.649924pt;}
.ws3_c00464{word-spacing:0.000000pt;}
._2_c00464{margin-left:-11.303941pt;}
._1_c00464{margin-left:-0.982555pt;}
._0_c00464{width:1.314126pt;}
.fs4_c00464{font-size:34.559986pt;}
.fs3_c00464{font-size:37.119985pt;}
.fs0_c00464{font-size:53.119979pt;}
.fs1_c00464{font-size:58.879976pt;}
.fs2_c00464{font-size:63.999974pt;}
.y0_c00464{bottom:0.000000pt;}
.y4_c00464{bottom:67.306906pt;}
.y3_c00464{bottom:101.226893pt;}
.y14_c00464{bottom:118.666619pt;}
.y13_c00464{bottom:134.666613pt;}
.y12_c00464{bottom:140.746610pt;}
.y11_c00464{bottom:150.026607pt;}
.y10_c00464{bottom:165.386601pt;}
.yf_c00464{bottom:171.466598pt;}
.ye_c00464{bottom:181.546594pt;}
.yc_c00464{bottom:256.906564pt;}
.yd_c00464{bottom:263.626561pt;}
.yb_c00464{bottom:292.746550pt;}
.ya_c00464{bottom:756.746364pt;}
.y9_c00464{bottom:782.026354pt;}
.y7_c00464{bottom:801.386346pt;}
.y8_c00464{bottom:808.106343pt;}
.y6_c00464{bottom:820.906338pt;}
.y5_c00464{bottom:856.586324pt;}
.y2_c00464{bottom:1045.226249pt;}
.y1_c00464{bottom:1063.146241pt;}
.h6_c00464{height:33.918736pt;}
.h5_c00464{height:36.431235pt;}
.h7_c00464{height:43.808420pt;}
.h2_c00464{height:48.558731pt;}
.h1_c00464{height:52.134354pt;}
.h4_c00464{height:57.787477pt;}
.h3_c00464{height:62.812475pt;}
.h0_c00464{height:1122.666667pt;}
.w0_c00464{width:793.333333pt;}
.x0_c00464{left:0.000000pt;}
.x5_c00464{left:113.600233pt;}
.x10_c00464{left:126.559949pt;}
.x7_c00464{left:143.839942pt;}
.xd_c00464{left:155.839938pt;}
.x1_c00464{left:161.759935pt;}
.x2_c00464{left:292.639474pt;}
.x8_c00464{left:361.279882pt;}
.x4_c00464{left:385.919846pt;}
.xb_c00464{left:396.959857pt;}
.x9_c00464{left:418.719833pt;}
.xa_c00464{left:432.639827pt;}
.xc_c00464{left:596.959761pt;}
.xe_c00464{left:624.159750pt;}
.x6_c00464{left:625.919750pt;}
.xf_c00464{left:638.079745pt;}
.x3_c00464{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d3ef938a8ca27acf63d0522.woff2')format("woff");}.ff1_c00465{font-family:ff1_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:ff2_c00465;src:url('chunks/assets/font_94e03b20e2544d3af230dae7.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_bd097252d6b3942e0c1d341f.woff2')format("woff");}.ff3_c00465{font-family:ff3_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;}
@font-face{font-family:ff4_c00465;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00465{font-family:ff4_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;}
.m0_c00465{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls4_c00465{letter-spacing:0.000000px;}
.ls2_c00465{letter-spacing:0.011169px;}
.ls0_c00465{letter-spacing:0.012664px;}
.ls1_c00465{letter-spacing:0.153901px;}
.ls3_c00465{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00465{word-spacing:-14.939994px;}
.ws0_c00465{word-spacing:-10.452660px;}
.ws1_c00465{word-spacing:-9.731165px;}
.ws3_c00465{word-spacing:0.000000px;}
._7_c00465{margin-left:-12.716934px;}
._1_c00465{margin-left:-1.105374px;}
._0_c00465{width:1.195563px;}
._3_c00465{width:2.327413px;}
._6_c00465{width:6.461277px;}
._5_c00465{width:7.787640px;}
._4_c00465{width:8.921482px;}
._2_c00465{width:14.305788px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs4_c00465{font-size:38.879984px;}
.fs3_c00465{font-size:41.759983px;}
.fs0_c00465{font-size:59.759976px;}
.fs1_c00465{font-size:66.239974px;}
.fs2_c00465{font-size:71.999971px;}
.y0_c00465{bottom:0.000000px;}
.y4_c00465{bottom:75.719970px;}
.y3_c00465{bottom:113.879954px;}
.y1b_c00465{bottom:133.499947px;}
.y1a_c00465{bottom:151.499939px;}
.y19_c00465{bottom:158.339937px;}
.y18_c00465{bottom:168.779932px;}
.y17_c00465{bottom:186.059926px;}
.y16_c00465{bottom:192.899923px;}
.y15_c00465{bottom:204.239918px;}
.y14_c00465{bottom:243.119903px;}
.y13_c00465{bottom:274.439890px;}
.y12_c00465{bottom:305.219878px;}
.y10_c00465{bottom:335.459866px;}
.y11_c00465{bottom:343.019863px;}
.yf_c00465{bottom:375.779850px;}
.ye_c00465{bottom:571.799771px;}
.yd_c00465{bottom:617.879753px;}
.yc_c00465{bottom:649.019740px;}
.yb_c00465{bottom:679.979728px;}
.ya_c00465{bottom:711.119716px;}
.y9_c00465{bottom:742.079703px;}
.y8_c00465{bottom:771.959691px;}
.y6_c00465{bottom:800.399680px;}
.y7_c00465{bottom:807.959677px;}
.y5_c00465{bottom:840.719664px;}
.y2_c00465{bottom:1156.979537px;}
.y1_c00465{bottom:1195.859522px;}
.h7_c00465{height:38.158578px;}
.h5_c00465{height:40.985140px;}
.h8_c00465{height:49.284472px;}
.h2_c00465{height:54.628572px;}
.h1_c00465{height:58.651148px;}
.h4_c00465{height:65.010911px;}
.h3_c00465{height:70.664034px;}
.h6_c00465{height:72.562471px;}
.h0_c00465{height:1263.000000px;}
.w0_c00465{width:892.500000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:127.799949px;}
.xd_c00465{left:142.379943px;}
.xa_c00465{left:150.479940px;}
.x4_c00465{left:177.659929px;}
.x8_c00465{left:180.899928px;}
.x2_c00465{left:434.159514px;}
.x7_c00465{left:446.580339px;}
.x3_c00465{left:697.679721px;}
.x5_c00465{left:700.019720px;}
.x6_c00465{left:715.679714px;}
.x9_c00465{left:722.699211px;}
.xb_c00465{left:727.019709px;}
.xc_c00465{left:742.679703px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls4_c00465{letter-spacing:0.000000pt;}
.ls2_c00465{letter-spacing:0.009928pt;}
.ls0_c00465{letter-spacing:0.011257pt;}
.ls1_c00465{letter-spacing:0.136801pt;}
.ls3_c00465{letter-spacing:0.168267pt;}
.ws2_c00465{word-spacing:-13.279995pt;}
.ws0_c00465{word-spacing:-9.291253pt;}
.ws1_c00465{word-spacing:-8.649924pt;}
.ws3_c00465{word-spacing:0.000000pt;}
._7_c00465{margin-left:-11.303941pt;}
._1_c00465{margin-left:-0.982555pt;}
._0_c00465{width:1.062723pt;}
._3_c00465{width:2.068812pt;}
._6_c00465{width:5.743357pt;}
._5_c00465{width:6.922346pt;}
._4_c00465{width:7.930206pt;}
._2_c00465{width:12.716256pt;}
.fs4_c00465{font-size:34.559986pt;}
.fs3_c00465{font-size:37.119985pt;}
.fs0_c00465{font-size:53.119979pt;}
.fs1_c00465{font-size:58.879976pt;}
.fs2_c00465{font-size:63.999974pt;}
.y0_c00465{bottom:0.000000pt;}
.y4_c00465{bottom:67.306640pt;}
.y3_c00465{bottom:101.226626pt;}
.y1b_c00465{bottom:118.666619pt;}
.y1a_c00465{bottom:134.666613pt;}
.y19_c00465{bottom:140.746610pt;}
.y18_c00465{bottom:150.026607pt;}
.y17_c00465{bottom:165.386601pt;}
.y16_c00465{bottom:171.466598pt;}
.y15_c00465{bottom:181.546594pt;}
.y14_c00465{bottom:216.106580pt;}
.y13_c00465{bottom:243.946569pt;}
.y12_c00465{bottom:271.306558pt;}
.y10_c00465{bottom:298.186547pt;}
.y11_c00465{bottom:304.906545pt;}
.yf_c00465{bottom:334.026533pt;}
.ye_c00465{bottom:508.266463pt;}
.yd_c00465{bottom:549.226447pt;}
.yc_c00465{bottom:576.906436pt;}
.yb_c00465{bottom:604.426425pt;}
.ya_c00465{bottom:632.106414pt;}
.y9_c00465{bottom:659.626403pt;}
.y8_c00465{bottom:686.186392pt;}
.y6_c00465{bottom:711.466382pt;}
.y7_c00465{bottom:718.186379pt;}
.y5_c00465{bottom:747.306368pt;}
.y2_c00465{bottom:1028.426255pt;}
.y1_c00465{bottom:1062.986241pt;}
.h7_c00465{height:33.918736pt;}
.h5_c00465{height:36.431235pt;}
.h8_c00465{height:43.808420pt;}
.h2_c00465{height:48.558731pt;}
.h1_c00465{height:52.134354pt;}
.h4_c00465{height:57.787477pt;}
.h3_c00465{height:62.812475pt;}
.h6_c00465{height:64.499974pt;}
.h0_c00465{height:1122.666667pt;}
.w0_c00465{width:793.333333pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:113.599955pt;}
.xd_c00465{left:126.559949pt;}
.xa_c00465{left:133.759946pt;}
.x4_c00465{left:157.919937pt;}
.x8_c00465{left:160.799936pt;}
.x2_c00465{left:385.919568pt;}
.x7_c00465{left:396.960301pt;}
.x3_c00465{left:620.159752pt;}
.x5_c00465{left:622.239751pt;}
.x6_c00465{left:636.159746pt;}
.x9_c00465{left:642.399298pt;}
.xb_c00465{left:646.239742pt;}
.xc_c00465{left:660.159736pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_673c67555568d8f70daccbb2.woff2')format("woff");}.ff1_c00466{font-family:ff1_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:ff2_c00466;src:url('chunks/assets/font_9a1da2b8766ef76e1e0bcf52.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_3ebfe69ce3f65519a718472d.woff2')format("woff");}.ff3_c00466{font-family:ff3_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:ff4_c00466;src:url('chunks/assets/font_f1ba50d5583574c0e46f2d00.woff2')format("woff");}.ff4_c00466{font-family:ff4_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:ff5_c00466;src:url('chunks/assets/font_2e86b1e448db684857d28c39.woff2')format("woff");}.ff5_c00466{font-family:ff5_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;}
.m0_c00466{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls1_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:0.021238px;}
.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;}
}
.ws0_c00466{word-spacing:0.000000px;}
._1_c00466{margin-left:-1.105374px;}
._0_c00466{width:1.478392px;}
._3_c00466{width:2.932801px;}
._4_c00466{width:11.416893px;}
._5_c00466{width:12.890956px;}
._2_c00466{width:19.557592px;}
.fc0_c00466{color:rgb(0,0,0);}
.fs0_c00466{font-size:59.759976px;}
.fs1_c00466{font-size:66.239974px;}
.fs2_c00466{font-size:71.999971px;}
.y0_c00466{bottom:0.000000px;}
.y4_c00466{bottom:75.720270px;}
.y3_c00466{bottom:113.880254px;}
.y1a_c00466{bottom:138.720245px;}
.y19_c00466{bottom:169.679932px;}
.y18_c00466{bottom:200.639920px;}
.y17_c00466{bottom:231.779907px;}
.y16_c00466{bottom:262.739895px;}
.y15_c00466{bottom:293.879882px;}
.y14_c00466{bottom:324.839870px;}
.y13_c00466{bottom:355.979858px;}
.y12_c00466{bottom:386.939845px;}
.y11_c00466{bottom:418.079833px;}
.y10_c00466{bottom:449.039820px;}
.yf_c00466{bottom:480.179808px;}
.ye_c00466{bottom:511.139796px;}
.yd_c00466{bottom:542.279783px;}
.yc_c00466{bottom:573.239771px;}
.yb_c00466{bottom:604.379758px;}
.ya_c00466{bottom:635.339746px;}
.y9_c00466{bottom:666.479733px;}
.y8_c00466{bottom:696.359721px;}
.y7_c00466{bottom:721.559711px;}
.y6_c00466{bottom:1104.959558px;}
.y5_c00466{bottom:1135.919546px;}
.y2_c00466{bottom:1175.879530px;}
.y1_c00466{bottom:1196.039522px;}
.h2_c00466{height:54.628572px;}
.h1_c00466{height:58.651148px;}
.h4_c00466{height:65.010911px;}
.h5_c00466{height:70.664034px;}
.h3_c00466{height:72.562471px;}
.h0_c00466{height:1263.000000px;}
.w0_c00466{width:892.500000px;}
.x0_c00466{left:0.000000px;}
.x5_c00466{left:127.800262px;}
.x7_c00466{left:156.059938px;}
.x8_c00466{left:180.899928px;}
.x1_c00466{left:181.979927px;}
.x2_c00466{left:329.219408px;}
.x4_c00466{left:434.159826px;}
.x6_c00466{left:574.199770px;}
.x3_c00466{left:765.539694px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls1_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:0.018878pt;}
.ws0_c00466{word-spacing:0.000000pt;}
._1_c00466{margin-left:-0.982555pt;}
._0_c00466{width:1.314126pt;}
._3_c00466{width:2.606935pt;}
._4_c00466{width:10.148350pt;}
._5_c00466{width:11.458628pt;}
._2_c00466{width:17.384526pt;}
.fs0_c00466{font-size:53.119979pt;}
.fs1_c00466{font-size:58.879976pt;}
.fs2_c00466{font-size:63.999974pt;}
.y0_c00466{bottom:0.000000pt;}
.y4_c00466{bottom:67.306906pt;}
.y3_c00466{bottom:101.226893pt;}
.y1a_c00466{bottom:123.306884pt;}
.y19_c00466{bottom:150.826606pt;}
.y18_c00466{bottom:178.346595pt;}
.y17_c00466{bottom:206.026584pt;}
.y16_c00466{bottom:233.546573pt;}
.y15_c00466{bottom:261.226562pt;}
.y14_c00466{bottom:288.746551pt;}
.y13_c00466{bottom:316.426540pt;}
.y12_c00466{bottom:343.946529pt;}
.y11_c00466{bottom:371.626518pt;}
.y10_c00466{bottom:399.146507pt;}
.yf_c00466{bottom:426.826496pt;}
.ye_c00466{bottom:454.346485pt;}
.yd_c00466{bottom:482.026474pt;}
.yc_c00466{bottom:509.546463pt;}
.yb_c00466{bottom:537.226452pt;}
.ya_c00466{bottom:564.746441pt;}
.y9_c00466{bottom:592.426430pt;}
.y8_c00466{bottom:618.986419pt;}
.y7_c00466{bottom:641.386410pt;}
.y6_c00466{bottom:982.186274pt;}
.y5_c00466{bottom:1009.706263pt;}
.y2_c00466{bottom:1045.226249pt;}
.y1_c00466{bottom:1063.146241pt;}
.h2_c00466{height:48.558731pt;}
.h1_c00466{height:52.134354pt;}
.h4_c00466{height:57.787477pt;}
.h5_c00466{height:62.812475pt;}
.h3_c00466{height:64.499974pt;}
.h0_c00466{height:1122.666667pt;}
.w0_c00466{width:793.333333pt;}
.x0_c00466{left:0.000000pt;}
.x5_c00466{left:113.600233pt;}
.x7_c00466{left:138.719945pt;}
.x8_c00466{left:160.799936pt;}
.x1_c00466{left:161.759935pt;}
.x2_c00466{left:292.639474pt;}
.x4_c00466{left:385.919846pt;}
.x6_c00466{left:510.399796pt;}
.x3_c00466{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbe5ab12868b276b1227d4b9.woff2')format("woff");}.ff1_c00467{font-family:ff1_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:ff2_c00467;src:url('chunks/assets/font_94e03b20e2544d3af230dae7.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00467{font-family:ff3_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:ff4_c00467;src:url('chunks/assets/font_ddd514de62d8912cb2014de1.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;}
.m0_c00467{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls5_c00467{letter-spacing:0.000000px;}
.ls3_c00467{letter-spacing:0.011169px;}
.ls2_c00467{letter-spacing:0.012620px;}
.ls0_c00467{letter-spacing:0.012664px;}
.ls1_c00467{letter-spacing:0.153901px;}
.ls4_c00467{letter-spacing:0.189300px;}
.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;}
}
.ws3_c00467{word-spacing:-14.939994px;}
.ws0_c00467{word-spacing:-10.452660px;}
.ws1_c00467{word-spacing:-10.452616px;}
.ws2_c00467{word-spacing:-9.731165px;}
.ws4_c00467{word-spacing:0.000000px;}
._5_c00467{margin-left:-12.716934px;}
._1_c00467{margin-left:-1.105374px;}
._0_c00467{width:1.195563px;}
._2_c00467{width:3.003322px;}
._3_c00467{width:4.056960px;}
._4_c00467{width:5.322982px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs4_c00467{font-size:38.879984px;}
.fs3_c00467{font-size:41.759983px;}
.fs0_c00467{font-size:59.759976px;}
.fs1_c00467{font-size:66.239974px;}
.fs2_c00467{font-size:71.999971px;}
.y0_c00467{bottom:0.000000px;}
.y4_c00467{bottom:75.719970px;}
.y3_c00467{bottom:113.879954px;}
.y18_c00467{bottom:133.499947px;}
.y17_c00467{bottom:151.499939px;}
.y16_c00467{bottom:158.339937px;}
.y15_c00467{bottom:190.199924px;}
.y14_c00467{bottom:197.759921px;}
.y13_c00467{bottom:230.699908px;}
.y12_c00467{bottom:250.499900px;}
.y11_c00467{bottom:281.639887px;}
.yf_c00467{bottom:311.879875px;}
.y10_c00467{bottom:319.439872px;}
.ye_c00467{bottom:337.079865px;}
.yd_c00467{bottom:586.559765px;}
.yc_c00467{bottom:617.519753px;}
.yb_c00467{bottom:648.479741px;}
.y9_c00467{bottom:678.539729px;}
.ya_c00467{bottom:686.099726px;}
.y8_c00467{bottom:703.739719px;}
.y7_c00467{bottom:1055.639578px;}
.y6_c00467{bottom:1086.959565px;}
.y5_c00467{bottom:1118.099553px;}
.y2_c00467{bottom:1156.979537px;}
.y1_c00467{bottom:1195.859522px;}
.h7_c00467{height:38.158578px;}
.h6_c00467{height:40.985140px;}
.h8_c00467{height:49.284472px;}
.h2_c00467{height:54.628572px;}
.h1_c00467{height:58.651148px;}
.h5_c00467{height:65.010911px;}
.h3_c00467{height:70.664034px;}
.h4_c00467{height:72.562471px;}
.h0_c00467{height:1263.000000px;}
.w0_c00467{width:892.500000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:127.799949px;}
.x5_c00467{left:138.599945px;}
.x9_c00467{left:140.759944px;}
.xd_c00467{left:142.379943px;}
.xc_c00467{left:143.459943px;}
.x3_c00467{left:180.899928px;}
.x2_c00467{left:434.159514px;}
.x4_c00467{left:683.099727px;}
.x8_c00467{left:720.539712px;}
.xa_c00467{left:736.919705px;}
.x6_c00467{left:738.899704px;}
.xb_c00467{left:752.579699px;}
.x7_c00467{left:754.559698px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls5_c00467{letter-spacing:0.000000pt;}
.ls3_c00467{letter-spacing:0.009928pt;}
.ls2_c00467{letter-spacing:0.011218pt;}
.ls0_c00467{letter-spacing:0.011257pt;}
.ls1_c00467{letter-spacing:0.136801pt;}
.ls4_c00467{letter-spacing:0.168267pt;}
.ws3_c00467{word-spacing:-13.279995pt;}
.ws0_c00467{word-spacing:-9.291253pt;}
.ws1_c00467{word-spacing:-9.291214pt;}
.ws2_c00467{word-spacing:-8.649924pt;}
.ws4_c00467{word-spacing:0.000000pt;}
._5_c00467{margin-left:-11.303941pt;}
._1_c00467{margin-left:-0.982555pt;}
._0_c00467{width:1.062723pt;}
._2_c00467{width:2.669620pt;}
._3_c00467{width:3.606187pt;}
._4_c00467{width:4.731540pt;}
.fs4_c00467{font-size:34.559986pt;}
.fs3_c00467{font-size:37.119985pt;}
.fs0_c00467{font-size:53.119979pt;}
.fs1_c00467{font-size:58.879976pt;}
.fs2_c00467{font-size:63.999974pt;}
.y0_c00467{bottom:0.000000pt;}
.y4_c00467{bottom:67.306640pt;}
.y3_c00467{bottom:101.226626pt;}
.y18_c00467{bottom:118.666619pt;}
.y17_c00467{bottom:134.666613pt;}
.y16_c00467{bottom:140.746610pt;}
.y15_c00467{bottom:169.066599pt;}
.y14_c00467{bottom:175.786596pt;}
.y13_c00467{bottom:205.066585pt;}
.y12_c00467{bottom:222.666578pt;}
.y11_c00467{bottom:250.346567pt;}
.yf_c00467{bottom:277.226556pt;}
.y10_c00467{bottom:283.946553pt;}
.ye_c00467{bottom:299.626547pt;}
.yd_c00467{bottom:521.386458pt;}
.yc_c00467{bottom:548.906447pt;}
.yb_c00467{bottom:576.426436pt;}
.y9_c00467{bottom:603.146425pt;}
.ya_c00467{bottom:609.866423pt;}
.y8_c00467{bottom:625.546416pt;}
.y7_c00467{bottom:938.346291pt;}
.y6_c00467{bottom:966.186280pt;}
.y5_c00467{bottom:993.866269pt;}
.y2_c00467{bottom:1028.426255pt;}
.y1_c00467{bottom:1062.986241pt;}
.h7_c00467{height:33.918736pt;}
.h6_c00467{height:36.431235pt;}
.h8_c00467{height:43.808420pt;}
.h2_c00467{height:48.558731pt;}
.h1_c00467{height:52.134354pt;}
.h5_c00467{height:57.787477pt;}
.h3_c00467{height:62.812475pt;}
.h4_c00467{height:64.499974pt;}
.h0_c00467{height:1122.666667pt;}
.w0_c00467{width:793.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:113.599955pt;}
.x5_c00467{left:123.199951pt;}
.x9_c00467{left:125.119950pt;}
.xd_c00467{left:126.559949pt;}
.xc_c00467{left:127.519949pt;}
.x3_c00467{left:160.799936pt;}
.x2_c00467{left:385.919568pt;}
.x4_c00467{left:607.199757pt;}
.x8_c00467{left:640.479744pt;}
.xa_c00467{left:655.039738pt;}
.x6_c00467{left:656.799737pt;}
.xb_c00467{left:668.959732pt;}
.x7_c00467{left:670.719732pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8fc4e08a7e45dc22cacda04.woff2')format("woff");}.ff1_c00468{font-family:ff1_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:ff2_c00468;src:url('chunks/assets/font_cd3dd07f031d7cc0d7515c18.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00468{font-family:ff3_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:ff4_c00468;src:url('chunks/assets/font_84a07cdc095e23461605aaa4.woff2')format("woff");}.ff4_c00468{font-family:ff4_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;}
.m0_c00468{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls4_c00468{letter-spacing:0.000000px;}
.ls2_c00468{letter-spacing:0.011169px;}
.ls0_c00468{letter-spacing:0.012664px;}
.ls1_c00468{letter-spacing:0.153901px;}
.ls3_c00468{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00468{word-spacing:-14.939994px;}
.ws0_c00468{word-spacing:-10.452660px;}
.ws1_c00468{word-spacing:-9.731165px;}
.ws3_c00468{word-spacing:0.000000px;}
._4_c00468{margin-left:-12.716934px;}
._1_c00468{margin-left:-1.105374px;}
._0_c00468{width:1.478392px;}
._2_c00468{width:13.401205px;}
._3_c00468{width:14.549117px;}
.fc0_c00468{color:rgb(0,0,0);}
.fs4_c00468{font-size:38.879984px;}
.fs3_c00468{font-size:41.759983px;}
.fs0_c00468{font-size:59.759976px;}
.fs1_c00468{font-size:66.239974px;}
.fs2_c00468{font-size:71.999971px;}
.y0_c00468{bottom:0.000000px;}
.y4_c00468{bottom:75.720270px;}
.y3_c00468{bottom:113.880254px;}
.y11_c00468{bottom:133.499947px;}
.y10_c00468{bottom:151.499939px;}
.yf_c00468{bottom:158.339937px;}
.ye_c00468{bottom:169.679932px;}
.yd_c00468{bottom:191.819923px;}
.yc_c00468{bottom:223.319911px;}
.yb_c00468{bottom:254.279898px;}
.ya_c00468{bottom:285.059886px;}
.y8_c00468{bottom:315.299874px;}
.y9_c00468{bottom:322.859871px;}
.y7_c00468{bottom:343.739863px;}
.y6_c00468{bottom:369.119852px;}
.y5_c00468{bottom:1136.279545px;}
.y2_c00468{bottom:1175.879530px;}
.y1_c00468{bottom:1196.039522px;}
.h7_c00468{height:38.158578px;}
.h6_c00468{height:40.985140px;}
.h8_c00468{height:49.284472px;}
.h2_c00468{height:54.628572px;}
.h1_c00468{height:58.651148px;}
.h5_c00468{height:65.010911px;}
.h3_c00468{height:70.664034px;}
.h4_c00468{height:72.562471px;}
.h0_c00468{height:1263.000000px;}
.w0_c00468{width:892.500000px;}
.x0_c00468{left:0.000000px;}
.x5_c00468{left:127.800262px;}
.x8_c00468{left:136.619945px;}
.xc_c00468{left:142.379943px;}
.xb_c00468{left:180.899928px;}
.x1_c00468{left:181.979927px;}
.x2_c00468{left:329.219408px;}
.x4_c00468{left:434.159826px;}
.x7_c00468{left:446.579821px;}
.x6_c00468{left:674.099730px;}
.x9_c00468{left:741.059704px;}
.xa_c00468{left:756.719697px;}
.x3_c00468{left:765.539694px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls4_c00468{letter-spacing:0.000000pt;}
.ls2_c00468{letter-spacing:0.009928pt;}
.ls0_c00468{letter-spacing:0.011257pt;}
.ls1_c00468{letter-spacing:0.136801pt;}
.ls3_c00468{letter-spacing:0.168267pt;}
.ws2_c00468{word-spacing:-13.279995pt;}
.ws0_c00468{word-spacing:-9.291253pt;}
.ws1_c00468{word-spacing:-8.649924pt;}
.ws3_c00468{word-spacing:0.000000pt;}
._4_c00468{margin-left:-11.303941pt;}
._1_c00468{margin-left:-0.982555pt;}
._0_c00468{width:1.314126pt;}
._2_c00468{width:11.912182pt;}
._3_c00468{width:12.932548pt;}
.fs4_c00468{font-size:34.559986pt;}
.fs3_c00468{font-size:37.119985pt;}
.fs0_c00468{font-size:53.119979pt;}
.fs1_c00468{font-size:58.879976pt;}
.fs2_c00468{font-size:63.999974pt;}
.y0_c00468{bottom:0.000000pt;}
.y4_c00468{bottom:67.306906pt;}
.y3_c00468{bottom:101.226893pt;}
.y11_c00468{bottom:118.666619pt;}
.y10_c00468{bottom:134.666613pt;}
.yf_c00468{bottom:140.746610pt;}
.ye_c00468{bottom:150.826606pt;}
.yd_c00468{bottom:170.506598pt;}
.yc_c00468{bottom:198.506587pt;}
.yb_c00468{bottom:226.026576pt;}
.ya_c00468{bottom:253.386565pt;}
.y8_c00468{bottom:280.266555pt;}
.y9_c00468{bottom:286.986552pt;}
.y7_c00468{bottom:305.546544pt;}
.y6_c00468{bottom:328.106535pt;}
.y5_c00468{bottom:1010.026263pt;}
.y2_c00468{bottom:1045.226249pt;}
.y1_c00468{bottom:1063.146241pt;}
.h7_c00468{height:33.918736pt;}
.h6_c00468{height:36.431235pt;}
.h8_c00468{height:43.808420pt;}
.h2_c00468{height:48.558731pt;}
.h1_c00468{height:52.134354pt;}
.h5_c00468{height:57.787477pt;}
.h3_c00468{height:62.812475pt;}
.h4_c00468{height:64.499974pt;}
.h0_c00468{height:1122.666667pt;}
.w0_c00468{width:793.333333pt;}
.x0_c00468{left:0.000000pt;}
.x5_c00468{left:113.600233pt;}
.x8_c00468{left:121.439951pt;}
.xc_c00468{left:126.559949pt;}
.xb_c00468{left:160.799936pt;}
.x1_c00468{left:161.759935pt;}
.x2_c00468{left:292.639474pt;}
.x4_c00468{left:385.919846pt;}
.x7_c00468{left:396.959841pt;}
.x6_c00468{left:599.199760pt;}
.x9_c00468{left:658.719737pt;}
.xa_c00468{left:672.639731pt;}
.x3_c00468{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c74ef06a7c6ed1b48514e8d.woff2')format("woff");}.ff1_c00469{font-family:ff1_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:ff2_c00469;src:url('chunks/assets/font_d6db56c6130b6db3bbdfdac5.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_0dc82dab69ee7d8aa7b53a8c.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.311035;font-style:normal;font-weight:normal;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_6c22f9427accb867a91e204f.woff2')format("woff");}.ff4_c00469{font-family:ff4_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:ff5_c00469;src:url('chunks/assets/font_f87ae6717cd3c7e7bfca52b6.woff2')format("woff");}.ff5_c00469{font-family:ff5_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;}
.m0_c00469{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00469{word-spacing:-17.999993px;}
.ws1_c00469{word-spacing:0.000000px;}
._1_c00469{margin-left:-1.105374px;}
._0_c00469{width:1.195563px;}
._3_c00469{width:2.370565px;}
._4_c00469{width:5.525996px;}
._5_c00469{width:6.708846px;}
._2_c00469{width:8.139394px;}
._6_c00469{width:9.409579px;}
._7_c00469{width:16.928756px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:59.759976px;}
.fs1_c00469{font-size:66.239974px;}
.fs2_c00469{font-size:71.999971px;}
.y0_c00469{bottom:0.000000px;}
.y4_c00469{bottom:75.719970px;}
.y3_c00469{bottom:113.879954px;}
.y16_c00469{bottom:179.579928px;}
.y15_c00469{bottom:210.719916px;}
.y14_c00469{bottom:241.679903px;}
.y13_c00469{bottom:272.639891px;}
.y12_c00469{bottom:303.779878px;}
.y11_c00469{bottom:334.739866px;}
.y10_c00469{bottom:365.879854px;}
.yf_c00469{bottom:396.839841px;}
.ye_c00469{bottom:427.979829px;}
.yd_c00469{bottom:458.939816px;}
.yc_c00469{bottom:490.079804px;}
.yb_c00469{bottom:519.959792px;}
.ya_c00469{bottom:548.399781px;}
.y9_c00469{bottom:577.739769px;}
.y8_c00469{bottom:604.739758px;}
.y7_c00469{bottom:1055.639578px;}
.y6_c00469{bottom:1086.599565px;}
.y5_c00469{bottom:1117.739553px;}
.y2_c00469{bottom:1156.979537px;}
.y1_c00469{bottom:1195.859522px;}
.h2_c00469{height:54.628572px;}
.h1_c00469{height:58.651148px;}
.h4_c00469{height:65.010911px;}
.h5_c00469{height:70.664034px;}
.h3_c00469{height:72.562471px;}
.h0_c00469{height:1263.000000px;}
.w0_c00469{width:892.500000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:127.799949px;}
.x6_c00469{left:180.899928px;}
.x5_c00469{left:187.199925px;}
.x2_c00469{left:434.159514px;}
.x4_c00469{left:446.579821px;}
.x3_c00469{left:577.079769px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:-15.999994pt;}
.ws1_c00469{word-spacing:0.000000pt;}
._1_c00469{margin-left:-0.982555pt;}
._0_c00469{width:1.062723pt;}
._3_c00469{width:2.107169pt;}
._4_c00469{width:4.911996pt;}
._5_c00469{width:5.963418pt;}
._2_c00469{width:7.235017pt;}
._6_c00469{width:8.364071pt;}
._7_c00469{width:15.047783pt;}
.fs0_c00469{font-size:53.119979pt;}
.fs1_c00469{font-size:58.879976pt;}
.fs2_c00469{font-size:63.999974pt;}
.y0_c00469{bottom:0.000000pt;}
.y4_c00469{bottom:67.306640pt;}
.y3_c00469{bottom:101.226626pt;}
.y16_c00469{bottom:159.626603pt;}
.y15_c00469{bottom:187.306592pt;}
.y14_c00469{bottom:214.826581pt;}
.y13_c00469{bottom:242.346570pt;}
.y12_c00469{bottom:270.026559pt;}
.y11_c00469{bottom:297.546548pt;}
.y10_c00469{bottom:325.226537pt;}
.yf_c00469{bottom:352.746526pt;}
.ye_c00469{bottom:380.426514pt;}
.yd_c00469{bottom:407.946503pt;}
.yc_c00469{bottom:435.626492pt;}
.yb_c00469{bottom:462.186482pt;}
.ya_c00469{bottom:487.466472pt;}
.y9_c00469{bottom:513.546461pt;}
.y8_c00469{bottom:537.546452pt;}
.y7_c00469{bottom:938.346291pt;}
.y6_c00469{bottom:965.866280pt;}
.y5_c00469{bottom:993.546269pt;}
.y2_c00469{bottom:1028.426255pt;}
.y1_c00469{bottom:1062.986241pt;}
.h2_c00469{height:48.558731pt;}
.h1_c00469{height:52.134354pt;}
.h4_c00469{height:57.787477pt;}
.h5_c00469{height:62.812475pt;}
.h3_c00469{height:64.499974pt;}
.h0_c00469{height:1122.666667pt;}
.w0_c00469{width:793.333333pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:113.599955pt;}
.x6_c00469{left:160.799936pt;}
.x5_c00469{left:166.399933pt;}
.x2_c00469{left:385.919568pt;}
.x4_c00469{left:396.959841pt;}
.x3_c00469{left:512.959795pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d1c5e86dc6280cd7caa151a.woff2')format("woff");}.ff1_c00470{font-family:ff1_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:ff2_c00470;src:url('chunks/assets/font_5ff119267a369b8ecf6bc141.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_5ca1d1574545737262afbdc9.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls3_c00470{letter-spacing:0.000000px;}
.ls2_c00470{letter-spacing:0.012620px;}
.ls0_c00470{letter-spacing:0.012664px;}
.ls1_c00470{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00470{word-spacing:-10.452660px;}
.ws1_c00470{word-spacing:-10.452616px;}
.ws2_c00470{word-spacing:0.000000px;}
._3_c00470{margin-left:-12.716934px;}
._1_c00470{margin-left:-1.105374px;}
._0_c00470{width:1.478392px;}
._2_c00470{width:16.555642px;}
.fc0_c00470{color:rgb(0,0,0);}
.fs3_c00470{font-size:41.759983px;}
.fs0_c00470{font-size:59.759976px;}
.fs1_c00470{font-size:66.239974px;}
.fs2_c00470{font-size:71.999971px;}
.y0_c00470{bottom:0.000000px;}
.y4_c00470{bottom:75.720270px;}
.y3_c00470{bottom:113.880254px;}
.y10_c00470{bottom:133.499947px;}
.yf_c00470{bottom:172.919931px;}
.ye_c00470{bottom:180.479928px;}
.yd_c00470{bottom:213.419915px;}
.yc_c00470{bottom:258.239897px;}
.yb_c00470{bottom:288.119885px;}
.y9_c00470{bottom:316.739873px;}
.ya_c00470{bottom:324.299870px;}
.y8_c00470{bottom:341.939863px;}
.y7_c00470{bottom:1074.179570px;}
.y6_c00470{bottom:1105.319558px;}
.y5_c00470{bottom:1136.279545px;}
.y2_c00470{bottom:1175.879530px;}
.y1_c00470{bottom:1196.039522px;}
.h6_c00470{height:40.985140px;}
.h7_c00470{height:49.284472px;}
.h2_c00470{height:54.628572px;}
.h1_c00470{height:58.651148px;}
.h5_c00470{height:65.010911px;}
.h3_c00470{height:70.664034px;}
.h4_c00470{height:72.562471px;}
.h0_c00470{height:1263.000000px;}
.w0_c00470{width:892.500000px;}
.x0_c00470{left:0.000000px;}
.x5_c00470{left:127.800262px;}
.xb_c00470{left:143.459943px;}
.x8_c00470{left:171.539931px;}
.x6_c00470{left:180.899928px;}
.x1_c00470{left:181.979927px;}
.x2_c00470{left:329.219408px;}
.x4_c00470{left:434.159826px;}
.x7_c00470{left:665.999734px;}
.x9_c00470{left:705.959718px;}
.xa_c00470{left:721.619711px;}
.x3_c00470{left:765.539694px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls3_c00470{letter-spacing:0.000000pt;}
.ls2_c00470{letter-spacing:0.011218pt;}
.ls0_c00470{letter-spacing:0.011257pt;}
.ls1_c00470{letter-spacing:0.136801pt;}
.ws0_c00470{word-spacing:-9.291253pt;}
.ws1_c00470{word-spacing:-9.291214pt;}
.ws2_c00470{word-spacing:0.000000pt;}
._3_c00470{margin-left:-11.303941pt;}
._1_c00470{margin-left:-0.982555pt;}
._0_c00470{width:1.314126pt;}
._2_c00470{width:14.716126pt;}
.fs3_c00470{font-size:37.119985pt;}
.fs0_c00470{font-size:53.119979pt;}
.fs1_c00470{font-size:58.879976pt;}
.fs2_c00470{font-size:63.999974pt;}
.y0_c00470{bottom:0.000000pt;}
.y4_c00470{bottom:67.306906pt;}
.y3_c00470{bottom:101.226893pt;}
.y10_c00470{bottom:118.666619pt;}
.yf_c00470{bottom:153.706605pt;}
.ye_c00470{bottom:160.426602pt;}
.yd_c00470{bottom:189.706591pt;}
.yc_c00470{bottom:229.546575pt;}
.yb_c00470{bottom:256.106564pt;}
.y9_c00470{bottom:281.546554pt;}
.ya_c00470{bottom:288.266551pt;}
.y8_c00470{bottom:303.946545pt;}
.y7_c00470{bottom:954.826285pt;}
.y6_c00470{bottom:982.506274pt;}
.y5_c00470{bottom:1010.026263pt;}
.y2_c00470{bottom:1045.226249pt;}
.y1_c00470{bottom:1063.146241pt;}
.h6_c00470{height:36.431235pt;}
.h7_c00470{height:43.808420pt;}
.h2_c00470{height:48.558731pt;}
.h1_c00470{height:52.134354pt;}
.h5_c00470{height:57.787477pt;}
.h3_c00470{height:62.812475pt;}
.h4_c00470{height:64.499974pt;}
.h0_c00470{height:1122.666667pt;}
.w0_c00470{width:793.333333pt;}
.x0_c00470{left:0.000000pt;}
.x5_c00470{left:113.600233pt;}
.xb_c00470{left:127.519949pt;}
.x8_c00470{left:152.479939pt;}
.x6_c00470{left:160.799936pt;}
.x1_c00470{left:161.759935pt;}
.x2_c00470{left:292.639474pt;}
.x4_c00470{left:385.919846pt;}
.x7_c00470{left:591.999763pt;}
.x9_c00470{left:627.519749pt;}
.xa_c00470{left:641.439743pt;}
.x3_c00470{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d16e28592c8c951d8467a53f.woff2')format("woff");}.ff1_c00471{font-family:ff1_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:ff2_c00471;src:url('chunks/assets/font_d59f12cd5fff1bff79738b77.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_895774daa150da4f27c54626.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00471{font-family:ff4_c00471;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls4_c00471{letter-spacing:0.000000px;}
.ls2_c00471{letter-spacing:0.011169px;}
.ls0_c00471{letter-spacing:0.012664px;}
.ls1_c00471{letter-spacing:0.153901px;}
.ls3_c00471{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00471{word-spacing:-16.559993px;}
.ws3_c00471{word-spacing:-14.939994px;}
.ws0_c00471{word-spacing:-10.452660px;}
.ws2_c00471{word-spacing:-9.731165px;}
.ws4_c00471{word-spacing:0.000000px;}
._3_c00471{margin-left:-12.716934px;}
._1_c00471{margin-left:-1.105374px;}
._0_c00471{width:1.195563px;}
._2_c00471{width:21.839554px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs4_c00471{font-size:38.879984px;}
.fs3_c00471{font-size:41.759983px;}
.fs0_c00471{font-size:59.759976px;}
.fs1_c00471{font-size:66.239974px;}
.fs2_c00471{font-size:71.999971px;}
.y0_c00471{bottom:0.000000px;}
.y4_c00471{bottom:75.719970px;}
.y3_c00471{bottom:113.879954px;}
.y1d_c00471{bottom:133.499947px;}
.y1c_c00471{bottom:151.859939px;}
.y1b_c00471{bottom:190.739924px;}
.y1a_c00471{bottom:229.079908px;}
.y19_c00471{bottom:235.919906px;}
.y18_c00471{bottom:246.359901px;}
.y17_c00471{bottom:263.639895px;}
.y16_c00471{bottom:270.479892px;}
.y15_c00471{bottom:281.819887px;}
.y13_c00471{bottom:311.699875px;}
.y14_c00471{bottom:319.259872px;}
.y12_c00471{bottom:333.659867px;}
.y11_c00471{bottom:359.039856px;}
.y10_c00471{bottom:645.779742px;}
.yf_c00471{bottom:676.919729px;}
.ye_c00471{bottom:707.879717px;}
.yd_c00471{bottom:738.659705px;}
.yb_c00471{bottom:768.899692px;}
.yc_c00471{bottom:776.459689px;}
.ya_c00471{bottom:794.099682px;}
.y9_c00471{bottom:993.539603px;}
.y8_c00471{bottom:1024.859590px;}
.y7_c00471{bottom:1055.999578px;}
.y6_c00471{bottom:1086.959565px;}
.y5_c00471{bottom:1118.099553px;}
.y2_c00471{bottom:1156.979537px;}
.y1_c00471{bottom:1195.859522px;}
.h7_c00471{height:38.158578px;}
.h6_c00471{height:40.985140px;}
.h8_c00471{height:49.284472px;}
.h2_c00471{height:54.628572px;}
.h1_c00471{height:58.651148px;}
.h5_c00471{height:65.010911px;}
.h3_c00471{height:70.664034px;}
.h4_c00471{height:72.562471px;}
.h0_c00471{height:1263.000000px;}
.w0_c00471{width:892.500000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:127.799949px;}
.x5_c00471{left:136.259945px;}
.x9_c00471{left:143.279943px;}
.x3_c00471{left:180.899928px;}
.xa_c00471{left:412.919835px;}
.x2_c00471{left:434.159514px;}
.xb_c00471{left:464.759814px;}
.xc_c00471{left:480.419808px;}
.x4_c00471{left:705.419718px;}
.x8_c00471{left:708.119717px;}
.x6_c00471{left:741.239704px;}
.x7_c00471{left:756.899697px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls4_c00471{letter-spacing:0.000000pt;}
.ls2_c00471{letter-spacing:0.009928pt;}
.ls0_c00471{letter-spacing:0.011257pt;}
.ls1_c00471{letter-spacing:0.136801pt;}
.ls3_c00471{letter-spacing:0.168267pt;}
.ws1_c00471{word-spacing:-14.719994pt;}
.ws3_c00471{word-spacing:-13.279995pt;}
.ws0_c00471{word-spacing:-9.291253pt;}
.ws2_c00471{word-spacing:-8.649924pt;}
.ws4_c00471{word-spacing:0.000000pt;}
._3_c00471{margin-left:-11.303941pt;}
._1_c00471{margin-left:-0.982555pt;}
._0_c00471{width:1.062723pt;}
._2_c00471{width:19.412936pt;}
.fs4_c00471{font-size:34.559986pt;}
.fs3_c00471{font-size:37.119985pt;}
.fs0_c00471{font-size:53.119979pt;}
.fs1_c00471{font-size:58.879976pt;}
.fs2_c00471{font-size:63.999974pt;}
.y0_c00471{bottom:0.000000pt;}
.y4_c00471{bottom:67.306640pt;}
.y3_c00471{bottom:101.226626pt;}
.y1d_c00471{bottom:118.666619pt;}
.y1c_c00471{bottom:134.986613pt;}
.y1b_c00471{bottom:169.546599pt;}
.y1a_c00471{bottom:203.626585pt;}
.y19_c00471{bottom:209.706583pt;}
.y18_c00471{bottom:218.986579pt;}
.y17_c00471{bottom:234.346573pt;}
.y16_c00471{bottom:240.426570pt;}
.y15_c00471{bottom:250.506566pt;}
.y13_c00471{bottom:277.066556pt;}
.y14_c00471{bottom:283.786553pt;}
.y12_c00471{bottom:296.586548pt;}
.y11_c00471{bottom:319.146539pt;}
.y10_c00471{bottom:574.026437pt;}
.yf_c00471{bottom:601.706426pt;}
.ye_c00471{bottom:629.226415pt;}
.yd_c00471{bottom:656.586404pt;}
.yb_c00471{bottom:683.466393pt;}
.yc_c00471{bottom:690.186391pt;}
.ya_c00471{bottom:705.866384pt;}
.y9_c00471{bottom:883.146313pt;}
.y8_c00471{bottom:910.986302pt;}
.y7_c00471{bottom:938.666291pt;}
.y6_c00471{bottom:966.186280pt;}
.y5_c00471{bottom:993.866269pt;}
.y2_c00471{bottom:1028.426255pt;}
.y1_c00471{bottom:1062.986241pt;}
.h7_c00471{height:33.918736pt;}
.h6_c00471{height:36.431235pt;}
.h8_c00471{height:43.808420pt;}
.h2_c00471{height:48.558731pt;}
.h1_c00471{height:52.134354pt;}
.h5_c00471{height:57.787477pt;}
.h3_c00471{height:62.812475pt;}
.h4_c00471{height:64.499974pt;}
.h0_c00471{height:1122.666667pt;}
.w0_c00471{width:793.333333pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:113.599955pt;}
.x5_c00471{left:121.119952pt;}
.x9_c00471{left:127.359949pt;}
.x3_c00471{left:160.799936pt;}
.xa_c00471{left:367.039853pt;}
.x2_c00471{left:385.919568pt;}
.xb_c00471{left:413.119835pt;}
.xc_c00471{left:427.039829pt;}
.x4_c00471{left:627.039749pt;}
.x8_c00471{left:629.439748pt;}
.x6_c00471{left:658.879736pt;}
.x7_c00471{left:672.799731pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d28bdfffd20a2d94eacb126e.woff2')format("woff");}.ff1_c00472{font-family:ff1_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:ff2_c00472;src:url('chunks/assets/font_16776eae13bdb80c8b8ff375.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00472{font-family:ff3_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;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_ca84fc3f72a923b4b64050b5.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls4_c00472{letter-spacing:0.000000px;}
.ls2_c00472{letter-spacing:0.011169px;}
.ls0_c00472{letter-spacing:0.012664px;}
.ls1_c00472{letter-spacing:0.153901px;}
.ls3_c00472{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00472{word-spacing:-14.939994px;}
.ws0_c00472{word-spacing:-10.452660px;}
.ws1_c00472{word-spacing:-9.731165px;}
.ws3_c00472{word-spacing:0.000000px;}
._2_c00472{margin-left:-12.716934px;}
._1_c00472{margin-left:-1.105374px;}
._0_c00472{width:1.478392px;}
.fc0_c00472{color:rgb(0,0,0);}
.fs4_c00472{font-size:38.879984px;}
.fs3_c00472{font-size:41.759983px;}
.fs0_c00472{font-size:59.759976px;}
.fs1_c00472{font-size:66.239974px;}
.fs2_c00472{font-size:71.999971px;}
.y0_c00472{bottom:0.000000px;}
.y4_c00472{bottom:75.720270px;}
.y3_c00472{bottom:113.880254px;}
.y1b_c00472{bottom:133.499947px;}
.y1a_c00472{bottom:151.859939px;}
.y19_c00472{bottom:190.739924px;}
.y18_c00472{bottom:229.079908px;}
.y17_c00472{bottom:235.919906px;}
.y16_c00472{bottom:247.259901px;}
.y15_c00472{bottom:315.839874px;}
.y14_c00472{bottom:346.979861px;}
.y13_c00472{bottom:377.939849px;}
.y12_c00472{bottom:409.079836px;}
.y11_c00472{bottom:440.039824px;}
.y10_c00472{bottom:471.179812px;}
.yf_c00472{bottom:502.139799px;}
.ye_c00472{bottom:533.279787px;}
.yd_c00472{bottom:564.239774px;}
.yc_c00472{bottom:595.379762px;}
.yb_c00472{bottom:625.979750px;}
.y9_c00472{bottom:656.219738px;}
.ya_c00472{bottom:663.779734px;}
.y8_c00472{bottom:681.599727px;}
.y7_c00472{bottom:1073.819570px;}
.y6_c00472{bottom:1105.319558px;}
.y5_c00472{bottom:1136.279545px;}
.y2_c00472{bottom:1175.879530px;}
.y1_c00472{bottom:1196.039522px;}
.h7_c00472{height:38.158578px;}
.h6_c00472{height:40.985140px;}
.h8_c00472{height:49.284472px;}
.h2_c00472{height:54.628572px;}
.h1_c00472{height:58.651148px;}
.h5_c00472{height:65.010911px;}
.h3_c00472{height:70.664034px;}
.h4_c00472{height:72.562471px;}
.h0_c00472{height:1263.000000px;}
.w0_c00472{width:892.500000px;}
.x0_c00472{left:0.000000px;}
.x5_c00472{left:127.800262px;}
.xb_c00472{left:142.379943px;}
.x8_c00472{left:149.219940px;}
.x6_c00472{left:180.899928px;}
.x1_c00472{left:181.979927px;}
.x2_c00472{left:329.219408px;}
.x4_c00472{left:434.159826px;}
.x7_c00472{left:716.219714px;}
.x9_c00472{left:728.279709px;}
.xa_c00472{left:743.939702px;}
.x3_c00472{left:765.539694px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls4_c00472{letter-spacing:0.000000pt;}
.ls2_c00472{letter-spacing:0.009928pt;}
.ls0_c00472{letter-spacing:0.011257pt;}
.ls1_c00472{letter-spacing:0.136801pt;}
.ls3_c00472{letter-spacing:0.168267pt;}
.ws2_c00472{word-spacing:-13.279995pt;}
.ws0_c00472{word-spacing:-9.291253pt;}
.ws1_c00472{word-spacing:-8.649924pt;}
.ws3_c00472{word-spacing:0.000000pt;}
._2_c00472{margin-left:-11.303941pt;}
._1_c00472{margin-left:-0.982555pt;}
._0_c00472{width:1.314126pt;}
.fs4_c00472{font-size:34.559986pt;}
.fs3_c00472{font-size:37.119985pt;}
.fs0_c00472{font-size:53.119979pt;}
.fs1_c00472{font-size:58.879976pt;}
.fs2_c00472{font-size:63.999974pt;}
.y0_c00472{bottom:0.000000pt;}
.y4_c00472{bottom:67.306906pt;}
.y3_c00472{bottom:101.226893pt;}
.y1b_c00472{bottom:118.666619pt;}
.y1a_c00472{bottom:134.986613pt;}
.y19_c00472{bottom:169.546599pt;}
.y18_c00472{bottom:203.626585pt;}
.y17_c00472{bottom:209.706583pt;}
.y16_c00472{bottom:219.786579pt;}
.y15_c00472{bottom:280.746554pt;}
.y14_c00472{bottom:308.426543pt;}
.y13_c00472{bottom:335.946532pt;}
.y12_c00472{bottom:363.626521pt;}
.y11_c00472{bottom:391.146510pt;}
.y10_c00472{bottom:418.826499pt;}
.yf_c00472{bottom:446.346488pt;}
.ye_c00472{bottom:474.026477pt;}
.yd_c00472{bottom:501.546466pt;}
.yc_c00472{bottom:529.226455pt;}
.yb_c00472{bottom:556.426444pt;}
.y9_c00472{bottom:583.306433pt;}
.ya_c00472{bottom:590.026431pt;}
.y8_c00472{bottom:605.866424pt;}
.y7_c00472{bottom:954.506285pt;}
.y6_c00472{bottom:982.506274pt;}
.y5_c00472{bottom:1010.026263pt;}
.y2_c00472{bottom:1045.226249pt;}
.y1_c00472{bottom:1063.146241pt;}
.h7_c00472{height:33.918736pt;}
.h6_c00472{height:36.431235pt;}
.h8_c00472{height:43.808420pt;}
.h2_c00472{height:48.558731pt;}
.h1_c00472{height:52.134354pt;}
.h5_c00472{height:57.787477pt;}
.h3_c00472{height:62.812475pt;}
.h4_c00472{height:64.499974pt;}
.h0_c00472{height:1122.666667pt;}
.w0_c00472{width:793.333333pt;}
.x0_c00472{left:0.000000pt;}
.x5_c00472{left:113.600233pt;}
.xb_c00472{left:126.559949pt;}
.x8_c00472{left:132.639947pt;}
.x6_c00472{left:160.799936pt;}
.x1_c00472{left:161.759935pt;}
.x2_c00472{left:292.639474pt;}
.x4_c00472{left:385.919846pt;}
.x7_c00472{left:636.639745pt;}
.x9_c00472{left:647.359741pt;}
.xa_c00472{left:661.279735pt;}
.x3_c00472{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c1926ab88ba655ff12bc723.woff2')format("woff");}.ff1_c00473{font-family:ff1_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:ff2_c00473;src:url('chunks/assets/font_9cc07d7cd0438a37243f8b49.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_ee89b3428220450c49b85c18.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00473{font-family:ff4_c00473;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls4_c00473{letter-spacing:0.000000px;}
.ls2_c00473{letter-spacing:0.011169px;}
.ls0_c00473{letter-spacing:0.012664px;}
.ls1_c00473{letter-spacing:0.153901px;}
.ls3_c00473{letter-spacing:0.189300px;}
.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;}
}
.ws0_c00473{word-spacing:-16.559993px;}
.ws3_c00473{word-spacing:-14.939994px;}
.ws1_c00473{word-spacing:-10.452660px;}
.ws2_c00473{word-spacing:-9.731165px;}
.ws4_c00473{word-spacing:0.000000px;}
._3_c00473{margin-left:-12.716934px;}
._1_c00473{margin-left:-1.105374px;}
._0_c00473{width:1.195563px;}
._2_c00473{width:7.190101px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs4_c00473{font-size:38.879984px;}
.fs3_c00473{font-size:41.759983px;}
.fs0_c00473{font-size:59.759976px;}
.fs1_c00473{font-size:66.239974px;}
.fs2_c00473{font-size:71.999971px;}
.y0_c00473{bottom:0.000000px;}
.y4_c00473{bottom:75.719970px;}
.y3_c00473{bottom:113.879954px;}
.y10_c00473{bottom:133.499947px;}
.yf_c00473{bottom:172.379931px;}
.ye_c00473{bottom:210.719916px;}
.yd_c00473{bottom:217.559913px;}
.yc_c00473{bottom:228.899908px;}
.ya_c00473{bottom:271.919891px;}
.yb_c00473{bottom:279.479888px;}
.y9_c00473{bottom:293.699883px;}
.y8_c00473{bottom:319.079872px;}
.y7_c00473{bottom:1055.639578px;}
.y6_c00473{bottom:1086.959565px;}
.y5_c00473{bottom:1118.099553px;}
.y2_c00473{bottom:1156.979537px;}
.y1_c00473{bottom:1195.859522px;}
.h7_c00473{height:38.158578px;}
.h6_c00473{height:40.985140px;}
.h8_c00473{height:49.284472px;}
.h2_c00473{height:54.628572px;}
.h1_c00473{height:58.651148px;}
.h5_c00473{height:65.010911px;}
.h3_c00473{height:70.664034px;}
.h4_c00473{height:72.562471px;}
.h0_c00473{height:1263.000000px;}
.w0_c00473{width:892.500000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:127.799949px;}
.x6_c00473{left:139.319944px;}
.xa_c00473{left:142.379943px;}
.x3_c00473{left:180.899928px;}
.x7_c00473{left:412.919835px;}
.x2_c00473{left:434.159514px;}
.x4_c00473{left:446.579821px;}
.x8_c00473{left:464.759814px;}
.x9_c00473{left:480.419808px;}
.x5_c00473{left:670.499732px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls4_c00473{letter-spacing:0.000000pt;}
.ls2_c00473{letter-spacing:0.009928pt;}
.ls0_c00473{letter-spacing:0.011257pt;}
.ls1_c00473{letter-spacing:0.136801pt;}
.ls3_c00473{letter-spacing:0.168267pt;}
.ws0_c00473{word-spacing:-14.719994pt;}
.ws3_c00473{word-spacing:-13.279995pt;}
.ws1_c00473{word-spacing:-9.291253pt;}
.ws2_c00473{word-spacing:-8.649924pt;}
.ws4_c00473{word-spacing:0.000000pt;}
._3_c00473{margin-left:-11.303941pt;}
._1_c00473{margin-left:-0.982555pt;}
._0_c00473{width:1.062723pt;}
._2_c00473{width:6.391201pt;}
.fs4_c00473{font-size:34.559986pt;}
.fs3_c00473{font-size:37.119985pt;}
.fs0_c00473{font-size:53.119979pt;}
.fs1_c00473{font-size:58.879976pt;}
.fs2_c00473{font-size:63.999974pt;}
.y0_c00473{bottom:0.000000pt;}
.y4_c00473{bottom:67.306640pt;}
.y3_c00473{bottom:101.226626pt;}
.y10_c00473{bottom:118.666619pt;}
.yf_c00473{bottom:153.226605pt;}
.ye_c00473{bottom:187.306592pt;}
.yd_c00473{bottom:193.386589pt;}
.yc_c00473{bottom:203.466585pt;}
.ya_c00473{bottom:241.706570pt;}
.yb_c00473{bottom:248.426567pt;}
.y9_c00473{bottom:261.066562pt;}
.y8_c00473{bottom:283.626553pt;}
.y7_c00473{bottom:938.346291pt;}
.y6_c00473{bottom:966.186280pt;}
.y5_c00473{bottom:993.866269pt;}
.y2_c00473{bottom:1028.426255pt;}
.y1_c00473{bottom:1062.986241pt;}
.h7_c00473{height:33.918736pt;}
.h6_c00473{height:36.431235pt;}
.h8_c00473{height:43.808420pt;}
.h2_c00473{height:48.558731pt;}
.h1_c00473{height:52.134354pt;}
.h5_c00473{height:57.787477pt;}
.h3_c00473{height:62.812475pt;}
.h4_c00473{height:64.499974pt;}
.h0_c00473{height:1122.666667pt;}
.w0_c00473{width:793.333333pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:113.599955pt;}
.x6_c00473{left:123.839950pt;}
.xa_c00473{left:126.559949pt;}
.x3_c00473{left:160.799936pt;}
.x7_c00473{left:367.039853pt;}
.x2_c00473{left:385.919568pt;}
.x4_c00473{left:396.959841pt;}
.x8_c00473{left:413.119835pt;}
.x9_c00473{left:427.039829pt;}
.x5_c00473{left:595.999762pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_97dda3aa58ebf7ddaccff007.woff2')format("woff");}.ff1_c00474{font-family:ff1_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:ff2_c00474;src:url('chunks/assets/font_389634518e7a4e1a468c4583.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_853d09e15b6b1ab32d70743c.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;}
.m0_c00474{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls4_c00474{letter-spacing:0.000000px;}
.ls2_c00474{letter-spacing:0.011169px;}
.ls0_c00474{letter-spacing:0.012664px;}
.ls1_c00474{letter-spacing:0.153901px;}
.ls3_c00474{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00474{word-spacing:-16.559993px;}
.ws3_c00474{word-spacing:-14.939994px;}
.ws0_c00474{word-spacing:-10.452660px;}
.ws2_c00474{word-spacing:-9.731165px;}
.ws4_c00474{word-spacing:0.000000px;}
._2_c00474{margin-left:-12.716934px;}
._1_c00474{margin-left:-1.105374px;}
._0_c00474{width:1.478392px;}
.fc0_c00474{color:rgb(0,0,0);}
.fs4_c00474{font-size:38.879984px;}
.fs3_c00474{font-size:41.759983px;}
.fs0_c00474{font-size:59.759976px;}
.fs1_c00474{font-size:66.239974px;}
.fs2_c00474{font-size:71.999971px;}
.y0_c00474{bottom:0.000000px;}
.y4_c00474{bottom:75.720270px;}
.y3_c00474{bottom:113.880254px;}
.y24_c00474{bottom:133.499947px;}
.y23_c00474{bottom:172.379931px;}
.y22_c00474{bottom:210.719916px;}
.y21_c00474{bottom:217.559913px;}
.y20_c00474{bottom:227.999909px;}
.y1f_c00474{bottom:245.279902px;}
.y1e_c00474{bottom:252.119899px;}
.y1d_c00474{bottom:262.559895px;}
.y1c_c00474{bottom:279.839888px;}
.y1b_c00474{bottom:286.679885px;}
.y1a_c00474{bottom:298.019881px;}
.y19_c00474{bottom:351.119860px;}
.y17_c00474{bottom:374.339850px;}
.y18_c00474{bottom:381.899847px;}
.y16_c00474{bottom:396.299841px;}
.y15_c00474{bottom:421.679831px;}
.y14_c00474{bottom:582.419767px;}
.y13_c00474{bottom:612.299755px;}
.y11_c00474{bottom:640.739744px;}
.y12_c00474{bottom:648.299741px;}
.y10_c00474{bottom:665.939734px;}
.yf_c00474{bottom:807.599677px;}
.ye_c00474{bottom:838.559665px;}
.yd_c00474{bottom:869.699652px;}
.yc_c00474{bottom:892.919643px;}
.ya_c00474{bottom:914.699634px;}
.yb_c00474{bottom:922.259631px;}
.y9_c00474{bottom:936.479625px;}
.y8_c00474{bottom:961.859615px;}
.y7_c00474{bottom:1074.179570px;}
.y6_c00474{bottom:1105.319558px;}
.y5_c00474{bottom:1136.279545px;}
.y2_c00474{bottom:1175.879530px;}
.y1_c00474{bottom:1196.039522px;}
.h6_c00474{height:38.158578px;}
.h5_c00474{height:40.985140px;}
.h7_c00474{height:49.284472px;}
.h2_c00474{height:54.628572px;}
.h1_c00474{height:58.651148px;}
.h4_c00474{height:65.010911px;}
.h3_c00474{height:70.664034px;}
.h0_c00474{height:1263.000000px;}
.w0_c00474{width:892.500000px;}
.x0_c00474{left:0.000000px;}
.x5_c00474{left:127.800262px;}
.x8_c00474{left:131.939947px;}
.x14_c00474{left:142.379943px;}
.x10_c00474{left:161.819935px;}
.x6_c00474{left:180.899928px;}
.x1_c00474{left:181.979927px;}
.x2_c00474{left:329.219408px;}
.x9_c00474{left:376.919849px;}
.x11_c00474{left:412.919835px;}
.x4_c00474{left:434.159826px;}
.x12_c00474{left:464.759814px;}
.x13_c00474{left:480.419808px;}
.xa_c00474{left:500.579800px;}
.xb_c00474{left:516.239794px;}
.xf_c00474{left:715.499714px;}
.xc_c00474{left:717.659713px;}
.x7_c00474{left:723.419711px;}
.xd_c00474{left:744.659702px;}
.xe_c00474{left:760.319696px;}
.x3_c00474{left:765.539694px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls4_c00474{letter-spacing:0.000000pt;}
.ls2_c00474{letter-spacing:0.009928pt;}
.ls0_c00474{letter-spacing:0.011257pt;}
.ls1_c00474{letter-spacing:0.136801pt;}
.ls3_c00474{letter-spacing:0.168267pt;}
.ws1_c00474{word-spacing:-14.719994pt;}
.ws3_c00474{word-spacing:-13.279995pt;}
.ws0_c00474{word-spacing:-9.291253pt;}
.ws2_c00474{word-spacing:-8.649924pt;}
.ws4_c00474{word-spacing:0.000000pt;}
._2_c00474{margin-left:-11.303941pt;}
._1_c00474{margin-left:-0.982555pt;}
._0_c00474{width:1.314126pt;}
.fs4_c00474{font-size:34.559986pt;}
.fs3_c00474{font-size:37.119985pt;}
.fs0_c00474{font-size:53.119979pt;}
.fs1_c00474{font-size:58.879976pt;}
.fs2_c00474{font-size:63.999974pt;}
.y0_c00474{bottom:0.000000pt;}
.y4_c00474{bottom:67.306906pt;}
.y3_c00474{bottom:101.226893pt;}
.y24_c00474{bottom:118.666619pt;}
.y23_c00474{bottom:153.226605pt;}
.y22_c00474{bottom:187.306592pt;}
.y21_c00474{bottom:193.386589pt;}
.y20_c00474{bottom:202.666586pt;}
.y1f_c00474{bottom:218.026579pt;}
.y1e_c00474{bottom:224.106577pt;}
.y1d_c00474{bottom:233.386573pt;}
.y1c_c00474{bottom:248.746567pt;}
.y1b_c00474{bottom:254.826565pt;}
.y1a_c00474{bottom:264.906561pt;}
.y19_c00474{bottom:312.106542pt;}
.y17_c00474{bottom:332.746534pt;}
.y18_c00474{bottom:339.466531pt;}
.y16_c00474{bottom:352.266526pt;}
.y15_c00474{bottom:374.826517pt;}
.y14_c00474{bottom:517.706460pt;}
.y13_c00474{bottom:544.266449pt;}
.y11_c00474{bottom:569.546439pt;}
.y12_c00474{bottom:576.266436pt;}
.y10_c00474{bottom:591.946430pt;}
.yf_c00474{bottom:717.866380pt;}
.ye_c00474{bottom:745.386369pt;}
.yd_c00474{bottom:773.066357pt;}
.yc_c00474{bottom:793.706349pt;}
.ya_c00474{bottom:813.066341pt;}
.yb_c00474{bottom:819.786339pt;}
.y9_c00474{bottom:832.426334pt;}
.y8_c00474{bottom:854.986325pt;}
.y7_c00474{bottom:954.826285pt;}
.y6_c00474{bottom:982.506274pt;}
.y5_c00474{bottom:1010.026263pt;}
.y2_c00474{bottom:1045.226249pt;}
.y1_c00474{bottom:1063.146241pt;}
.h6_c00474{height:33.918736pt;}
.h5_c00474{height:36.431235pt;}
.h7_c00474{height:43.808420pt;}
.h2_c00474{height:48.558731pt;}
.h1_c00474{height:52.134354pt;}
.h4_c00474{height:57.787477pt;}
.h3_c00474{height:62.812475pt;}
.h0_c00474{height:1122.666667pt;}
.w0_c00474{width:793.333333pt;}
.x0_c00474{left:0.000000pt;}
.x5_c00474{left:113.600233pt;}
.x8_c00474{left:117.279953pt;}
.x14_c00474{left:126.559949pt;}
.x10_c00474{left:143.839942pt;}
.x6_c00474{left:160.799936pt;}
.x1_c00474{left:161.759935pt;}
.x2_c00474{left:292.639474pt;}
.x9_c00474{left:335.039866pt;}
.x11_c00474{left:367.039853pt;}
.x4_c00474{left:385.919846pt;}
.x12_c00474{left:413.119835pt;}
.x13_c00474{left:427.039829pt;}
.xa_c00474{left:444.959822pt;}
.xb_c00474{left:458.879816pt;}
.xf_c00474{left:635.999746pt;}
.xc_c00474{left:637.919745pt;}
.x7_c00474{left:643.039743pt;}
.xd_c00474{left:661.919735pt;}
.xe_c00474{left:675.839730pt;}
.x3_c00474{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a452080127f9b5baaeb3f044.woff2')format("woff");}.ff1_c00475{font-family:ff1_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:ff2_c00475;src:url('chunks/assets/font_543d0bdb2809a21afa922cdb.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_991d331fcc7e8aedeae38382.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls4_c00475{letter-spacing:0.000000px;}
.ls2_c00475{letter-spacing:0.011169px;}
.ls0_c00475{letter-spacing:0.012664px;}
.ls1_c00475{letter-spacing:0.153901px;}
.ls3_c00475{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00475{word-spacing:-17.999993px;}
.ws3_c00475{word-spacing:-14.939994px;}
.ws0_c00475{word-spacing:-10.452660px;}
.ws2_c00475{word-spacing:-9.731165px;}
.ws4_c00475{word-spacing:0.000000px;}
._6_c00475{margin-left:-12.716934px;}
._1_c00475{margin-left:-1.105374px;}
._0_c00475{width:1.195563px;}
._5_c00475{width:2.487356px;}
._2_c00475{width:4.844574px;}
._3_c00475{width:6.481534px;}
._4_c00475{width:7.977896px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs4_c00475{font-size:38.879984px;}
.fs3_c00475{font-size:41.759983px;}
.fs0_c00475{font-size:59.759976px;}
.fs1_c00475{font-size:66.239974px;}
.fs2_c00475{font-size:71.999971px;}
.y0_c00475{bottom:0.000000px;}
.y4_c00475{bottom:75.719970px;}
.y3_c00475{bottom:113.879954px;}
.y1d_c00475{bottom:133.499947px;}
.y1c_c00475{bottom:172.379931px;}
.y1b_c00475{bottom:210.719916px;}
.y1a_c00475{bottom:217.559913px;}
.y19_c00475{bottom:228.899908px;}
.y18_c00475{bottom:261.839895px;}
.y17_c00475{bottom:292.799883px;}
.y16_c00475{bottom:323.939870px;}
.y15_c00475{bottom:354.899858px;}
.y14_c00475{bottom:386.039846px;}
.y13_c00475{bottom:416.999833px;}
.y12_c00475{bottom:448.139821px;}
.y11_c00475{bottom:479.099808px;}
.y10_c00475{bottom:510.239796px;}
.yf_c00475{bottom:541.199784px;}
.ye_c00475{bottom:572.339771px;}
.yd_c00475{bottom:603.299759px;}
.yc_c00475{bottom:634.439746px;}
.yb_c00475{bottom:665.399734px;}
.ya_c00475{bottom:696.179722px;}
.y8_c00475{bottom:726.419709px;}
.y9_c00475{bottom:733.979706px;}
.y7_c00475{bottom:751.799699px;}
.y6_c00475{bottom:1086.959565px;}
.y5_c00475{bottom:1118.099553px;}
.y2_c00475{bottom:1156.979537px;}
.y1_c00475{bottom:1195.859522px;}
.h7_c00475{height:38.158578px;}
.h5_c00475{height:40.985140px;}
.h8_c00475{height:49.284472px;}
.h2_c00475{height:54.628572px;}
.h1_c00475{height:58.651148px;}
.h4_c00475{height:65.010911px;}
.h3_c00475{height:70.664034px;}
.h6_c00475{height:72.562471px;}
.h0_c00475{height:1263.000000px;}
.w0_c00475{width:892.500000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:127.799949px;}
.x5_c00475{left:142.019943px;}
.x3_c00475{left:180.899928px;}
.x2_c00475{left:434.159514px;}
.x4_c00475{left:688.499725px;}
.x6_c00475{left:735.659706px;}
.x7_c00475{left:751.319699px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls4_c00475{letter-spacing:0.000000pt;}
.ls2_c00475{letter-spacing:0.009928pt;}
.ls0_c00475{letter-spacing:0.011257pt;}
.ls1_c00475{letter-spacing:0.136801pt;}
.ls3_c00475{letter-spacing:0.168267pt;}
.ws1_c00475{word-spacing:-15.999994pt;}
.ws3_c00475{word-spacing:-13.279995pt;}
.ws0_c00475{word-spacing:-9.291253pt;}
.ws2_c00475{word-spacing:-8.649924pt;}
.ws4_c00475{word-spacing:0.000000pt;}
._6_c00475{margin-left:-11.303941pt;}
._1_c00475{margin-left:-0.982555pt;}
._0_c00475{width:1.062723pt;}
._5_c00475{width:2.210983pt;}
._2_c00475{width:4.306288pt;}
._3_c00475{width:5.761364pt;}
._4_c00475{width:7.091463pt;}
.fs4_c00475{font-size:34.559986pt;}
.fs3_c00475{font-size:37.119985pt;}
.fs0_c00475{font-size:53.119979pt;}
.fs1_c00475{font-size:58.879976pt;}
.fs2_c00475{font-size:63.999974pt;}
.y0_c00475{bottom:0.000000pt;}
.y4_c00475{bottom:67.306640pt;}
.y3_c00475{bottom:101.226626pt;}
.y1d_c00475{bottom:118.666619pt;}
.y1c_c00475{bottom:153.226605pt;}
.y1b_c00475{bottom:187.306592pt;}
.y1a_c00475{bottom:193.386589pt;}
.y19_c00475{bottom:203.466585pt;}
.y18_c00475{bottom:232.746574pt;}
.y17_c00475{bottom:260.266563pt;}
.y16_c00475{bottom:287.946551pt;}
.y15_c00475{bottom:315.466540pt;}
.y14_c00475{bottom:343.146529pt;}
.y13_c00475{bottom:370.666518pt;}
.y12_c00475{bottom:398.346507pt;}
.y11_c00475{bottom:425.866496pt;}
.y10_c00475{bottom:453.546485pt;}
.yf_c00475{bottom:481.066474pt;}
.ye_c00475{bottom:508.746463pt;}
.yd_c00475{bottom:536.266452pt;}
.yc_c00475{bottom:563.946441pt;}
.yb_c00475{bottom:591.466430pt;}
.ya_c00475{bottom:618.826419pt;}
.y8_c00475{bottom:645.706408pt;}
.y9_c00475{bottom:652.426406pt;}
.y7_c00475{bottom:668.266399pt;}
.y6_c00475{bottom:966.186280pt;}
.y5_c00475{bottom:993.866269pt;}
.y2_c00475{bottom:1028.426255pt;}
.y1_c00475{bottom:1062.986241pt;}
.h7_c00475{height:33.918736pt;}
.h5_c00475{height:36.431235pt;}
.h8_c00475{height:43.808420pt;}
.h2_c00475{height:48.558731pt;}
.h1_c00475{height:52.134354pt;}
.h4_c00475{height:57.787477pt;}
.h3_c00475{height:62.812475pt;}
.h6_c00475{height:64.499974pt;}
.h0_c00475{height:1122.666667pt;}
.w0_c00475{width:793.333333pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:113.599955pt;}
.x5_c00475{left:126.239950pt;}
.x3_c00475{left:160.799936pt;}
.x2_c00475{left:385.919568pt;}
.x4_c00475{left:611.999755pt;}
.x6_c00475{left:653.919738pt;}
.x7_c00475{left:667.839733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfb845a50925b6d307c143d8.woff2')format("woff");}.ff1_c00476{font-family:ff1_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:ff2_c00476;src:url('chunks/assets/font_31712667fdbf58bd995ac180.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_00782fe51c94e8e6584781ef.woff2')format("woff");}.ff3_c00476{font-family:ff3_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;}
@font-face{font-family:ff4_c00476;src:url('chunks/assets/font_3420582e67332dd096876691.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_ea06849a6f1158f1f6ad257a.woff2')format("woff");}.ff5_c00476{font-family:ff5_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;}
.m0_c00476{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00476{word-spacing:-17.999993px;}
.ws1_c00476{word-spacing:0.000000px;}
._1_c00476{margin-left:-1.105374px;}
._0_c00476{width:1.478392px;}
._6_c00476{width:2.709111px;}
._7_c00476{width:4.445982px;}
._2_c00476{width:5.543804px;}
._3_c00476{width:7.087151px;}
._8_c00476{width:8.232718px;}
._a_c00476{width:12.300327px;}
._b_c00476{width:14.412110px;}
._9_c00476{width:16.127009px;}
._4_c00476{width:20.211063px;}
._5_c00476{width:21.432203px;}
.fc0_c00476{color:rgb(0,0,0);}
.fs0_c00476{font-size:59.759976px;}
.fs1_c00476{font-size:66.239974px;}
.fs2_c00476{font-size:71.999971px;}
.y0_c00476{bottom:0.000000px;}
.y4_c00476{bottom:75.720270px;}
.y3_c00476{bottom:113.880254px;}
.y1a_c00476{bottom:138.899944px;}
.y19_c00476{bottom:170.039932px;}
.y18_c00476{bottom:200.999920px;}
.y17_c00476{bottom:232.139907px;}
.y16_c00476{bottom:263.099895px;}
.y15_c00476{bottom:294.239882px;}
.y14_c00476{bottom:325.199870px;}
.y13_c00476{bottom:356.339857px;}
.y12_c00476{bottom:387.299845px;}
.y11_c00476{bottom:418.439833px;}
.y10_c00476{bottom:449.399820px;}
.yf_c00476{bottom:480.539808px;}
.ye_c00476{bottom:511.499795px;}
.yd_c00476{bottom:542.639783px;}
.yc_c00476{bottom:573.599771px;}
.yb_c00476{bottom:604.739758px;}
.ya_c00476{bottom:635.699746px;}
.y9_c00476{bottom:665.579734px;}
.y8_c00476{bottom:694.019722px;}
.y7_c00476{bottom:723.359711px;}
.y6_c00476{bottom:750.539700px;}
.y5_c00476{bottom:1135.919546px;}
.y2_c00476{bottom:1175.879530px;}
.y1_c00476{bottom:1196.039522px;}
.h2_c00476{height:54.628572px;}
.h1_c00476{height:58.651148px;}
.h4_c00476{height:65.010911px;}
.h6_c00476{height:70.628878px;}
.h5_c00476{height:70.664034px;}
.h3_c00476{height:72.562471px;}
.h0_c00476{height:1263.000000px;}
.w0_c00476{width:892.500000px;}
.x0_c00476{left:0.000000px;}
.x5_c00476{left:127.800262px;}
.x8_c00476{left:166.319933px;}
.x9_c00476{left:180.899928px;}
.x1_c00476{left:181.979927px;}
.x2_c00476{left:329.219408px;}
.x4_c00476{left:434.159826px;}
.x7_c00476{left:446.579730px;}
.x6_c00476{left:584.099641px;}
.x3_c00476{left:765.539694px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:-15.999994pt;}
.ws1_c00476{word-spacing:0.000000pt;}
._1_c00476{margin-left:-0.982555pt;}
._0_c00476{width:1.314126pt;}
._6_c00476{width:2.408098pt;}
._7_c00476{width:3.951984pt;}
._2_c00476{width:4.927826pt;}
._3_c00476{width:6.299690pt;}
._8_c00476{width:7.317972pt;}
._a_c00476{width:10.933624pt;}
._b_c00476{width:12.810765pt;}
._9_c00476{width:14.335119pt;}
._4_c00476{width:17.965389pt;}
._5_c00476{width:19.050847pt;}
.fs0_c00476{font-size:53.119979pt;}
.fs1_c00476{font-size:58.879976pt;}
.fs2_c00476{font-size:63.999974pt;}
.y0_c00476{bottom:0.000000pt;}
.y4_c00476{bottom:67.306906pt;}
.y3_c00476{bottom:101.226893pt;}
.y1a_c00476{bottom:123.466617pt;}
.y19_c00476{bottom:151.146606pt;}
.y18_c00476{bottom:178.666595pt;}
.y17_c00476{bottom:206.346584pt;}
.y16_c00476{bottom:233.866573pt;}
.y15_c00476{bottom:261.546562pt;}
.y14_c00476{bottom:289.066551pt;}
.y13_c00476{bottom:316.746540pt;}
.y12_c00476{bottom:344.266529pt;}
.y11_c00476{bottom:371.946518pt;}
.y10_c00476{bottom:399.466507pt;}
.yf_c00476{bottom:427.146496pt;}
.ye_c00476{bottom:454.666485pt;}
.yd_c00476{bottom:482.346474pt;}
.yc_c00476{bottom:509.866463pt;}
.yb_c00476{bottom:537.546452pt;}
.ya_c00476{bottom:565.066441pt;}
.y9_c00476{bottom:591.626430pt;}
.y8_c00476{bottom:616.906420pt;}
.y7_c00476{bottom:642.986409pt;}
.y6_c00476{bottom:667.146400pt;}
.y5_c00476{bottom:1009.706263pt;}
.y2_c00476{bottom:1045.226249pt;}
.y1_c00476{bottom:1063.146241pt;}
.h2_c00476{height:48.558731pt;}
.h1_c00476{height:52.134354pt;}
.h4_c00476{height:57.787477pt;}
.h6_c00476{height:62.781225pt;}
.h5_c00476{height:62.812475pt;}
.h3_c00476{height:64.499974pt;}
.h0_c00476{height:1122.666667pt;}
.w0_c00476{width:793.333333pt;}
.x0_c00476{left:0.000000pt;}
.x5_c00476{left:113.600233pt;}
.x8_c00476{left:147.839941pt;}
.x9_c00476{left:160.799936pt;}
.x1_c00476{left:161.759935pt;}
.x2_c00476{left:292.639474pt;}
.x4_c00476{left:385.919846pt;}
.x7_c00476{left:396.959760pt;}
.x6_c00476{left:519.199680pt;}
.x3_c00476{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbfeafa7263afed7d34137e4.woff2')format("woff");}.ff1_c00477{font-family:ff1_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;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_cd3dd07f031d7cc0d7515c18.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_b5c748fda8df0f88d2aed805.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00477;src:url('chunks/assets/font_c6d007f28154767d3b886e66.woff2')format("woff");}.ff4_c00477{font-family:ff4_c00477;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls1_c00477{letter-spacing:0.000000px;}
.ls0_c00477{letter-spacing:25.945910px;}
.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;}
._1_c00477{margin-left:-1.105374px;}
._0_c00477{width:1.195563px;}
._2_c00477{width:2.740022px;}
._3_c00477{width:3.853304px;}
._c_c00477{width:4.892481px;}
._4_c00477{width:6.966903px;}
._5_c00477{width:8.083796px;}
._a_c00477{width:9.326596px;}
._8_c00477{width:10.913906px;}
._6_c00477{width:12.567415px;}
._b_c00477{width:13.737760px;}
._d_c00477{width:16.615855px;}
._e_c00477{width:20.924242px;}
._7_c00477{width:24.363442px;}
._9_c00477{width:25.754548px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:59.759976px;}
.fs1_c00477{font-size:66.239974px;}
.fs2_c00477{font-size:71.999971px;}
.y0_c00477{bottom:0.000000px;}
.y4_c00477{bottom:75.899970px;}
.y3_c00477{bottom:114.059954px;}
.y24_c00477{bottom:155.639938px;}
.y23_c00477{bottom:186.779925px;}
.y22_c00477{bottom:217.739913px;}
.y21_c00477{bottom:248.879900px;}
.y20_c00477{bottom:279.839888px;}
.y1f_c00477{bottom:310.979876px;}
.y1e_c00477{bottom:341.939863px;}
.y1d_c00477{bottom:373.079851px;}
.y1c_c00477{bottom:404.039838px;}
.y1b_c00477{bottom:435.179826px;}
.y1a_c00477{bottom:466.139814px;}
.y19_c00477{bottom:497.279801px;}
.y18_c00477{bottom:528.239789px;}
.y17_c00477{bottom:559.379776px;}
.y16_c00477{bottom:590.339764px;}
.y15_c00477{bottom:621.479751px;}
.y14_c00477{bottom:652.439739px;}
.y13_c00477{bottom:683.579727px;}
.y12_c00477{bottom:714.539714px;}
.y11_c00477{bottom:745.679702px;}
.y10_c00477{bottom:776.639689px;}
.yf_c00477{bottom:807.779677px;}
.ye_c00477{bottom:838.739665px;}
.yd_c00477{bottom:869.879652px;}
.yc_c00477{bottom:900.839640px;}
.yb_c00477{bottom:931.979627px;}
.ya_c00477{bottom:962.939615px;}
.y9_c00477{bottom:994.079602px;}
.y8_c00477{bottom:1025.039590px;}
.y7_c00477{bottom:1056.179578px;}
.y6_c00477{bottom:1087.139565px;}
.y5_c00477{bottom:1118.279553px;}
.y2_c00477{bottom:1157.159537px;}
.y1_c00477{bottom:1196.039522px;}
.h2_c00477{height:54.628572px;}
.h1_c00477{height:58.651148px;}
.h3_c00477{height:70.628878px;}
.h4_c00477{height:70.664034px;}
.h0_c00477{height:1263.000000px;}
.w0_c00477{width:892.500000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:127.619949px;}
.x3_c00477{left:180.719928px;}
.x2_c00477{left:433.979514px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls1_c00477{letter-spacing:0.000000pt;}
.ls0_c00477{letter-spacing:23.063031pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._1_c00477{margin-left:-0.982555pt;}
._0_c00477{width:1.062723pt;}
._2_c00477{width:2.435575pt;}
._3_c00477{width:3.425159pt;}
._c_c00477{width:4.348872pt;}
._4_c00477{width:6.192803pt;}
._5_c00477{width:7.185596pt;}
._a_c00477{width:8.290308pt;}
._8_c00477{width:9.701250pt;}
._6_c00477{width:11.171036pt;}
._b_c00477{width:12.211343pt;}
._d_c00477{width:14.769649pt;}
._e_c00477{width:18.599326pt;}
._7_c00477{width:21.656393pt;}
._9_c00477{width:22.892931pt;}
.fs0_c00477{font-size:53.119979pt;}
.fs1_c00477{font-size:58.879976pt;}
.fs2_c00477{font-size:63.999974pt;}
.y0_c00477{bottom:0.000000pt;}
.y4_c00477{bottom:67.466640pt;}
.y3_c00477{bottom:101.386626pt;}
.y24_c00477{bottom:138.346611pt;}
.y23_c00477{bottom:166.026600pt;}
.y22_c00477{bottom:193.546589pt;}
.y21_c00477{bottom:221.226578pt;}
.y20_c00477{bottom:248.746567pt;}
.y1f_c00477{bottom:276.426556pt;}
.y1e_c00477{bottom:303.946545pt;}
.y1d_c00477{bottom:331.626534pt;}
.y1c_c00477{bottom:359.146523pt;}
.y1b_c00477{bottom:386.826512pt;}
.y1a_c00477{bottom:414.346501pt;}
.y19_c00477{bottom:442.026490pt;}
.y18_c00477{bottom:469.546479pt;}
.y17_c00477{bottom:497.226468pt;}
.y16_c00477{bottom:524.746457pt;}
.y15_c00477{bottom:552.426446pt;}
.y14_c00477{bottom:579.946435pt;}
.y13_c00477{bottom:607.626424pt;}
.y12_c00477{bottom:635.146413pt;}
.y11_c00477{bottom:662.826402pt;}
.y10_c00477{bottom:690.346391pt;}
.yf_c00477{bottom:718.026379pt;}
.ye_c00477{bottom:745.546368pt;}
.yd_c00477{bottom:773.226357pt;}
.yc_c00477{bottom:800.746346pt;}
.yb_c00477{bottom:828.426335pt;}
.ya_c00477{bottom:855.946324pt;}
.y9_c00477{bottom:883.626313pt;}
.y8_c00477{bottom:911.146302pt;}
.y7_c00477{bottom:938.826291pt;}
.y6_c00477{bottom:966.346280pt;}
.y5_c00477{bottom:994.026269pt;}
.y2_c00477{bottom:1028.586255pt;}
.y1_c00477{bottom:1063.146241pt;}
.h2_c00477{height:48.558731pt;}
.h1_c00477{height:52.134354pt;}
.h3_c00477{height:62.781225pt;}
.h4_c00477{height:62.812475pt;}
.h0_c00477{height:1122.666667pt;}
.w0_c00477{width:793.333333pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:113.439955pt;}
.x3_c00477{left:160.639936pt;}
.x2_c00477{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_818fb94923a9e3981dd8fa60.woff2')format("woff");}.ff1_c00478{font-family:ff1_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:ff2_c00478;src:url('chunks/assets/font_543d0bdb2809a21afa922cdb.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_198417a96ab0a2dd4abcd3e1.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_fcd3a2534521d25cd5ba2105.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls3_c00478{letter-spacing:0.000000px;}
.ls2_c00478{letter-spacing:0.012620px;}
.ls0_c00478{letter-spacing:0.012664px;}
.ls1_c00478{letter-spacing:0.153901px;}
.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:-10.452660px;}
.ws1_c00478{word-spacing:-10.452616px;}
.ws2_c00478{word-spacing:0.000000px;}
._9_c00478{margin-left:-12.716934px;}
._1_c00478{margin-left:-1.105374px;}
._0_c00478{width:1.478392px;}
._2_c00478{width:5.047808px;}
._3_c00478{width:6.175672px;}
._4_c00478{width:15.835210px;}
._5_c00478{width:16.840071px;}
._6_c00478{width:24.225278px;}
._7_c00478{width:26.474979px;}
._8_c00478{width:27.570366px;}
.fc0_c00478{color:rgb(0,0,0);}
.fs3_c00478{font-size:41.759983px;}
.fs0_c00478{font-size:59.759976px;}
.fs1_c00478{font-size:66.239974px;}
.fs2_c00478{font-size:71.999971px;}
.y0_c00478{bottom:0.000000px;}
.y4_c00478{bottom:75.720270px;}
.y3_c00478{bottom:113.880254px;}
.y1e_c00478{bottom:133.499947px;}
.y1d_c00478{bottom:172.559931px;}
.y1c_c00478{bottom:190.019924px;}
.y1b_c00478{bottom:197.579921px;}
.y1a_c00478{bottom:230.699908px;}
.y19_c00478{bottom:308.639877px;}
.y18_c00478{bottom:339.779864px;}
.y17_c00478{bottom:370.739852px;}
.y16_c00478{bottom:401.879839px;}
.y15_c00478{bottom:432.839827px;}
.y13_c00478{bottom:462.899815px;}
.y14_c00478{bottom:470.459812px;}
.y12_c00478{bottom:488.099805px;}
.y11_c00478{bottom:763.859694px;}
.y10_c00478{bottom:794.819682px;}
.yf_c00478{bottom:825.779670px;}
.ye_c00478{bottom:856.919657px;}
.yd_c00478{bottom:887.879645px;}
.yc_c00478{bottom:919.019632px;}
.yb_c00478{bottom:949.979620px;}
.ya_c00478{bottom:981.119608px;}
.y9_c00478{bottom:1012.079595px;}
.y8_c00478{bottom:1043.219583px;}
.y7_c00478{bottom:1074.179570px;}
.y6_c00478{bottom:1105.319558px;}
.y5_c00478{bottom:1136.279545px;}
.y2_c00478{bottom:1175.879530px;}
.y1_c00478{bottom:1196.039522px;}
.h6_c00478{height:40.985140px;}
.h7_c00478{height:49.284472px;}
.h2_c00478{height:54.628572px;}
.h1_c00478{height:58.651148px;}
.h5_c00478{height:65.010911px;}
.h3_c00478{height:70.628878px;}
.h4_c00478{height:70.664034px;}
.h0_c00478{height:1263.000000px;}
.w0_c00478{width:892.500000px;}
.x0_c00478{left:0.000000px;}
.x5_c00478{left:127.800262px;}
.x8_c00478{left:129.959948px;}
.xb_c00478{left:143.459943px;}
.x6_c00478{left:180.899930px;}
.x1_c00478{left:181.979927px;}
.x2_c00478{left:329.219408px;}
.x4_c00478{left:434.159826px;}
.x7_c00478{left:728.097974px;}
.x9_c00478{left:747.719701px;}
.xa_c00478{left:763.379695px;}
.x3_c00478{left:765.539694px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls3_c00478{letter-spacing:0.000000pt;}
.ls2_c00478{letter-spacing:0.011218pt;}
.ls0_c00478{letter-spacing:0.011257pt;}
.ls1_c00478{letter-spacing:0.136801pt;}
.ws0_c00478{word-spacing:-9.291253pt;}
.ws1_c00478{word-spacing:-9.291214pt;}
.ws2_c00478{word-spacing:0.000000pt;}
._9_c00478{margin-left:-11.303941pt;}
._1_c00478{margin-left:-0.982555pt;}
._0_c00478{width:1.314126pt;}
._2_c00478{width:4.486941pt;}
._3_c00478{width:5.489486pt;}
._4_c00478{width:14.075742pt;}
._5_c00478{width:14.968952pt;}
._6_c00478{width:21.533581pt;}
._7_c00478{width:23.533315pt;}
._8_c00478{width:24.506992pt;}
.fs3_c00478{font-size:37.119985pt;}
.fs0_c00478{font-size:53.119979pt;}
.fs1_c00478{font-size:58.879976pt;}
.fs2_c00478{font-size:63.999974pt;}
.y0_c00478{bottom:0.000000pt;}
.y4_c00478{bottom:67.306906pt;}
.y3_c00478{bottom:101.226893pt;}
.y1e_c00478{bottom:118.666619pt;}
.y1d_c00478{bottom:153.386605pt;}
.y1c_c00478{bottom:168.906599pt;}
.y1b_c00478{bottom:175.626596pt;}
.y1a_c00478{bottom:205.066585pt;}
.y19_c00478{bottom:274.346557pt;}
.y18_c00478{bottom:302.026546pt;}
.y17_c00478{bottom:329.546535pt;}
.y16_c00478{bottom:357.226524pt;}
.y15_c00478{bottom:384.746513pt;}
.y13_c00478{bottom:411.466502pt;}
.y14_c00478{bottom:418.186499pt;}
.y12_c00478{bottom:433.866493pt;}
.y11_c00478{bottom:678.986395pt;}
.y10_c00478{bottom:706.506384pt;}
.yf_c00478{bottom:734.026373pt;}
.ye_c00478{bottom:761.706362pt;}
.yd_c00478{bottom:789.226351pt;}
.yc_c00478{bottom:816.906340pt;}
.yb_c00478{bottom:844.426329pt;}
.ya_c00478{bottom:872.106318pt;}
.y9_c00478{bottom:899.626307pt;}
.y8_c00478{bottom:927.306296pt;}
.y7_c00478{bottom:954.826285pt;}
.y6_c00478{bottom:982.506274pt;}
.y5_c00478{bottom:1010.026263pt;}
.y2_c00478{bottom:1045.226249pt;}
.y1_c00478{bottom:1063.146241pt;}
.h6_c00478{height:36.431235pt;}
.h7_c00478{height:43.808420pt;}
.h2_c00478{height:48.558731pt;}
.h1_c00478{height:52.134354pt;}
.h5_c00478{height:57.787477pt;}
.h3_c00478{height:62.781225pt;}
.h4_c00478{height:62.812475pt;}
.h0_c00478{height:1122.666667pt;}
.w0_c00478{width:793.333333pt;}
.x0_c00478{left:0.000000pt;}
.x5_c00478{left:113.600233pt;}
.x8_c00478{left:115.519954pt;}
.xb_c00478{left:127.519949pt;}
.x6_c00478{left:160.799938pt;}
.x1_c00478{left:161.759935pt;}
.x2_c00478{left:292.639474pt;}
.x4_c00478{left:385.919846pt;}
.x7_c00478{left:647.198199pt;}
.x9_c00478{left:664.639734pt;}
.xa_c00478{left:678.559729pt;}
.x3_c00478{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_295f204afdeae555e3b5de29.woff2')format("woff");}.ff1_c00479{font-family:ff1_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:ff2_c00479;src:url('chunks/assets/font_31a5e4e395c85deb6586eeb2.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.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_593628004635b225caae4b3d.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;}
.m0_c00479{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls5_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:0.010641px;}
.ls3_c00479{letter-spacing:0.011169px;}
.ls1_c00479{letter-spacing:0.012664px;}
.ls2_c00479{letter-spacing:0.153901px;}
.ls4_c00479{letter-spacing:0.189300px;}
.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:-16.559993px;}
.ws3_c00479{word-spacing:-14.939994px;}
.ws1_c00479{word-spacing:-10.452660px;}
.ws2_c00479{word-spacing:-9.731165px;}
.ws4_c00479{word-spacing:0.000000px;}
._8_c00479{margin-left:-12.716934px;}
._1_c00479{margin-left:-1.105374px;}
._0_c00479{width:1.195563px;}
._7_c00479{width:3.010109px;}
._5_c00479{width:4.255272px;}
._6_c00479{width:5.500722px;}
._4_c00479{width:33.036797px;}
._2_c00479{width:450.265659px;}
._3_c00479{width:916.383392px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs4_c00479{font-size:38.879984px;}
.fs3_c00479{font-size:41.759983px;}
.fs0_c00479{font-size:59.759976px;}
.fs1_c00479{font-size:66.239974px;}
.fs2_c00479{font-size:71.999971px;}
.y0_c00479{bottom:0.000000px;}
.y4_c00479{bottom:75.719970px;}
.y3_c00479{bottom:113.879954px;}
.y1d_c00479{bottom:133.499947px;}
.y1c_c00479{bottom:151.499939px;}
.y1b_c00479{bottom:158.339937px;}
.y1a_c00479{bottom:168.779932px;}
.y19_c00479{bottom:186.059926px;}
.y18_c00479{bottom:192.899923px;}
.y17_c00479{bottom:204.239918px;}
.y16_c00479{bottom:274.979890px;}
.y15_c00479{bottom:305.939878px;}
.y14_c00479{bottom:337.079865px;}
.y12_c00479{bottom:360.299856px;}
.y13_c00479{bottom:367.859853px;}
.y11_c00479{bottom:382.079847px;}
.y10_c00479{bottom:403.859838px;}
.yf_c00479{bottom:429.239828px;}
.ye_c00479{bottom:820.739672px;}
.yd_c00479{bottom:851.879659px;}
.yc_c00479{bottom:882.839647px;}
.yb_c00479{bottom:913.979634px;}
.ya_c00479{bottom:943.859622px;}
.y8_c00479{bottom:965.639614px;}
.y9_c00479{bottom:973.199611px;}
.y7_c00479{bottom:987.419605px;}
.y6_c00479{bottom:1009.379596px;}
.y5_c00479{bottom:1036.559585px;}
.y2_c00479{bottom:1156.979537px;}
.y1_c00479{bottom:1195.859522px;}
.h8_c00479{height:38.158578px;}
.h5_c00479{height:40.985140px;}
.h9_c00479{height:49.284472px;}
.h2_c00479{height:54.628572px;}
.h1_c00479{height:58.651148px;}
.h4_c00479{height:65.010911px;}
.h7_c00479{height:70.628878px;}
.h6_c00479{height:70.664034px;}
.h3_c00479{height:72.562471px;}
.h0_c00479{height:1263.000000px;}
.w0_c00479{width:892.500000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:127.799949px;}
.xb_c00479{left:135.539949px;}
.x5_c00479{left:139.679944px;}
.xc_c00479{left:142.379943px;}
.x9_c00479{left:180.899928px;}
.x3_c00479{left:221.759911px;}
.x6_c00479{left:412.020378px;}
.x2_c00479{left:434.159514px;}
.x4_c00479{left:446.579100px;}
.x7_c00479{left:465.659814px;}
.x8_c00479{left:481.319807px;}
.xa_c00479{left:664.919734px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls5_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:0.009459pt;}
.ls3_c00479{letter-spacing:0.009928pt;}
.ls1_c00479{letter-spacing:0.011257pt;}
.ls2_c00479{letter-spacing:0.136801pt;}
.ls4_c00479{letter-spacing:0.168267pt;}
.ws0_c00479{word-spacing:-14.719994pt;}
.ws3_c00479{word-spacing:-13.279995pt;}
.ws1_c00479{word-spacing:-9.291253pt;}
.ws2_c00479{word-spacing:-8.649924pt;}
.ws4_c00479{word-spacing:0.000000pt;}
._8_c00479{margin-left:-11.303941pt;}
._1_c00479{margin-left:-0.982555pt;}
._0_c00479{width:1.062723pt;}
._7_c00479{width:2.675653pt;}
._5_c00479{width:3.782464pt;}
._6_c00479{width:4.889530pt;}
._4_c00479{width:29.366041pt;}
._2_c00479{width:400.236141pt;}
._3_c00479{width:814.563015pt;}
.fs4_c00479{font-size:34.559986pt;}
.fs3_c00479{font-size:37.119985pt;}
.fs0_c00479{font-size:53.119979pt;}
.fs1_c00479{font-size:58.879976pt;}
.fs2_c00479{font-size:63.999974pt;}
.y0_c00479{bottom:0.000000pt;}
.y4_c00479{bottom:67.306640pt;}
.y3_c00479{bottom:101.226626pt;}
.y1d_c00479{bottom:118.666619pt;}
.y1c_c00479{bottom:134.666613pt;}
.y1b_c00479{bottom:140.746610pt;}
.y1a_c00479{bottom:150.026607pt;}
.y19_c00479{bottom:165.386601pt;}
.y18_c00479{bottom:171.466598pt;}
.y17_c00479{bottom:181.546594pt;}
.y16_c00479{bottom:244.426569pt;}
.y15_c00479{bottom:271.946558pt;}
.y14_c00479{bottom:299.626547pt;}
.y12_c00479{bottom:320.266539pt;}
.y13_c00479{bottom:326.986536pt;}
.y11_c00479{bottom:339.626531pt;}
.y10_c00479{bottom:358.986523pt;}
.yf_c00479{bottom:381.546514pt;}
.ye_c00479{bottom:729.546375pt;}
.yd_c00479{bottom:757.226364pt;}
.yc_c00479{bottom:784.746353pt;}
.yb_c00479{bottom:812.426342pt;}
.ya_c00479{bottom:838.986331pt;}
.y8_c00479{bottom:858.346323pt;}
.y9_c00479{bottom:865.066321pt;}
.y7_c00479{bottom:877.706316pt;}
.y6_c00479{bottom:897.226308pt;}
.y5_c00479{bottom:921.386298pt;}
.y2_c00479{bottom:1028.426255pt;}
.y1_c00479{bottom:1062.986241pt;}
.h8_c00479{height:33.918736pt;}
.h5_c00479{height:36.431235pt;}
.h9_c00479{height:43.808420pt;}
.h2_c00479{height:48.558731pt;}
.h1_c00479{height:52.134354pt;}
.h4_c00479{height:57.787477pt;}
.h7_c00479{height:62.781225pt;}
.h6_c00479{height:62.812475pt;}
.h3_c00479{height:64.499974pt;}
.h0_c00479{height:1122.666667pt;}
.w0_c00479{width:793.333333pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:113.599955pt;}
.xb_c00479{left:120.479955pt;}
.x5_c00479{left:124.159950pt;}
.xc_c00479{left:126.559949pt;}
.x9_c00479{left:160.799936pt;}
.x3_c00479{left:197.119921pt;}
.x6_c00479{left:366.240336pt;}
.x2_c00479{left:385.919568pt;}
.x4_c00479{left:396.959200pt;}
.x7_c00479{left:413.919834pt;}
.x8_c00479{left:427.839829pt;}
.xa_c00479{left:591.039764pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92366fc8064324457656ff68.woff2')format("woff");}.ff1_c00480{font-family:ff1_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:ff2_c00480;src:url('chunks/assets/font_b6df726bc2e97edb44f316e4.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.311035;font-style:normal;font-weight:normal;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_6ff9ce5296778f1660d5b573.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;}
.m0_c00480{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00480{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls4_c00480{letter-spacing:0.000000px;}
.ls2_c00480{letter-spacing:0.011169px;}
.ls0_c00480{letter-spacing:0.012664px;}
.ls1_c00480{letter-spacing:0.153901px;}
.ls3_c00480{letter-spacing:0.189300px;}
.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;}
}
.ws1_c00480{word-spacing:-16.559993px;}
.ws3_c00480{word-spacing:-14.939994px;}
.ws0_c00480{word-spacing:-10.452660px;}
.ws2_c00480{word-spacing:-9.731165px;}
.ws4_c00480{word-spacing:0.000000px;}
._8_c00480{margin-left:-12.716934px;}
._7_c00480{margin-left:-2.139990px;}
._1_c00480{margin-left:-1.105374px;}
._0_c00480{width:1.478392px;}
._5_c00480{width:3.587964px;}
._6_c00480{width:4.787082px;}
._2_c00480{width:12.186969px;}
._4_c00480{width:19.147905px;}
._3_c00480{width:20.586446px;}
.fc0_c00480{color:rgb(0,0,0);}
.fs4_c00480{font-size:38.879984px;}
.fs3_c00480{font-size:41.759983px;}
.fs0_c00480{font-size:59.759976px;}
.fs1_c00480{font-size:66.239974px;}
.fs2_c00480{font-size:71.999971px;}
.y0_c00480{bottom:0.000000px;}
.y4_c00480{bottom:75.720270px;}
.y3_c00480{bottom:113.880254px;}
.y1f_c00480{bottom:133.499947px;}
.y1e_c00480{bottom:151.499939px;}
.y1d_c00480{bottom:158.339937px;}
.y1c_c00480{bottom:168.779932px;}
.y1b_c00480{bottom:175.619930px;}
.y1a_c00480{bottom:186.059926px;}
.y19_c00480{bottom:192.899923px;}
.y18_c00480{bottom:204.239918px;}
.y16_c00480{bottom:305.579878px;}
.y17_c00480{bottom:313.139875px;}
.y15_c00480{bottom:327.359869px;}
.y14_c00480{bottom:352.739859px;}
.y13_c00480{bottom:486.839805px;}
.y12_c00480{bottom:627.419749px;}
.y11_c00480{bottom:658.559737px;}
.y10_c00480{bottom:681.959727px;}
.ye_c00480{bottom:705.539718px;}
.yf_c00480{bottom:713.099715px;}
.yd_c00480{bottom:727.319709px;}
.yc_c00480{bottom:752.699699px;}
.yb_c00480{bottom:906.779637px;}
.ya_c00480{bottom:937.919625px;}
.y9_c00480{bottom:968.879612px;}
.y8_c00480{bottom:998.759600px;}
.y6_c00480{bottom:1027.379589px;}
.y7_c00480{bottom:1034.939586px;}
.y5_c00480{bottom:1052.579579px;}
.y2_c00480{bottom:1175.879530px;}
.y1_c00480{bottom:1196.039522px;}
.h8_c00480{height:38.158578px;}
.h5_c00480{height:40.985140px;}
.h9_c00480{height:49.284472px;}
.h2_c00480{height:54.628572px;}
.h1_c00480{height:58.651148px;}
.h4_c00480{height:65.010911px;}
.h7_c00480{height:70.628878px;}
.h6_c00480{height:70.664034px;}
.h3_c00480{height:72.562471px;}
.h0_c00480{height:1263.000000px;}
.w0_c00480{width:892.500000px;}
.x0_c00480{left:0.000000px;}
.x5_c00480{left:127.800262px;}
.x12_c00480{left:142.019943px;}
.x7_c00480{left:150.839940px;}
.xc_c00480{left:164.339934px;}
.xa_c00480{left:180.899928px;}
.x1_c00480{left:181.979927px;}
.x2_c00480{left:329.219408px;}
.xd_c00480{left:412.020883px;}
.x4_c00480{left:434.159826px;}
.xe_c00480{left:465.659814px;}
.xf_c00480{left:481.319807px;}
.x11_c00480{left:665.999734px;}
.x10_c00480{left:672.659731px;}
.x6_c00480{left:691.919723px;}
.xb_c00480{left:692.999723px;}
.x8_c00480{left:726.839709px;}
.x9_c00480{left:742.499703px;}
.x3_c00480{left:765.539694px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls4_c00480{letter-spacing:0.000000pt;}
.ls2_c00480{letter-spacing:0.009928pt;}
.ls0_c00480{letter-spacing:0.011257pt;}
.ls1_c00480{letter-spacing:0.136801pt;}
.ls3_c00480{letter-spacing:0.168267pt;}
.ws1_c00480{word-spacing:-14.719994pt;}
.ws3_c00480{word-spacing:-13.279995pt;}
.ws0_c00480{word-spacing:-9.291253pt;}
.ws2_c00480{word-spacing:-8.649924pt;}
.ws4_c00480{word-spacing:0.000000pt;}
._8_c00480{margin-left:-11.303941pt;}
._7_c00480{margin-left:-1.902214pt;}
._1_c00480{margin-left:-0.982555pt;}
._0_c00480{width:1.314126pt;}
._5_c00480{width:3.189302pt;}
._6_c00480{width:4.255184pt;}
._2_c00480{width:10.832862pt;}
._4_c00480{width:17.020360pt;}
._3_c00480{width:18.299063pt;}
.fs4_c00480{font-size:34.559986pt;}
.fs3_c00480{font-size:37.119985pt;}
.fs0_c00480{font-size:53.119979pt;}
.fs1_c00480{font-size:58.879976pt;}
.fs2_c00480{font-size:63.999974pt;}
.y0_c00480{bottom:0.000000pt;}
.y4_c00480{bottom:67.306906pt;}
.y3_c00480{bottom:101.226893pt;}
.y1f_c00480{bottom:118.666619pt;}
.y1e_c00480{bottom:134.666613pt;}
.y1d_c00480{bottom:140.746610pt;}
.y1c_c00480{bottom:150.026607pt;}
.y1b_c00480{bottom:156.106604pt;}
.y1a_c00480{bottom:165.386601pt;}
.y19_c00480{bottom:171.466598pt;}
.y18_c00480{bottom:181.546594pt;}
.y16_c00480{bottom:271.626558pt;}
.y17_c00480{bottom:278.346555pt;}
.y15_c00480{bottom:290.986550pt;}
.y14_c00480{bottom:313.546541pt;}
.y13_c00480{bottom:432.746494pt;}
.y12_c00480{bottom:557.706444pt;}
.y11_c00480{bottom:585.386433pt;}
.y10_c00480{bottom:606.186424pt;}
.ye_c00480{bottom:627.146416pt;}
.yf_c00480{bottom:633.866413pt;}
.yd_c00480{bottom:646.506408pt;}
.yc_c00480{bottom:669.066399pt;}
.yb_c00480{bottom:806.026344pt;}
.ya_c00480{bottom:833.706333pt;}
.y9_c00480{bottom:861.226322pt;}
.y8_c00480{bottom:887.786312pt;}
.y6_c00480{bottom:913.226301pt;}
.y7_c00480{bottom:919.946299pt;}
.y5_c00480{bottom:935.626292pt;}
.y2_c00480{bottom:1045.226249pt;}
.y1_c00480{bottom:1063.146241pt;}
.h8_c00480{height:33.918736pt;}
.h5_c00480{height:36.431235pt;}
.h9_c00480{height:43.808420pt;}
.h2_c00480{height:48.558731pt;}
.h1_c00480{height:52.134354pt;}
.h4_c00480{height:57.787477pt;}
.h7_c00480{height:62.781225pt;}
.h6_c00480{height:62.812475pt;}
.h3_c00480{height:64.499974pt;}
.h0_c00480{height:1122.666667pt;}
.w0_c00480{width:793.333333pt;}
.x0_c00480{left:0.000000pt;}
.x5_c00480{left:113.600233pt;}
.x12_c00480{left:126.239950pt;}
.x7_c00480{left:134.079946pt;}
.xc_c00480{left:146.079942pt;}
.xa_c00480{left:160.799936pt;}
.x1_c00480{left:161.759935pt;}
.x2_c00480{left:292.639474pt;}
.xd_c00480{left:366.240785pt;}
.x4_c00480{left:385.919846pt;}
.xe_c00480{left:413.919834pt;}
.xf_c00480{left:427.839829pt;}
.x11_c00480{left:591.999763pt;}
.x10_c00480{left:597.919761pt;}
.x6_c00480{left:615.039754pt;}
.xb_c00480{left:615.999754pt;}
.x8_c00480{left:646.079742pt;}
.x9_c00480{left:659.999736pt;}
.x3_c00480{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4d2e692321f812263b42ec3.woff2')format("woff");}.ff1_c00481{font-family:ff1_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:ff2_c00481;src:url('chunks/assets/font_e48c95ec695c37daaeb0e4d6.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.311035;font-style:normal;font-weight:normal;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_d187e0489dc7b49906a6d589.woff2')format("woff");}.ff4_c00481{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls6_c00481{letter-spacing:0.000000px;}
.ls4_c00481{letter-spacing:0.011169px;}
.ls0_c00481{letter-spacing:0.012664px;}
.ls3_c00481{letter-spacing:0.153901px;}
.ls5_c00481{letter-spacing:0.189300px;}
.ls2_c00481{letter-spacing:9.376136px;}
.ls1_c00481{letter-spacing:10.096556px;}
.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;}
}
.ws2_c00481{word-spacing:-17.999993px;}
.ws0_c00481{word-spacing:-16.559993px;}
.ws4_c00481{word-spacing:-14.939994px;}
.ws1_c00481{word-spacing:-10.452660px;}
.ws3_c00481{word-spacing:-9.731165px;}
.ws5_c00481{word-spacing:0.000000px;}
._c_c00481{margin-left:-12.716934px;}
._4_c00481{margin-left:-2.166499px;}
._1_c00481{margin-left:-1.105374px;}
._0_c00481{width:1.195563px;}
._7_c00481{width:3.069543px;}
._8_c00481{width:4.085191px;}
._6_c00481{width:5.159935px;}
._9_c00481{width:6.600784px;}
._a_c00481{width:7.766410px;}
._3_c00481{width:8.775863px;}
._2_c00481{width:9.866322px;}
._5_c00481{width:11.870546px;}
._b_c00481{width:20.924242px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs4_c00481{font-size:38.879984px;}
.fs3_c00481{font-size:41.759983px;}
.fs0_c00481{font-size:59.759976px;}
.fs1_c00481{font-size:66.239974px;}
.fs2_c00481{font-size:71.999971px;}
.y0_c00481{bottom:0.000000px;}
.y4_c00481{bottom:75.719970px;}
.y3_c00481{bottom:113.879954px;}
.y20_c00481{bottom:133.499947px;}
.y1f_c00481{bottom:151.499939px;}
.y1e_c00481{bottom:158.339937px;}
.y1d_c00481{bottom:169.679932px;}
.y1c_c00481{bottom:226.559909px;}
.y1b_c00481{bottom:257.699897px;}
.y1a_c00481{bottom:288.659885px;}
.y19_c00481{bottom:319.799872px;}
.y18_c00481{bottom:350.759860px;}
.y17_c00481{bottom:381.899847px;}
.y16_c00481{bottom:412.859835px;}
.y15_c00481{bottom:443.999822px;}
.y14_c00481{bottom:474.959810px;}
.y13_c00481{bottom:506.099798px;}
.y12_c00481{bottom:537.059785px;}
.y11_c00481{bottom:568.199773px;}
.y10_c00481{bottom:599.159760px;}
.yf_c00481{bottom:630.299748px;}
.ye_c00481{bottom:661.259735px;}
.yd_c00481{bottom:692.399723px;}
.yc_c00481{bottom:723.359711px;}
.yb_c00481{bottom:754.499698px;}
.ya_c00481{bottom:785.459686px;}
.y9_c00481{bottom:816.599673px;}
.y7_c00481{bottom:839.819664px;}
.y8_c00481{bottom:847.379661px;}
.y6_c00481{bottom:861.599655px;}
.y5_c00481{bottom:886.979645px;}
.y2_c00481{bottom:1156.979537px;}
.y1_c00481{bottom:1195.859522px;}
.h8_c00481{height:38.158578px;}
.h5_c00481{height:40.985140px;}
.h9_c00481{height:49.284472px;}
.h2_c00481{height:54.628572px;}
.h1_c00481{height:58.651148px;}
.h4_c00481{height:65.010911px;}
.h7_c00481{height:70.628878px;}
.h6_c00481{height:70.664034px;}
.h3_c00481{height:72.562471px;}
.h0_c00481{height:1263.000000px;}
.w0_c00481{width:892.500000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:127.799949px;}
.x9_c00481{left:142.379943px;}
.x4_c00481{left:148.859940px;}
.x8_c00481{left:180.899928px;}
.x5_c00481{left:412.019871px;}
.x2_c00481{left:434.159514px;}
.x6_c00481{left:465.659814px;}
.x7_c00481{left:481.319807px;}
.x3_c00481{left:674.999730px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls6_c00481{letter-spacing:0.000000pt;}
.ls4_c00481{letter-spacing:0.009928pt;}
.ls0_c00481{letter-spacing:0.011257pt;}
.ls3_c00481{letter-spacing:0.136801pt;}
.ls5_c00481{letter-spacing:0.168267pt;}
.ls2_c00481{letter-spacing:8.334343pt;}
.ls1_c00481{letter-spacing:8.974716pt;}
.ws2_c00481{word-spacing:-15.999994pt;}
.ws0_c00481{word-spacing:-14.719994pt;}
.ws4_c00481{word-spacing:-13.279995pt;}
.ws1_c00481{word-spacing:-9.291253pt;}
.ws3_c00481{word-spacing:-8.649924pt;}
.ws5_c00481{word-spacing:0.000000pt;}
._c_c00481{margin-left:-11.303941pt;}
._4_c00481{margin-left:-1.925777pt;}
._1_c00481{margin-left:-0.982555pt;}
._0_c00481{width:1.062723pt;}
._7_c00481{width:2.728483pt;}
._8_c00481{width:3.631281pt;}
._6_c00481{width:4.586609pt;}
._9_c00481{width:5.867363pt;}
._a_c00481{width:6.903476pt;}
._3_c00481{width:7.800767pt;}
._2_c00481{width:8.770064pt;}
._5_c00481{width:10.551596pt;}
._b_c00481{width:18.599326pt;}
.fs4_c00481{font-size:34.559986pt;}
.fs3_c00481{font-size:37.119985pt;}
.fs0_c00481{font-size:53.119979pt;}
.fs1_c00481{font-size:58.879976pt;}
.fs2_c00481{font-size:63.999974pt;}
.y0_c00481{bottom:0.000000pt;}
.y4_c00481{bottom:67.306640pt;}
.y3_c00481{bottom:101.226626pt;}
.y20_c00481{bottom:118.666619pt;}
.y1f_c00481{bottom:134.666613pt;}
.y1e_c00481{bottom:140.746610pt;}
.y1d_c00481{bottom:150.826606pt;}
.y1c_c00481{bottom:201.386586pt;}
.y1b_c00481{bottom:229.066575pt;}
.y1a_c00481{bottom:256.586564pt;}
.y19_c00481{bottom:284.266553pt;}
.y18_c00481{bottom:311.786542pt;}
.y17_c00481{bottom:339.466531pt;}
.y16_c00481{bottom:366.986520pt;}
.y15_c00481{bottom:394.666509pt;}
.y14_c00481{bottom:422.186498pt;}
.y13_c00481{bottom:449.866487pt;}
.y12_c00481{bottom:477.386476pt;}
.y11_c00481{bottom:505.066465pt;}
.y10_c00481{bottom:532.586454pt;}
.yf_c00481{bottom:560.266443pt;}
.ye_c00481{bottom:587.786432pt;}
.yd_c00481{bottom:615.466420pt;}
.yc_c00481{bottom:642.986409pt;}
.yb_c00481{bottom:670.666398pt;}
.ya_c00481{bottom:698.186387pt;}
.y9_c00481{bottom:725.866376pt;}
.y7_c00481{bottom:746.506368pt;}
.y8_c00481{bottom:753.226365pt;}
.y6_c00481{bottom:765.866360pt;}
.y5_c00481{bottom:788.426351pt;}
.y2_c00481{bottom:1028.426255pt;}
.y1_c00481{bottom:1062.986241pt;}
.h8_c00481{height:33.918736pt;}
.h5_c00481{height:36.431235pt;}
.h9_c00481{height:43.808420pt;}
.h2_c00481{height:48.558731pt;}
.h1_c00481{height:52.134354pt;}
.h4_c00481{height:57.787477pt;}
.h7_c00481{height:62.781225pt;}
.h6_c00481{height:62.812475pt;}
.h3_c00481{height:64.499974pt;}
.h0_c00481{height:1122.666667pt;}
.w0_c00481{width:793.333333pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:113.599955pt;}
.x9_c00481{left:126.559949pt;}
.x4_c00481{left:132.319947pt;}
.x8_c00481{left:160.799936pt;}
.x5_c00481{left:366.239886pt;}
.x2_c00481{left:385.919568pt;}
.x6_c00481{left:413.919834pt;}
.x7_c00481{left:427.839829pt;}
.x3_c00481{left:599.999760pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8fce40b9fb90a189c0065bce.woff2')format("woff");}.ff1_c00482{font-family:ff1_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:ff2_c00482;src:url('chunks/assets/font_b402aa9ba2db7de05d6d09d3.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_bdb8a634070955be52e28e15.woff2')format("woff");}.ff3_c00482{font-family:ff3_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:ff4_c00482;src:url('chunks/assets/font_fcd3a2534521d25cd5ba2105.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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls3_c00482{letter-spacing:0.000000px;}
.ls1_c00482{letter-spacing:0.011169px;}
.ls2_c00482{letter-spacing:0.189300px;}
.ls0_c00482{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00482{word-spacing:-14.939994px;}
.ws0_c00482{word-spacing:-12.434276px;}
.ws1_c00482{word-spacing:-9.731165px;}
.ws3_c00482{word-spacing:0.000000px;}
._9_c00482{margin-left:-9.624960px;}
._1_c00482{margin-left:-1.105374px;}
._0_c00482{width:1.478392px;}
._8_c00482{width:3.730958px;}
._3_c00482{width:5.582831px;}
._2_c00482{width:6.671666px;}
._4_c00482{width:10.746106px;}
._6_c00482{width:12.953483px;}
._5_c00482{width:15.313263px;}
._7_c00482{width:28.192244px;}
.fc0_c00482{color:rgb(0,0,0);}
.fs4_c00482{font-size:38.879984px;}
.fs3_c00482{font-size:48.239981px;}
.fs0_c00482{font-size:59.759976px;}
.fs1_c00482{font-size:66.239974px;}
.fs2_c00482{font-size:71.999971px;}
.y0_c00482{bottom:0.000000px;}
.y4_c00482{bottom:75.900270px;}
.y3_c00482{bottom:114.060254px;}
.y28_c00482{bottom:133.679947px;}
.y27_c00482{bottom:152.039939px;}
.y26_c00482{bottom:170.039932px;}
.y25_c00482{bottom:176.879929px;}
.y24_c00482{bottom:188.219925px;}
.y23_c00482{bottom:235.739906px;}
.y22_c00482{bottom:266.879893px;}
.y21_c00482{bottom:297.839881px;}
.y20_c00482{bottom:328.979868px;}
.y1f_c00482{bottom:359.939856px;}
.y1e_c00482{bottom:391.079844px;}
.y1d_c00482{bottom:422.039831px;}
.y1c_c00482{bottom:453.179819px;}
.y1b_c00482{bottom:484.139806px;}
.y1a_c00482{bottom:515.279794px;}
.y19_c00482{bottom:546.239782px;}
.y17_c00482{bottom:577.739769px;}
.y18_c00482{bottom:586.019766px;}
.y16_c00482{bottom:608.699757px;}
.y15_c00482{bottom:639.839744px;}
.y14_c00482{bottom:670.799732px;}
.y13_c00482{bottom:701.939719px;}
.y12_c00482{bottom:732.899707px;}
.y11_c00482{bottom:764.039694px;}
.y10_c00482{bottom:794.999682px;}
.yf_c00482{bottom:825.959670px;}
.ye_c00482{bottom:857.099657px;}
.yd_c00482{bottom:888.059645px;}
.yc_c00482{bottom:919.199632px;}
.yb_c00482{bottom:950.159620px;}
.ya_c00482{bottom:981.299607px;}
.y9_c00482{bottom:1012.259595px;}
.y8_c00482{bottom:1043.399583px;}
.y7_c00482{bottom:1074.359570px;}
.y6_c00482{bottom:1105.499558px;}
.y5_c00482{bottom:1136.459545px;}
.y2_c00482{bottom:1176.059530px;}
.y1_c00482{bottom:1196.219522px;}
.h7_c00482{height:38.158578px;}
.h5_c00482{height:47.321348px;}
.h8_c00482{height:49.284472px;}
.h2_c00482{height:54.628572px;}
.h1_c00482{height:58.651148px;}
.h3_c00482{height:70.628878px;}
.h4_c00482{height:70.664034px;}
.h6_c00482{height:72.562471px;}
.h0_c00482{height:1263.000000px;}
.w0_c00482{width:892.500000px;}
.x0_c00482{left:0.000000px;}
.x5_c00482{left:127.620262px;}
.x9_c00482{left:142.199943px;}
.x6_c00482{left:180.719928px;}
.x1_c00482{left:181.799927px;}
.x2_c00482{left:329.039408px;}
.x4_c00482{left:433.979826px;}
.x7_c00482{left:588.599765px;}
.x8_c00482{left:606.959757px;}
.x3_c00482{left:765.359694px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls3_c00482{letter-spacing:0.000000pt;}
.ls1_c00482{letter-spacing:0.009928pt;}
.ls2_c00482{letter-spacing:0.168267pt;}
.ls0_c00482{letter-spacing:0.332694pt;}
.ws2_c00482{word-spacing:-13.279995pt;}
.ws0_c00482{word-spacing:-11.052689pt;}
.ws1_c00482{word-spacing:-8.649924pt;}
.ws3_c00482{word-spacing:0.000000pt;}
._9_c00482{margin-left:-8.555520pt;}
._1_c00482{margin-left:-0.982555pt;}
._0_c00482{width:1.314126pt;}
._8_c00482{width:3.316407pt;}
._3_c00482{width:4.962517pt;}
._2_c00482{width:5.930370pt;}
._4_c00482{width:9.552094pt;}
._6_c00482{width:11.514207pt;}
._5_c00482{width:13.611790pt;}
._7_c00482{width:25.059773pt;}
.fs4_c00482{font-size:34.559986pt;}
.fs3_c00482{font-size:42.879983pt;}
.fs0_c00482{font-size:53.119979pt;}
.fs1_c00482{font-size:58.879976pt;}
.fs2_c00482{font-size:63.999974pt;}
.y0_c00482{bottom:0.000000pt;}
.y4_c00482{bottom:67.466906pt;}
.y3_c00482{bottom:101.386893pt;}
.y28_c00482{bottom:118.826619pt;}
.y27_c00482{bottom:135.146613pt;}
.y26_c00482{bottom:151.146606pt;}
.y25_c00482{bottom:157.226604pt;}
.y24_c00482{bottom:167.306600pt;}
.y23_c00482{bottom:209.546583pt;}
.y22_c00482{bottom:237.226572pt;}
.y21_c00482{bottom:264.746561pt;}
.y20_c00482{bottom:292.426550pt;}
.y1f_c00482{bottom:319.946539pt;}
.y1e_c00482{bottom:347.626528pt;}
.y1d_c00482{bottom:375.146517pt;}
.y1c_c00482{bottom:402.826506pt;}
.y1b_c00482{bottom:430.346495pt;}
.y1a_c00482{bottom:458.026483pt;}
.y19_c00482{bottom:485.546472pt;}
.y17_c00482{bottom:513.546461pt;}
.y18_c00482{bottom:520.906458pt;}
.y16_c00482{bottom:541.066450pt;}
.y15_c00482{bottom:568.746439pt;}
.y14_c00482{bottom:596.266428pt;}
.y13_c00482{bottom:623.946417pt;}
.y12_c00482{bottom:651.466406pt;}
.y11_c00482{bottom:679.146395pt;}
.y10_c00482{bottom:706.666384pt;}
.yf_c00482{bottom:734.186373pt;}
.ye_c00482{bottom:761.866362pt;}
.yd_c00482{bottom:789.386351pt;}
.yc_c00482{bottom:817.066340pt;}
.yb_c00482{bottom:844.586329pt;}
.ya_c00482{bottom:872.266318pt;}
.y9_c00482{bottom:899.786307pt;}
.y8_c00482{bottom:927.466296pt;}
.y7_c00482{bottom:954.986285pt;}
.y6_c00482{bottom:982.666274pt;}
.y5_c00482{bottom:1010.186263pt;}
.y2_c00482{bottom:1045.386249pt;}
.y1_c00482{bottom:1063.306241pt;}
.h7_c00482{height:33.918736pt;}
.h5_c00482{height:42.063421pt;}
.h8_c00482{height:43.808420pt;}
.h2_c00482{height:48.558731pt;}
.h1_c00482{height:52.134354pt;}
.h3_c00482{height:62.781225pt;}
.h4_c00482{height:62.812475pt;}
.h6_c00482{height:64.499974pt;}
.h0_c00482{height:1122.666667pt;}
.w0_c00482{width:793.333333pt;}
.x0_c00482{left:0.000000pt;}
.x5_c00482{left:113.440233pt;}
.x9_c00482{left:126.399949pt;}
.x6_c00482{left:160.639936pt;}
.x1_c00482{left:161.599935pt;}
.x2_c00482{left:292.479474pt;}
.x4_c00482{left:385.759846pt;}
.x7_c00482{left:523.199791pt;}
.x8_c00482{left:539.519784pt;}
.x3_c00482{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02266692ad10cd008845d917.woff2')format("woff");}.ff1_c00483{font-family:ff1_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:ff2_c00483;src:url('chunks/assets/font_eda5495f5954b8fc63cde009.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_f7a9ef2bf90a1d82000a6bed.woff2')format("woff");}.ff3_c00483{font-family:ff3_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:ff4_c00483;src:url('chunks/assets/font_55464d9463c8baa6c775107e.woff2')format("woff");}.ff4_c00483{font-family:ff4_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:ff5_c00483;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff5_c00483{font-family:ff5_c00483;line-height:0.696777;font-style:normal;font-weight:normal;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_10285e3c7b9c4410bae3aa4d.woff2')format("woff");}.ff6_c00483{font-family:ff6_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;}
.m0_c00483{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00483{word-spacing:0.000000px;}
._1_c00483{margin-left:-1.105374px;}
._0_c00483{width:1.195563px;}
._7_c00483{width:2.202652px;}
._8_c00483{width:5.776388px;}
._5_c00483{width:7.549133px;}
._2_c00483{width:8.581452px;}
._6_c00483{width:9.639535px;}
._3_c00483{width:15.249594px;}
._4_c00483{width:16.474678px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs0_c00483{font-size:59.759976px;}
.fs1_c00483{font-size:66.239974px;}
.fs2_c00483{font-size:71.999971px;}
.y0_c00483{bottom:0.000000px;}
.y4_c00483{bottom:75.719970px;}
.y3_c00483{bottom:113.879954px;}
.y15_c00483{bottom:237.359905px;}
.y14_c00483{bottom:268.499893px;}
.y13_c00483{bottom:299.459880px;}
.y12_c00483{bottom:330.599868px;}
.y11_c00483{bottom:361.559855px;}
.y10_c00483{bottom:392.699843px;}
.yf_c00483{bottom:423.659831px;}
.ye_c00483{bottom:454.799818px;}
.yd_c00483{bottom:485.759806px;}
.yc_c00483{bottom:516.899793px;}
.yb_c00483{bottom:547.859781px;}
.ya_c00483{bottom:578.999768px;}
.y9_c00483{bottom:617.159753px;}
.y8_c00483{bottom:654.059738px;}
.y7_c00483{bottom:679.259728px;}
.y6_c00483{bottom:1087.679565px;}
.y5_c00483{bottom:1117.739553px;}
.y2_c00483{bottom:1156.979537px;}
.y1_c00483{bottom:1195.859522px;}
.h4_c00483{height:45.410607px;}
.h2_c00483{height:54.628572px;}
.h1_c00483{height:58.651148px;}
.h5_c00483{height:65.010911px;}
.h6_c00483{height:70.664034px;}
.h3_c00483{height:72.562471px;}
.h0_c00483{height:1263.000000px;}
.w0_c00483{width:892.500000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:127.799949px;}
.x6_c00483{left:180.899928px;}
.x4_c00483{left:194.039922px;}
.x2_c00483{left:434.159514px;}
.x5_c00483{left:446.579162px;}
.x3_c00483{left:590.759764px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
._1_c00483{margin-left:-0.982555pt;}
._0_c00483{width:1.062723pt;}
._7_c00483{width:1.957912pt;}
._8_c00483{width:5.134567pt;}
._5_c00483{width:6.710340pt;}
._2_c00483{width:7.627957pt;}
._6_c00483{width:8.568476pt;}
._3_c00483{width:13.555195pt;}
._4_c00483{width:14.644159pt;}
.fs0_c00483{font-size:53.119979pt;}
.fs1_c00483{font-size:58.879976pt;}
.fs2_c00483{font-size:63.999974pt;}
.y0_c00483{bottom:0.000000pt;}
.y4_c00483{bottom:67.306640pt;}
.y3_c00483{bottom:101.226626pt;}
.y15_c00483{bottom:210.986582pt;}
.y14_c00483{bottom:238.666571pt;}
.y13_c00483{bottom:266.186560pt;}
.y12_c00483{bottom:293.866549pt;}
.y11_c00483{bottom:321.386538pt;}
.y10_c00483{bottom:349.066527pt;}
.yf_c00483{bottom:376.586516pt;}
.ye_c00483{bottom:404.266505pt;}
.yd_c00483{bottom:431.786494pt;}
.yc_c00483{bottom:459.466483pt;}
.yb_c00483{bottom:486.986472pt;}
.ya_c00483{bottom:514.666461pt;}
.y9_c00483{bottom:548.586447pt;}
.y8_c00483{bottom:581.386434pt;}
.y7_c00483{bottom:603.786425pt;}
.y6_c00483{bottom:966.826280pt;}
.y5_c00483{bottom:993.546269pt;}
.y2_c00483{bottom:1028.426255pt;}
.y1_c00483{bottom:1062.986241pt;}
.h4_c00483{height:40.364984pt;}
.h2_c00483{height:48.558731pt;}
.h1_c00483{height:52.134354pt;}
.h5_c00483{height:57.787477pt;}
.h6_c00483{height:62.812475pt;}
.h3_c00483{height:64.499974pt;}
.h0_c00483{height:1122.666667pt;}
.w0_c00483{width:793.333333pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:113.599955pt;}
.x6_c00483{left:160.799936pt;}
.x4_c00483{left:172.479931pt;}
.x2_c00483{left:385.919568pt;}
.x5_c00483{left:396.959256pt;}
.x3_c00483{left:525.119790pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5aed5b3d719d4243d1ebd99.woff2')format("woff");}.ff1_c00484{font-family:ff1_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:ff2_c00484;src:url('chunks/assets/font_4474da9ccf17bb2cf3b40e4e.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_a4b0d7205a102570004c8bf6.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:0.696777;font-style:normal;font-weight:normal;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_90cedc3513f22c2f02a2ba34.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5_c00484{font-family:ff5_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;}
.m0_c00484{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls5_c00484{letter-spacing:0.000000px;}
.ls3_c00484{letter-spacing:0.011169px;}
.ls2_c00484{letter-spacing:0.012620px;}
.ls0_c00484{letter-spacing:0.012664px;}
.ls1_c00484{letter-spacing:0.153901px;}
.ls4_c00484{letter-spacing:0.189300px;}
.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;}
}
.ws3_c00484{word-spacing:-14.939994px;}
.ws0_c00484{word-spacing:-10.452660px;}
.ws1_c00484{word-spacing:-10.452616px;}
.ws2_c00484{word-spacing:-9.731165px;}
.ws4_c00484{word-spacing:0.000000px;}
._c_c00484{margin-left:-12.716934px;}
._1_c00484{margin-left:-1.105374px;}
._0_c00484{width:1.478392px;}
._6_c00484{width:2.805460px;}
._a_c00484{width:4.032976px;}
._4_c00484{width:5.813083px;}
._5_c00484{width:6.879012px;}
._d_c00484{width:8.114150px;}
._3_c00484{width:9.715965px;}
._2_c00484{width:11.082750px;}
._9_c00484{width:12.398492px;}
._7_c00484{width:14.171148px;}
._8_c00484{width:15.377207px;}
._b_c00484{width:16.619373px;}
.fc0_c00484{color:rgb(0,0,0);}
.fs4_c00484{font-size:38.879984px;}
.fs2_c00484{font-size:41.759983px;}
.fs0_c00484{font-size:59.759976px;}
.fs1_c00484{font-size:66.239974px;}
.fs3_c00484{font-size:71.999971px;}
.y0_c00484{bottom:0.000000px;}
.y4_c00484{bottom:75.720270px;}
.y3_c00484{bottom:113.880254px;}
.y23_c00484{bottom:133.499947px;}
.y22_c00484{bottom:151.859939px;}
.y21_c00484{bottom:169.859932px;}
.y20_c00484{bottom:176.699929px;}
.y1f_c00484{bottom:208.019917px;}
.y1e_c00484{bottom:225.479910px;}
.y1d_c00484{bottom:233.039907px;}
.y1c_c00484{bottom:266.159894px;}
.y1b_c00484{bottom:331.139868px;}
.y1a_c00484{bottom:362.099855px;}
.y19_c00484{bottom:393.239843px;}
.y18_c00484{bottom:424.199830px;}
.y17_c00484{bottom:455.339818px;}
.y16_c00484{bottom:486.299805px;}
.y15_c00484{bottom:517.439793px;}
.y14_c00484{bottom:548.399781px;}
.y13_c00484{bottom:579.539768px;}
.y12_c00484{bottom:610.499756px;}
.y11_c00484{bottom:641.639743px;}
.y10_c00484{bottom:672.599731px;}
.yf_c00484{bottom:703.739719px;}
.ye_c00484{bottom:734.339706px;}
.yc_c00484{bottom:773.039691px;}
.yd_c00484{bottom:780.599688px;}
.yb_c00484{bottom:805.979678px;}
.ya_c00484{bottom:942.599623px;}
.y9_c00484{bottom:979.499608px;}
.y8_c00484{bottom:1016.219594px;}
.y6_c00484{bottom:1016.219894px;}
.y7_c00484{bottom:1023.779590px;}
.y5_c00484{bottom:1049.159880px;}
.y2_c00484{bottom:1175.879530px;}
.y1_c00484{bottom:1196.039522px;}
.h8_c00484{height:38.158578px;}
.h5_c00484{height:40.985140px;}
.h3_c00484{height:45.410607px;}
.h9_c00484{height:49.284472px;}
.h2_c00484{height:54.628572px;}
.h1_c00484{height:58.651148px;}
.h4_c00484{height:65.010911px;}
.h6_c00484{height:70.628878px;}
.h7_c00484{height:70.664034px;}
.h0_c00484{height:1263.000000px;}
.w0_c00484{width:892.500000px;}
.x0_c00484{left:0.000000px;}
.x5_c00484{left:127.800262px;}
.xc_c00484{left:142.379943px;}
.xb_c00484{left:143.459943px;}
.x7_c00484{left:178.739761px;}
.xa_c00484{left:180.900530px;}
.x1_c00484{left:181.979927px;}
.x2_c00484{left:329.219408px;}
.x4_c00484{left:434.159826px;}
.x8_c00484{left:698.939720px;}
.x9_c00484{left:714.599714px;}
.x6_c00484{left:727.199866px;}
.x3_c00484{left:765.539694px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls5_c00484{letter-spacing:0.000000pt;}
.ls3_c00484{letter-spacing:0.009928pt;}
.ls2_c00484{letter-spacing:0.011218pt;}
.ls0_c00484{letter-spacing:0.011257pt;}
.ls1_c00484{letter-spacing:0.136801pt;}
.ls4_c00484{letter-spacing:0.168267pt;}
.ws3_c00484{word-spacing:-13.279995pt;}
.ws0_c00484{word-spacing:-9.291253pt;}
.ws1_c00484{word-spacing:-9.291214pt;}
.ws2_c00484{word-spacing:-8.649924pt;}
.ws4_c00484{word-spacing:0.000000pt;}
._c_c00484{margin-left:-11.303941pt;}
._1_c00484{margin-left:-0.982555pt;}
._0_c00484{width:1.314126pt;}
._6_c00484{width:2.493742pt;}
._a_c00484{width:3.584867pt;}
._4_c00484{width:5.167185pt;}
._5_c00484{width:6.114678pt;}
._d_c00484{width:7.212578pt;}
._3_c00484{width:8.636413pt;}
._2_c00484{width:9.851333pt;}
._9_c00484{width:11.020882pt;}
._7_c00484{width:12.596576pt;}
._8_c00484{width:13.668629pt;}
._b_c00484{width:14.772776pt;}
.fs4_c00484{font-size:34.559986pt;}
.fs2_c00484{font-size:37.119985pt;}
.fs0_c00484{font-size:53.119979pt;}
.fs1_c00484{font-size:58.879976pt;}
.fs3_c00484{font-size:63.999974pt;}
.y0_c00484{bottom:0.000000pt;}
.y4_c00484{bottom:67.306906pt;}
.y3_c00484{bottom:101.226893pt;}
.y23_c00484{bottom:118.666619pt;}
.y22_c00484{bottom:134.986613pt;}
.y21_c00484{bottom:150.986606pt;}
.y20_c00484{bottom:157.066604pt;}
.y1f_c00484{bottom:184.906593pt;}
.y1e_c00484{bottom:200.426586pt;}
.y1d_c00484{bottom:207.146584pt;}
.y1c_c00484{bottom:236.586572pt;}
.y1b_c00484{bottom:294.346549pt;}
.y1a_c00484{bottom:321.866538pt;}
.y19_c00484{bottom:349.546527pt;}
.y18_c00484{bottom:377.066516pt;}
.y17_c00484{bottom:404.746505pt;}
.y16_c00484{bottom:432.266494pt;}
.y15_c00484{bottom:459.946483pt;}
.y14_c00484{bottom:487.466472pt;}
.y13_c00484{bottom:515.146461pt;}
.y12_c00484{bottom:542.666450pt;}
.y11_c00484{bottom:570.346439pt;}
.y10_c00484{bottom:597.866428pt;}
.yf_c00484{bottom:625.546416pt;}
.ye_c00484{bottom:652.746406pt;}
.yc_c00484{bottom:687.146392pt;}
.yd_c00484{bottom:693.866389pt;}
.yb_c00484{bottom:716.426380pt;}
.ya_c00484{bottom:837.866332pt;}
.y9_c00484{bottom:870.666318pt;}
.y8_c00484{bottom:903.306305pt;}
.y6_c00484{bottom:903.306572pt;}
.y7_c00484{bottom:910.026303pt;}
.y5_c00484{bottom:932.586560pt;}
.y2_c00484{bottom:1045.226249pt;}
.y1_c00484{bottom:1063.146241pt;}
.h8_c00484{height:33.918736pt;}
.h5_c00484{height:36.431235pt;}
.h3_c00484{height:40.364984pt;}
.h9_c00484{height:43.808420pt;}
.h2_c00484{height:48.558731pt;}
.h1_c00484{height:52.134354pt;}
.h4_c00484{height:57.787477pt;}
.h6_c00484{height:62.781225pt;}
.h7_c00484{height:62.812475pt;}
.h0_c00484{height:1122.666667pt;}
.w0_c00484{width:793.333333pt;}
.x0_c00484{left:0.000000pt;}
.x5_c00484{left:113.600233pt;}
.xc_c00484{left:126.559949pt;}
.xb_c00484{left:127.519949pt;}
.x7_c00484{left:158.879788pt;}
.xa_c00484{left:160.800471pt;}
.x1_c00484{left:161.759935pt;}
.x2_c00484{left:292.639474pt;}
.x4_c00484{left:385.919846pt;}
.x8_c00484{left:621.279751pt;}
.x9_c00484{left:635.199746pt;}
.x6_c00484{left:646.399881pt;}
.x3_c00484{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b966813a9068dea3177bd830.woff2')format("woff");}.ff1_c00485{font-family:ff1_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:ff2_c00485;src:url('chunks/assets/font_cb4d05c18b0602b9dde0ea7c.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_18fb844132c2b957257ef97e.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00485{font-family:ff4_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;}
.m0_c00485{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls1_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:5.053618px;}
.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;}
}
.ws0_c00485{word-spacing:0.000000px;}
._1_c00485{margin-left:-1.105374px;}
._0_c00485{width:1.195563px;}
._5_c00485{width:2.789797px;}
._6_c00485{width:4.092139px;}
._8_c00485{width:5.501253px;}
._4_c00485{width:6.668148px;}
._7_c00485{width:7.844003px;}
._9_c00485{width:13.628232px;}
._3_c00485{width:14.957647px;}
._2_c00485{width:15.984183px;}
._a_c00485{width:23.241459px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:59.759976px;}
.fs1_c00485{font-size:66.239974px;}
.fs2_c00485{font-size:71.999971px;}
.y0_c00485{bottom:0.000000px;}
.y4_c00485{bottom:75.899970px;}
.y3_c00485{bottom:114.059954px;}
.y24_c00485{bottom:155.639938px;}
.y23_c00485{bottom:186.779925px;}
.y22_c00485{bottom:217.739913px;}
.y21_c00485{bottom:248.879900px;}
.y20_c00485{bottom:279.839888px;}
.y1f_c00485{bottom:310.979876px;}
.y1e_c00485{bottom:341.939863px;}
.y1d_c00485{bottom:373.079851px;}
.y1c_c00485{bottom:404.039838px;}
.y1b_c00485{bottom:435.179826px;}
.y1a_c00485{bottom:466.139814px;}
.y19_c00485{bottom:497.279801px;}
.y18_c00485{bottom:528.239789px;}
.y17_c00485{bottom:559.379776px;}
.y16_c00485{bottom:590.339764px;}
.y15_c00485{bottom:621.479751px;}
.y14_c00485{bottom:652.439739px;}
.y13_c00485{bottom:683.579727px;}
.y12_c00485{bottom:714.539714px;}
.y11_c00485{bottom:745.679702px;}
.y10_c00485{bottom:776.639689px;}
.yf_c00485{bottom:807.779677px;}
.ye_c00485{bottom:838.739665px;}
.yd_c00485{bottom:869.879652px;}
.yc_c00485{bottom:900.839640px;}
.yb_c00485{bottom:931.979627px;}
.ya_c00485{bottom:962.939615px;}
.y9_c00485{bottom:994.079602px;}
.y8_c00485{bottom:1025.039590px;}
.y7_c00485{bottom:1056.179578px;}
.y6_c00485{bottom:1087.139565px;}
.y5_c00485{bottom:1118.279553px;}
.y2_c00485{bottom:1157.159537px;}
.y1_c00485{bottom:1196.039522px;}
.h2_c00485{height:54.628572px;}
.h1_c00485{height:58.651148px;}
.h3_c00485{height:70.628878px;}
.h0_c00485{height:1263.000000px;}
.w0_c00485{width:892.500000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:127.619949px;}
.x3_c00485{left:180.719928px;}
.x2_c00485{left:433.979514px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls1_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:4.492105pt;}
.ws0_c00485{word-spacing:0.000000pt;}
._1_c00485{margin-left:-0.982555pt;}
._0_c00485{width:1.062723pt;}
._5_c00485{width:2.479819pt;}
._6_c00485{width:3.637457pt;}
._8_c00485{width:4.890003pt;}
._4_c00485{width:5.927243pt;}
._7_c00485{width:6.972447pt;}
._9_c00485{width:12.113984pt;}
._3_c00485{width:13.295686pt;}
._2_c00485{width:14.208163pt;}
._a_c00485{width:20.659074pt;}
.fs0_c00485{font-size:53.119979pt;}
.fs1_c00485{font-size:58.879976pt;}
.fs2_c00485{font-size:63.999974pt;}
.y0_c00485{bottom:0.000000pt;}
.y4_c00485{bottom:67.466640pt;}
.y3_c00485{bottom:101.386626pt;}
.y24_c00485{bottom:138.346611pt;}
.y23_c00485{bottom:166.026600pt;}
.y22_c00485{bottom:193.546589pt;}
.y21_c00485{bottom:221.226578pt;}
.y20_c00485{bottom:248.746567pt;}
.y1f_c00485{bottom:276.426556pt;}
.y1e_c00485{bottom:303.946545pt;}
.y1d_c00485{bottom:331.626534pt;}
.y1c_c00485{bottom:359.146523pt;}
.y1b_c00485{bottom:386.826512pt;}
.y1a_c00485{bottom:414.346501pt;}
.y19_c00485{bottom:442.026490pt;}
.y18_c00485{bottom:469.546479pt;}
.y17_c00485{bottom:497.226468pt;}
.y16_c00485{bottom:524.746457pt;}
.y15_c00485{bottom:552.426446pt;}
.y14_c00485{bottom:579.946435pt;}
.y13_c00485{bottom:607.626424pt;}
.y12_c00485{bottom:635.146413pt;}
.y11_c00485{bottom:662.826402pt;}
.y10_c00485{bottom:690.346391pt;}
.yf_c00485{bottom:718.026379pt;}
.ye_c00485{bottom:745.546368pt;}
.yd_c00485{bottom:773.226357pt;}
.yc_c00485{bottom:800.746346pt;}
.yb_c00485{bottom:828.426335pt;}
.ya_c00485{bottom:855.946324pt;}
.y9_c00485{bottom:883.626313pt;}
.y8_c00485{bottom:911.146302pt;}
.y7_c00485{bottom:938.826291pt;}
.y6_c00485{bottom:966.346280pt;}
.y5_c00485{bottom:994.026269pt;}
.y2_c00485{bottom:1028.586255pt;}
.y1_c00485{bottom:1063.146241pt;}
.h2_c00485{height:48.558731pt;}
.h1_c00485{height:52.134354pt;}
.h3_c00485{height:62.781225pt;}
.h0_c00485{height:1122.666667pt;}
.w0_c00485{width:793.333333pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:113.439955pt;}
.x3_c00485{left:160.639936pt;}
.x2_c00485{left:385.759568pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b4e29d922b6aff8b2c5d7ce.woff2')format("woff");}.ff1_c00486{font-family:ff1_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:ff2_c00486;src:url('chunks/assets/font_7eadfd57cfb40d55f7363fdd.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_b9a553af583d71f753fbf459.woff2')format("woff");}.ff3_c00486{font-family:ff3_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls6_c00486{letter-spacing:0.000000px;}
.ls2_c00486{letter-spacing:0.010553px;}
.ls4_c00486{letter-spacing:0.011169px;}
.ls1_c00486{letter-spacing:0.012664px;}
.ls3_c00486{letter-spacing:0.153901px;}
.ls5_c00486{letter-spacing:0.189300px;}
.ls0_c00486{letter-spacing:0.374281px;}
.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;}
}
.ws1_c00486{word-spacing:-16.559993px;}
.ws4_c00486{word-spacing:-14.939994px;}
.ws0_c00486{word-spacing:-12.434276px;}
.ws2_c00486{word-spacing:-10.452660px;}
.ws3_c00486{word-spacing:-9.731165px;}
.ws5_c00486{word-spacing:0.000000px;}
._a_c00486{margin-left:-12.716934px;}
._1_c00486{margin-left:-1.105374px;}
._0_c00486{width:1.478392px;}
._5_c00486{width:3.797091px;}
._6_c00486{width:5.527182px;}
._7_c00486{width:6.915460px;}
._2_c00486{width:14.504186px;}
._8_c00486{width:15.512589px;}
._4_c00486{width:19.959609px;}
._3_c00486{width:21.275131px;}
._9_c00486{width:383.266247px;}
.fc0_c00486{color:rgb(0,0,0);}
.fs5_c00486{font-size:38.879984px;}
.fs4_c00486{font-size:41.759983px;}
.fs3_c00486{font-size:48.239981px;}
.fs0_c00486{font-size:59.759976px;}
.fs1_c00486{font-size:66.239974px;}
.fs2_c00486{font-size:71.999971px;}
.y0_c00486{bottom:0.000000px;}
.y4_c00486{bottom:75.720270px;}
.y3_c00486{bottom:113.880254px;}
.y27_c00486{bottom:133.140247px;}
.y26_c00486{bottom:139.980244px;}
.y25_c00486{bottom:150.419940px;}
.y24_c00486{bottom:157.259937px;}
.y23_c00486{bottom:167.699933px;}
.y22_c00486{bottom:174.539930px;}
.y21_c00486{bottom:184.979926px;}
.y20_c00486{bottom:191.819923px;}
.y1f_c00486{bottom:203.159919px;}
.y1d_c00486{bottom:290.999884px;}
.y1e_c00486{bottom:298.559881px;}
.y1c_c00486{bottom:316.199874px;}
.y1b_c00486{bottom:459.299816px;}
.y1a_c00486{bottom:490.439804px;}
.y19_c00486{bottom:521.399791px;}
.y17_c00486{bottom:544.619782px;}
.y18_c00486{bottom:552.179779px;}
.y16_c00486{bottom:566.579773px;}
.y15_c00486{bottom:603.299759px;}
.y14_c00486{bottom:621.479751px;}
.y13_c00486{bottom:727.139709px;}
.y12_c00486{bottom:758.279697px;}
.y11_c00486{bottom:789.239684px;}
.y10_c00486{bottom:820.379672px;}
.yf_c00486{bottom:851.339659px;}
.yd_c00486{bottom:889.679644px;}
.ye_c00486{bottom:897.239641px;}
.yc_c00486{bottom:911.459635px;}
.yb_c00486{bottom:936.839625px;}
.ya_c00486{bottom:1012.079595px;}
.y8_c00486{bottom:1043.219583px;}
.y9_c00486{bottom:1051.499579px;}
.y7_c00486{bottom:1074.179570px;}
.y6_c00486{bottom:1105.319558px;}
.y5_c00486{bottom:1136.279545px;}
.y2_c00486{bottom:1175.879530px;}
.y1_c00486{bottom:1196.039522px;}
.h8_c00486{height:38.158578px;}
.h7_c00486{height:40.985140px;}
.h4_c00486{height:47.321348px;}
.h2_c00486{height:54.628572px;}
.h1_c00486{height:58.651148px;}
.h6_c00486{height:65.010911px;}
.h3_c00486{height:70.628878px;}
.h5_c00486{height:70.664034px;}
.h0_c00486{height:1263.000000px;}
.w0_c00486{width:892.500000px;}
.x0_c00486{left:0.000000px;}
.x5_c00486{left:127.800262px;}
.x1b_c00486{left:142.379943px;}
.x18_c00486{left:151.379939px;}
.x11_c00486{left:156.959234px;}
.xa_c00486{left:160.019936px;}
.x6_c00486{left:180.899928px;}
.x1_c00486{left:181.979927px;}
.xe_c00486{left:308.699280px;}
.x2_c00486{left:329.219408px;}
.x14_c00486{left:385.199309px;}
.xb_c00486{left:414.720432px;}
.x4_c00486{left:434.159826px;}
.xf_c00486{left:444.599248px;}
.x10_c00486{left:446.579821px;}
.x12_c00486{left:455.759818px;}
.x13_c00486{left:460.259816px;}
.xc_c00486{left:462.779815px;}
.xd_c00486{left:478.439809px;}
.x7_c00486{left:480.959808px;}
.x15_c00486{left:492.479803px;}
.x8_c00486{left:499.319800px;}
.x16_c00486{left:508.139797px;}
.x17_c00486{left:712.619900px;}
.x19_c00486{left:726.119710px;}
.x9_c00486{left:736.199364px;}
.x1a_c00486{left:741.779703px;}
.x3_c00486{left:765.539694px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls6_c00486{letter-spacing:0.000000pt;}
.ls2_c00486{letter-spacing:0.009381pt;}
.ls4_c00486{letter-spacing:0.009928pt;}
.ls1_c00486{letter-spacing:0.011257pt;}
.ls3_c00486{letter-spacing:0.136801pt;}
.ls5_c00486{letter-spacing:0.168267pt;}
.ls0_c00486{letter-spacing:0.332694pt;}
.ws1_c00486{word-spacing:-14.719994pt;}
.ws4_c00486{word-spacing:-13.279995pt;}
.ws0_c00486{word-spacing:-11.052689pt;}
.ws2_c00486{word-spacing:-9.291253pt;}
.ws3_c00486{word-spacing:-8.649924pt;}
.ws5_c00486{word-spacing:0.000000pt;}
._a_c00486{margin-left:-11.303941pt;}
._1_c00486{margin-left:-0.982555pt;}
._0_c00486{width:1.314126pt;}
._5_c00486{width:3.375192pt;}
._6_c00486{width:4.913051pt;}
._7_c00486{width:6.147075pt;}
._2_c00486{width:12.892610pt;}
._8_c00486{width:13.788968pt;}
._4_c00486{width:17.741874pt;}
._3_c00486{width:18.911228pt;}
._9_c00486{width:340.681109pt;}
.fs5_c00486{font-size:34.559986pt;}
.fs4_c00486{font-size:37.119985pt;}
.fs3_c00486{font-size:42.879983pt;}
.fs0_c00486{font-size:53.119979pt;}
.fs1_c00486{font-size:58.879976pt;}
.fs2_c00486{font-size:63.999974pt;}
.y0_c00486{bottom:0.000000pt;}
.y4_c00486{bottom:67.306906pt;}
.y3_c00486{bottom:101.226893pt;}
.y27_c00486{bottom:118.346886pt;}
.y26_c00486{bottom:124.426884pt;}
.y25_c00486{bottom:133.706613pt;}
.y24_c00486{bottom:139.786611pt;}
.y23_c00486{bottom:149.066607pt;}
.y22_c00486{bottom:155.146605pt;}
.y21_c00486{bottom:164.426601pt;}
.y20_c00486{bottom:170.506598pt;}
.y1f_c00486{bottom:180.586594pt;}
.y1d_c00486{bottom:258.666563pt;}
.y1e_c00486{bottom:265.386561pt;}
.y1c_c00486{bottom:281.066554pt;}
.y1b_c00486{bottom:408.266503pt;}
.y1a_c00486{bottom:435.946492pt;}
.y19_c00486{bottom:463.466481pt;}
.y17_c00486{bottom:484.106473pt;}
.y18_c00486{bottom:490.826470pt;}
.y16_c00486{bottom:503.626465pt;}
.y15_c00486{bottom:536.266452pt;}
.y14_c00486{bottom:552.426446pt;}
.y13_c00486{bottom:646.346408pt;}
.y12_c00486{bottom:674.026397pt;}
.y11_c00486{bottom:701.546386pt;}
.y10_c00486{bottom:729.226375pt;}
.yf_c00486{bottom:756.746364pt;}
.yd_c00486{bottom:790.826350pt;}
.ye_c00486{bottom:797.546348pt;}
.yc_c00486{bottom:810.186343pt;}
.yb_c00486{bottom:832.746334pt;}
.ya_c00486{bottom:899.626307pt;}
.y8_c00486{bottom:927.306296pt;}
.y9_c00486{bottom:934.666293pt;}
.y7_c00486{bottom:954.826285pt;}
.y6_c00486{bottom:982.506274pt;}
.y5_c00486{bottom:1010.026263pt;}
.y2_c00486{bottom:1045.226249pt;}
.y1_c00486{bottom:1063.146241pt;}
.h8_c00486{height:33.918736pt;}
.h7_c00486{height:36.431235pt;}
.h4_c00486{height:42.063421pt;}
.h2_c00486{height:48.558731pt;}
.h1_c00486{height:52.134354pt;}
.h6_c00486{height:57.787477pt;}
.h3_c00486{height:62.781225pt;}
.h5_c00486{height:62.812475pt;}
.h0_c00486{height:1122.666667pt;}
.w0_c00486{width:793.333333pt;}
.x0_c00486{left:0.000000pt;}
.x5_c00486{left:113.600233pt;}
.x1b_c00486{left:126.559949pt;}
.x18_c00486{left:134.559946pt;}
.x11_c00486{left:139.519319pt;}
.xa_c00486{left:142.239943pt;}
.x6_c00486{left:160.799936pt;}
.x1_c00486{left:161.759935pt;}
.xe_c00486{left:274.399360pt;}
.x2_c00486{left:292.639474pt;}
.x14_c00486{left:342.399386pt;}
.xb_c00486{left:368.640384pt;}
.x4_c00486{left:385.919846pt;}
.xf_c00486{left:395.199331pt;}
.x10_c00486{left:396.959841pt;}
.x12_c00486{left:405.119838pt;}
.x13_c00486{left:409.119836pt;}
.xc_c00486{left:411.359835pt;}
.xd_c00486{left:425.279830pt;}
.x7_c00486{left:427.519829pt;}
.x15_c00486{left:437.759825pt;}
.x8_c00486{left:443.839822pt;}
.x16_c00486{left:451.679819pt;}
.x17_c00486{left:633.439911pt;}
.x19_c00486{left:645.439742pt;}
.x9_c00486{left:654.399435pt;}
.x1a_c00486{left:659.359736pt;}
.x3_c00486{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ab9660ff960f9ffc5e66399.woff2')format("woff");}.ff1_c00487{font-family:ff1_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:ff2_c00487;src:url('chunks/assets/font_d6db56c6130b6db3bbdfdac5.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_a8ba4a17f41156c085f564c7.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_5225c30bf6065b274f13cdb5.woff2')format("woff");}.ff4_c00487{font-family:ff4_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;}
.m0_c00487{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls5_c00487{letter-spacing:0.000000px;}
.ls3_c00487{letter-spacing:0.011169px;}
.ls0_c00487{letter-spacing:0.012664px;}
.ls2_c00487{letter-spacing:0.153901px;}
.ls4_c00487{letter-spacing:0.189300px;}
.ls1_c00487{letter-spacing:0.374281px;}
.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:-17.999993px;}
.ws4_c00487{word-spacing:-14.939994px;}
.ws2_c00487{word-spacing:-12.434276px;}
.ws1_c00487{word-spacing:-10.452660px;}
.ws3_c00487{word-spacing:-9.731165px;}
.ws5_c00487{word-spacing:0.000000px;}
._9_c00487{margin-left:-12.716934px;}
._1_c00487{margin-left:-1.105374px;}
._0_c00487{width:1.195563px;}
._2_c00487{width:4.354438px;}
._6_c00487{width:6.318252px;}
._5_c00487{width:7.409869px;}
._7_c00487{width:8.778699px;}
._8_c00487{width:11.153480px;}
._3_c00487{width:12.435055px;}
._4_c00487{width:13.481941px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs6_c00487{font-size:38.879984px;}
.fs3_c00487{font-size:41.759983px;}
.fs5_c00487{font-size:48.239981px;}
.fs0_c00487{font-size:59.759976px;}
.fs1_c00487{font-size:66.239974px;}
.fs2_c00487{font-size:71.999971px;}
.fs4_c00487{font-size:77.759969px;}
.y0_c00487{bottom:0.000000px;}
.y4_c00487{bottom:75.719970px;}
.y3_c00487{bottom:113.879954px;}
.y27_c00487{bottom:133.499947px;}
.y26_c00487{bottom:151.499939px;}
.y25_c00487{bottom:158.339937px;}
.y24_c00487{bottom:168.779932px;}
.y23_c00487{bottom:175.619930px;}
.y22_c00487{bottom:186.059926px;}
.y21_c00487{bottom:192.899923px;}
.y20_c00487{bottom:204.239918px;}
.y1f_c00487{bottom:232.319907px;}
.y1e_c00487{bottom:263.459895px;}
.y1d_c00487{bottom:294.419882px;}
.y1c_c00487{bottom:325.559870px;}
.y1b_c00487{bottom:356.159858px;}
.y19_c00487{bottom:387.659845px;}
.y1a_c00487{bottom:395.939842px;}
.y18_c00487{bottom:418.619833px;}
.y17_c00487{bottom:449.759820px;}
.y16_c00487{bottom:480.719808px;}
.y15_c00487{bottom:511.859795px;}
.y14_c00487{bottom:542.819783px;}
.y13_c00487{bottom:573.959770px;}
.y12_c00487{bottom:604.919758px;}
.y11_c00487{bottom:636.059746px;}
.yf_c00487{bottom:674.219730px;}
.y10_c00487{bottom:681.779727px;}
.ye_c00487{bottom:699.599720px;}
.yd_c00487{bottom:835.679666px;}
.yc_c00487{bottom:866.819653px;}
.yb_c00487{bottom:897.779641px;}
.y9_c00487{bottom:936.119626px;}
.ya_c00487{bottom:943.679623px;}
.y8_c00487{bottom:961.319615px;}
.y7_c00487{bottom:1055.999578px;}
.y6_c00487{bottom:1086.959565px;}
.y5_c00487{bottom:1118.099553px;}
.y2_c00487{bottom:1156.979537px;}
.y1_c00487{bottom:1195.859522px;}
.h9_c00487{height:38.158578px;}
.h6_c00487{height:40.985140px;}
.h8_c00487{height:47.321348px;}
.ha_c00487{height:49.284472px;}
.h2_c00487{height:54.628572px;}
.h1_c00487{height:58.651148px;}
.h5_c00487{height:65.010911px;}
.h4_c00487{height:70.628878px;}
.h3_c00487{height:70.664034px;}
.h7_c00487{height:76.279188px;}
.h0_c00487{height:1263.000000px;}
.w0_c00487{width:892.500000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:127.799949px;}
.xf_c00487{left:142.379943px;}
.x9_c00487{left:155.519938px;}
.x3_c00487{left:180.899928px;}
.x2_c00487{left:434.159514px;}
.x4_c00487{left:446.578378px;}
.xc_c00487{left:607.499757px;}
.xd_c00487{left:642.959743px;}
.xe_c00487{left:661.319735px;}
.x6_c00487{left:696.779721px;}
.x7_c00487{left:712.439715px;}
.xa_c00487{left:722.159711px;}
.xb_c00487{left:737.819705px;}
.x5_c00487{left:758.158813px;}
.x8_c00487{left:772.379656px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls5_c00487{letter-spacing:0.000000pt;}
.ls3_c00487{letter-spacing:0.009928pt;}
.ls0_c00487{letter-spacing:0.011257pt;}
.ls2_c00487{letter-spacing:0.136801pt;}
.ls4_c00487{letter-spacing:0.168267pt;}
.ls1_c00487{letter-spacing:0.332694pt;}
.ws0_c00487{word-spacing:-15.999994pt;}
.ws4_c00487{word-spacing:-13.279995pt;}
.ws2_c00487{word-spacing:-11.052689pt;}
.ws1_c00487{word-spacing:-9.291253pt;}
.ws3_c00487{word-spacing:-8.649924pt;}
.ws5_c00487{word-spacing:0.000000pt;}
._9_c00487{margin-left:-11.303941pt;}
._1_c00487{margin-left:-0.982555pt;}
._0_c00487{width:1.062723pt;}
._2_c00487{width:3.870612pt;}
._6_c00487{width:5.616224pt;}
._5_c00487{width:6.586550pt;}
._7_c00487{width:7.803288pt;}
._8_c00487{width:9.914204pt;}
._3_c00487{width:11.053382pt;}
._4_c00487{width:11.983947pt;}
.fs6_c00487{font-size:34.559986pt;}
.fs3_c00487{font-size:37.119985pt;}
.fs5_c00487{font-size:42.879983pt;}
.fs0_c00487{font-size:53.119979pt;}
.fs1_c00487{font-size:58.879976pt;}
.fs2_c00487{font-size:63.999974pt;}
.fs4_c00487{font-size:69.119972pt;}
.y0_c00487{bottom:0.000000pt;}
.y4_c00487{bottom:67.306640pt;}
.y3_c00487{bottom:101.226626pt;}
.y27_c00487{bottom:118.666619pt;}
.y26_c00487{bottom:134.666613pt;}
.y25_c00487{bottom:140.746610pt;}
.y24_c00487{bottom:150.026607pt;}
.y23_c00487{bottom:156.106604pt;}
.y22_c00487{bottom:165.386601pt;}
.y21_c00487{bottom:171.466598pt;}
.y20_c00487{bottom:181.546594pt;}
.y1f_c00487{bottom:206.506584pt;}
.y1e_c00487{bottom:234.186573pt;}
.y1d_c00487{bottom:261.706562pt;}
.y1c_c00487{bottom:289.386551pt;}
.y1b_c00487{bottom:316.586540pt;}
.y19_c00487{bottom:344.586529pt;}
.y1a_c00487{bottom:351.946526pt;}
.y18_c00487{bottom:372.106518pt;}
.y17_c00487{bottom:399.786507pt;}
.y16_c00487{bottom:427.306496pt;}
.y15_c00487{bottom:454.986485pt;}
.y14_c00487{bottom:482.506474pt;}
.y13_c00487{bottom:510.186463pt;}
.y12_c00487{bottom:537.706452pt;}
.y11_c00487{bottom:565.386441pt;}
.yf_c00487{bottom:599.306427pt;}
.y10_c00487{bottom:606.026424pt;}
.ye_c00487{bottom:621.866418pt;}
.yd_c00487{bottom:742.826370pt;}
.yc_c00487{bottom:770.506358pt;}
.yb_c00487{bottom:798.026347pt;}
.y9_c00487{bottom:832.106334pt;}
.ya_c00487{bottom:838.826331pt;}
.y8_c00487{bottom:854.506325pt;}
.y7_c00487{bottom:938.666291pt;}
.y6_c00487{bottom:966.186280pt;}
.y5_c00487{bottom:993.866269pt;}
.y2_c00487{bottom:1028.426255pt;}
.y1_c00487{bottom:1062.986241pt;}
.h9_c00487{height:33.918736pt;}
.h6_c00487{height:36.431235pt;}
.h8_c00487{height:42.063421pt;}
.ha_c00487{height:43.808420pt;}
.h2_c00487{height:48.558731pt;}
.h1_c00487{height:52.134354pt;}
.h5_c00487{height:57.787477pt;}
.h4_c00487{height:62.781225pt;}
.h3_c00487{height:62.812475pt;}
.h7_c00487{height:67.803723pt;}
.h0_c00487{height:1122.666667pt;}
.w0_c00487{width:793.333333pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:113.599955pt;}
.xf_c00487{left:126.559949pt;}
.x9_c00487{left:138.239945pt;}
.x3_c00487{left:160.799936pt;}
.x2_c00487{left:385.919568pt;}
.x4_c00487{left:396.958559pt;}
.xc_c00487{left:539.999784pt;}
.xd_c00487{left:571.519771pt;}
.xe_c00487{left:587.839765pt;}
.x6_c00487{left:619.359752pt;}
.x7_c00487{left:633.279747pt;}
.xa_c00487{left:641.919743pt;}
.xb_c00487{left:655.839738pt;}
.x5_c00487{left:673.918945pt;}
.x8_c00487{left:686.559694pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6516717b5c5110e040ea0907.woff2')format("woff");}.ff1_c00488{font-family:ff1_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:ff2_c00488;src:url('chunks/assets/font_31a5e4e395c85deb6586eeb2.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_0fd400307d1a88d4e6595e32.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00488{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls3_c00488{letter-spacing:0.000000px;}
.ls1_c00488{letter-spacing:0.011169px;}
.ls2_c00488{letter-spacing:0.189300px;}
.ls0_c00488{letter-spacing:0.374281px;}
.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;}
}
.ws2_c00488{word-spacing:-14.939994px;}
.ws0_c00488{word-spacing:-12.434276px;}
.ws1_c00488{word-spacing:-9.731165px;}
.ws3_c00488{word-spacing:0.000000px;}
._7_c00488{margin-left:-9.810361px;}
._1_c00488{margin-left:-1.105374px;}
._0_c00488{width:1.478392px;}
._6_c00488{width:4.624894px;}
._4_c00488{width:5.768233px;}
._5_c00488{width:6.782651px;}
._2_c00488{width:12.815325px;}
._3_c00488{width:13.986701px;}
.fc0_c00488{color:rgb(0,0,0);}
.fs4_c00488{font-size:38.879984px;}
.fs3_c00488{font-size:48.239981px;}
.fs0_c00488{font-size:59.759976px;}
.fs1_c00488{font-size:66.239974px;}
.fs2_c00488{font-size:71.999971px;}
.y0_c00488{bottom:0.000000px;}
.y4_c00488{bottom:75.900270px;}
.y3_c00488{bottom:114.060254px;}
.y21_c00488{bottom:133.679947px;}
.y20_c00488{bottom:152.039939px;}
.y1f_c00488{bottom:170.039932px;}
.y1e_c00488{bottom:176.879929px;}
.y1d_c00488{bottom:188.219925px;}
.y1c_c00488{bottom:273.179891px;}
.y1b_c00488{bottom:319.079872px;}
.y1a_c00488{bottom:365.159854px;}
.y19_c00488{bottom:411.239836px;}
.y18_c00488{bottom:457.319817px;}
.y17_c00488{bottom:503.399799px;}
.y16_c00488{bottom:549.479780px;}
.y15_c00488{bottom:595.379762px;}
.y14_c00488{bottom:641.459743px;}
.y13_c00488{bottom:687.539725px;}
.y12_c00488{bottom:733.619707px;}
.y11_c00488{bottom:779.699688px;}
.y10_c00488{bottom:825.599670px;}
.yf_c00488{bottom:857.099657px;}
.ye_c00488{bottom:888.059645px;}
.yd_c00488{bottom:919.199632px;}
.yb_c00488{bottom:950.159620px;}
.yc_c00488{bottom:958.439617px;}
.ya_c00488{bottom:981.299607px;}
.y9_c00488{bottom:1012.259595px;}
.y8_c00488{bottom:1043.399583px;}
.y7_c00488{bottom:1074.359570px;}
.y6_c00488{bottom:1105.499558px;}
.y5_c00488{bottom:1136.459545px;}
.y2_c00488{bottom:1176.059530px;}
.y1_c00488{bottom:1196.219522px;}
.h7_c00488{height:38.158578px;}
.h4_c00488{height:47.321348px;}
.h8_c00488{height:49.284472px;}
.h2_c00488{height:54.628572px;}
.h1_c00488{height:58.651148px;}
.h3_c00488{height:70.628878px;}
.h5_c00488{height:70.664034px;}
.h6_c00488{height:72.562471px;}
.h0_c00488{height:1263.000000px;}
.w0_c00488{width:892.500000px;}
.x0_c00488{left:0.000000px;}
.x5_c00488{left:127.620262px;}
.xa_c00488{left:142.199943px;}
.x6_c00488{left:180.719928px;}
.x1_c00488{left:181.799927px;}
.x7_c00488{left:262.259895px;}
.x8_c00488{left:280.619888px;}
.x2_c00488{left:329.039408px;}
.x4_c00488{left:433.979826px;}
.x9_c00488{left:446.399754px;}
.x3_c00488{left:765.359694px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls3_c00488{letter-spacing:0.000000pt;}
.ls1_c00488{letter-spacing:0.009928pt;}
.ls2_c00488{letter-spacing:0.168267pt;}
.ls0_c00488{letter-spacing:0.332694pt;}
.ws2_c00488{word-spacing:-13.279995pt;}
.ws0_c00488{word-spacing:-11.052689pt;}
.ws1_c00488{word-spacing:-8.649924pt;}
.ws3_c00488{word-spacing:0.000000pt;}
._7_c00488{margin-left:-8.720321pt;}
._1_c00488{margin-left:-0.982555pt;}
._0_c00488{width:1.314126pt;}
._6_c00488{width:4.111017pt;}
._4_c00488{width:5.127318pt;}
._5_c00488{width:6.029023pt;}
._2_c00488{width:11.391400pt;}
._3_c00488{width:12.432623pt;}
.fs4_c00488{font-size:34.559986pt;}
.fs3_c00488{font-size:42.879983pt;}
.fs0_c00488{font-size:53.119979pt;}
.fs1_c00488{font-size:58.879976pt;}
.fs2_c00488{font-size:63.999974pt;}
.y0_c00488{bottom:0.000000pt;}
.y4_c00488{bottom:67.466906pt;}
.y3_c00488{bottom:101.386893pt;}
.y21_c00488{bottom:118.826619pt;}
.y20_c00488{bottom:135.146613pt;}
.y1f_c00488{bottom:151.146606pt;}
.y1e_c00488{bottom:157.226604pt;}
.y1d_c00488{bottom:167.306600pt;}
.y1c_c00488{bottom:242.826570pt;}
.y1b_c00488{bottom:283.626553pt;}
.y1a_c00488{bottom:324.586537pt;}
.y19_c00488{bottom:365.546520pt;}
.y18_c00488{bottom:406.506504pt;}
.y17_c00488{bottom:447.466488pt;}
.y16_c00488{bottom:488.426471pt;}
.y15_c00488{bottom:529.226455pt;}
.y14_c00488{bottom:570.186439pt;}
.y13_c00488{bottom:611.146422pt;}
.y12_c00488{bottom:652.106406pt;}
.y11_c00488{bottom:693.066389pt;}
.y10_c00488{bottom:733.866373pt;}
.yf_c00488{bottom:761.866362pt;}
.ye_c00488{bottom:789.386351pt;}
.yd_c00488{bottom:817.066340pt;}
.yb_c00488{bottom:844.586329pt;}
.yc_c00488{bottom:851.946326pt;}
.ya_c00488{bottom:872.266318pt;}
.y9_c00488{bottom:899.786307pt;}
.y8_c00488{bottom:927.466296pt;}
.y7_c00488{bottom:954.986285pt;}
.y6_c00488{bottom:982.666274pt;}
.y5_c00488{bottom:1010.186263pt;}
.y2_c00488{bottom:1045.386249pt;}
.y1_c00488{bottom:1063.306241pt;}
.h7_c00488{height:33.918736pt;}
.h4_c00488{height:42.063421pt;}
.h8_c00488{height:43.808420pt;}
.h2_c00488{height:48.558731pt;}
.h1_c00488{height:52.134354pt;}
.h3_c00488{height:62.781225pt;}
.h5_c00488{height:62.812475pt;}
.h6_c00488{height:64.499974pt;}
.h0_c00488{height:1122.666667pt;}
.w0_c00488{width:793.333333pt;}
.x0_c00488{left:0.000000pt;}
.x5_c00488{left:113.440233pt;}
.xa_c00488{left:126.399949pt;}
.x6_c00488{left:160.639936pt;}
.x1_c00488{left:161.599935pt;}
.x7_c00488{left:233.119907pt;}
.x8_c00488{left:249.439900pt;}
.x2_c00488{left:292.479474pt;}
.x4_c00488{left:385.759846pt;}
.x9_c00488{left:396.799781pt;}
.x3_c00488{left:680.319728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94d140da7a9263d84ba74e45.woff2')format("woff");}.ff1_c00489{font-family:ff1_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:ff2_c00489;src:url('chunks/assets/font_cb4d05c18b0602b9dde0ea7c.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_b353e75a86075db6f5e6e43a.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_3e987b4a7763214f5a0db678.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_ef9e51c0e53473a397998540.woff2')format("woff");}.ff5_c00489{font-family:ff5_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;}
.m0_c00489{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls1_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:4.333198px;}
.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:0.000000px;}
._1_c00489{margin-left:-1.105374px;}
._0_c00489{width:1.195563px;}
._3_c00489{width:2.997731px;}
._2_c00489{width:4.450198px;}
._7_c00489{width:7.190101px;}
._8_c00489{width:8.593856px;}
._5_c00489{width:14.171104px;}
._6_c00489{width:16.169478px;}
._4_c00489{width:19.654679px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs0_c00489{font-size:59.759976px;}
.fs1_c00489{font-size:66.239974px;}
.fs2_c00489{font-size:71.999971px;}
.y0_c00489{bottom:0.000000px;}
.y4_c00489{bottom:75.719970px;}
.y3_c00489{bottom:113.879954px;}
.y12_c00489{bottom:286.319885px;}
.y11_c00489{bottom:317.279873px;}
.y10_c00489{bottom:363.359855px;}
.yf_c00489{bottom:394.499842px;}
.ye_c00489{bottom:425.459830px;}
.yd_c00489{bottom:456.599817px;}
.yc_c00489{bottom:502.499799px;}
.yb_c00489{bottom:533.639787px;}
.ya_c00489{bottom:564.599774px;}
.y9_c00489{bottom:602.939759px;}
.y8_c00489{bottom:624.719750px;}
.y7_c00489{bottom:665.039734px;}
.y6_c00489{bottom:1086.599565px;}
.y5_c00489{bottom:1117.739553px;}
.y2_c00489{bottom:1156.979537px;}
.y1_c00489{bottom:1195.859522px;}
.h2_c00489{height:54.628572px;}
.h1_c00489{height:58.651148px;}
.h4_c00489{height:65.010911px;}
.h5_c00489{height:70.664034px;}
.h3_c00489{height:72.562471px;}
.h0_c00489{height:1263.000000px;}
.w0_c00489{width:892.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:127.799949px;}
.x4_c00489{left:135.719946px;}
.x6_c00489{left:180.899928px;}
.x5_c00489{left:380.339398px;}
.x2_c00489{left:434.159514px;}
.x3_c00489{left:570.419802px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls1_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:3.851732pt;}
.ws0_c00489{word-spacing:0.000000pt;}
._1_c00489{margin-left:-0.982555pt;}
._0_c00489{width:1.062723pt;}
._3_c00489{width:2.664650pt;}
._2_c00489{width:3.955732pt;}
._7_c00489{width:6.391201pt;}
._8_c00489{width:7.638983pt;}
._5_c00489{width:12.596537pt;}
._6_c00489{width:14.372869pt;}
._4_c00489{width:17.470826pt;}
.fs0_c00489{font-size:53.119979pt;}
.fs1_c00489{font-size:58.879976pt;}
.fs2_c00489{font-size:63.999974pt;}
.y0_c00489{bottom:0.000000pt;}
.y4_c00489{bottom:67.306640pt;}
.y3_c00489{bottom:101.226626pt;}
.y12_c00489{bottom:254.506565pt;}
.y11_c00489{bottom:282.026554pt;}
.y10_c00489{bottom:322.986537pt;}
.yf_c00489{bottom:350.666526pt;}
.ye_c00489{bottom:378.186515pt;}
.yd_c00489{bottom:405.866504pt;}
.yc_c00489{bottom:446.666488pt;}
.yb_c00489{bottom:474.346477pt;}
.ya_c00489{bottom:501.866466pt;}
.y9_c00489{bottom:535.946452pt;}
.y8_c00489{bottom:555.306445pt;}
.y7_c00489{bottom:591.146430pt;}
.y6_c00489{bottom:965.866280pt;}
.y5_c00489{bottom:993.546269pt;}
.y2_c00489{bottom:1028.426255pt;}
.y1_c00489{bottom:1062.986241pt;}
.h2_c00489{height:48.558731pt;}
.h1_c00489{height:52.134354pt;}
.h4_c00489{height:57.787477pt;}
.h5_c00489{height:62.812475pt;}
.h3_c00489{height:64.499974pt;}
.h0_c00489{height:1122.666667pt;}
.w0_c00489{width:793.333333pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:113.599955pt;}
.x4_c00489{left:120.639952pt;}
.x6_c00489{left:160.799936pt;}
.x5_c00489{left:338.079465pt;}
.x2_c00489{left:385.919568pt;}
.x3_c00489{left:507.039824pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a17756f58bd0b83d868b173a.woff2')format("woff");}.ff1_c00490{font-family:ff1_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:ff2_c00490;src:url('chunks/assets/font_db6bc7915304a49a45342f44.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_e90581702deaaf0dd70f6fc0.woff2')format("woff");}.ff3_c00490{font-family:ff3_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;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:1.311035;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls6_c00490{letter-spacing:0.000000px;}
.ls1_c00490{letter-spacing:0.009900px;}
.ls4_c00490{letter-spacing:0.011169px;}
.ls3_c00490{letter-spacing:0.012620px;}
.ls0_c00490{letter-spacing:0.012664px;}
.ls2_c00490{letter-spacing:0.153901px;}
.ls5_c00490{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00490{word-spacing:-14.939994px;}
.ws0_c00490{word-spacing:-10.452660px;}
.ws1_c00490{word-spacing:-10.452616px;}
.ws3_c00490{word-spacing:-9.731165px;}
.ws4_c00490{word-spacing:0.000000px;}
._2_c00490{margin-left:-12.716934px;}
._1_c00490{margin-left:-1.105374px;}
._0_c00490{width:1.478392px;}
._3_c00490{width:5.232398px;}
.fc0_c00490{color:rgb(0,0,0);}
.fs4_c00490{font-size:38.879984px;}
.fs3_c00490{font-size:41.759983px;}
.fs0_c00490{font-size:59.759976px;}
.fs1_c00490{font-size:66.239974px;}
.fs2_c00490{font-size:71.999971px;}
.y0_c00490{bottom:0.000000px;}
.y4_c00490{bottom:75.720270px;}
.y3_c00490{bottom:113.880254px;}
.y1e_c00490{bottom:133.139947px;}
.y1d_c00490{bottom:150.419940px;}
.y1c_c00490{bottom:157.259937px;}
.y1b_c00490{bottom:167.699933px;}
.y1a_c00490{bottom:184.979926px;}
.y19_c00490{bottom:191.819923px;}
.y18_c00490{bottom:223.139911px;}
.y17_c00490{bottom:240.599904px;}
.y16_c00490{bottom:248.159901px;}
.y15_c00490{bottom:281.279887px;}
.y13_c00490{bottom:343.919862px;}
.y14_c00490{bottom:351.479859px;}
.y12_c00490{bottom:365.699854px;}
.y11_c00490{bottom:405.839838px;}
.y10_c00490{bottom:542.639783px;}
.ye_c00490{bottom:579.359768px;}
.yf_c00490{bottom:586.919765px;}
.yd_c00490{bottom:601.319759px;}
.yc_c00490{bottom:641.459743px;}
.yb_c00490{bottom:786.539685px;}
.ya_c00490{bottom:817.499673px;}
.y9_c00490{bottom:863.579655px;}
.y7_c00490{bottom:908.399637px;}
.y8_c00490{bottom:915.959634px;}
.y6_c00490{bottom:937.019625px;}
.y5_c00490{bottom:977.159609px;}
.y2_c00490{bottom:1175.879530px;}
.y1_c00490{bottom:1196.039522px;}
.h8_c00490{height:38.158578px;}
.h5_c00490{height:40.985140px;}
.h2_c00490{height:54.628572px;}
.h1_c00490{height:58.651148px;}
.h4_c00490{height:65.010911px;}
.h6_c00490{height:70.628878px;}
.h3_c00490{height:70.664034px;}
.h7_c00490{height:72.562471px;}
.h0_c00490{height:1263.000000px;}
.w0_c00490{width:892.500000px;}
.x0_c00490{left:0.000000px;}
.x5_c00490{left:127.800262px;}
.x10_c00490{left:134.459946px;}
.x15_c00490{left:142.379943px;}
.x14_c00490{left:143.459943px;}
.x7_c00490{left:147.419941px;}
.xe_c00490{left:151.739939px;}
.xc_c00490{left:180.899272px;}
.x1_c00490{left:181.979927px;}
.x8_c00490{left:307.620020px;}
.x2_c00490{left:329.219408px;}
.x11_c00490{left:331.560626px;}
.x4_c00490{left:434.159826px;}
.xb_c00490{left:446.579821px;}
.x12_c00490{left:545.939782px;}
.x13_c00490{left:561.599775px;}
.x9_c00490{left:570.059772px;}
.xa_c00490{left:585.719766px;}
.xd_c00490{left:601.919555px;}
.xf_c00490{left:605.159758px;}
.x6_c00490{left:738.539705px;}
.x3_c00490{left:765.539694px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls6_c00490{letter-spacing:0.000000pt;}
.ls1_c00490{letter-spacing:0.008800pt;}
.ls4_c00490{letter-spacing:0.009928pt;}
.ls3_c00490{letter-spacing:0.011218pt;}
.ls0_c00490{letter-spacing:0.011257pt;}
.ls2_c00490{letter-spacing:0.136801pt;}
.ls5_c00490{letter-spacing:0.168267pt;}
.ws2_c00490{word-spacing:-13.279995pt;}
.ws0_c00490{word-spacing:-9.291253pt;}
.ws1_c00490{word-spacing:-9.291214pt;}
.ws3_c00490{word-spacing:-8.649924pt;}
.ws4_c00490{word-spacing:0.000000pt;}
._2_c00490{margin-left:-11.303941pt;}
._1_c00490{margin-left:-0.982555pt;}
._0_c00490{width:1.314126pt;}
._3_c00490{width:4.651021pt;}
.fs4_c00490{font-size:34.559986pt;}
.fs3_c00490{font-size:37.119985pt;}
.fs0_c00490{font-size:53.119979pt;}
.fs1_c00490{font-size:58.879976pt;}
.fs2_c00490{font-size:63.999974pt;}
.y0_c00490{bottom:0.000000pt;}
.y4_c00490{bottom:67.306906pt;}
.y3_c00490{bottom:101.226893pt;}
.y1e_c00490{bottom:118.346619pt;}
.y1d_c00490{bottom:133.706613pt;}
.y1c_c00490{bottom:139.786611pt;}
.y1b_c00490{bottom:149.066607pt;}
.y1a_c00490{bottom:164.426601pt;}
.y19_c00490{bottom:170.506598pt;}
.y18_c00490{bottom:198.346587pt;}
.y17_c00490{bottom:213.866581pt;}
.y16_c00490{bottom:220.586578pt;}
.y15_c00490{bottom:250.026567pt;}
.y13_c00490{bottom:305.706544pt;}
.y14_c00490{bottom:312.426542pt;}
.y12_c00490{bottom:325.066537pt;}
.y11_c00490{bottom:360.746522pt;}
.y10_c00490{bottom:482.346474pt;}
.ye_c00490{bottom:514.986461pt;}
.yf_c00490{bottom:521.706458pt;}
.yd_c00490{bottom:534.506453pt;}
.yc_c00490{bottom:570.186439pt;}
.yb_c00490{bottom:699.146387pt;}
.ya_c00490{bottom:726.666376pt;}
.y9_c00490{bottom:767.626360pt;}
.y7_c00490{bottom:807.466344pt;}
.y8_c00490{bottom:814.186341pt;}
.y6_c00490{bottom:832.906334pt;}
.y5_c00490{bottom:868.586319pt;}
.y2_c00490{bottom:1045.226249pt;}
.y1_c00490{bottom:1063.146241pt;}
.h8_c00490{height:33.918736pt;}
.h5_c00490{height:36.431235pt;}
.h2_c00490{height:48.558731pt;}
.h1_c00490{height:52.134354pt;}
.h4_c00490{height:57.787477pt;}
.h6_c00490{height:62.781225pt;}
.h3_c00490{height:62.812475pt;}
.h7_c00490{height:64.499974pt;}
.h0_c00490{height:1122.666667pt;}
.w0_c00490{width:793.333333pt;}
.x0_c00490{left:0.000000pt;}
.x5_c00490{left:113.600233pt;}
.x10_c00490{left:119.519952pt;}
.x15_c00490{left:126.559949pt;}
.x14_c00490{left:127.519949pt;}
.x7_c00490{left:131.039948pt;}
.xe_c00490{left:134.879946pt;}
.xc_c00490{left:160.799353pt;}
.x1_c00490{left:161.759935pt;}
.x8_c00490{left:273.440018pt;}
.x2_c00490{left:292.639474pt;}
.x11_c00490{left:294.720556pt;}
.x4_c00490{left:385.919846pt;}
.xb_c00490{left:396.959841pt;}
.x12_c00490{left:485.279806pt;}
.x13_c00490{left:499.199800pt;}
.x9_c00490{left:506.719797pt;}
.xa_c00490{left:520.639792pt;}
.xd_c00490{left:535.039604pt;}
.xf_c00490{left:537.919785pt;}
.x6_c00490{left:656.479737pt;}
.x3_c00490{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fea8d921d84d2bf7cfd606a2.woff2')format("woff");}.ff1_c00491{font-family:ff1_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:ff2_c00491;src:url('chunks/assets/font_59916f31b0da5b0a8d8e2705.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.311035;font-style:normal;font-weight:normal;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_9ff6d8ef3b25a7186915b59a.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;}
.m0_c00491{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls4_c00491{letter-spacing:0.000000px;}
.ls2_c00491{letter-spacing:0.011169px;}
.ls0_c00491{letter-spacing:0.012664px;}
.ls1_c00491{letter-spacing:0.153901px;}
.ls3_c00491{letter-spacing:0.189300px;}
.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;}
}
.ws2_c00491{word-spacing:-14.939994px;}
.ws0_c00491{word-spacing:-10.452660px;}
.ws1_c00491{word-spacing:-9.731165px;}
.ws3_c00491{word-spacing:0.000000px;}
._5_c00491{margin-left:-12.716934px;}
._1_c00491{margin-left:-1.105374px;}
._0_c00491{width:1.195563px;}
._4_c00491{width:5.938094px;}
._3_c00491{width:7.910533px;}
._2_c00491{width:15.835210px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs4_c00491{font-size:38.879984px;}
.fs3_c00491{font-size:41.759983px;}
.fs0_c00491{font-size:59.759976px;}
.fs1_c00491{font-size:66.239974px;}
.fs2_c00491{font-size:71.999971px;}
.y0_c00491{bottom:0.000000px;}
.y4_c00491{bottom:75.719970px;}
.y3_c00491{bottom:113.879954px;}
.y1c_c00491{bottom:133.499947px;}
.y1b_c00491{bottom:151.499939px;}
.y1a_c00491{bottom:158.339937px;}
.y19_c00491{bottom:168.779932px;}
.y18_c00491{bottom:186.059926px;}
.y17_c00491{bottom:192.899923px;}
.y16_c00491{bottom:204.239918px;}
.y15_c00491{bottom:319.439872px;}
.y14_c00491{bottom:350.399860px;}
.y13_c00491{bottom:381.539847px;}
.y12_c00491{bottom:419.699832px;}
.y10_c00491{bottom:456.599817px;}
.y11_c00491{bottom:464.159814px;}
.yf_c00491{bottom:478.379809px;}
.ye_c00491{bottom:518.519793px;}
.yd_c00491{bottom:760.799696px;}
.yc_c00491{bottom:791.939683px;}
.yb_c00491{bottom:830.099668px;}
.y9_c00491{bottom:866.999653px;}
.ya_c00491{bottom:874.559650px;}
.y8_c00491{bottom:888.779644px;}
.y7_c00491{bottom:928.919628px;}
.y6_c00491{bottom:1086.959565px;}
.y5_c00491{bottom:1118.099553px;}
.y2_c00491{bottom:1156.979537px;}
.y1_c00491{bottom:1195.859522px;}
.h8_c00491{height:38.158578px;}
.h6_c00491{height:40.985140px;}
.h9_c00491{height:49.284472px;}
.h2_c00491{height:54.628572px;}
.h1_c00491{height:58.651148px;}
.h7_c00491{height:64.978568px;}
.h5_c00491{height:65.010911px;}
.h3_c00491{height:70.664034px;}
.h4_c00491{height:72.562471px;}
.h0_c00491{height:1263.000000px;}
.w0_c00491{width:892.500000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:127.799949px;}
.x5_c00491{left:134.459946px;}
.xe_c00491{left:142.379943px;}
.x3_c00491{left:180.899928px;}
.x6_c00491{left:270.359051px;}
.xb_c00491{left:341.460942px;}
.x2_c00491{left:434.159514px;}
.x9_c00491{left:446.580264px;}
.xc_c00491{left:536.219786px;}
.xd_c00491{left:551.879779px;}
.x7_c00491{left:607.139757px;}
.x8_c00491{left:622.799751px;}
.xa_c00491{left:705.958750px;}
.x4_c00491{left:710.998773px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls4_c00491{letter-spacing:0.000000pt;}
.ls2_c00491{letter-spacing:0.009928pt;}
.ls0_c00491{letter-spacing:0.011257pt;}
.ls1_c00491{letter-spacing:0.136801pt;}
.ls3_c00491{letter-spacing:0.168267pt;}
.ws2_c00491{word-spacing:-13.279995pt;}
.ws0_c00491{word-spacing:-9.291253pt;}
.ws1_c00491{word-spacing:-8.649924pt;}
.ws3_c00491{word-spacing:0.000000pt;}
._5_c00491{margin-left:-11.303941pt;}
._1_c00491{margin-left:-0.982555pt;}
._0_c00491{width:1.062723pt;}
._4_c00491{width:5.278306pt;}
._3_c00491{width:7.031585pt;}
._2_c00491{width:14.075742pt;}
.fs4_c00491{font-size:34.559986pt;}
.fs3_c00491{font-size:37.119985pt;}
.fs0_c00491{font-size:53.119979pt;}
.fs1_c00491{font-size:58.879976pt;}
.fs2_c00491{font-size:63.999974pt;}
.y0_c00491{bottom:0.000000pt;}
.y4_c00491{bottom:67.306640pt;}
.y3_c00491{bottom:101.226626pt;}
.y1c_c00491{bottom:118.666619pt;}
.y1b_c00491{bottom:134.666613pt;}
.y1a_c00491{bottom:140.746610pt;}
.y19_c00491{bottom:150.026607pt;}
.y18_c00491{bottom:165.386601pt;}
.y17_c00491{bottom:171.466598pt;}
.y16_c00491{bottom:181.546594pt;}
.y15_c00491{bottom:283.946553pt;}
.y14_c00491{bottom:311.466542pt;}
.y13_c00491{bottom:339.146531pt;}
.y12_c00491{bottom:373.066517pt;}
.y10_c00491{bottom:405.866504pt;}
.y11_c00491{bottom:412.586502pt;}
.yf_c00491{bottom:425.226497pt;}
.ye_c00491{bottom:460.906482pt;}
.yd_c00491{bottom:676.266396pt;}
.yc_c00491{bottom:703.946385pt;}
.yb_c00491{bottom:737.866372pt;}
.y9_c00491{bottom:770.666358pt;}
.ya_c00491{bottom:777.386356pt;}
.y8_c00491{bottom:790.026351pt;}
.y7_c00491{bottom:825.706336pt;}
.y6_c00491{bottom:966.186280pt;}
.y5_c00491{bottom:993.866269pt;}
.y2_c00491{bottom:1028.426255pt;}
.y1_c00491{bottom:1062.986241pt;}
.h8_c00491{height:33.918736pt;}
.h6_c00491{height:36.431235pt;}
.h9_c00491{height:43.808420pt;}
.h2_c00491{height:48.558731pt;}
.h1_c00491{height:52.134354pt;}
.h7_c00491{height:57.758727pt;}
.h5_c00491{height:57.787477pt;}
.h3_c00491{height:62.812475pt;}
.h4_c00491{height:64.499974pt;}
.h0_c00491{height:1122.666667pt;}
.w0_c00491{width:793.333333pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:113.599955pt;}
.x5_c00491{left:119.519952pt;}
.xe_c00491{left:126.559949pt;}
.x3_c00491{left:160.799936pt;}
.x6_c00491{left:240.319156pt;}
.xb_c00491{left:303.520837pt;}
.x2_c00491{left:385.919568pt;}
.x9_c00491{left:396.960234pt;}
.xc_c00491{left:476.639809pt;}
.xd_c00491{left:490.559804pt;}
.x7_c00491{left:539.679784pt;}
.x8_c00491{left:553.599779pt;}
.xa_c00491{left:627.518889pt;}
.x4_c00491{left:631.998909pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_775cd19d6f30bf80081a24f6.woff2')format("woff");}.ff1_c00492{font-family:ff1_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:ff2_c00492;src:url('chunks/assets/font_9aabde5e53c38ddb5b4970a8.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.311035;font-style:normal;font-weight:normal;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_9ff6d8ef3b25a7186915b59a.woff2')format("woff");}.ff4_c00492{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls3_c00492{letter-spacing:0.000000px;}
.ls2_c00492{letter-spacing:0.011169px;}
.ls0_c00492{letter-spacing:0.012664px;}
.ls1_c00492{letter-spacing:0.153901px;}
.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:-10.452660px;}
.ws1_c00492{word-spacing:-9.731165px;}
.ws2_c00492{word-spacing:0.000000px;}
._2_c00492{margin-left:-12.716934px;}
._1_c00492{margin-left:-1.105374px;}
._0_c00492{width:1.478392px;}
.fc0_c00492{color:rgb(0,0,0);}
.fs4_c00492{font-size:38.879984px;}
.fs3_c00492{font-size:41.759983px;}
.fs0_c00492{font-size:59.759976px;}
.fs1_c00492{font-size:66.239974px;}
.fs2_c00492{font-size:71.999971px;}
.y0_c00492{bottom:0.000000px;}
.y4_c00492{bottom:75.720270px;}
.y3_c00492{bottom:113.880254px;}
.y1a_c00492{bottom:133.499947px;}
.y19_c00492{bottom:151.859939px;}
.y18_c00492{bottom:169.859932px;}
.y17_c00492{bottom:176.699929px;}
.y16_c00492{bottom:187.139925px;}
.y15_c00492{bottom:204.419918px;}
.y14_c00492{bottom:211.259915px;}
.y13_c00492{bottom:222.419911px;}
.y12_c00492{bottom:383.879846px;}
.y11_c00492{bottom:414.839834px;}
.y10_c00492{bottom:453.179819px;}
.ye_c00492{bottom:489.899804px;}
.yf_c00492{bottom:497.459801px;}
.yd_c00492{bottom:511.859795px;}
.yc_c00492{bottom:551.999779px;}
.yb_c00492{bottom:793.199683px;}
.ya_c00492{bottom:824.339670px;}
.y9_c00492{bottom:862.499655px;}
.y7_c00492{bottom:899.399640px;}
.y8_c00492{bottom:906.959637px;}
.y6_c00492{bottom:921.179632px;}
.y5_c00492{bottom:961.319615px;}
.y2_c00492{bottom:1175.879530px;}
.y1_c00492{bottom:1196.039522px;}
.h8_c00492{height:38.158578px;}
.h5_c00492{height:40.985140px;}
.h9_c00492{height:49.284472px;}
.h2_c00492{height:54.628572px;}
.h1_c00492{height:58.651148px;}
.h7_c00492{height:64.978568px;}
.h4_c00492{height:65.010911px;}
.h6_c00492{height:70.664034px;}
.h3_c00492{height:72.562471px;}
.h0_c00492{height:1263.000000px;}
.w0_c00492{width:892.500000px;}
.x0_c00492{left:0.000000px;}
.x5_c00492{left:127.800262px;}
.x7_c00492{left:130.319948px;}
.x12_c00492{left:142.379943px;}
.xe_c00492{left:152.819939px;}
.xc_c00492{left:180.899928px;}
.x1_c00492{left:181.979927px;}
.xf_c00492{left:281.519379px;}
.x2_c00492{left:329.219408px;}
.x8_c00492{left:372.599751px;}
.x4_c00492{left:434.159826px;}
.xb_c00492{left:446.579796px;}
.x9_c00492{left:505.079798px;}
.xa_c00492{left:520.739792px;}
.x10_c00492{left:595.979762px;}
.x11_c00492{left:611.639755px;}
.xd_c00492{left:693.000405px;}
.x6_c00492{left:700.199720px;}
.x3_c00492{left:765.539694px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls3_c00492{letter-spacing:0.000000pt;}
.ls2_c00492{letter-spacing:0.009928pt;}
.ls0_c00492{letter-spacing:0.011257pt;}
.ls1_c00492{letter-spacing:0.136801pt;}
.ws0_c00492{word-spacing:-9.291253pt;}
.ws1_c00492{word-spacing:-8.649924pt;}
.ws2_c00492{word-spacing:0.000000pt;}
._2_c00492{margin-left:-11.303941pt;}
._1_c00492{margin-left:-0.982555pt;}
._0_c00492{width:1.314126pt;}
.fs4_c00492{font-size:34.559986pt;}
.fs3_c00492{font-size:37.119985pt;}
.fs0_c00492{font-size:53.119979pt;}
.fs1_c00492{font-size:58.879976pt;}
.fs2_c00492{font-size:63.999974pt;}
.y0_c00492{bottom:0.000000pt;}
.y4_c00492{bottom:67.306906pt;}
.y3_c00492{bottom:101.226893pt;}
.y1a_c00492{bottom:118.666619pt;}
.y19_c00492{bottom:134.986613pt;}
.y18_c00492{bottom:150.986606pt;}
.y17_c00492{bottom:157.066604pt;}
.y16_c00492{bottom:166.346600pt;}
.y15_c00492{bottom:181.706594pt;}
.y14_c00492{bottom:187.786592pt;}
.y13_c00492{bottom:197.706588pt;}
.y12_c00492{bottom:341.226530pt;}
.y11_c00492{bottom:368.746519pt;}
.y10_c00492{bottom:402.826506pt;}
.ye_c00492{bottom:435.466492pt;}
.yf_c00492{bottom:442.186490pt;}
.yd_c00492{bottom:454.986485pt;}
.yc_c00492{bottom:490.666470pt;}
.yb_c00492{bottom:705.066385pt;}
.ya_c00492{bottom:732.746374pt;}
.y9_c00492{bottom:766.666360pt;}
.y7_c00492{bottom:799.466347pt;}
.y8_c00492{bottom:806.186344pt;}
.y6_c00492{bottom:818.826339pt;}
.y5_c00492{bottom:854.506325pt;}
.y2_c00492{bottom:1045.226249pt;}
.y1_c00492{bottom:1063.146241pt;}
.h8_c00492{height:33.918736pt;}
.h5_c00492{height:36.431235pt;}
.h9_c00492{height:43.808420pt;}
.h2_c00492{height:48.558731pt;}
.h1_c00492{height:52.134354pt;}
.h7_c00492{height:57.758727pt;}
.h4_c00492{height:57.787477pt;}
.h6_c00492{height:62.812475pt;}
.h3_c00492{height:64.499974pt;}
.h0_c00492{height:1122.666667pt;}
.w0_c00492{width:793.333333pt;}
.x0_c00492{left:0.000000pt;}
.x5_c00492{left:113.600233pt;}
.x7_c00492{left:115.839954pt;}
.x12_c00492{left:126.559949pt;}
.xe_c00492{left:135.839946pt;}
.xc_c00492{left:160.799936pt;}
.x1_c00492{left:161.759935pt;}
.xf_c00492{left:250.239448pt;}
.x2_c00492{left:292.639474pt;}
.x8_c00492{left:331.199779pt;}
.x4_c00492{left:385.919846pt;}
.xb_c00492{left:396.959818pt;}
.x9_c00492{left:448.959820pt;}
.xa_c00492{left:462.879815pt;}
.x10_c00492{left:529.759788pt;}
.x11_c00492{left:543.679783pt;}
.xd_c00492{left:616.000360pt;}
.x6_c00492{left:622.399751pt;}
.x3_c00492{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1ab859260a738d99b1cfa40.woff2')format("woff");}.ff1_c00493{font-family:ff1_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:ff2_c00493;src:url('chunks/assets/font_a76c0eb3cfe3d573047c4d0c.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00493{font-family:ff3_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:ff4_c00493;src:url('chunks/assets/font_9ff6d8ef3b25a7186915b59a.woff2')format("woff");}.ff4_c00493{font-family:ff4_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;}
.m0_c00493{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls3_c00493{letter-spacing:0.000000px;}
.ls2_c00493{letter-spacing:0.011169px;}
.ls0_c00493{letter-spacing:0.012664px;}
.ls1_c00493{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00493{word-spacing:-10.452660px;}
.ws1_c00493{word-spacing:-9.731165px;}
.ws2_c00493{word-spacing:0.000000px;}
._3_c00493{margin-left:-12.716934px;}
._1_c00493{margin-left:-1.105374px;}
._0_c00493{width:1.195563px;}
._2_c00493{width:4.940255px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs4_c00493{font-size:38.879984px;}
.fs3_c00493{font-size:41.759983px;}
.fs0_c00493{font-size:59.759976px;}
.fs1_c00493{font-size:66.239974px;}
.fs2_c00493{font-size:71.999971px;}
.y0_c00493{bottom:0.000000px;}
.y4_c00493{bottom:75.719970px;}
.y3_c00493{bottom:113.879954px;}
.y15_c00493{bottom:133.499947px;}
.y14_c00493{bottom:151.859939px;}
.y13_c00493{bottom:169.859932px;}
.y12_c00493{bottom:176.699929px;}
.y11_c00493{bottom:188.039925px;}
.y10_c00493{bottom:499.979800px;}
.yf_c00493{bottom:538.319785px;}
.yd_c00493{bottom:575.219770px;}
.ye_c00493{bottom:582.779767px;}
.yc_c00493{bottom:596.999761px;}
.yb_c00493{bottom:637.139745px;}
.ya_c00493{bottom:813.179675px;}
.y9_c00493{bottom:844.139662px;}
.y8_c00493{bottom:882.479647px;}
.y7_c00493{bottom:919.199632px;}
.y6_c00493{bottom:941.159624px;}
.y5_c00493{bottom:981.479607px;}
.y2_c00493{bottom:1156.979537px;}
.y1_c00493{bottom:1195.859522px;}
.h9_c00493{height:38.158578px;}
.h8_c00493{height:40.985140px;}
.ha_c00493{height:49.284472px;}
.h2_c00493{height:54.628572px;}
.h1_c00493{height:58.651148px;}
.h5_c00493{height:64.978568px;}
.h4_c00493{height:65.010911px;}
.h7_c00493{height:70.628878px;}
.h6_c00493{height:70.664034px;}
.h3_c00493{height:72.562471px;}
.h0_c00493{height:1263.000000px;}
.w0_c00493{width:892.500000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:127.799949px;}
.x4_c00493{left:129.779948px;}
.xc_c00493{left:142.379943px;}
.x8_c00493{left:159.299936px;}
.x6_c00493{left:180.899928px;}
.x5_c00493{left:339.479759px;}
.x9_c00493{left:341.459737px;}
.x2_c00493{left:434.159514px;}
.xa_c00493{left:536.219786px;}
.xb_c00493{left:551.879779px;}
.x3_c00493{left:710.999716px;}
.x7_c00493{left:718.920093px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls3_c00493{letter-spacing:0.000000pt;}
.ls2_c00493{letter-spacing:0.009928pt;}
.ls0_c00493{letter-spacing:0.011257pt;}
.ls1_c00493{letter-spacing:0.136801pt;}
.ws0_c00493{word-spacing:-9.291253pt;}
.ws1_c00493{word-spacing:-8.649924pt;}
.ws2_c00493{word-spacing:0.000000pt;}
._3_c00493{margin-left:-11.303941pt;}
._1_c00493{margin-left:-0.982555pt;}
._0_c00493{width:1.062723pt;}
._2_c00493{width:4.391338pt;}
.fs4_c00493{font-size:34.559986pt;}
.fs3_c00493{font-size:37.119985pt;}
.fs0_c00493{font-size:53.119979pt;}
.fs1_c00493{font-size:58.879976pt;}
.fs2_c00493{font-size:63.999974pt;}
.y0_c00493{bottom:0.000000pt;}
.y4_c00493{bottom:67.306640pt;}
.y3_c00493{bottom:101.226626pt;}
.y15_c00493{bottom:118.666619pt;}
.y14_c00493{bottom:134.986613pt;}
.y13_c00493{bottom:150.986606pt;}
.y12_c00493{bottom:157.066604pt;}
.y11_c00493{bottom:167.146600pt;}
.y10_c00493{bottom:444.426489pt;}
.yf_c00493{bottom:478.506475pt;}
.yd_c00493{bottom:511.306462pt;}
.ye_c00493{bottom:518.026459pt;}
.yc_c00493{bottom:530.666454pt;}
.yb_c00493{bottom:566.346440pt;}
.ya_c00493{bottom:722.826378pt;}
.y9_c00493{bottom:750.346367pt;}
.y8_c00493{bottom:784.426353pt;}
.y7_c00493{bottom:817.066340pt;}
.y6_c00493{bottom:836.586332pt;}
.y5_c00493{bottom:872.426318pt;}
.y2_c00493{bottom:1028.426255pt;}
.y1_c00493{bottom:1062.986241pt;}
.h9_c00493{height:33.918736pt;}
.h8_c00493{height:36.431235pt;}
.ha_c00493{height:43.808420pt;}
.h2_c00493{height:48.558731pt;}
.h1_c00493{height:52.134354pt;}
.h5_c00493{height:57.758727pt;}
.h4_c00493{height:57.787477pt;}
.h7_c00493{height:62.781225pt;}
.h6_c00493{height:62.812475pt;}
.h3_c00493{height:64.499974pt;}
.h0_c00493{height:1122.666667pt;}
.w0_c00493{width:793.333333pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:113.599955pt;}
.x4_c00493{left:115.359954pt;}
.xc_c00493{left:126.559949pt;}
.x8_c00493{left:141.599943pt;}
.x6_c00493{left:160.799936pt;}
.x5_c00493{left:301.759785pt;}
.x9_c00493{left:303.519766pt;}
.x2_c00493{left:385.919568pt;}
.xa_c00493{left:476.639809pt;}
.xb_c00493{left:490.559804pt;}
.x3_c00493{left:631.999747pt;}
.x7_c00493{left:639.040083pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0ebd5fa27d19b8f8861b0cf.woff2')format("woff");}.ff1_c00494{font-family:ff1_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:ff2_c00494;src:url('chunks/assets/font_f85a7eb22a4093bb97166649.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_9ff6d8ef3b25a7186915b59a.woff2')format("woff");}.ff3_c00494{font-family:ff3_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;}
.m0_c00494{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls3_c00494{letter-spacing:0.000000px;}
.ls2_c00494{letter-spacing:0.011169px;}
.ls0_c00494{letter-spacing:0.012664px;}
.ls1_c00494{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00494{word-spacing:-10.452660px;}
.ws1_c00494{word-spacing:-9.731165px;}
.ws2_c00494{word-spacing:0.000000px;}
._2_c00494{margin-left:-12.716934px;}
._1_c00494{margin-left:-1.105374px;}
._0_c00494{width:1.478392px;}
.fc0_c00494{color:rgb(0,0,0);}
.fs4_c00494{font-size:38.879984px;}
.fs3_c00494{font-size:41.759983px;}
.fs0_c00494{font-size:59.759976px;}
.fs1_c00494{font-size:66.239974px;}
.fs2_c00494{font-size:71.999971px;}
.y0_c00494{bottom:0.000000px;}
.y4_c00494{bottom:75.720270px;}
.y3_c00494{bottom:113.880254px;}
.y19_c00494{bottom:133.499947px;}
.y18_c00494{bottom:151.859939px;}
.y17_c00494{bottom:169.859932px;}
.y16_c00494{bottom:176.699929px;}
.y15_c00494{bottom:187.139925px;}
.y14_c00494{bottom:204.419918px;}
.y13_c00494{bottom:211.259915px;}
.y12_c00494{bottom:222.419911px;}
.y11_c00494{bottom:244.559902px;}
.y10_c00494{bottom:275.519890px;}
.yf_c00494{bottom:321.599871px;}
.yd_c00494{bottom:359.939856px;}
.ye_c00494{bottom:367.499853px;}
.yc_c00494{bottom:381.719847px;}
.yb_c00494{bottom:421.859831px;}
.ya_c00494{bottom:692.399723px;}
.y9_c00494{bottom:738.479705px;}
.y7_c00494{bottom:776.819689px;}
.y8_c00494{bottom:784.379686px;}
.y6_c00494{bottom:798.599681px;}
.y5_c00494{bottom:838.739665px;}
.y2_c00494{bottom:1175.879530px;}
.y1_c00494{bottom:1196.039522px;}
.h8_c00494{height:38.158578px;}
.h5_c00494{height:40.985140px;}
.h9_c00494{height:49.284472px;}
.h2_c00494{height:54.628572px;}
.h1_c00494{height:58.651148px;}
.h7_c00494{height:64.978568px;}
.h4_c00494{height:65.010911px;}
.h3_c00494{height:70.628878px;}
.h6_c00494{height:70.664034px;}
.h0_c00494{height:1263.000000px;}
.w0_c00494{width:892.500000px;}
.x0_c00494{left:0.000000px;}
.x5_c00494{left:127.800262px;}
.xd_c00494{left:142.379943px;}
.x7_c00494{left:159.299936px;}
.xc_c00494{left:180.899930px;}
.x1_c00494{left:181.979927px;}
.x2_c00494{left:329.219408px;}
.x8_c00494{left:341.459737px;}
.x4_c00494{left:434.159826px;}
.x9_c00494{left:536.219786px;}
.xa_c00494{left:551.879779px;}
.x6_c00494{left:670.499732px;}
.xb_c00494{left:671.578213px;}
.x3_c00494{left:765.539694px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls3_c00494{letter-spacing:0.000000pt;}
.ls2_c00494{letter-spacing:0.009928pt;}
.ls0_c00494{letter-spacing:0.011257pt;}
.ls1_c00494{letter-spacing:0.136801pt;}
.ws0_c00494{word-spacing:-9.291253pt;}
.ws1_c00494{word-spacing:-8.649924pt;}
.ws2_c00494{word-spacing:0.000000pt;}
._2_c00494{margin-left:-11.303941pt;}
._1_c00494{margin-left:-0.982555pt;}
._0_c00494{width:1.314126pt;}
.fs4_c00494{font-size:34.559986pt;}
.fs3_c00494{font-size:37.119985pt;}
.fs0_c00494{font-size:53.119979pt;}
.fs1_c00494{font-size:58.879976pt;}
.fs2_c00494{font-size:63.999974pt;}
.y0_c00494{bottom:0.000000pt;}
.y4_c00494{bottom:67.306906pt;}
.y3_c00494{bottom:101.226893pt;}
.y19_c00494{bottom:118.666619pt;}
.y18_c00494{bottom:134.986613pt;}
.y17_c00494{bottom:150.986606pt;}
.y16_c00494{bottom:157.066604pt;}
.y15_c00494{bottom:166.346600pt;}
.y14_c00494{bottom:181.706594pt;}
.y13_c00494{bottom:187.786592pt;}
.y12_c00494{bottom:197.706588pt;}
.y11_c00494{bottom:217.386580pt;}
.y10_c00494{bottom:244.906569pt;}
.yf_c00494{bottom:285.866552pt;}
.yd_c00494{bottom:319.946539pt;}
.ye_c00494{bottom:326.666536pt;}
.yc_c00494{bottom:339.306531pt;}
.yb_c00494{bottom:374.986517pt;}
.ya_c00494{bottom:615.466420pt;}
.y9_c00494{bottom:656.426404pt;}
.y7_c00494{bottom:690.506390pt;}
.y8_c00494{bottom:697.226388pt;}
.y6_c00494{bottom:709.866383pt;}
.y5_c00494{bottom:745.546368pt;}
.y2_c00494{bottom:1045.226249pt;}
.y1_c00494{bottom:1063.146241pt;}
.h8_c00494{height:33.918736pt;}
.h5_c00494{height:36.431235pt;}
.h9_c00494{height:43.808420pt;}
.h2_c00494{height:48.558731pt;}
.h1_c00494{height:52.134354pt;}
.h7_c00494{height:57.758727pt;}
.h4_c00494{height:57.787477pt;}
.h3_c00494{height:62.781225pt;}
.h6_c00494{height:62.812475pt;}
.h0_c00494{height:1122.666667pt;}
.w0_c00494{width:793.333333pt;}
.x0_c00494{left:0.000000pt;}
.x5_c00494{left:113.600233pt;}
.xd_c00494{left:126.559949pt;}
.x7_c00494{left:141.599943pt;}
.xc_c00494{left:160.799938pt;}
.x1_c00494{left:161.759935pt;}
.x2_c00494{left:292.639474pt;}
.x8_c00494{left:303.519766pt;}
.x4_c00494{left:385.919846pt;}
.x9_c00494{left:476.639809pt;}
.xa_c00494{left:490.559804pt;}
.x6_c00494{left:595.999762pt;}
.xb_c00494{left:596.958411pt;}
.x3_c00494{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c8677848e357f2fc53f0523.woff2')format("woff");}.ff1_c00495{font-family:ff1_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:ff2_c00495;src:url('chunks/assets/font_9326dea28cde8d0b463e3405.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_9ff6d8ef3b25a7186915b59a.woff2')format("woff");}.ff3_c00495{font-family:ff3_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:ff4_c00495;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00495{font-family:ff4_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls3_c00495{letter-spacing:0.000000px;}
.ls2_c00495{letter-spacing:0.011169px;}
.ls0_c00495{letter-spacing:0.012664px;}
.ls1_c00495{letter-spacing:0.153901px;}
.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:-10.452660px;}
.ws1_c00495{word-spacing:-9.731165px;}
.ws2_c00495{word-spacing:0.000000px;}
._2_c00495{margin-left:-12.716934px;}
._1_c00495{margin-left:-1.105374px;}
._0_c00495{width:1.195563px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs4_c00495{font-size:38.879984px;}
.fs3_c00495{font-size:41.759983px;}
.fs0_c00495{font-size:59.759976px;}
.fs1_c00495{font-size:66.239974px;}
.fs2_c00495{font-size:71.999971px;}
.y0_c00495{bottom:0.000000px;}
.y4_c00495{bottom:75.719970px;}
.y3_c00495{bottom:113.879954px;}
.y17_c00495{bottom:133.499947px;}
.y16_c00495{bottom:151.859939px;}
.y15_c00495{bottom:169.859932px;}
.y14_c00495{bottom:176.699929px;}
.y13_c00495{bottom:188.039925px;}
.y12_c00495{bottom:244.559902px;}
.y11_c00495{bottom:290.639884px;}
.y10_c00495{bottom:336.719865px;}
.yf_c00495{bottom:382.799847px;}
.ye_c00495{bottom:428.879828px;}
.yd_c00495{bottom:474.779810px;}
.yc_c00495{bottom:520.859792px;}
.yb_c00495{bottom:566.939773px;}
.ya_c00495{bottom:613.019755px;}
.y9_c00495{bottom:659.099736px;}
.y7_c00495{bottom:697.619721px;}
.y8_c00495{bottom:705.179718px;}
.y6_c00495{bottom:719.399712px;}
.y5_c00495{bottom:759.719696px;}
.y2_c00495{bottom:1156.979537px;}
.y1_c00495{bottom:1195.859522px;}
.h7_c00495{height:38.158578px;}
.h5_c00495{height:40.985140px;}
.h8_c00495{height:49.284472px;}
.h2_c00495{height:54.628572px;}
.h1_c00495{height:58.651148px;}
.h4_c00495{height:65.010911px;}
.h3_c00495{height:70.628878px;}
.h6_c00495{height:72.562471px;}
.h0_c00495{height:1263.000000px;}
.w0_c00495{width:892.500000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:127.799949px;}
.x4_c00495{left:141.299943px;}
.x8_c00495{left:142.379943px;}
.x5_c00495{left:281.519986px;}
.x2_c00495{left:434.159514px;}
.x6_c00495{left:595.979762px;}
.x7_c00495{left:611.639755px;}
.x3_c00495{left:695.159722px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls3_c00495{letter-spacing:0.000000pt;}
.ls2_c00495{letter-spacing:0.009928pt;}
.ls0_c00495{letter-spacing:0.011257pt;}
.ls1_c00495{letter-spacing:0.136801pt;}
.ws0_c00495{word-spacing:-9.291253pt;}
.ws1_c00495{word-spacing:-8.649924pt;}
.ws2_c00495{word-spacing:0.000000pt;}
._2_c00495{margin-left:-11.303941pt;}
._1_c00495{margin-left:-0.982555pt;}
._0_c00495{width:1.062723pt;}
.fs4_c00495{font-size:34.559986pt;}
.fs3_c00495{font-size:37.119985pt;}
.fs0_c00495{font-size:53.119979pt;}
.fs1_c00495{font-size:58.879976pt;}
.fs2_c00495{font-size:63.999974pt;}
.y0_c00495{bottom:0.000000pt;}
.y4_c00495{bottom:67.306640pt;}
.y3_c00495{bottom:101.226626pt;}
.y17_c00495{bottom:118.666619pt;}
.y16_c00495{bottom:134.986613pt;}
.y15_c00495{bottom:150.986606pt;}
.y14_c00495{bottom:157.066604pt;}
.y13_c00495{bottom:167.146600pt;}
.y12_c00495{bottom:217.386580pt;}
.y11_c00495{bottom:258.346563pt;}
.y10_c00495{bottom:299.306547pt;}
.yf_c00495{bottom:340.266531pt;}
.ye_c00495{bottom:381.226514pt;}
.yd_c00495{bottom:422.026498pt;}
.yc_c00495{bottom:462.986481pt;}
.yb_c00495{bottom:503.946465pt;}
.ya_c00495{bottom:544.906449pt;}
.y9_c00495{bottom:585.866432pt;}
.y7_c00495{bottom:620.106419pt;}
.y8_c00495{bottom:626.826416pt;}
.y6_c00495{bottom:639.466411pt;}
.y5_c00495{bottom:675.306397pt;}
.y2_c00495{bottom:1028.426255pt;}
.y1_c00495{bottom:1062.986241pt;}
.h7_c00495{height:33.918736pt;}
.h5_c00495{height:36.431235pt;}
.h8_c00495{height:43.808420pt;}
.h2_c00495{height:48.558731pt;}
.h1_c00495{height:52.134354pt;}
.h4_c00495{height:57.787477pt;}
.h3_c00495{height:62.781225pt;}
.h6_c00495{height:64.499974pt;}
.h0_c00495{height:1122.666667pt;}
.w0_c00495{width:793.333333pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:113.599955pt;}
.x4_c00495{left:125.599950pt;}
.x8_c00495{left:126.559949pt;}
.x5_c00495{left:250.239987pt;}
.x2_c00495{left:385.919568pt;}
.x6_c00495{left:529.759788pt;}
.x7_c00495{left:543.679783pt;}
.x3_c00495{left:617.919753pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4976999d4b77238d5ea63de.woff2')format("woff");}.ff1_c00496{font-family:ff1_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:ff2_c00496;src:url('chunks/assets/font_c5c7ea73e12c1e4586cec309.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_4740b00d74a4f420098fde1c.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.311035;font-style:normal;font-weight:normal;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_79bf05bbba273f33fd627d26.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;}
@font-face{font-family:ff5_c00496;src:url('chunks/assets/font_2d46f07d877feeb8e6e1b2a7.woff2')format("woff");}.ff5_c00496{font-family:ff5_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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls2_c00496{letter-spacing:0.000000px;}
.ls1_c00496{letter-spacing:0.009938px;}
.ls0_c00496{letter-spacing:0.021238px;}
.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.021231px;}
.ws1_c00496{word-spacing:-16.559993px;}
.ws2_c00496{word-spacing:0.000000px;}
._1_c00496{margin-left:-1.105374px;}
._0_c00496{width:1.478392px;}
._2_c00496{width:2.860673px;}
._7_c00496{width:4.124237px;}
._3_c00496{width:5.749238px;}
._6_c00496{width:7.455863px;}
._d_c00496{width:8.830687px;}
._4_c00496{width:11.366238px;}
._5_c00496{width:12.491832px;}
._b_c00496{width:15.199788px;}
._c_c00496{width:19.322018px;}
._a_c00496{width:25.335416px;}
._8_c00496{width:26.397061px;}
._9_c00496{width:27.965524px;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:59.759976px;}
.fs1_c00496{font-size:66.239974px;}
.fs2_c00496{font-size:71.999971px;}
.y0_c00496{bottom:0.000000px;}
.y4_c00496{bottom:75.720270px;}
.y3_c00496{bottom:113.880254px;}
.y1c_c00496{bottom:138.179945px;}
.y1b_c00496{bottom:169.139932px;}
.y1a_c00496{bottom:200.279920px;}
.y19_c00496{bottom:231.239908px;}
.y18_c00496{bottom:262.379895px;}
.y17_c00496{bottom:293.339883px;}
.y16_c00496{bottom:324.479870px;}
.y15_c00496{bottom:355.439858px;}
.y14_c00496{bottom:386.579845px;}
.y13_c00496{bottom:417.539833px;}
.y12_c00496{bottom:448.679821px;}
.y11_c00496{bottom:479.639808px;}
.y10_c00496{bottom:510.779796px;}
.yf_c00496{bottom:541.739783px;}
.ye_c00496{bottom:572.879771px;}
.yd_c00496{bottom:603.839758px;}
.yc_c00496{bottom:634.979746px;}
.yb_c00496{bottom:658.199737px;}
.ya_c00496{bottom:679.979728px;}
.y9_c00496{bottom:701.759719px;}
.y8_c00496{bottom:1037.459585px;}
.y7_c00496{bottom:1060.679576px;}
.y6_c00496{bottom:1104.959558px;}
.y5_c00496{bottom:1135.919546px;}
.y2_c00496{bottom:1175.879530px;}
.y1_c00496{bottom:1196.039522px;}
.h2_c00496{height:54.628572px;}
.h1_c00496{height:58.651148px;}
.h4_c00496{height:65.010911px;}
.h6_c00496{height:70.628878px;}
.h5_c00496{height:70.664034px;}
.h3_c00496{height:72.562471px;}
.h0_c00496{height:1263.000000px;}
.w0_c00496{width:892.500000px;}
.x0_c00496{left:0.000000px;}
.x5_c00496{left:127.800262px;}
.x7_c00496{left:150.479869px;}
.xa_c00496{left:180.899517px;}
.x1_c00496{left:181.979927px;}
.x6_c00496{left:268.019893px;}
.x2_c00496{left:329.219408px;}
.x8_c00496{left:417.960063px;}
.x4_c00496{left:434.159826px;}
.x9_c00496{left:475.199810px;}
.x3_c00496{left:765.539694px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls2_c00496{letter-spacing:0.000000pt;}
.ls1_c00496{letter-spacing:0.008833pt;}
.ls0_c00496{letter-spacing:0.018878pt;}
.ws0_c00496{word-spacing:-16.018872pt;}
.ws1_c00496{word-spacing:-14.719994pt;}
.ws2_c00496{word-spacing:0.000000pt;}
._1_c00496{margin-left:-0.982555pt;}
._0_c00496{width:1.314126pt;}
._2_c00496{width:2.542820pt;}
._7_c00496{width:3.665988pt;}
._3_c00496{width:5.110434pt;}
._6_c00496{width:6.627434pt;}
._d_c00496{width:7.849500pt;}
._4_c00496{width:10.103323pt;}
._5_c00496{width:11.103850pt;}
._b_c00496{width:13.510923pt;}
._c_c00496{width:17.175127pt;}
._a_c00496{width:22.520370pt;}
._8_c00496{width:23.464055pt;}
._9_c00496{width:24.858243pt;}
.fs0_c00496{font-size:53.119979pt;}
.fs1_c00496{font-size:58.879976pt;}
.fs2_c00496{font-size:63.999974pt;}
.y0_c00496{bottom:0.000000pt;}
.y4_c00496{bottom:67.306906pt;}
.y3_c00496{bottom:101.226893pt;}
.y1c_c00496{bottom:122.826618pt;}
.y1b_c00496{bottom:150.346607pt;}
.y1a_c00496{bottom:178.026595pt;}
.y19_c00496{bottom:205.546584pt;}
.y18_c00496{bottom:233.226573pt;}
.y17_c00496{bottom:260.746562pt;}
.y16_c00496{bottom:288.426551pt;}
.y15_c00496{bottom:315.946540pt;}
.y14_c00496{bottom:343.626529pt;}
.y13_c00496{bottom:371.146518pt;}
.y12_c00496{bottom:398.826507pt;}
.y11_c00496{bottom:426.346496pt;}
.y10_c00496{bottom:454.026485pt;}
.yf_c00496{bottom:481.546474pt;}
.ye_c00496{bottom:509.226463pt;}
.yd_c00496{bottom:536.746452pt;}
.yc_c00496{bottom:564.426441pt;}
.yb_c00496{bottom:585.066433pt;}
.ya_c00496{bottom:604.426425pt;}
.y9_c00496{bottom:623.786417pt;}
.y8_c00496{bottom:922.186298pt;}
.y7_c00496{bottom:942.826290pt;}
.y6_c00496{bottom:982.186274pt;}
.y5_c00496{bottom:1009.706263pt;}
.y2_c00496{bottom:1045.226249pt;}
.y1_c00496{bottom:1063.146241pt;}
.h2_c00496{height:48.558731pt;}
.h1_c00496{height:52.134354pt;}
.h4_c00496{height:57.787477pt;}
.h6_c00496{height:62.781225pt;}
.h5_c00496{height:62.812475pt;}
.h3_c00496{height:64.499974pt;}
.h0_c00496{height:1122.666667pt;}
.w0_c00496{width:793.333333pt;}
.x0_c00496{left:0.000000pt;}
.x5_c00496{left:113.600233pt;}
.x7_c00496{left:133.759884pt;}
.xa_c00496{left:160.799571pt;}
.x1_c00496{left:161.759935pt;}
.x6_c00496{left:238.239905pt;}
.x2_c00496{left:292.639474pt;}
.x8_c00496{left:371.520056pt;}
.x4_c00496{left:385.919846pt;}
.x9_c00496{left:422.399831pt;}
.x3_c00496{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9beb04ebe44fb90fc0b78d19.woff2')format("woff");}.ff1_c00497{font-family:ff1_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:ff2_c00497;src:url('chunks/assets/font_5ff119267a369b8ecf6bc141.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_1e773fbb137fcc207479ec33.woff2')format("woff");}.ff3_c00497{font-family:ff3_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;}
.m0_c00497{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls5_c00497{letter-spacing:0.000000px;}
.ls4_c00497{letter-spacing:0.011169px;}
.ls1_c00497{letter-spacing:0.012664px;}
.ls2_c00497{letter-spacing:0.153901px;}
.ls0_c00497{letter-spacing:0.374281px;}
.ls3_c00497{letter-spacing:0.375684px;}
.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;}
}
.ws2_c00497{word-spacing:-13.875678px;}
.ws0_c00497{word-spacing:-12.434276px;}
.ws1_c00497{word-spacing:-10.452660px;}
.ws3_c00497{word-spacing:-9.731165px;}
.ws4_c00497{word-spacing:0.000000px;}
._c_c00497{margin-left:-12.716934px;}
._8_c00497{margin-left:-2.140170px;}
._1_c00497{margin-left:-1.105374px;}
._0_c00497{width:1.195563px;}
._6_c00497{width:2.357670px;}
._9_c00497{width:3.422455px;}
._a_c00497{width:4.470010px;}
._5_c00497{width:9.369160px;}
._4_c00497{width:12.350102px;}
._7_c00497{width:19.496115px;}
._3_c00497{width:22.309907px;}
._2_c00497{width:23.696304px;}
._b_c00497{width:25.200678px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs6_c00497{font-size:38.879984px;}
.fs4_c00497{font-size:41.759983px;}
.fs3_c00497{font-size:48.239981px;}
.fs5_c00497{font-size:53.999978px;}
.fs0_c00497{font-size:59.759976px;}
.fs1_c00497{font-size:66.239974px;}
.fs2_c00497{font-size:71.999971px;}
.y0_c00497{bottom:0.000000px;}
.y4_c00497{bottom:75.719970px;}
.y3_c00497{bottom:113.879954px;}
.y27_c00497{bottom:133.140247px;}
.y26_c00497{bottom:139.980244px;}
.y25_c00497{bottom:169.139932px;}
.y24_c00497{bottom:191.099924px;}
.y23_c00497{bottom:212.339915px;}
.y22_c00497{bottom:222.059911px;}
.y21_c00497{bottom:272.099891px;}
.y20_c00497{bottom:297.659881px;}
.y1f_c00497{bottom:328.799868px;}
.y1e_c00497{bottom:359.759856px;}
.y1d_c00497{bottom:390.899844px;}
.y1c_c00497{bottom:414.119834px;}
.y1a_c00497{bottom:435.899826px;}
.y1b_c00497{bottom:443.459823px;}
.y19_c00497{bottom:457.859817px;}
.y18_c00497{bottom:483.059807px;}
.y17_c00497{bottom:590.159764px;}
.y16_c00497{bottom:621.299751px;}
.y15_c00497{bottom:652.259739px;}
.y14_c00497{bottom:683.399727px;}
.y13_c00497{bottom:714.359714px;}
.y12_c00497{bottom:745.499702px;}
.y11_c00497{bottom:776.459689px;}
.y10_c00497{bottom:807.599677px;}
.yf_c00497{bottom:838.559665px;}
.ye_c00497{bottom:869.699652px;}
.yd_c00497{bottom:900.659640px;}
.yc_c00497{bottom:931.799627px;}
.yb_c00497{bottom:962.759615px;}
.y9_c00497{bottom:993.899602px;}
.ya_c00497{bottom:1002.179599px;}
.y8_c00497{bottom:1024.859590px;}
.y7_c00497{bottom:1055.999578px;}
.y6_c00497{bottom:1086.959565px;}
.y5_c00497{bottom:1118.099553px;}
.y2_c00497{bottom:1156.979537px;}
.y1_c00497{bottom:1195.859522px;}
.ha_c00497{height:38.158578px;}
.h7_c00497{height:40.985140px;}
.h4_c00497{height:47.321348px;}
.h9_c00497{height:52.998026px;}
.h2_c00497{height:54.628572px;}
.h1_c00497{height:58.651148px;}
.h8_c00497{height:64.978568px;}
.h6_c00497{height:65.010911px;}
.h3_c00497{height:70.628878px;}
.h5_c00497{height:70.664034px;}
.h0_c00497{height:1263.000000px;}
.w0_c00497{width:892.500000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:127.799949px;}
.xc_c00497{left:142.379943px;}
.xb_c00497{left:148.319941px;}
.x7_c00497{left:151.019940px;}
.x3_c00497{left:180.899928px;}
.x8_c00497{left:381.060201px;}
.x2_c00497{left:434.159514px;}
.x9_c00497{left:496.619801px;}
.xa_c00497{left:512.279795px;}
.x4_c00497{left:550.799780px;}
.x5_c00497{left:569.159772px;}
.x6_c00497{left:708.118383px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls5_c00497{letter-spacing:0.000000pt;}
.ls4_c00497{letter-spacing:0.009928pt;}
.ls1_c00497{letter-spacing:0.011257pt;}
.ls2_c00497{letter-spacing:0.136801pt;}
.ls0_c00497{letter-spacing:0.332694pt;}
.ls3_c00497{letter-spacing:0.333941pt;}
.ws2_c00497{word-spacing:-12.333936pt;}
.ws0_c00497{word-spacing:-11.052689pt;}
.ws1_c00497{word-spacing:-9.291253pt;}
.ws3_c00497{word-spacing:-8.649924pt;}
.ws4_c00497{word-spacing:0.000000pt;}
._c_c00497{margin-left:-11.303941pt;}
._8_c00497{margin-left:-1.902374pt;}
._1_c00497{margin-left:-0.982555pt;}
._0_c00497{width:1.062723pt;}
._6_c00497{width:2.095706pt;}
._9_c00497{width:3.042182pt;}
._a_c00497{width:3.973342pt;}
._5_c00497{width:8.328143pt;}
._4_c00497{width:10.977868pt;}
._7_c00497{width:17.329880pt;}
._3_c00497{width:19.831028pt;}
._2_c00497{width:21.063381pt;}
._b_c00497{width:22.400603pt;}
.fs6_c00497{font-size:34.559986pt;}
.fs4_c00497{font-size:37.119985pt;}
.fs3_c00497{font-size:42.879983pt;}
.fs5_c00497{font-size:47.999981pt;}
.fs0_c00497{font-size:53.119979pt;}
.fs1_c00497{font-size:58.879976pt;}
.fs2_c00497{font-size:63.999974pt;}
.y0_c00497{bottom:0.000000pt;}
.y4_c00497{bottom:67.306640pt;}
.y3_c00497{bottom:101.226626pt;}
.y27_c00497{bottom:118.346886pt;}
.y26_c00497{bottom:124.426884pt;}
.y25_c00497{bottom:150.346607pt;}
.y24_c00497{bottom:169.866599pt;}
.y23_c00497{bottom:188.746591pt;}
.y22_c00497{bottom:197.386588pt;}
.y21_c00497{bottom:241.866570pt;}
.y20_c00497{bottom:264.586561pt;}
.y1f_c00497{bottom:292.266550pt;}
.y1e_c00497{bottom:319.786539pt;}
.y1d_c00497{bottom:347.466528pt;}
.y1c_c00497{bottom:368.106519pt;}
.y1a_c00497{bottom:387.466512pt;}
.y1b_c00497{bottom:394.186509pt;}
.y19_c00497{bottom:406.986504pt;}
.y18_c00497{bottom:429.386495pt;}
.y17_c00497{bottom:524.586457pt;}
.y16_c00497{bottom:552.266446pt;}
.y15_c00497{bottom:579.786435pt;}
.y14_c00497{bottom:607.466424pt;}
.y13_c00497{bottom:634.986413pt;}
.y12_c00497{bottom:662.666402pt;}
.y11_c00497{bottom:690.186391pt;}
.y10_c00497{bottom:717.866380pt;}
.yf_c00497{bottom:745.386369pt;}
.ye_c00497{bottom:773.066357pt;}
.yd_c00497{bottom:800.586346pt;}
.yc_c00497{bottom:828.266335pt;}
.yb_c00497{bottom:855.786324pt;}
.y9_c00497{bottom:883.466313pt;}
.ya_c00497{bottom:890.826310pt;}
.y8_c00497{bottom:910.986302pt;}
.y7_c00497{bottom:938.666291pt;}
.y6_c00497{bottom:966.186280pt;}
.y5_c00497{bottom:993.866269pt;}
.y2_c00497{bottom:1028.426255pt;}
.y1_c00497{bottom:1062.986241pt;}
.ha_c00497{height:33.918736pt;}
.h7_c00497{height:36.431235pt;}
.h4_c00497{height:42.063421pt;}
.h9_c00497{height:47.109356pt;}
.h2_c00497{height:48.558731pt;}
.h1_c00497{height:52.134354pt;}
.h8_c00497{height:57.758727pt;}
.h6_c00497{height:57.787477pt;}
.h3_c00497{height:62.781225pt;}
.h5_c00497{height:62.812475pt;}
.h0_c00497{height:1122.666667pt;}
.w0_c00497{width:793.333333pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:113.599955pt;}
.xc_c00497{left:126.559949pt;}
.xb_c00497{left:131.839947pt;}
.x7_c00497{left:134.239946pt;}
.x3_c00497{left:160.799936pt;}
.x8_c00497{left:338.720179pt;}
.x2_c00497{left:385.919568pt;}
.x9_c00497{left:441.439823pt;}
.xa_c00497{left:455.359818pt;}
.x4_c00497{left:489.599804pt;}
.x5_c00497{left:505.919798pt;}
.x6_c00497{left:629.438562pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c0b64e6983c31231daf5276.woff2')format("woff");}.ff1_c00498{font-family:ff1_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:ff2_c00498;src:url('chunks/assets/font_b6df726bc2e97edb44f316e4.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_2f95fff1e4aeaf83ff299420.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.284180;font-style: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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls3_c00498{letter-spacing:0.000000px;}
.ls2_c00498{letter-spacing:0.011169px;}
.ls0_c00498{letter-spacing:0.012664px;}
.ls1_c00498{letter-spacing:0.153901px;}
.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:-10.452660px;}
.ws1_c00498{word-spacing:-9.731165px;}
.ws2_c00498{word-spacing:0.000000px;}
._5_c00498{margin-left:-12.716934px;}
._1_c00498{margin-left:-1.105374px;}
._0_c00498{width:1.478392px;}
._3_c00498{width:2.499060px;}
._4_c00498{width:3.658846px;}
._2_c00498{width:28.082405px;}
.fc0_c00498{color:rgb(0,0,0);}
.fs4_c00498{font-size:38.879984px;}
.fs3_c00498{font-size:41.759983px;}
.fs0_c00498{font-size:59.759976px;}
.fs1_c00498{font-size:66.239974px;}
.fs2_c00498{font-size:71.999971px;}
.y0_c00498{bottom:0.000000px;}
.y4_c00498{bottom:75.720270px;}
.y3_c00498{bottom:113.880254px;}
.y21_c00498{bottom:133.499947px;}
.y20_c00498{bottom:151.859939px;}
.y1f_c00498{bottom:169.859932px;}
.y1e_c00498{bottom:176.699929px;}
.y1d_c00498{bottom:187.499925px;}
.y1c_c00498{bottom:205.319918px;}
.y1b_c00498{bottom:212.159915px;}
.y1a_c00498{bottom:223.499911px;}
.y19_c00498{bottom:472.619811px;}
.y18_c00498{bottom:503.759798px;}
.y17_c00498{bottom:534.719786px;}
.y16_c00498{bottom:565.859774px;}
.y15_c00498{bottom:596.819761px;}
.y13_c00498{bottom:620.039752px;}
.y14_c00498{bottom:627.599749px;}
.y12_c00498{bottom:641.999743px;}
.y11_c00498{bottom:671.519731px;}
.y10_c00498{bottom:698.339721px;}
.yf_c00498{bottom:800.759680px;}
.ye_c00498{bottom:831.719667px;}
.yd_c00498{bottom:862.679655px;}
.yc_c00498{bottom:893.819642px;}
.yb_c00498{bottom:924.779630px;}
.y9_c00498{bottom:948.179621px;}
.ya_c00498{bottom:955.739618px;}
.y8_c00498{bottom:969.959612px;}
.y7_c00498{bottom:991.739603px;}
.y6_c00498{bottom:1017.119593px;}
.y5_c00498{bottom:1136.279545px;}
.y2_c00498{bottom:1175.879530px;}
.y1_c00498{bottom:1196.039522px;}
.h7_c00498{height:38.158578px;}
.h6_c00498{height:40.985140px;}
.h8_c00498{height:49.284472px;}
.h2_c00498{height:54.628572px;}
.h1_c00498{height:58.651148px;}
.h5_c00498{height:65.010911px;}
.h4_c00498{height:70.628878px;}
.h3_c00498{height:70.664034px;}
.h0_c00498{height:1263.000000px;}
.w0_c00498{width:892.500000px;}
.x0_c00498{left:0.000000px;}
.x5_c00498{left:127.800262px;}
.xe_c00498{left:130.139948px;}
.x12_c00498{left:142.379943px;}
.x8_c00498{left:151.019996px;}
.xc_c00498{left:180.899930px;}
.x1_c00498{left:181.979927px;}
.x2_c00498{left:329.219408px;}
.xf_c00498{left:374.940372px;}
.x9_c00498{left:381.060257px;}
.x4_c00498{left:434.159826px;}
.x6_c00498{left:446.579821px;}
.xd_c00498{left:476.999910px;}
.xa_c00498{left:496.619801px;}
.x10_c00498{left:502.739799px;}
.xb_c00498{left:512.279795px;}
.x11_c00498{left:518.399793px;}
.x7_c00498{left:725.759896px;}
.x3_c00498{left:765.539694px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls3_c00498{letter-spacing:0.000000pt;}
.ls2_c00498{letter-spacing:0.009928pt;}
.ls0_c00498{letter-spacing:0.011257pt;}
.ls1_c00498{letter-spacing:0.136801pt;}
.ws0_c00498{word-spacing:-9.291253pt;}
.ws1_c00498{word-spacing:-8.649924pt;}
.ws2_c00498{word-spacing:0.000000pt;}
._5_c00498{margin-left:-11.303941pt;}
._1_c00498{margin-left:-0.982555pt;}
._0_c00498{width:1.314126pt;}
._3_c00498{width:2.221387pt;}
._4_c00498{width:3.252307pt;}
._2_c00498{width:24.962138pt;}
.fs4_c00498{font-size:34.559986pt;}
.fs3_c00498{font-size:37.119985pt;}
.fs0_c00498{font-size:53.119979pt;}
.fs1_c00498{font-size:58.879976pt;}
.fs2_c00498{font-size:63.999974pt;}
.y0_c00498{bottom:0.000000pt;}
.y4_c00498{bottom:67.306906pt;}
.y3_c00498{bottom:101.226893pt;}
.y21_c00498{bottom:118.666619pt;}
.y20_c00498{bottom:134.986613pt;}
.y1f_c00498{bottom:150.986606pt;}
.y1e_c00498{bottom:157.066604pt;}
.y1d_c00498{bottom:166.666600pt;}
.y1c_c00498{bottom:182.506594pt;}
.y1b_c00498{bottom:188.586591pt;}
.y1a_c00498{bottom:198.666587pt;}
.y19_c00498{bottom:420.106499pt;}
.y18_c00498{bottom:447.786488pt;}
.y17_c00498{bottom:475.306477pt;}
.y16_c00498{bottom:502.986465pt;}
.y15_c00498{bottom:530.506454pt;}
.y13_c00498{bottom:551.146446pt;}
.y14_c00498{bottom:557.866444pt;}
.y12_c00498{bottom:570.666438pt;}
.y11_c00498{bottom:596.906428pt;}
.y10_c00498{bottom:620.746418pt;}
.yf_c00498{bottom:711.786382pt;}
.ye_c00498{bottom:739.306371pt;}
.yd_c00498{bottom:766.826360pt;}
.yc_c00498{bottom:794.506349pt;}
.yb_c00498{bottom:822.026338pt;}
.y9_c00498{bottom:842.826330pt;}
.ya_c00498{bottom:849.546327pt;}
.y8_c00498{bottom:862.186322pt;}
.y7_c00498{bottom:881.546314pt;}
.y6_c00498{bottom:904.106305pt;}
.y5_c00498{bottom:1010.026263pt;}
.y2_c00498{bottom:1045.226249pt;}
.y1_c00498{bottom:1063.146241pt;}
.h7_c00498{height:33.918736pt;}
.h6_c00498{height:36.431235pt;}
.h8_c00498{height:43.808420pt;}
.h2_c00498{height:48.558731pt;}
.h1_c00498{height:52.134354pt;}
.h5_c00498{height:57.787477pt;}
.h4_c00498{height:62.781225pt;}
.h3_c00498{height:62.812475pt;}
.h0_c00498{height:1122.666667pt;}
.w0_c00498{width:793.333333pt;}
.x0_c00498{left:0.000000pt;}
.x5_c00498{left:113.600233pt;}
.xe_c00498{left:115.679954pt;}
.x12_c00498{left:126.559949pt;}
.x8_c00498{left:134.239996pt;}
.xc_c00498{left:160.799938pt;}
.x1_c00498{left:161.759935pt;}
.x2_c00498{left:292.639474pt;}
.xf_c00498{left:333.280330pt;}
.x9_c00498{left:338.720229pt;}
.x4_c00498{left:385.919846pt;}
.x6_c00498{left:396.959841pt;}
.xd_c00498{left:423.999920pt;}
.xa_c00498{left:441.439823pt;}
.x10_c00498{left:446.879821pt;}
.xb_c00498{left:455.359818pt;}
.x11_c00498{left:460.799816pt;}
.x7_c00498{left:645.119908pt;}
.x3_c00498{left:680.479728pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fcce05406da3fcd0a90cb63.woff2')format("woff");}.ff1_c00499{font-family:ff1_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:ff2_c00499;src:url('chunks/assets/font_db6bc7915304a49a45342f44.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_b2173a63b52529dce1a9dfcb.woff2')format("woff");}.ff3_c00499{font-family:ff3_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;}
.m0_c00499{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls3_c00499{letter-spacing:0.000000px;}
.ls2_c00499{letter-spacing:0.011169px;}
.ls0_c00499{letter-spacing:0.012664px;}
.ls1_c00499{letter-spacing:0.153901px;}
.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;}
}
.ws0_c00499{word-spacing:-16.559993px;}
.ws1_c00499{word-spacing:-10.452660px;}
.ws2_c00499{word-spacing:-9.731165px;}
.ws3_c00499{word-spacing:0.000000px;}
._5_c00499{margin-left:-12.716934px;}
._1_c00499{margin-left:-1.105374px;}
._0_c00499{width:1.195563px;}
._2_c00499{width:9.351397px;}
._3_c00499{width:22.951974px;}
._4_c00499{width:24.228884px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs4_c00499{font-size:38.879984px;}
.fs3_c00499{font-size:41.759983px;}
.fs0_c00499{font-size:59.759976px;}
.fs1_c00499{font-size:66.239974px;}
.fs2_c00499{font-size:71.999971px;}
.y0_c00499{bottom:0.000000px;}
.y4_c00499{bottom:75.719970px;}
.y3_c00499{bottom:113.879954px;}
.y12_c00499{bottom:133.140247px;}
.y11_c00499{bottom:139.980244px;}
.y10_c00499{bottom:151.319939px;}
.yf_c00499{bottom:292.439883px;}
.ye_c00499{bottom:323.579871px;}
.yd_c00499{bottom:354.539858px;}
.yc_c00499{bottom:385.679846px;}
.yb_c00499{bottom:416.639833px;}
.y9_c00499{bottom:440.039824px;}
.ya_c00499{bottom:447.599821px;}
.y8_c00499{bottom:461.819815px;}
.y7_c00499{bottom:487.199805px;}
.y6_c00499{bottom:696.719721px;}
.y5_c00499{bottom:880.319648px;}
.y2_c00499{bottom:1156.979537px;}
.y1_c00499{bottom:1195.859522px;}
.h7_c00499{height:38.158578px;}
.h6_c00499{height:40.985140px;}
.h2_c00499{height:54.628572px;}
.h1_c00499{height:58.651148px;}
.h5_c00499{height:65.010911px;}
.h3_c00499{height:70.628878px;}
.h4_c00499{height:70.664034px;}
.h0_c00499{height:1263.000000px;}
.w0_c00499{width:892.500000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:127.799949px;}
.x6_c00499{left:136.979945px;}
.xb_c00499{left:142.379943px;}
.xa_c00499{left:180.899930px;}
.x7_c00499{left:277.560821px;}
.x2_c00499{left:434.159514px;}
.x8_c00499{left:600.119760px;}
.x9_c00499{left:615.779754px;}
.x3_c00499{left:705.419718px;}
.x5_c00499{left:718.919693px;}
.x4_c00499{left:742.859650px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls3_c00499{letter-spacing:0.000000pt;}
.ls2_c00499{letter-spacing:0.009928pt;}
.ls0_c00499{letter-spacing:0.011257pt;}
.ls1_c00499{letter-spacing:0.136801pt;}
.ws0_c00499{word-spacing:-14.719994pt;}
.ws1_c00499{word-spacing:-9.291253pt;}
.ws2_c00499{word-spacing:-8.649924pt;}
.ws3_c00499{word-spacing:0.000000pt;}
._5_c00499{margin-left:-11.303941pt;}
._1_c00499{margin-left:-0.982555pt;}
._0_c00499{width:1.062723pt;}
._2_c00499{width:8.312352pt;}
._3_c00499{width:20.401755pt;}
._4_c00499{width:21.536786pt;}
.fs4_c00499{font-size:34.559986pt;}
.fs3_c00499{font-size:37.119985pt;}
.fs0_c00499{font-size:53.119979pt;}
.fs1_c00499{font-size:58.879976pt;}
.fs2_c00499{font-size:63.999974pt;}
.y0_c00499{bottom:0.000000pt;}
.y4_c00499{bottom:67.306640pt;}
.y3_c00499{bottom:101.226626pt;}
.y12_c00499{bottom:118.346886pt;}
.y11_c00499{bottom:124.426884pt;}
.y10_c00499{bottom:134.506613pt;}
.yf_c00499{bottom:259.946563pt;}
.ye_c00499{bottom:287.626552pt;}
.yd_c00499{bottom:315.146541pt;}
.yc_c00499{bottom:342.826530pt;}
.yb_c00499{bottom:370.346519pt;}
.y9_c00499{bottom:391.146510pt;}
.ya_c00499{bottom:397.866508pt;}
.y8_c00499{bottom:410.506502pt;}
.y7_c00499{bottom:433.066493pt;}
.y6_c00499{bottom:619.306419pt;}
.y5_c00499{bottom:782.506354pt;}
.y2_c00499{bottom:1028.426255pt;}
.y1_c00499{bottom:1062.986241pt;}
.h7_c00499{height:33.918736pt;}
.h6_c00499{height:36.431235pt;}
.h2_c00499{height:48.558731pt;}
.h1_c00499{height:52.134354pt;}
.h5_c00499{height:57.787477pt;}
.h3_c00499{height:62.781225pt;}
.h4_c00499{height:62.812475pt;}
.h0_c00499{height:1122.666667pt;}
.w0_c00499{width:793.333333pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:113.599955pt;}
.x6_c00499{left:121.759951pt;}
.xb_c00499{left:126.559949pt;}
.xa_c00499{left:160.799938pt;}
.x7_c00499{left:246.720730pt;}
.x2_c00499{left:385.919568pt;}
.x8_c00499{left:533.439787pt;}
.x9_c00499{left:547.359781pt;}
.x3_c00499{left:627.039749pt;}
.x5_c00499{left:639.039727pt;}
.x4_c00499{left:660.319689pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7977e7dbb6b3b4eb77ebf72.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_8d08a30f2e29f8da6c3ecf4e.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_c2a0b3f4b60051938c263147.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_1f29b3266f6c69756700408c.woff2')format("woff");}.ff4_c00001{font-family:ff4_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:ff5_c00001;src:url('chunks/assets/font_771d280143f0d294800d3684.woff2')format("woff");}.ff5_c00001{font-family:ff5_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:ff6_c00001;src:url('chunks/assets/font_4ba131af174751fb5f305376.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.734375;font-style:normal;font-weight: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_e92acfacdbeb6a25e79070d2.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.696777;font-style:normal;font-weight: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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.239258;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_69a86ff95a12ee49aadfb6b6.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7_c00001{transform:matrix(0.236416,0.000000,-0.080861,0.236562,0,0);-ms-transform:matrix(0.236416,0.000000,-0.080861,0.236562,0,0);-webkit-transform:matrix(0.236416,0.000000,-0.080861,0.236562,0,0);}
.m6_c00001{transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);}
.m0_c00001{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.mc_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);}
.mb_c00001{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v1_c00001{vertical-align:-83.519967px;}
.v2_c00001{vertical-align:-76.319969px;}
.v0_c00001{vertical-align:0.000000px;}
.ls3_c00001{letter-spacing:0.000000px;}
.ls6_c00001{letter-spacing:0.010553px;}
.lsc_c00001{letter-spacing:0.010620px;}
.ls5_c00001{letter-spacing:0.010641px;}
.ls2_c00001{letter-spacing:0.011169px;}
.ls7_c00001{letter-spacing:0.012620px;}
.ls0_c00001{letter-spacing:0.012664px;}
.ls18_c00001{letter-spacing:0.019560px;}
.lsa_c00001{letter-spacing:0.021238px;}
.ls28_c00001{letter-spacing:0.021240px;}
.ls15_c00001{letter-spacing:0.021282px;}
.ls20_c00001{letter-spacing:0.084116px;}
.ls1_c00001{letter-spacing:0.153901px;}
.ls14_c00001{letter-spacing:0.182640px;}
.ls9_c00001{letter-spacing:0.189257px;}
.ls8_c00001{letter-spacing:0.189300px;}
.ls4_c00001{letter-spacing:0.374281px;}
.lsf_c00001{letter-spacing:0.378514px;}
.ls17_c00001{letter-spacing:0.378602px;}
.ls12_c00001{letter-spacing:0.731040px;}
.ls1e_c00001{letter-spacing:1.623539px;}
.lsd_c00001{letter-spacing:3.612719px;}
.ls1a_c00001{letter-spacing:4.333198px;}
.ls10_c00001{letter-spacing:5.774038px;}
.ls11_c00001{letter-spacing:6.494457px;}
.ls1c_c00001{letter-spacing:7.214877px;}
.lse_c00001{letter-spacing:8.114152px;}
.ls19_c00001{letter-spacing:9.197036px;}
.ls21_c00001{letter-spacing:10.627393px;}
.ls1d_c00001{letter-spacing:10.816976px;}
.ls1f_c00001{letter-spacing:12.978295px;}
.ls13_c00001{letter-spacing:15.311934px;}
.ls29_c00001{letter-spacing:17.300813px;}
.ls1b_c00001{letter-spacing:17.473253px;}
.ls26_c00001{letter-spacing:28.252489px;}
.ls25_c00001{letter-spacing:31.854587px;}
.ls22_c00001{letter-spacing:34.015846px;}
.ls27_c00001{letter-spacing:39.779264px;}
.ls16_c00001{letter-spacing:64.076494px;}
.ls23_c00001{letter-spacing:64.273774px;}
.lsb_c00001{letter-spacing:194.525322px;}
.ls24_c00001{letter-spacing:630.359748px;}
.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;}
}
.ws11_c00001{word-spacing:-24.407990px;}
.wsa_c00001{word-spacing:-20.892656px;}
.wse_c00001{word-spacing:-18.021275px;}
.ws9_c00001{word-spacing:-18.021231px;}
.ws4_c00001{word-spacing:-17.999993px;}
.ws8_c00001{word-spacing:-16.559993px;}
.wsd_c00001{word-spacing:-15.318596px;}
.wsb_c00001{word-spacing:-15.318508px;}
.ws7_c00001{word-spacing:-14.939994px;}
.ws10_c00001{word-spacing:-13.505755px;}
.ws3_c00001{word-spacing:-12.434276px;}
.ws0_c00001{word-spacing:-10.452660px;}
.ws6_c00001{word-spacing:-10.452616px;}
.ws1_c00001{word-spacing:-9.731165px;}
.ws5_c00001{word-spacing:-9.437756px;}
.wsc_c00001{word-spacing:-8.786876px;}
.wsf_c00001{word-spacing:-8.637712px;}
.ws2_c00001{word-spacing:0.000000px;}
._20_c00001{margin-left:-30.054726px;}
._5_c00001{margin-left:-12.716934px;}
._13_c00001{margin-left:-10.221319px;}
._1d_c00001{margin-left:-3.571519px;}
._1c_c00001{margin-left:-2.455064px;}
._1_c00001{margin-left:-1.105374px;}
._0_c00001{width:1.478392px;}
._f_c00001{width:2.974741px;}
._8_c00001{width:3.984918px;}
._11_c00001{width:5.046577px;}
._12_c00001{width:6.179190px;}
._10_c00001{width:8.105588px;}
._4_c00001{width:9.351397px;}
._9_c00001{width:10.625801px;}
._b_c00001{width:11.961382px;}
._a_c00001{width:13.162346px;}
._16_c00001{width:14.374001px;}
._2_c00001{width:15.679464px;}
._3_c00001{width:16.866813px;}
._38_c00001{width:18.310328px;}
._7_c00001{width:19.452707px;}
._6_c00001{width:20.604212px;}
._1b_c00001{width:21.656464px;}
._27_c00001{width:22.981582px;}
._e_c00001{width:24.413960px;}
._d_c00001{width:25.509092px;}
._14_c00001{width:26.918748px;}
._21_c00001{width:28.271399px;}
._22_c00001{width:29.770513px;}
._28_c00001{width:30.775000px;}
._1a_c00001{width:32.291565px;}
._29_c00001{width:33.439591px;}
._2f_c00001{width:35.120264px;}
._1e_c00001{width:36.466185px;}
._1f_c00001{width:37.539732px;}
._2e_c00001{width:38.733063px;}
._35_c00001{width:40.327021px;}
._37_c00001{width:41.702041px;}
._33_c00001{width:45.926667px;}
._c_c00001{width:47.774895px;}
._39_c00001{width:62.594580px;}
._3a_c00001{width:63.983318px;}
._31_c00001{width:70.421058px;}
._32_c00001{width:72.142232px;}
._3d_c00001{width:81.774046px;}
._3e_c00001{width:83.086970px;}
._2a_c00001{width:85.730613px;}
._30_c00001{width:112.396995px;}
._17_c00001{width:149.064339px;}
._3c_c00001{width:176.525329px;}
._3b_c00001{width:194.525202px;}
._15_c00001{width:207.482476px;}
._36_c00001{width:306.191398px;}
._25_c00001{width:309.782915px;}
._24_c00001{width:314.825793px;}
._26_c00001{width:404.879211px;}
._2c_c00001{width:463.233909px;}
._2b_c00001{width:566.974410px;}
._2d_c00001{width:702.413966px;}
._18_c00001{width:895.490056px;}
._19_c00001{width:981.219454px;}
._23_c00001{width:1239.144104px;}
._34_c00001{width:1522.067391px;}
.fc4_c00001{color:rgb(54,95,145);}
.fc5_c00001{color:rgb(228,108,10);}
.fc3_c00001{color:transparent;}
.fc2_c00001{color:rgb(51,51,51);}
.fc1_c00001{color:rgb(101,101,101);}
.fc0_c00001{color:rgb(0,0,0);}
.fs4_c00001{font-size:38.879984px;}
.fs3_c00001{font-size:41.759983px;}
.fs5_c00001{font-size:48.239981px;}
.fs8_c00001{font-size:53.999978px;}
.fs0_c00001{font-size:59.759976px;}
.fs7_c00001{font-size:63.154776px;}
.fs1_c00001{font-size:66.239974px;}
.fs2_c00001{font-size:71.999971px;}
.fs6_c00001{font-size:76.089538px;}
.fs9_c00001{font-size:84.239966px;}
.fsa_c00001{font-size:107.999957px;}
.y0_c00001{bottom:0.000000px;}
.y587_c00001{bottom:3.238945px;}
.y71b_c00001{bottom:3.238952px;}
.y4fb_c00001{bottom:3.599009px;}
.y993_c00001{bottom:3.599018px;}
.y827_c00001{bottom:3.599083px;}
.y874_c00001{bottom:3.599139px;}
.y879_c00001{bottom:3.599161px;}
.y4eb_c00001{bottom:3.599281px;}
.y4f1_c00001{bottom:3.599323px;}
.y54a_c00001{bottom:3.779224px;}
.y514_c00001{bottom:3.779237px;}
.y8fd_c00001{bottom:3.958967px;}
.y619_c00001{bottom:3.958976px;}
.y58f_c00001{bottom:3.958983px;}
.y92b_c00001{bottom:3.959000px;}
.y56b_c00001{bottom:3.959084px;}
.y8ea_c00001{bottom:3.959156px;}
.y960_c00001{bottom:3.959180px;}
.y916_c00001{bottom:3.959186px;}
.y944_c00001{bottom:3.959212px;}
.y550_c00001{bottom:3.959255px;}
.y6c4_c00001{bottom:3.959262px;}
.y51b_c00001{bottom:3.959283px;}
.y96e_c00001{bottom:4.498945px;}
.y616_c00001{bottom:4.498953px;}
.y4c2_c00001{bottom:4.498956px;}
.y58c_c00001{bottom:4.498960px;}
.y9ab_c00001{bottom:4.498967px;}
.y8ff_c00001{bottom:4.498968px;}
.y8dc_c00001{bottom:4.498974px;}
.y61b_c00001{bottom:4.498977px;}
.y4c5_c00001{bottom:4.498980px;}
.y591_c00001{bottom:4.498984px;}
.y9ae_c00001{bottom:4.498992px;}
.y4c7_c00001{bottom:4.498995px;}
.y595_c00001{bottom:4.498999px;}
.y561_c00001{bottom:4.499004px;}
.y9b0_c00001{bottom:4.499007px;}
.y534_c00001{bottom:4.499014px;}
.y930_c00001{bottom:4.499016px;}
.y8bb_c00001{bottom:4.499023px;}
.y956_c00001{bottom:4.499035px;}
.y565_c00001{bottom:4.499037px;}
.y6af_c00001{bottom:4.499044px;}
.y907_c00001{bottom:4.499054px;}
.y569_c00001{bottom:4.499060px;}
.y56d_c00001{bottom:4.499084px;}
.y90b_c00001{bottom:4.499086px;}
.y936_c00001{bottom:4.499096px;}
.y570_c00001{bottom:4.499100px;}
.y8e4_c00001{bottom:4.499109px;}
.y6b7_c00001{bottom:4.499115px;}
.y90d_c00001{bottom:4.499119px;}
.y8e7_c00001{bottom:4.499133px;}
.y691_c00001{bottom:4.499143px;}
.y478_c00001{bottom:4.499146px;}
.y4a8_c00001{bottom:4.499148px;}
.y8ec_c00001{bottom:4.499157px;}
.y4d9_c00001{bottom:4.499163px;}
.y93e_c00001{bottom:4.499165px;}
.y4ab_c00001{bottom:4.499171px;}
.y6bb_c00001{bottom:4.499179px;}
.y962_c00001{bottom:4.499180px;}
.y4ae_c00001{bottom:4.499187px;}
.y941_c00001{bottom:4.499189px;}
.y8cb_c00001{bottom:4.499195px;}
.y91a_c00001{bottom:4.499202px;}
.y946_c00001{bottom:4.499213px;}
.y8cd_c00001{bottom:4.499219px;}
.y948_c00001{bottom:4.499228px;}
.y54e_c00001{bottom:4.499232px;}
.y8f2_c00001{bottom:4.499243px;}
.y518_c00001{bottom:4.499245px;}
.y4b3_c00001{bottom:4.499249px;}
.y552_c00001{bottom:4.499256px;}
.y6c6_c00001{bottom:4.499262px;}
.y555_c00001{bottom:4.499271px;}
.y8f6_c00001{bottom:4.499275px;}
.y6ca_c00001{bottom:4.499278px;}
.y4b7_c00001{bottom:4.499282px;}
.y521_c00001{bottom:4.499299px;}
.y6a0_c00001{bottom:4.499305px;}
.y8f8_c00001{bottom:4.499308px;}
.y526_c00001{bottom:4.858946px;}
.y6cc_c00001{bottom:4.858953px;}
.y465_c00001{bottom:4.859020px;}
.y624_c00001{bottom:4.859047px;}
.y84a_c00001{bottom:4.859072px;}
.y6b4_c00001{bottom:4.859099px;}
.y696_c00001{bottom:4.859198px;}
.y967_c00001{bottom:4.859251px;}
.y94b_c00001{bottom:4.859283px;}
.ya27_c00001{bottom:75.120327px;}
.y6f_c00001{bottom:75.719970px;}
.y4_c00001{bottom:75.720270px;}
.y27_c00001{bottom:75.899970px;}
.y42a_c00001{bottom:75.900270px;}
.ya26_c00001{bottom:113.280312px;}
.y6e_c00001{bottom:113.879954px;}
.y3_c00001{bottom:113.880254px;}
.y26_c00001{bottom:114.059954px;}
.y429_c00001{bottom:114.060254px;}
.y67f_c00001{bottom:132.960247px;}
.y23a_c00001{bottom:133.139947px;}
.y24_c00001{bottom:133.140247px;}
.y48e_c00001{bottom:133.319947px;}
.y205_c00001{bottom:133.320247px;}
.y87_c00001{bottom:133.499947px;}
.y9e_c00001{bottom:133.500247px;}
.y4c_c00001{bottom:133.679947px;}
.y30f_c00001{bottom:133.680247px;}
.y88c_c00001{bottom:135.479946px;}
.y356_c00001{bottom:135.659946px;}
.y4f2_c00001{bottom:136.739945px;}
.y9ce_c00001{bottom:137.100245px;}
.y7f8_c00001{bottom:137.819945px;}
.y8fa_c00001{bottom:137.999945px;}
.y923_c00001{bottom:138.359945px;}
.y7b0_c00001{bottom:138.899944px;}
.y5b8_c00001{bottom:139.259944px;}
.y8d6_c00001{bottom:139.439944px;}
.y23_c00001{bottom:139.980244px;}
.yb96_c00001{bottom:140.159944px;}
.y204_c00001{bottom:140.160244px;}
.y30e_c00001{bottom:140.520244px;}
.yc36_c00001{bottom:140.699944px;}
.y950_c00001{bottom:141.059944px;}
.yc3_c00001{bottom:141.060244px;}
.y45e_c00001{bottom:141.240244px;}
.y83e_c00001{bottom:141.779943px;}
.yab0_c00001{bottom:142.679943px;}
.y585_c00001{bottom:142.859943px;}
.ya2d_c00001{bottom:143.039943px;}
.y4bd_c00001{bottom:143.579943px;}
.y6a2_c00001{bottom:143.759942px;}
.yb5b_c00001{bottom:143.939942px;}
.ya3f_c00001{bottom:144.060299px;}
.y744_c00001{bottom:144.479942px;}
.y649_c00001{bottom:144.659942px;}
.y5ed_c00001{bottom:145.199942px;}
.ya6c_c00001{bottom:145.500299px;}
.yb30_c00001{bottom:145.559942px;}
.y797_c00001{bottom:145.739942px;}
.y163_c00001{bottom:145.919942px;}
.ya31_c00001{bottom:147.660298px;}
.y719_c00001{bottom:147.719941px;}
.yae3_c00001{bottom:148.200298px;}
.y426_c00001{bottom:148.259941px;}
.yac7_c00001{bottom:148.740298px;}
.y767_c00001{bottom:148.979940px;}
.ya34_c00001{bottom:149.460297px;}
.y1ee_c00001{bottom:149.519940px;}
.ya81_c00001{bottom:149.640297px;}
.y180_c00001{bottom:150.419940px;}
.y461_c00001{bottom:150.599940px;}
.y22_c00001{bottom:150.779940px;}
.y86b_c00001{bottom:150.959940px;}
.ya97_c00001{bottom:151.260296px;}
.y1dc_c00001{bottom:151.319939px;}
.y86_c00001{bottom:151.499939px;}
.y4b_c00001{bottom:151.679939px;}
.yb2_c00001{bottom:151.859939px;}
.ya12_c00001{bottom:152.039939px;}
.yaad_c00001{bottom:152.160296px;}
.y2ae_c00001{bottom:152.219939px;}
.y110_c00001{bottom:152.579939px;}
.ya29_c00001{bottom:152.700296px;}
.y88b_c00001{bottom:152.759939px;}
.y9a9_c00001{bottom:152.939939px;}
.yacc_c00001{bottom:153.119939px;}
.y8b5_c00001{bottom:153.299939px;}
.y9bd_c00001{bottom:153.479939px;}
.y385_c00001{bottom:154.199938px;}
.y337_c00001{bottom:154.379938px;}
.y2f2_c00001{bottom:154.919938px;}
.ya55_c00001{bottom:155.279938px;}
.ya0e_c00001{bottom:155.459938px;}
.y523_c00001{bottom:155.639938px;}
.y355_c00001{bottom:155.999938px;}
.y7af_c00001{bottom:156.359937px;}
.y1a1_c00001{bottom:157.259937px;}
.y48d_c00001{bottom:157.439937px;}
.yadf_c00001{bottom:157.560294px;}
.y5b7_c00001{bottom:157.619937px;}
.y419_c00001{bottom:157.799937px;}
.y85_c00001{bottom:158.339937px;}
.y4a_c00001{bottom:158.519937px;}
.y320_c00001{bottom:158.699937px;}
.y83d_c00001{bottom:159.059936px;}
.y142_c00001{bottom:159.419936px;}
.ya11_c00001{bottom:159.599936px;}
.ya53_c00001{bottom:159.900293px;}
.y584_c00001{bottom:160.139936px;}
.yc35_c00001{bottom:161.399935px;}
.ya6a_c00001{bottom:161.700292px;}
.y336_c00001{bottom:161.939935px;}
.ya0d_c00001{bottom:162.299935px;}
.yb1d_c00001{bottom:162.479935px;}
.y5ec_c00001{bottom:162.659935px;}
.y76d_c00001{bottom:162.839935px;}
.yac9_c00001{bottom:163.019935px;}
.y814_c00001{bottom:163.199935px;}
.y354_c00001{bottom:163.559935px;}
.yb52_c00001{bottom:163.739935px;}
.yb95_c00001{bottom:163.919934px;}
.yc3d_c00001{bottom:164.459934px;}
.y718_c00001{bottom:165.179934px;}
.y3e6_c00001{bottom:165.359934px;}
.y67e_c00001{bottom:166.259933px;}
.y450_c00001{bottom:166.439933px;}
.ya2f_c00001{bottom:166.560290px;}
.y17f_c00001{bottom:167.699933px;}
.y460_c00001{bottom:167.879933px;}
.y239_c00001{bottom:168.059933px;}
.y9e5_c00001{bottom:168.239933px;}
.y263_c00001{bottom:168.599933px;}
.y21_c00001{bottom:168.779932px;}
.y49_c00001{bottom:168.959932px;}
.y124_c00001{bottom:169.139932px;}
.y30d_c00001{bottom:169.319932px;}
.y29c_c00001{bottom:169.499932px;}
.y84_c00001{bottom:169.679932px;}
.y9d_c00001{bottom:169.859932px;}
.ya10_c00001{bottom:170.039932px;}
.y31f_c00001{bottom:170.219932px;}
.y1ed_c00001{bottom:170.399932px;}
.y10f_c00001{bottom:170.579932px;}
.ya6b_c00001{bottom:170.700289px;}
.yb05_c00001{bottom:170.939932px;}
.ybbf_c00001{bottom:171.299931px;}
.y141_c00001{bottom:171.479931px;}
.y203_c00001{bottom:171.659931px;}
.y384_c00001{bottom:172.379931px;}
.yb1_c00001{bottom:172.559931px;}
.ya09_c00001{bottom:172.739931px;}
.y67d_c00001{bottom:173.099931px;}
.y8f9_c00001{bottom:173.279931px;}
.y289_c00001{bottom:173.459931px;}
.ya3e_c00001{bottom:173.580288px;}
.y335_c00001{bottom:173.999930px;}
.ya30_c00001{bottom:174.300287px;}
.y17e_c00001{bottom:174.539930px;}
.ya33_c00001{bottom:174.660287px;}
.y45f_c00001{bottom:174.719930px;}
.y362_c00001{bottom:174.899930px;}
.ybd8_c00001{bottom:175.259930px;}
.y20_c00001{bottom:175.619930px;}
.y7f7_c00001{bottom:175.979930px;}
.y83c_c00001{bottom:176.339929px;}
.y922_c00001{bottom:176.519929px;}
.y278_c00001{bottom:176.699929px;}
.y30c_c00001{bottom:176.879929px;}
.y7ae_c00001{bottom:177.059929px;}
.yac6_c00001{bottom:177.180286px;}
.yc2_c00001{bottom:177.239929px;}
.y9c_c00001{bottom:177.419929px;}
.ya23_c00001{bottom:177.779929px;}
.ya28_c00001{bottom:178.080286px;}
.y4ba_c00001{bottom:178.139929px;}
.y6a1_c00001{bottom:179.039928px;}
.y425_c00001{bottom:179.219928px;}
.ya96_c00001{bottom:179.700285px;}
.y5eb_c00001{bottom:179.759928px;}
.y383_c00001{bottom:179.939928px;}
.yb0_c00001{bottom:180.119928px;}
.y743_c00001{bottom:180.299928px;}
.y94d_c00001{bottom:180.479928px;}
.yaac_c00001{bottom:180.600285px;}
.y648_c00001{bottom:182.639927px;}
.y3e5_c00001{bottom:182.999927px;}
.yacb_c00001{bottom:183.359927px;}
.y796_c00001{bottom:183.899926px;}
.y612_c00001{bottom:184.439926px;}
.y921_c00001{bottom:184.619926px;}
.y44f_c00001{bottom:184.799926px;}
.y17d_c00001{bottom:184.979926px;}
.ya1b_c00001{bottom:185.159926px;}
.y1b9_c00001{bottom:185.879926px;}
.y1f_c00001{bottom:186.059926px;}
.y48_c00001{bottom:186.239926px;}
.y6b_c00001{bottom:186.419925px;}
.y29b_c00001{bottom:186.599925px;}
.ya2c_c00001{bottom:186.779925px;}
.y18d_c00001{bottom:186.959925px;}
.y1d3_c00001{bottom:187.139925px;}
.y9f5_c00001{bottom:187.319925px;}
.y32b_c00001{bottom:187.499925px;}
.y23f_c00001{bottom:187.679925px;}
.yc1_c00001{bottom:188.039925px;}
.y31e_c00001{bottom:188.219925px;}
.y4f0_c00001{bottom:188.580600px;}
.yade_c00001{bottom:188.700282px;}
.y30b_c00001{bottom:188.759924px;}
.y202_c00001{bottom:189.119924px;}
.y2ad_c00001{bottom:189.299924px;}
.y1db_c00001{bottom:189.479924px;}
.ya52_c00001{bottom:189.600281px;}
.y9bc_c00001{bottom:189.659924px;}
.y123_c00001{bottom:189.839924px;}
.yb42_c00001{bottom:190.019924px;}
.ya69_c00001{bottom:190.140281px;}
.y9b_c00001{bottom:190.199924px;}
.y3e4_c00001{bottom:190.559924px;}
.ydb_c00001{bottom:190.919924px;}
.ya2e_c00001{bottom:191.040281px;}
.y1ec_c00001{bottom:191.099924px;}
.y8b4_c00001{bottom:191.279923px;}
.y1a0_c00001{bottom:191.819923px;}
.y162_c00001{bottom:191.999923px;}
.yaf_c00001{bottom:192.179923px;}
.y44e_c00001{bottom:192.359923px;}
.y214_c00001{bottom:192.899923px;}
.y47_c00001{bottom:193.079923px;}
.yac8_c00001{bottom:193.259923px;}
.yb1c_c00001{bottom:193.439923px;}
.y522_c00001{bottom:193.799922px;}
.y1d2_c00001{bottom:193.979922px;}
.ya01_c00001{bottom:194.159922px;}
.y2d8_c00001{bottom:194.519922px;}
.y31d_c00001{bottom:195.059922px;}
.yc18_c00001{bottom:195.239922px;}
.y10e_c00001{bottom:195.599922px;}
.y361_c00001{bottom:195.779922px;}
.ybd7_c00001{bottom:195.959922px;}
.y4bc_c00001{bottom:196.319921px;}
.y94f_c00001{bottom:196.499921px;}
.y201_c00001{bottom:196.679921px;}
.y83b_c00001{bottom:197.039921px;}
.y122_c00001{bottom:197.399921px;}
.y742_c00001{bottom:197.579921px;}
.y813_c00001{bottom:197.939921px;}
.y262_c00001{bottom:198.299921px;}
.ybac_c00001{bottom:198.479921px;}
.y67c_c00001{bottom:198.659921px;}
.yaf5_c00001{bottom:199.500277px;}
.y4b9_c00001{bottom:200.099920px;}
.ya3d_c00001{bottom:200.400277px;}
.y5ea_c00001{bottom:200.639920px;}
.y795_c00001{bottom:200.999920px;}
.yb04_c00001{bottom:201.899919px;}
.y17c_c00001{bottom:202.439919px;}
.y3e3_c00001{bottom:202.619919px;}
.y19f_c00001{bottom:203.159919px;}
.y1e_c00001{bottom:203.339919px;}
.y9e4_c00001{bottom:203.519919px;}
.y251_c00001{bottom:203.699919px;}
.y2c4_c00001{bottom:203.879918px;}
.yb51_c00001{bottom:204.059918px;}
.y213_c00001{bottom:204.239918px;}
.y46_c00001{bottom:204.419918px;}
.y288_c00001{bottom:204.599918px;}
.ya00_c00001{bottom:204.779918px;}
.y45d_c00001{bottom:205.139918px;}
.y1d1_c00001{bottom:205.319918px;}
.y67b_c00001{bottom:205.499918px;}
.yac5_c00001{bottom:205.620275px;}
.y31c_c00001{bottom:205.679918px;}
.yc0_c00001{bottom:205.859918px;}
.y7ce_c00001{bottom:206.039918px;}
.yc05_c00001{bottom:206.219918px;}
.y920_c00001{bottom:206.399917px;}
.ya80_c00001{bottom:206.520274px;}
.y2d7_c00001{bottom:206.579917px;}
.yc62_c00001{bottom:206.759917px;}
.y48c_c00001{bottom:207.479917px;}
.y10d_c00001{bottom:207.659917px;}
.y345_c00001{bottom:207.839917px;}
.y121_c00001{bottom:208.019917px;}
.ya95_c00001{bottom:208.140274px;}
.y8b3_c00001{bottom:208.559917px;}
.yda_c00001{bottom:208.739917px;}
.yaab_c00001{bottom:209.040273px;}
.y353_c00001{bottom:209.459916px;}
.y3c7_c00001{bottom:209.639916px;}
.y86a_c00001{bottom:209.819916px;}
.y17b_c00001{bottom:209.999916px;}
.y1d_c00001{bottom:210.179916px;}
.y424_c00001{bottom:210.359916px;}
.y4ef_c00001{bottom:210.539916px;}
.y6a_c00001{bottom:211.259915px;}
.yb94_c00001{bottom:211.439915px;}
.y88a_c00001{bottom:211.619915px;}
.y29a_c00001{bottom:211.799915px;}
.y395_c00001{bottom:212.159915px;}
.ya15_c00001{bottom:212.339915px;}
.y32a_c00001{bottom:212.519915px;}
.ybbe_c00001{bottom:212.699915px;}
.y9f4_c00001{bottom:213.059915px;}
.ybf_c00001{bottom:213.419915px;}
.y382_c00001{bottom:213.599915px;}
.y7f6_c00001{bottom:214.139914px;}
.y83a_c00001{bottom:214.499914px;}
.y371_c00001{bottom:214.859914px;}
.y7ad_c00001{bottom:215.219914px;}
.y360_c00001{bottom:215.399914px;}
.y37a_c00001{bottom:215.579914px;}
.y83_c00001{bottom:215.759914px;}
.yd9_c00001{bottom:216.299913px;}
.y227_c00001{bottom:216.479913px;}
.ybd6_c00001{bottom:216.659913px;}
.y2f1_c00001{bottom:217.019913px;}
.y94c_c00001{bottom:217.379913px;}
.ya2b_c00001{bottom:217.739913px;}
.y5e9_c00001{bottom:217.919913px;}
.y13f_c00001{bottom:218.099913px;}
.ya68_c00001{bottom:218.580270px;}
.ybab_c00001{bottom:218.639913px;}
.y583_c00001{bottom:218.819912px;}
.y18b_c00001{bottom:219.359912px;}
.yadd_c00001{bottom:219.660269px;}
.y1da_c00001{bottom:220.439912px;}
.ya51_c00001{bottom:220.560269px;}
.y647_c00001{bottom:220.799912px;}
.y414_c00001{bottom:220.979912px;}
.yb41_c00001{bottom:221.159912px;}
.y1c_c00001{bottom:221.519911px;}
.ya0f_c00001{bottom:221.699911px;}
.y794_c00001{bottom:221.879911px;}
.y17a_c00001{bottom:222.059911px;}
.y69_c00001{bottom:222.419911px;}
.ya21_c00001{bottom:222.779911px;}
.y440_c00001{bottom:222.959911px;}
.y7cd_c00001{bottom:223.139911px;}
.yb70_c00001{bottom:223.319911px;}
.y394_c00001{bottom:223.499911px;}
.y299_c00001{bottom:223.859910px;}
.y228_c00001{bottom:224.039910px;}
.ya14_c00001{bottom:224.399910px;}
.y31b_c00001{bottom:224.579910px;}
.y48b_c00001{bottom:224.759910px;}
.y990_c00001{bottom:225.119910px;}
.y766_c00001{bottom:225.299910px;}
.ybe_c00001{bottom:225.479910px;}
.y140_c00001{bottom:225.659910px;}
.y8b2_c00001{bottom:225.839910px;}
.y120_c00001{bottom:226.019910px;}
.y2d5_c00001{bottom:226.559909px;}
.y8f7_c00001{bottom:226.560600px;}
.yc3c_c00001{bottom:226.739909px;}
.y18c_c00001{bottom:226.919909px;}
.yd8_c00001{bottom:227.099909px;}
.y869_c00001{bottom:227.279909px;}
.y8d5_c00001{bottom:227.459909px;}
.y4ee_c00001{bottom:227.639909px;}
.y91f_c00001{bottom:228.179909px;}
.y250_c00001{bottom:228.359909px;}
.y9e3_c00001{bottom:228.539909px;}
.y2ac_c00001{bottom:228.719909px;}
.yed_c00001{bottom:228.899908px;}
.y2c3_c00001{bottom:229.079908px;}
.y261_c00001{bottom:229.439908px;}
.y200_c00001{bottom:229.799908px;}
.y44d_c00001{bottom:229.979908px;}
.ya22_c00001{bottom:230.339908px;}
.y9ff_c00001{bottom:230.699908px;}
.y67a_c00001{bottom:230.879908px;}
.y839_c00001{bottom:231.779907px;}
.y51f_c00001{bottom:232.139907px;}
.y3b1_c00001{bottom:232.319907px;}
.y69f_c00001{bottom:232.320600px;}
.yb17_c00001{bottom:232.499907px;}
.y7ac_c00001{bottom:232.679907px;}
.yb03_c00001{bottom:233.039907px;}
.yc50_c00001{bottom:233.219907px;}
.ybbd_c00001{bottom:233.399907px;}
.y11f_c00001{bottom:233.579907px;}
.y309_c00001{bottom:233.939906px;}
.yac4_c00001{bottom:234.060263px;}
.y2d6_c00001{bottom:234.119906px;}
.ya1f_c00001{bottom:234.479906px;}
.y7f5_c00001{bottom:234.839906px;}
.ya7f_c00001{bottom:234.960263px;}
.y5e8_c00001{bottom:235.199906px;}
.y418_c00001{bottom:235.379906px;}
.y287_c00001{bottom:235.559906px;}
.yae2_c00001{bottom:235.739906px;}
.y3d6_c00001{bottom:236.099906px;}
.y370_c00001{bottom:236.639905px;}
.ya94_c00001{bottom:236.760262px;}
.y4b8_c00001{bottom:236.819905px;}
.yfd_c00001{bottom:236.999905px;}
.y6f7_c00001{bottom:237.179905px;}
.y1b8_c00001{bottom:237.359905px;}
.yaaa_c00001{bottom:237.480262px;}
.y69e_c00001{bottom:237.539905px;}
.y4bb_c00001{bottom:237.719905px;}
.y161_c00001{bottom:237.899905px;}
.y646_c00001{bottom:238.259905px;}
.y344_c00001{bottom:238.799904px;}
.y611_c00001{bottom:239.159904px;}
.y793_c00001{bottom:239.339904px;}
.y24f_c00001{bottom:239.699904px;}
.y9a_c00001{bottom:239.879904px;}
.ybf1_c00001{bottom:240.059904px;}
.y2c2_c00001{bottom:240.239904px;}
.y9a8_c00001{bottom:240.419904px;}
.y3c6_c00001{bottom:240.779904px;}
.y18a_c00001{bottom:241.319903px;}
.y19e_c00001{bottom:241.499903px;}
.y48a_c00001{bottom:241.859903px;}
.y9fe_c00001{bottom:242.039903px;}
.y30a_c00001{bottom:242.219903px;}
.y98f_c00001{bottom:242.399903px;}
.yb14_c00001{bottom:242.579903px;}
.y413_c00001{bottom:242.759903px;}
.yc76_c00001{bottom:242.939903px;}
.y13e_c00001{bottom:243.479903px;}
.y7cc_c00001{bottom:244.019902px;}
.y868_c00001{bottom:244.559902px;}
.yd7_c00001{bottom:244.919902px;}
.y11e_c00001{bottom:245.639902px;}
.y9cd_c00001{bottom:245.819902px;}
.y2e1_c00001{bottom:245.999902px;}
.y765_c00001{bottom:246.179902px;}
.y8cf_c00001{bottom:246.359901px;}
.y379_c00001{bottom:246.539901px;}
.y82_c00001{bottom:246.899901px;}
.ya67_c00001{bottom:247.020258px;}
.yc04_c00001{bottom:247.799901px;}
.y2f0_c00001{bottom:248.159901px;}
.y2d4_c00001{bottom:248.339901px;}
.y9f3_c00001{bottom:248.699901px;}
.y520_c00001{bottom:248.700600px;}
.ya2a_c00001{bottom:248.879900px;}
.yc12_c00001{bottom:249.059900px;}
.y679_c00001{bottom:249.239900px;}
.y3e1_c00001{bottom:249.419900px;}
.y403_c00001{bottom:249.599900px;}
.y889_c00001{bottom:249.779900px;}
.y44c_c00001{bottom:250.139900px;}
.yadc_c00001{bottom:250.800257px;}
.y277_c00001{bottom:251.039900px;}
.ya20_c00001{bottom:251.219900px;}
.ya50_c00001{bottom:251.520256px;}
.y1d9_c00001{bottom:251.579899px;}
.yb4c_c00001{bottom:251.939899px;}
.yb40_c00001{bottom:252.119899px;}
.y7f4_c00001{bottom:252.299899px;}
.yd6_c00001{bottom:252.479899px;}
.y1eb_c00001{bottom:253.019899px;}
.y7ab_c00001{bottom:253.379899px;}
.y76c_c00001{bottom:253.559899px;}
.y51e_c00001{bottom:253.919898px;}
.y43f_c00001{bottom:254.099898px;}
.y6f6_c00001{bottom:254.279898px;}
.y94e_c00001{bottom:254.999898px;}
.ya1e_c00001{bottom:255.359898px;}
.y237_c00001{bottom:255.539898px;}
.y5e7_c00001{bottom:255.899898px;}
.y792_c00001{bottom:256.439897px;}
.yaf4_c00001{bottom:256.560254px;}
.y226_c00001{bottom:256.619897px;}
.yc17_c00001{bottom:256.799897px;}
.yb56_c00001{bottom:256.979897px;}
.y3e2_c00001{bottom:257.699897px;}
.ybd5_c00001{bottom:258.059897px;}
.y2c1_c00001{bottom:258.239897px;}
.y645_c00001{bottom:258.599897px;}
.y369_c00001{bottom:259.139896px;}
.y1b7_c00001{bottom:259.319896px;}
.y1b_c00001{bottom:259.499896px;}
.y8ab_c00001{bottom:259.679896px;}
.y2ab_c00001{bottom:259.859896px;}
.y9f2_c00001{bottom:260.039896px;}
.y35f_c00001{bottom:260.219896px;}
.y260_c00001{bottom:260.399896px;}
.y1d0_c00001{bottom:260.579896px;}
.y968_c00001{bottom:260.939896px;}
.y9a7_c00001{bottom:261.119896px;}
.y7cb_c00001{bottom:261.299895px;}
.y9e2_c00001{bottom:262.019895px;}
.y5b6_c00001{bottom:262.199895px;}
.yac3_c00001{bottom:262.500252px;}
.y556_c00001{bottom:262.739895px;}
.y98e_c00001{bottom:263.099895px;}
.y4ed_c00001{bottom:263.279895px;}
.ya7e_c00001{bottom:263.400252px;}
.y764_c00001{bottom:263.459895px;}
.yb16_c00001{bottom:263.639895px;}
.y238_c00001{bottom:263.819894px;}
.yae_c00001{bottom:263.999894px;}
.yb26_c00001{bottom:264.179894px;}
.y19d_c00001{bottom:264.899894px;}
.ya93_c00001{bottom:265.200251px;}
.y867_c00001{bottom:265.259894px;}
.y154_c00001{bottom:265.439894px;}
.y8d4_c00001{bottom:265.619894px;}
.yaa9_c00001{bottom:265.920251px;}
.yb34_c00001{bottom:265.979894px;}
.y91e_c00001{bottom:266.519893px;}
.yaaf_c00001{bottom:266.879893px;}
.y45c_c00001{bottom:267.239893px;}
.y3d5_c00001{bottom:267.419893px;}
.yec_c00001{bottom:267.779893px;}
.yb5a_c00001{bottom:268.139893px;}
.yfc_c00001{bottom:268.499893px;}
.yc61_c00001{bottom:268.859892px;}
.y160_c00001{bottom:269.039892px;}
.y580_c00001{bottom:269.219892px;}
.y8f4_c00001{bottom:269.399892px;}
.y3f2_c00001{bottom:269.759892px;}
.y343_c00001{bottom:269.939892px;}
.yc6d_c00001{bottom:270.299892px;}
.y67_c00001{bottom:270.479892px;}
.ybc_c00001{bottom:270.659892px;}
.y99_c00001{bottom:270.839892px;}
.y3b0_c00001{bottom:271.019892px;}
.y23d_c00001{bottom:271.379891px;}
.y582_c00001{bottom:271.559891px;}
.y3c5_c00001{bottom:271.739891px;}
.y678_c00001{bottom:272.099891px;}
.y423_c00001{bottom:272.459891px;}
.y11d_c00001{bottom:272.819891px;}
.y7f3_c00001{bottom:272.999891px;}
.y368_c00001{bottom:273.359891px;}
.y2d3_c00001{bottom:273.539891px;}
.y741_c00001{bottom:273.719891px;}
.yb13_c00001{bottom:274.079890px;}
.y1b6_c00001{bottom:274.259890px;}
.y4b5_c00001{bottom:274.439890px;}
.yc4f_c00001{bottom:274.619890px;}
.ya1a_c00001{bottom:274.799890px;}
.y69c_c00001{bottom:275.159890px;}
.yb55_c00001{bottom:275.339890px;}
.ya66_c00001{bottom:275.460247px;}
.y412_c00001{bottom:275.699890px;}
.y644_c00001{bottom:276.419889px;}
.y51d_c00001{bottom:276.599889px;}
.y36f_c00001{bottom:276.779889px;}
.y791_c00001{bottom:277.319889px;}
.y489_c00001{bottom:277.499889px;}
.y378_c00001{bottom:277.679889px;}
.y81_c00001{bottom:277.859889px;}
.y68_c00001{bottom:278.039889px;}
.ybd_c00001{bottom:278.219889px;}
.y298_c00001{bottom:278.579889px;}
.ybd4_c00001{bottom:278.759888px;}
.y23e_c00001{bottom:278.939888px;}
.y2ef_c00001{bottom:279.119888px;}
.yab2_c00001{bottom:279.479888px;}
.y717_c00001{bottom:279.659888px;}
.y45_c00001{bottom:279.839888px;}
.y3e0_c00001{bottom:280.379888px;}
.y4ec_c00001{bottom:280.559888px;}
.y189_c00001{bottom:280.739888px;}
.y8b1_c00001{bottom:281.279887px;}
.y40f_c00001{bottom:281.639887px;}
.yadb_c00001{bottom:281.760244px;}
.yc75_c00001{bottom:281.819887px;}
.y276_c00001{bottom:281.999887px;}
.y7ca_c00001{bottom:282.179887px;}
.y1d8_c00001{bottom:282.539887px;}
.ya4f_c00001{bottom:282.660244px;}
.y866_c00001{bottom:282.719887px;}
.yd5_c00001{bottom:282.899887px;}
.y2aa_c00001{bottom:283.079887px;}
.yb3f_c00001{bottom:283.259887px;}
.yc03_c00001{bottom:283.439887px;}
.ya1d_c00001{bottom:283.799886px;}
.y1ea_c00001{bottom:284.159886px;}
.y6c8_c00001{bottom:284.339886px;}
.y888_c00001{bottom:284.519886px;}
.yb6f_c00001{bottom:285.419886px;}
.y91d_c00001{bottom:285.779886px;}
.y24e_c00001{bottom:286.139886px;}
.y8d3_c00001{bottom:286.319885px;}
.y236_c00001{bottom:286.679885px;}
.y838_c00001{bottom:287.039885px;}
.y94a_c00001{bottom:287.040600px;}
.y51a_c00001{bottom:287.580600px;}
.y286_c00001{bottom:287.759885px;}
.y7aa_c00001{bottom:288.119885px;}
.yc3b_c00001{bottom:289.199884px;}
.yc60_c00001{bottom:289.559884px;}
.y9ef_c00001{bottom:289.739884px;}
.y1fe_c00001{bottom:290.279884px;}
.y1a_c00001{bottom:290.459884px;}
.y5e6_c00001{bottom:290.639884px;}
.yac2_c00001{bottom:290.940241px;}
.y4b6_c00001{bottom:291.000600px;}
.y740_c00001{bottom:291.179884px;}
.y1ce_c00001{bottom:291.539883px;}
.y610_c00001{bottom:291.719883px;}
.y69d_c00001{bottom:291.720600px;}
.ya7d_c00001{bottom:291.840240px;}
.y2e0_c00001{bottom:291.899883px;}
.y66_c00001{bottom:292.439883px;}
.y677_c00001{bottom:292.799883px;}
.y9e0_c00001{bottom:293.159883px;}
.ya92_c00001{bottom:293.640240px;}
.y51c_c00001{bottom:293.879882px;}
.y96a_c00001{bottom:294.059882px;}
.y643_c00001{bottom:294.239882px;}
.y4ea_c00001{bottom:294.240600px;}
.yaa8_c00001{bottom:294.360239px;}
.yc26_c00001{bottom:294.419882px;}
.y790_c00001{bottom:294.599882px;}
.y3c4_c00001{bottom:295.139882px;}
.yc4e_c00001{bottom:295.319882px;}
.ybbc_c00001{bottom:295.499882px;}
.y488_c00001{bottom:295.859882px;}
.ybb_c00001{bottom:296.039882px;}
.y4b4_c00001{bottom:296.219882px;}
.y153_c00001{bottom:296.579881px;}
.y69b_c00001{bottom:296.939881px;}
.y5b5_c00001{bottom:297.659881px;}
.y4e9_c00001{bottom:297.839881px;}
.yb4b_c00001{bottom:298.019881px;}
.y45b_c00001{bottom:298.199881px;}
.y3d4_c00001{bottom:298.379881px;}
.y1ff_c00001{bottom:298.559881px;}
.y43e_c00001{bottom:298.919880px;}
.yfb_c00001{bottom:299.459880px;}
.y1cf_c00001{bottom:299.819880px;}
.yad_c00001{bottom:299.999880px;}
.y716_c00001{bottom:300.359880px;}
.y342_c00001{bottom:300.899880px;}
.y6c9_c00001{bottom:300.900600px;}
.y9e1_c00001{bottom:301.439879px;}
.y763_c00001{bottom:301.619879px;}
.y98_c00001{bottom:301.979879px;}
.ybf0_c00001{bottom:302.339879px;}
.y887_c00001{bottom:302.699879px;}
.yb25_c00001{bottom:303.059879px;}
.y422_c00001{bottom:303.419879px;}
.y8d2_c00001{bottom:303.779878px;}
.yc02_c00001{bottom:304.319878px;}
.y23c_c00001{bottom:304.499878px;}
.y2a9_c00001{bottom:304.859878px;}
.yb12_c00001{bottom:305.039878px;}
.ya65_c00001{bottom:305.160235px;}
.yb7e_c00001{bottom:305.579878px;}
.y9fd_c00001{bottom:305.759878px;}
.y57f_c00001{bottom:305.939878px;}
.y6c7_c00001{bottom:306.119878px;}
.yeb_c00001{bottom:306.479877px;}
.yb93_c00001{bottom:306.659877px;}
.y581_c00001{bottom:306.839877px;}
.y7f2_c00001{bottom:307.739877px;}
.y8f5_c00001{bottom:307.740600px;}
.y837_c00001{bottom:307.919877px;}
.y2c0_c00001{bottom:308.459877px;}
.y377_c00001{bottom:308.639877px;}
.y7a9_c00001{bottom:308.819876px;}
.y80_c00001{bottom:308.999876px;}
.y297_c00001{bottom:309.539876px;}
.y6f5_c00001{bottom:309.719876px;}
.y3af_c00001{bottom:309.899876px;}
.y2ee_c00001{bottom:310.259876px;}
.y44_c00001{bottom:310.979876px;}
.y21e_c00001{bottom:311.159876px;}
.y5e5_c00001{bottom:311.339875px;}
.y19b_c00001{bottom:311.519875px;}
.y642_c00001{bottom:311.879875px;}
.yb33_c00001{bottom:312.059875px;}
.y60f_c00001{bottom:312.419875px;}
.yada_c00001{bottom:312.900232px;}
.y8f3_c00001{bottom:312.959875px;}
.y275_c00001{bottom:313.139875px;}
.yaf3_c00001{bottom:313.440232px;}
.ya1c_c00001{bottom:313.499875px;}
.ya4e_c00001{bottom:313.620232px;}
.y18_c00001{bottom:313.679875px;}
.yb59_c00001{bottom:314.039874px;}
.y65_c00001{bottom:314.219874px;}
.y5b4_c00001{bottom:314.939874px;}
.y1e9_c00001{bottom:315.119874px;}
.y78f_c00001{bottom:315.479874px;}
.y3f1_c00001{bottom:315.839874px;}
.yc4d_c00001{bottom:316.019874px;}
.y4e8_c00001{bottom:316.199874px;}
.yb6e_c00001{bottom:316.379873px;}
.y9a6_c00001{bottom:316.559873px;}
.ybaa_c00001{bottom:316.739873px;}
.y3c3_c00001{bottom:316.919873px;}
.y235_c00001{bottom:317.639873px;}
.y554_c00001{bottom:317.640600px;}
.yac_c00001{bottom:317.819873px;}
.y9cc_c00001{bottom:318.179873px;}
.y98d_c00001{bottom:318.539873px;}
.y285_c00001{bottom:318.719873px;}
.y13d_c00001{bottom:318.899872px;}
.y19c_c00001{bottom:319.079872px;}
.yc16_c00001{bottom:319.259872px;}
.yac1_c00001{bottom:319.380229px;}
.y8b0_c00001{bottom:319.439872px;}
.y40e_c00001{bottom:319.799872px;}
.y886_c00001{bottom:319.979872px;}
.ybd3_c00001{bottom:320.159872px;}
.ya7c_c00001{bottom:320.280229px;}
.y7c9_c00001{bottom:320.339872px;}
.yc74_c00001{bottom:320.519872px;}
.y865_c00001{bottom:320.699872px;}
.y8d1_c00001{bottom:320.879872px;}
.y19_c00001{bottom:321.239872px;}
.yb09_c00001{bottom:321.599871px;}
.y7ea_c00001{bottom:321.959871px;}
.ya91_c00001{bottom:322.080228px;}
.y35e_c00001{bottom:322.139871px;}
.y25f_c00001{bottom:322.499871px;}
.y1cd_c00001{bottom:322.679871px;}
.y553_c00001{bottom:322.859871px;}
.yaa7_c00001{bottom:322.980228px;}
.ybef_c00001{bottom:323.039871px;}
.y9df_c00001{bottom:324.119870px;}
.y7f1_c00001{bottom:325.019870px;}
.y836_c00001{bottom:325.199870px;}
.yb15_c00001{bottom:325.739870px;}
.yb02_c00001{bottom:326.099870px;}
.y179_c00001{bottom:326.279869px;}
.y3df_c00001{bottom:326.459869px;}
.y2a7_c00001{bottom:326.639869px;}
.y308_c00001{bottom:326.999869px;}
.y152_c00001{bottom:327.539869px;}
.y6f4_c00001{bottom:328.079869px;}
.y519_c00001{bottom:328.439869px;}
.y5e4_c00001{bottom:328.799868px;}
.y212_c00001{bottom:328.979868px;}
.y641_c00001{bottom:329.159868px;}
.y43c_c00001{bottom:329.339868px;}
.y3d3_c00001{bottom:329.519868px;}
.y76b_c00001{bottom:329.699868px;}
.y60e_c00001{bottom:329.879868px;}
.y328_c00001{bottom:330.239868px;}
.yfa_c00001{bottom:330.599868px;}
.yc5f_c00001{bottom:330.959868px;}
.y15f_c00001{bottom:331.139868px;}
.y376_c00001{bottom:331.859867px;}
.y341_c00001{bottom:332.039867px;}
.y24d_c00001{bottom:332.219867px;}
.yaf2_c00001{bottom:332.340224px;}
.y78e_c00001{bottom:332.759867px;}
.y97_c00001{bottom:332.939867px;}
.y4e7_c00001{bottom:333.299867px;}
.y69a_c00001{bottom:333.479867px;}
.y487_c00001{bottom:333.839866px;}
.y9a5_c00001{bottom:334.019866px;}
.y2a8_c00001{bottom:334.199866px;}
.y1d7_c00001{bottom:334.559866px;}
.y969_c00001{bottom:335.459866px;}
.y17_c00001{bottom:335.639866px;}
.yc25_c00001{bottom:335.819866px;}
.y98c_c00001{bottom:335.999866px;}
.ya64_c00001{bottom:336.120223px;}
.yb11_c00001{bottom:336.179866px;}
.yb7d_c00001{bottom:336.539865px;}
.y8af_c00001{bottom:336.719865px;}
.y9fc_c00001{bottom:336.899865px;}
.y885_c00001{bottom:337.259865px;}
.yba9_c00001{bottom:337.439865px;}
.y43d_c00001{bottom:337.619865px;}
.y329_c00001{bottom:337.799865px;}
.y2df_c00001{bottom:337.979865px;}
.y864_c00001{bottom:338.159865px;}
.y715_c00001{bottom:338.519865px;}
.y2bf_c00001{bottom:339.419864px;}
.y64_c00001{bottom:339.599864px;}
.y762_c00001{bottom:339.779864px;}
.y7f_c00001{bottom:339.959864px;}
.y6c5_c00001{bottom:339.960600px;}
.y296_c00001{bottom:340.319864px;}
.ybd2_c00001{bottom:340.859864px;}
.y2ed_c00001{bottom:341.219864px;}
.y6c3_c00001{bottom:341.220600px;}
.yae1_c00001{bottom:341.579863px;}
.y40d_c00001{bottom:341.759863px;}
.y43_c00001{bottom:341.939863px;}
.y3c2_c00001{bottom:342.119863px;}
.y21d_c00001{bottom:342.299863px;}
.y835_c00001{bottom:342.479863px;}
.yb32_c00001{bottom:343.019863px;}
.y57d_c00001{bottom:343.559863px;}
.ybee_c00001{bottom:343.739863px;}
.yad9_c00001{bottom:343.860219px;}
.y7e9_c00001{bottom:343.919862px;}
.y274_c00001{bottom:344.099862px;}
.ya4d_c00001{bottom:344.760219px;}
.y6c2_c00001{bottom:345.179862px;}
.yea_c00001{bottom:345.359862px;}
.yb53_c00001{bottom:345.539862px;}
.y7f0_c00001{bottom:345.719862px;}
.y5e3_c00001{bottom:346.079862px;}
.y1e8_c00001{bottom:346.259861px;}
.y640_c00001{bottom:346.439861px;}
.yb2f_c00001{bottom:346.979861px;}
.y60d_c00001{bottom:347.159861px;}
.y381_c00001{bottom:347.699861px;}
.yac0_c00001{bottom:348.000218px;}
.y676_c00001{bottom:348.239861px;}
.y2a6_c00001{bottom:348.419861px;}
.yc34_c00001{bottom:348.599861px;}
.ya7b_c00001{bottom:348.720218px;}
.y234_c00001{bottom:348.779860px;}
.y211_c00001{bottom:349.679860px;}
.y31a_c00001{bottom:350.039860px;}
.ya90_c00001{bottom:350.520217px;}
.y4e6_c00001{bottom:350.579860px;}
.y486_c00001{bottom:351.299859px;}
.yaa6_c00001{bottom:351.420216px;}
.y19a_c00001{bottom:351.659859px;}
.y417_c00001{bottom:351.839859px;}
.y327_c00001{bottom:352.199859px;}
.y1fd_c00001{bottom:352.379859px;}
.yc11_c00001{bottom:352.559859px;}
.yb08_c00001{bottom:352.739859px;}
.y351_c00001{bottom:352.919859px;}
.y98b_c00001{bottom:353.099859px;}
.yc6c_c00001{bottom:353.459859px;}
.y1cc_c00001{bottom:353.639859px;}
.y375_c00001{bottom:353.819858px;}
.y3f0_c00001{bottom:354.179858px;}
.yb92_c00001{bottom:354.359858px;}
.y9cb_c00001{bottom:354.539858px;}
.y9de_c00001{bottom:355.079858px;}
.y863_c00001{bottom:355.439858px;}
.y4b1_c00001{bottom:355.619858px;}
.y714_c00001{bottom:355.979858px;}
.yc24_c00001{bottom:356.339857px;}
.y551_c00001{bottom:356.520600px;}
.y8ce_c00001{bottom:356.699857px;}
.y178_c00001{bottom:357.239857px;}
.y8ae_c00001{bottom:357.419857px;}
.y3de_c00001{bottom:357.599857px;}
.y54f_c00001{bottom:357.780600px;}
.y884_c00001{bottom:357.959857px;}
.y307_c00001{bottom:358.139857px;}
.y7c8_c00001{bottom:358.499857px;}
.y151_c00001{bottom:358.679857px;}
.y8d0_c00001{bottom:359.039856px;}
.yc73_c00001{bottom:359.399856px;}
.yb4a_c00001{bottom:360.119856px;}
.y43b_c00001{bottom:360.299856px;}
.y352_c00001{bottom:360.479856px;}
.y761_c00001{bottom:360.659856px;}
.y16_c00001{bottom:360.839856px;}
.yc15_c00001{bottom:361.019856px;}
.y334_c00001{bottom:361.199856px;}
.yf9_c00001{bottom:361.559855px;}
.yd4_c00001{bottom:361.739855px;}
.y15e_c00001{bottom:362.099855px;}
.yb6d_c00001{bottom:362.459855px;}
.y340_c00001{bottom:362.999855px;}
.y24c_c00001{bottom:363.179855px;}
.y4df_c00001{bottom:363.359855px;}
.y6f3_c00001{bottom:363.719855px;}
.y294_c00001{bottom:363.899854px;}
.y96_c00001{bottom:364.079854px;}
.y7a8_c00001{bottom:364.259854px;}
.y63f_c00001{bottom:364.439854px;}
.y57c_c00001{bottom:365.339854px;}
.y421_c00001{bottom:365.519854px;}
.y675_c00001{bottom:365.699854px;}
.y516_c00001{bottom:365.879854px;}
.y5e2_c00001{bottom:366.779853px;}
.yb10_c00001{bottom:367.139853px;}
.ya63_c00001{bottom:367.260210px;}
.y73f_c00001{bottom:367.499853px;}
.y966_c00001{bottom:367.500600px;}
.yb7c_c00001{bottom:367.679853px;}
.y5b3_c00001{bottom:367.859853px;}
.y4e5_c00001{bottom:368.939852px;}
.y485_c00001{bottom:369.659852px;}
.y20f_c00001{bottom:369.839852px;}
.y949_c00001{bottom:370.019852px;}
.y2be_c00001{bottom:370.199852px;}
.yaf1_c00001{bottom:370.320209px;}
.y44b_c00001{bottom:370.379852px;}
.y284_c00001{bottom:370.739852px;}
.y78d_c00001{bottom:370.919852px;}
.y7e_c00001{bottom:371.099852px;}
.y295_c00001{bottom:371.459851px;}
.y3ae_c00001{bottom:371.999851px;}
.y4b2_c00001{bottom:372.180600px;}
.y2ec_c00001{bottom:372.359851px;}
.yae0_c00001{bottom:372.719851px;}
.y42_c00001{bottom:373.079851px;}
.yc10_c00001{bottom:373.259851px;}
.y2a5_c00001{bottom:373.799850px;}
.yb31_c00001{bottom:374.159850px;}
.y350_c00001{bottom:374.699850px;}
.y8ad_c00001{bottom:374.879850px;}
.yad8_c00001{bottom:375.000207px;}
.y273_c00001{bottom:375.239850px;}
.y883_c00001{bottom:375.419850px;}
.ya4c_c00001{bottom:375.720207px;}
.y7c7_c00001{bottom:375.779850px;}
.y862_c00001{bottom:376.139850px;}
.yb3e_c00001{bottom:376.319849px;}
.yabf_c00001{bottom:376.440206px;}
.y713_c00001{bottom:376.679849px;}
.ya7a_c00001{bottom:377.160206px;}
.y1e7_c00001{bottom:377.219849px;}
.y210_c00001{bottom:377.399849px;}
.y760_c00001{bottom:377.939849px;}
.yb91_c00001{bottom:378.119849px;}
.ybbb_c00001{bottom:378.299849px;}
.y380_c00001{bottom:378.659849px;}
.ya8f_c00001{bottom:378.960205px;}
.y1d5_c00001{bottom:379.199848px;}
.y233_c00001{bottom:379.739848px;}
.yaa5_c00001{bottom:379.860205px;}
.y7e8_c00001{bottom:380.639848px;}
.y6f2_c00001{bottom:380.819848px;}
.y319_c00001{bottom:380.999848px;}
.yc01_c00001{bottom:381.359847px;}
.y7a7_c00001{bottom:381.719847px;}
.y57e_c00001{bottom:381.900600px;}
.y63e_c00001{bottom:382.079847px;}
.ybd1_c00001{bottom:382.259847px;}
.y517_c00001{bottom:382.620600px;}
.y674_c00001{bottom:382.799847px;}
.y374_c00001{bottom:382.979847px;}
.y1fc_c00001{bottom:383.339847px;}
.yb07_c00001{bottom:383.699847px;}
.y7ef_c00001{bottom:383.879846px;}
.ye9_c00001{bottom:384.059846px;}
.y5e1_c00001{bottom:384.239846px;}
.y25e_c00001{bottom:384.599846px;}
.y1cb_c00001{bottom:384.779846px;}
.y76a_c00001{bottom:385.139846px;}
.y60c_c00001{bottom:385.319846px;}
.y293_c00001{bottom:385.679846px;}
.y5b2_c00001{bottom:386.039846px;}
.y4e4_c00001{bottom:386.219846px;}
.y699_c00001{bottom:386.579845px;}
.y1d6_c00001{bottom:386.759845px;}
.y3ef_c00001{bottom:387.119845px;}
.y515_c00001{bottom:387.839845px;}
.ya0c_c00001{bottom:388.019845px;}
.y21c_c00001{bottom:388.199845px;}
.y177_c00001{bottom:388.379845px;}
.y3dd_c00001{bottom:388.559845px;}
.y98a_c00001{bottom:388.739845px;}
.y306_c00001{bottom:389.099844px;}
.y8f1_c00001{bottom:389.100600px;}
.yaf0_c00001{bottom:389.400201px;}
.y9a4_c00001{bottom:389.459844px;}
.y150_c00001{bottom:389.639844px;}
.y416_c00001{bottom:390.179844px;}
.y9ca_c00001{bottom:390.719844px;}
.ya56_c00001{bottom:391.079844px;}
.yb49_c00001{bottom:391.259843px;}
.y43a_c00001{bottom:391.439843px;}
.y3d2_c00001{bottom:391.619843px;}
.y78c_c00001{bottom:391.799843px;}
.yc23_c00001{bottom:391.979843px;}
.y47e_c00001{bottom:392.159843px;}
.y326_c00001{bottom:392.339843px;}
.yd3_c00001{bottom:392.699843px;}
.yc5e_c00001{bottom:393.059843px;}
.y15d_c00001{bottom:393.239843px;}
.yb6c_c00001{bottom:393.419843px;}
.y861_c00001{bottom:393.599843px;}
.y2bd_c00001{bottom:393.779842px;}
.yc0f_c00001{bottom:393.959842px;}
.y33f_c00001{bottom:394.139842px;}
.y8f0_c00001{bottom:394.319842px;}
.y13c_c00001{bottom:394.499842px;}
.yc6b_c00001{bottom:394.859842px;}
.y95_c00001{bottom:395.039842px;}
.y420_c00001{bottom:396.659841px;}
.yb54_c00001{bottom:396.839841px;}
.y91c_c00001{bottom:398.099841px;}
.ya62_c00001{bottom:398.220198px;}
.yb0f_c00001{bottom:398.279841px;}
.yb7b_c00001{bottom:398.639841px;}
.y75f_c00001{bottom:398.819840px;}
.y9fb_c00001{bottom:398.999840px;}
.y63d_c00001{bottom:399.179840px;}
.y54c_c00001{bottom:399.359840px;}
.y673_c00001{bottom:400.079840px;}
.y4de_c00001{bottom:400.799840px;}
.y7ee_c00001{bottom:401.339839px;}
.y5e0_c00001{bottom:401.519839px;}
.y283_c00001{bottom:401.879839px;}
.y7d_c00001{bottom:402.059839px;}
.y7a6_c00001{bottom:402.419839px;}
.y60b_c00001{bottom:402.599839px;}
.y6c1_c00001{bottom:402.779839px;}
.ybd0_c00001{bottom:402.959839px;}
.y2eb_c00001{bottom:403.319839px;}
.y4e3_c00001{bottom:403.499839px;}
.y513_c00001{bottom:403.500600px;}
.y41_c00001{bottom:404.039838px;}
.y1d4_c00001{bottom:404.579838px;}
.yabe_c00001{bottom:404.880195px;}
.yc33_c00001{bottom:405.119838px;}
.y73e_c00001{bottom:405.659838px;}
.ya79_c00001{bottom:405.780195px;}
.ybed_c00001{bottom:405.839838px;}
.yad7_c00001{bottom:405.960195px;}
.y812_c00001{bottom:406.019838px;}
.y272_c00001{bottom:406.199838px;}
.y57b_c00001{bottom:406.559837px;}
.y9a3_c00001{bottom:406.739837px;}
.ya4b_c00001{bottom:406.860194px;}
.y8aa_c00001{bottom:407.099837px;}
.y333_c00001{bottom:407.279837px;}
.ya8e_c00001{bottom:407.400194px;}
.y292_c00001{bottom:407.459837px;}
.y402_c00001{bottom:407.639837px;}
.yaa4_c00001{bottom:408.300194px;}
.y1e6_c00001{bottom:408.359837px;}
.y21a_c00001{bottom:408.719837px;}
.y78b_c00001{bottom:409.079836px;}
.y24b_c00001{bottom:409.259836px;}
.y20e_c00001{bottom:409.439836px;}
.y37f_c00001{bottom:409.799836px;}
.y373_c00001{bottom:410.159836px;}
.y232_c00001{bottom:410.879836px;}
.y7c6_c00001{bottom:411.419835px;}
.y415_c00001{bottom:411.959835px;}
.y965_c00001{bottom:412.319835px;}
.yc22_c00001{bottom:412.859835px;}
.y882_c00001{bottom:413.399835px;}
.yb06_c00001{bottom:413.579835px;}
.yc5d_c00001{bottom:413.759834px;}
.y9ee_c00001{bottom:413.939834px;}
.y860_c00001{bottom:414.299834px;}
.y1fb_c00001{bottom:414.479834px;}
.yc0e_c00001{bottom:414.659834px;}
.y34f_c00001{bottom:414.839834px;}
.y4b0_c00001{bottom:415.199834px;}
.y2bb_c00001{bottom:415.559834px;}
.y1ca_c00001{bottom:415.739834px;}
.y54d_c00001{bottom:415.920600px;}
.y75e_c00001{bottom:416.099834px;}
.y21b_c00001{bottom:416.279833px;}
.y6f1_c00001{bottom:416.459833px;}
.yb01_c00001{bottom:416.639833px;}
.y9dd_c00001{bottom:417.179833px;}
.y7e7_c00001{bottom:417.539833px;}
.y7ed_c00001{bottom:418.439833px;}
.y834_c00001{bottom:418.799832px;}
.y3ad_c00001{bottom:418.979832px;}
.y176_c00001{bottom:419.339832px;}
.yc4c_c00001{bottom:419.519832px;}
.y3dc_c00001{bottom:419.699832px;}
.y6c0_c00001{bottom:419.879832px;}
.y63c_c00001{bottom:420.059832px;}
.y305_c00001{bottom:420.239832px;}
.y5b1_c00001{bottom:420.599832px;}
.y14f_c00001{bottom:420.779832px;}
.y54b_c00001{bottom:421.139832px;}
.y4e2_c00001{bottom:421.679831px;}
.y5df_c00001{bottom:422.219831px;}
.y439_c00001{bottom:422.399831px;}
.y3d1_c00001{bottom:422.579831px;}
.yc00_c00001{bottom:422.759831px;}
.ye8_c00001{bottom:422.939831px;}
.y2bc_c00001{bottom:423.119831px;}
.y60a_c00001{bottom:423.299831px;}
.y811_c00001{bottom:423.479831px;}
.yf8_c00001{bottom:423.659831px;}
.yd2_c00001{bottom:423.839830px;}
.ya0b_c00001{bottom:424.019830px;}
.y15c_c00001{bottom:424.199830px;}
.y512_c00001{bottom:424.379830px;}
.yb6b_c00001{bottom:424.559830px;}
.y484_c00001{bottom:424.919830px;}
.y947_c00001{bottom:424.920600px;}
.y33e_c00001{bottom:425.099830px;}
.yb90_c00001{bottom:425.819830px;}
.y94_c00001{bottom:426.179830px;}
.y73d_c00001{bottom:426.359829px;}
.ybec_c00001{bottom:426.539829px;}
.y989_c00001{bottom:426.719829px;}
.y318_c00001{bottom:426.899829px;}
.yaef_c00001{bottom:427.200186px;}
.y9a2_c00001{bottom:427.439829px;}
.y41f_c00001{bottom:427.619829px;}
.y47d_c00001{bottom:429.059828px;}
.yb0e_c00001{bottom:429.239828px;}
.ya61_c00001{bottom:429.360185px;}
.y78a_c00001{bottom:429.959828px;}
.y2de_c00001{bottom:430.139828px;}
.y881_c00001{bottom:430.859828px;}
.y2d2_c00001{bottom:431.219828px;}
.y85f_c00001{bottom:431.759827px;}
.y8ef_c00001{bottom:431.939827px;}
.y7c5_c00001{bottom:432.119827px;}
.y712_c00001{bottom:432.299827px;}
.y282_c00001{bottom:432.839827px;}
.y37d_c00001{bottom:433.019827px;}
.y7c_c00001{bottom:433.199827px;}
.yabd_c00001{bottom:433.320184px;}
.y75d_c00001{bottom:433.379827px;}
.y6be_c00001{bottom:433.919826px;}
.yc3a_c00001{bottom:434.099826px;}
.ya78_c00001{bottom:434.220183px;}
.y2ea_c00001{bottom:434.459826px;}
.y6f0_c00001{bottom:434.819826px;}
.y40_c00001{bottom:435.179826px;}
.yc0d_c00001{bottom:435.359826px;}
.ya8d_c00001{bottom:435.840183px;}
.y91b_c00001{bottom:436.259825px;}
.yba_c00001{bottom:436.619825px;}
.yaa3_c00001{bottom:436.740182px;}
.y549_c00001{bottom:436.800600px;}
.yc72_c00001{bottom:436.979825px;}
.yad6_c00001{bottom:437.100182px;}
.yb58_c00001{bottom:437.159825px;}
.y271_c00001{bottom:437.339825px;}
.y2ba_c00001{bottom:437.519825px;}
.ya4a_c00001{bottom:437.820182px;}
.y672_c00001{bottom:438.239825px;}
.yb3d_c00001{bottom:438.419825px;}
.y4dd_c00001{bottom:438.959824px;}
.y1e5_c00001{bottom:439.319824px;}
.y393_c00001{bottom:439.499824px;}
.y5de_c00001{bottom:439.679824px;}
.yc4b_c00001{bottom:440.219824px;}
.y24a_c00001{bottom:440.399824px;}
.y37e_c00001{bottom:440.579824px;}
.y609_c00001{bottom:440.759824px;}
.y317_c00001{bottom:441.119824px;}
.ya0a_c00001{bottom:441.659823px;}
.y231_c00001{bottom:441.839823px;}
.y483_c00001{bottom:442.199823px;}
.y9bb_c00001{bottom:443.279823px;}
.yb00_c00001{bottom:443.459823px;}
.y73c_c00001{bottom:443.819822px;}
.y988_c00001{bottom:444.179822px;}
.y401_c00001{bottom:444.359822px;}
.y8ac_c00001{bottom:444.719822px;}
.y9a1_c00001{bottom:444.899822px;}
.y11c_c00001{bottom:445.079822px;}
.y1fa_c00001{bottom:445.439822px;}
.yaee_c00001{bottom:446.280178px;}
.yc32_c00001{bottom:446.519821px;}
.y25d_c00001{bottom:446.699821px;}
.y1c9_c00001{bottom:446.879821px;}
.y789_c00001{bottom:447.239821px;}
.y8cc_c00001{bottom:447.780600px;}
.y880_c00001{bottom:448.139821px;}
.y9dc_c00001{bottom:448.319821px;}
.y219_c00001{bottom:448.859820px;}
.y7c4_c00001{bottom:449.579820px;}
.y964_c00001{bottom:450.479820px;}
.y3db_c00001{bottom:450.659820px;}
.y304_c00001{bottom:451.199820px;}
.y14e_c00001{bottom:451.739819px;}
.y6ef_c00001{bottom:452.099819px;}
.y711_c00001{bottom:452.999819px;}
.y332_c00001{bottom:453.179819px;}
.y438_c00001{bottom:453.539819px;}
.yd0_c00001{bottom:453.719819px;}
.y75c_c00001{bottom:454.079818px;}
.y7e6_c00001{bottom:454.259818px;}
.yc21_c00001{bottom:454.439818px;}
.y63b_c00001{bottom:454.619818px;}
.yf7_c00001{bottom:454.799818px;}
.yb2e_c00001{bottom:454.979818px;}
.y44a_c00001{bottom:455.159818px;}
.y63_c00001{bottom:455.339818px;}
.y671_c00001{bottom:455.519818px;}
.y6bd_c00001{bottom:455.699818px;}
.yc0c_c00001{bottom:456.059818px;}
.y33d_c00001{bottom:456.239818px;}
.y7a_c00001{bottom:456.419817px;}
.y7ec_c00001{bottom:456.599817px;}
.y5dd_c00001{bottom:456.779817px;}
.y3a5_c00001{bottom:456.959817px;}
.y92_c00001{bottom:457.139817px;}
.y548_c00001{bottom:457.679817px;}
.y608_c00001{bottom:458.039817px;}
.yb24_c00001{bottom:458.219817px;}
.y41e_c00001{bottom:458.759816px;}
.y511_c00001{bottom:459.839816px;}
.ya60_c00001{bottom:460.320173px;}
.yb0d_c00001{bottom:460.379816px;}
.yc4a_c00001{bottom:460.919816px;}
.y9fa_c00001{bottom:461.099816px;}
.yd1_c00001{bottom:461.279815px;}
.y810_c00001{bottom:461.459815px;}
.yabc_c00001{bottom:461.760172px;}
.ye7_c00001{bottom:461.819815px;}
.y2d1_c00001{bottom:462.179815px;}
.ya77_c00001{bottom:462.660172px;}
.y2b9_c00001{bottom:462.719815px;}
.y482_c00001{bottom:462.899815px;}
.y9c9_c00001{bottom:463.079815px;}
.y8a9_c00001{bottom:463.259815px;}
.yafa_c00001{bottom:463.619815px;}
.y945_c00001{bottom:463.800600px;}
.y7b_c00001{bottom:463.979814px;}
.ybff_c00001{bottom:464.159814px;}
.ya8c_c00001{bottom:464.280171px;}
.y174_c00001{bottom:464.339814px;}
.y73b_c00001{bottom:464.519814px;}
.ybcf_c00001{bottom:465.059814px;}
.y943_c00001{bottom:465.060600px;}
.yaa2_c00001{bottom:465.180171px;}
.y57a_c00001{bottom:465.239814px;}
.y93_c00001{bottom:465.419814px;}
.y3bb_c00001{bottom:465.599814px;}
.y47c_c00001{bottom:465.779814px;}
.y3f_c00001{bottom:466.139814px;}
.y13b_c00001{bottom:466.499813px;}
.y697_c00001{bottom:466.859813px;}
.yc31_c00001{bottom:467.219813px;}
.yb9_c00001{bottom:467.759813px;}
.ybeb_c00001{bottom:467.939813px;}
.yad5_c00001{bottom:468.060170px;}
.y698_c00001{bottom:468.119813px;}
.y270_c00001{bottom:468.299813px;}
.y87f_c00001{bottom:468.839812px;}
.ya49_c00001{bottom:468.960169px;}
.y942_c00001{bottom:469.019812px;}
.yb3c_c00001{bottom:469.559812px;}
.y85e_c00001{bottom:469.739812px;}
.y15b_c00001{bottom:470.279812px;}
.y1e4_c00001{bottom:470.459812px;}
.y391_c00001{bottom:470.999812px;}
.y75b_c00001{bottom:471.539811px;}
.y175_c00001{bottom:471.899811px;}
.y8ee_c00001{bottom:472.079811px;}
.y63a_c00001{bottom:472.619811px;}
.y230_c00001{bottom:472.799811px;}
.yb1b_c00001{bottom:472.979811px;}
.yb8f_c00001{bottom:473.339811px;}
.y187_c00001{bottom:473.519811px;}
.y670_c00001{bottom:473.879810px;}
.y833_c00001{bottom:474.239810px;}
.y918_c00001{bottom:474.599810px;}
.yc20_c00001{bottom:475.139810px;}
.y769_c00001{bottom:475.319810px;}
.yc39_c00001{bottom:475.499810px;}
.yc71_c00001{bottom:475.679810px;}
.yc5c_c00001{bottom:475.859810px;}
.y9ed_c00001{bottom:476.039810px;}
.y11b_c00001{bottom:476.219810px;}
.y1f9_c00001{bottom:476.579809px;}
.yc0b_c00001{bottom:476.759809px;}
.y4dc_c00001{bottom:477.119809px;}
.y400_c00001{bottom:477.299809px;}
.y510_c00001{bottom:477.659809px;}
.y1c8_c00001{bottom:477.839809px;}
.y79_c00001{bottom:478.199809px;}
.y607_c00001{bottom:478.739809px;}
.y80f_c00001{bottom:478.919808px;}
.ycf_c00001{bottom:479.099808px;}
.y392_c00001{bottom:479.279808px;}
.y9ba_c00001{bottom:479.459808px;}
.y852_c00001{bottom:479.999808px;}
.y37c_c00001{bottom:480.179808px;}
.y481_c00001{bottom:480.359808px;}
.y8a8_c00001{bottom:480.539808px;}
.y188_c00001{bottom:481.079808px;}
.y316_c00001{bottom:481.439807px;}
.yc49_c00001{bottom:481.619807px;}
.y3da_c00001{bottom:481.799807px;}
.y73a_c00001{bottom:481.979807px;}
.y303_c00001{bottom:482.159807px;}
.y14d_c00001{bottom:482.879807px;}
.ya3c_c00001{bottom:484.139806px;}
.yaed_c00001{bottom:484.260163px;}
.y437_c00001{bottom:484.499806px;}
.y3d0_c00001{bottom:484.679806px;}
.ybfe_c00001{bottom:484.859806px;}
.y249_c00001{bottom:485.219806px;}
.y788_c00001{bottom:485.399806px;}
.yf6_c00001{bottom:485.759806px;}
.yb2d_c00001{bottom:486.119806px;}
.y449_c00001{bottom:486.299805px;}
.y62_c00001{bottom:486.479805px;}
.y85d_c00001{bottom:487.019805px;}
.y33c_c00001{bottom:487.199805px;}
.y710_c00001{bottom:487.739805px;}
.yc30_c00001{bottom:487.919805px;}
.y3a3_c00001{bottom:488.099805px;}
.y91_c00001{bottom:488.279805px;}
.y5a2_c00001{bottom:488.459805px;}
.ybea_c00001{bottom:488.639805px;}
.y75a_c00001{bottom:488.819804px;}
.y41d_c00001{bottom:490.079804px;}
.yabb_c00001{bottom:490.200161px;}
.y639_c00001{bottom:490.259804px;}
.y8c9_c00001{bottom:490.619804px;}
.ya76_c00001{bottom:491.100161px;}
.y7e5_c00001{bottom:491.159804px;}
.y919_c00001{bottom:491.160600px;}
.y66e_c00001{bottom:491.339803px;}
.ya5f_c00001{bottom:491.460160px;}
.y7eb_c00001{bottom:492.059803px;}
.y6bc_c00001{bottom:492.599803px;}
.y45a_c00001{bottom:492.779803px;}
.ya8b_c00001{bottom:492.900160px;}
.y2d0_c00001{bottom:492.959803px;}
.y8a7_c00001{bottom:493.139803px;}
.y4af_c00001{bottom:493.319803px;}
.y6bf_c00001{bottom:493.499803px;}
.yaa1_c00001{bottom:493.620160px;}
.y5b0_c00001{bottom:494.219802px;}
.yaf9_c00001{bottom:494.579802px;}
.y281_c00001{bottom:494.939802px;}
.y5dc_c00001{bottom:495.119802px;}
.y576_c00001{bottom:495.299802px;}
.y50f_c00001{bottom:496.019802px;}
.y606_c00001{bottom:496.199802px;}
.y3a4_c00001{bottom:496.379801px;}
.y2e9_c00001{bottom:496.559801px;}
.y3ba_c00001{bottom:496.739801px;}
.ya54_c00001{bottom:496.919801px;}
.yb8e_c00001{bottom:497.099801px;}
.y3e_c00001{bottom:497.279801px;}
.yc0a_c00001{bottom:497.459801px;}
.yb7_c00001{bottom:497.639801px;}
.y15_c00001{bottom:498.179801px;}
.yc6a_c00001{bottom:498.359801px;}
.y66f_c00001{bottom:498.899800px;}
.yad4_c00001{bottom:499.200157px;}
.y331_c00001{bottom:499.259800px;}
.y26f_c00001{bottom:499.439800px;}
.y80e_c00001{bottom:499.619800px;}
.y695_c00001{bottom:499.800600px;}
.ya48_c00001{bottom:499.920157px;}
.y9a0_c00001{bottom:500.339800px;}
.ye6_c00001{bottom:500.519800px;}
.y15a_c00001{bottom:501.419799px;}
.yb6a_c00001{bottom:501.599799px;}
.y851_c00001{bottom:501.779799px;}
.y390_c00001{bottom:501.959799px;}
.yc48_c00001{bottom:502.319799px;}
.ybba_c00001{bottom:502.499799px;}
.y47b_c00001{bottom:502.679799px;}
.y547_c00001{bottom:502.859799px;}
.yaec_c00001{bottom:503.160156px;}
.y87e_c00001{bottom:503.579799px;}
.yb1a_c00001{bottom:503.939798px;}
.y85c_c00001{bottom:504.299798px;}
.y173_c00001{bottom:504.479798px;}
.y694_c00001{bottom:504.659798px;}
.yb8_c00001{bottom:505.199798px;}
.y963_c00001{bottom:505.380600px;}
.ybfd_c00001{bottom:505.559798px;}
.yc14_c00001{bottom:505.919798px;}
.y579_c00001{bottom:506.099798px;}
.y62c_c00001{bottom:506.459797px;}
.y93f_c00001{bottom:506.639797px;}
.y9ec_c00001{bottom:506.999797px;}
.y11a_c00001{bottom:507.179797px;}
.y8ca_c00001{bottom:507.180600px;}
.y1f8_c00001{bottom:507.539797px;}
.y78_c00001{bottom:507.899797px;}
.y133_c00001{bottom:508.259797px;}
.y70f_c00001{bottom:508.439797px;}
.yc2f_c00001{bottom:508.619797px;}
.y25c_c00001{bottom:508.799796px;}
.y1c7_c00001{bottom:508.979796px;}
.ybe9_c00001{bottom:509.339796px;}
.y759_c00001{bottom:509.519796px;}
.y66d_c00001{bottom:510.059796px;}
.y5a1_c00001{bottom:510.239796px;}
.y9da_c00001{bottom:510.419796px;}
.y7e4_c00001{bottom:510.599796px;}
.y6ee_c00001{bottom:510.959796px;}
.y5af_c00001{bottom:511.679795px;}
.y5db_c00001{bottom:512.219795px;}
.y832_c00001{bottom:512.399795px;}
.y40b_c00001{bottom:512.579795px;}
.y3d9_c00001{bottom:512.759795px;}
.y199_c00001{bottom:513.119795px;}
.y302_c00001{bottom:513.299795px;}
.y605_c00001{bottom:513.479795px;}
.y186_c00001{bottom:513.659795px;}
.y14c_c00001{bottom:514.199794px;}
.yc70_c00001{bottom:514.559794px;}
.y8a6_c00001{bottom:514.919794px;}
.y4db_c00001{bottom:515.279794px;}
.y436_c00001{bottom:515.639794px;}
.y1b5_c00001{bottom:515.819794px;}
.y987_c00001{bottom:516.719793px;}
.yf5_c00001{bottom:516.899793px;}
.y575_c00001{bottom:517.079793px;}
.y448_c00001{bottom:517.259793px;}
.y61_c00001{bottom:517.439793px;}
.yc09_c00001{bottom:518.159793px;}
.y33b_c00001{bottom:518.339793px;}
.yaba_c00001{bottom:518.640150px;}
.y9db_c00001{bottom:518.699793px;}
.y22f_c00001{bottom:518.879792px;}
.y3a2_c00001{bottom:519.059792px;}
.y90_c00001{bottom:519.239792px;}
.ya75_c00001{bottom:519.540149px;}
.y739_c00001{bottom:520.139792px;}
.y40c_c00001{bottom:520.859792px;}
.yb8d_c00001{bottom:521.039792px;}
.ya8a_c00001{bottom:521.340148px;}
.yaa0_c00001{bottom:522.060148px;}
.y2dd_c00001{bottom:522.299791px;}
.ya5e_c00001{bottom:522.420148px;}
.yb0c_c00001{bottom:522.479791px;}
.yb6_c00001{bottom:523.019791px;}
.ya19_c00001{bottom:523.199791px;}
.y940_c00001{bottom:523.200600px;}
.y787_c00001{bottom:523.379791px;}
.y850_c00001{bottom:523.559791px;}
.y2cf_c00001{bottom:523.919790px;}
.y87d_c00001{bottom:524.279790px;}
.y546_c00001{bottom:524.999790px;}
.y9f9_c00001{bottom:525.179790px;}
.y638_c00001{bottom:525.539790px;}
.yaf8_c00001{bottom:525.719790px;}
.y70e_c00001{bottom:525.899790px;}
.yc13_c00001{bottom:526.619789px;}
.y758_c00001{bottom:526.979789px;}
.ybce_c00001{bottom:527.159789px;}
.y2e8_c00001{bottom:527.519789px;}
.y3b8_c00001{bottom:527.699789px;}
.y4ad_c00001{bottom:527.700600px;}
.y7e3_c00001{bottom:527.879789px;}
.yab_c00001{bottom:528.059789px;}
.y3d_c00001{bottom:528.239789px;}
.y66c_c00001{bottom:528.419789px;}
.y247_c00001{bottom:528.779788px;}
.y41c_c00001{bottom:528.959788px;}
.y14_c00001{bottom:529.139788px;}
.yc2e_c00001{bottom:529.319788px;}
.ybe8_c00001{bottom:530.039788px;}
.y917_c00001{bottom:530.040600px;}
.yad3_c00001{bottom:530.160145px;}
.y662_c00001{bottom:530.219788px;}
.y119_c00001{bottom:530.399788px;}
.ya47_c00001{bottom:531.060145px;}
.yb3b_c00001{bottom:531.299787px;}
.y915_c00001{bottom:531.300600px;}
.y8c8_c00001{bottom:531.839787px;}
.y5a0_c00001{bottom:532.019787px;}
.yb2c_c00001{bottom:532.199787px;}
.y159_c00001{bottom:532.379787px;}
.y1e3_c00001{bottom:532.559787px;}
.yb69_c00001{bottom:532.739787px;}
.y4ac_c00001{bottom:532.919787px;}
.y38f_c00001{bottom:533.099787px;}
.y604_c00001{bottom:534.179786px;}
.y77_c00001{bottom:534.539786px;}
.yb19_c00001{bottom:535.079786px;}
.y914_c00001{bottom:535.259786px;}
.y9c8_c00001{bottom:535.619786px;}
.y480_c00001{bottom:535.799786px;}
.y3b9_c00001{bottom:535.979786px;}
.y248_c00001{bottom:536.339785px;}
.y986_c00001{bottom:537.599785px;}
.y80d_c00001{bottom:537.779785px;}
.yc5b_c00001{bottom:537.959785px;}
.y9eb_c00001{bottom:538.139785px;}
.y99f_c00001{bottom:538.319785px;}
.y1f7_c00001{bottom:538.679785px;}
.y574_c00001{bottom:538.859784px;}
.y132_c00001{bottom:539.219784px;}
.ye5_c00001{bottom:539.399784px;}
.y47a_c00001{bottom:539.579784px;}
.y1c6_c00001{bottom:539.939784px;}
.y60_c00001{bottom:540.839784px;}
.yaeb_c00001{bottom:541.140141px;}
.y578_c00001{bottom:541.199784px;}
.y9d9_c00001{bottom:541.379783px;}
.y87c_c00001{bottom:541.739783px;}
.y13a_c00001{bottom:541.919783px;}
.y85b_c00001{bottom:542.459783px;}
.y637_c00001{bottom:543.359783px;}
.y40a_c00001{bottom:543.719783px;}
.y14a_c00001{bottom:544.079782px;}
.y301_c00001{bottom:544.259782px;}
.y961_c00001{bottom:544.260600px;}
.y693_c00001{bottom:544.619782px;}
.yb8c_c00001{bottom:544.799782px;}
.y545_c00001{bottom:544.979782px;}
.y330_c00001{bottom:545.339782px;}
.y95f_c00001{bottom:545.520600px;}
.y66b_c00001{bottom:545.879782px;}
.ya08_c00001{bottom:546.059782px;}
.ya3b_c00001{bottom:546.239782px;}
.y1b4_c00001{bottom:546.599781px;}
.y3cf_c00001{bottom:546.779781px;}
.y6ba_c00001{bottom:546.780600px;}
.y280_c00001{bottom:546.959781px;}
.yab9_c00001{bottom:547.080138px;}
.y25b_c00001{bottom:547.139781px;}
.ybfc_c00001{bottom:547.319781px;}
.y2cd_c00001{bottom:547.499781px;}
.y757_c00001{bottom:547.679781px;}
.yf4_c00001{bottom:547.859781px;}
.ya74_c00001{bottom:547.980138px;}
.y447_c00001{bottom:548.399781px;}
.y7e2_c00001{bottom:548.579781px;}
.y50e_c00001{bottom:548.759780px;}
.y10c_c00001{bottom:548.939780px;}
.y6ed_c00001{bottom:549.119780px;}
.y33a_c00001{bottom:549.299780px;}
.y95e_c00001{bottom:549.479780px;}
.ya89_c00001{bottom:549.780137px;}
.y22e_c00001{bottom:550.019780px;}
.y3a1_c00001{bottom:550.199780px;}
.y8f_c00001{bottom:550.379780px;}
.ya9f_c00001{bottom:550.500137px;}
.y831_c00001{bottom:550.559780px;}
.ybe7_c00001{bottom:550.739780px;}
.y14b_c00001{bottom:551.639779px;}
.y6b9_c00001{bottom:551.999779px;}
.y117_c00001{bottom:552.359779px;}
.y8a4_c00001{bottom:552.539779px;}
.yba8_c00001{bottom:553.079779px;}
.y2dc_c00001{bottom:553.259779px;}
.y4da_c00001{bottom:553.439779px;}
.ya5d_c00001{bottom:553.560136px;}
.ya18_c00001{bottom:554.159778px;}
.y913_c00001{bottom:554.699778px;}
.y2ce_c00001{bottom:555.059778px;}
.y80c_c00001{bottom:555.239778px;}
.y99e_c00001{bottom:555.599778px;}
.yaf7_c00001{bottom:555.959778px;}
.y38e_c00001{bottom:556.319777px;}
.yb57_c00001{bottom:557.039777px;}
.y4e1_c00001{bottom:557.939777px;}
.y738_c00001{bottom:558.299777px;}
.y2e7_c00001{bottom:558.659777px;}
.y3b7_c00001{bottom:558.839776px;}
.y198_c00001{bottom:559.019776px;}
.yaa_c00001{bottom:559.199776px;}
.y3c_c00001{bottom:559.379776px;}
.yc08_c00001{bottom:559.559776px;}
.y118_c00001{bottom:559.919776px;}
.yaea_c00001{bottom:560.040133px;}
.y13_c00001{bottom:560.279776px;}
.y84f_c00001{bottom:560.459776px;}
.y636_c00001{bottom:560.639776px;}
.yad2_c00001{bottom:561.300132px;}
.y26e_c00001{bottom:561.359775px;}
.y786_c00001{bottom:561.539775px;}
.y246_c00001{bottom:561.719775px;}
.ya46_c00001{bottom:562.020132px;}
.y544_c00001{bottom:562.079775px;}
.y87b_c00001{bottom:562.439775px;}
.y5e_c00001{bottom:562.619775px;}
.y72e_c00001{bottom:562.979775px;}
.y85a_c00001{bottom:563.159775px;}
.y158_c00001{bottom:563.519775px;}
.yb68_c00001{bottom:563.699775px;}
.y70d_c00001{bottom:564.059774px;}
.y5ae_c00001{bottom:564.419774px;}
.y66a_c00001{bottom:564.599774px;}
.ybb9_c00001{bottom:564.779774px;}
.yb18_c00001{bottom:564.959774px;}
.y8ed_c00001{bottom:564.960600px;}
.y756_c00001{bottom:565.139774px;}
.y50d_c00001{bottom:566.039774px;}
.y8c7_c00001{bottom:566.219774px;}
.y6ec_c00001{bottom:566.579773px;}
.y4aa_c00001{bottom:566.760600px;}
.y661_c00001{bottom:566.939773px;}
.y9f8_c00001{bottom:567.299773px;}
.y5da_c00001{bottom:567.659773px;}
.ybfb_c00001{bottom:568.019773px;}
.yb8b_c00001{bottom:568.559773px;}
.y768_c00001{bottom:568.739773px;}
.y59f_c00001{bottom:568.919772px;}
.y9ea_c00001{bottom:569.099772px;}
.y8a5_c00001{bottom:569.100600px;}
.y2cc_c00001{bottom:569.459772px;}
.y1f6_c00001{bottom:569.639772px;}
.y5f_c00001{bottom:570.179772px;}
.yb7a_c00001{bottom:570.539772px;}
.yc2d_c00001{bottom:570.719772px;}
.y1c5_c00001{bottom:571.079772px;}
.y830_c00001{bottom:571.259771px;}
.ybe6_c00001{bottom:571.439771px;}
.y9c7_c00001{bottom:571.799771px;}
.y4a9_c00001{bottom:571.979771px;}
.y985_c00001{bottom:572.159771px;}
.y603_c00001{bottom:572.339771px;}
.y149_c00001{bottom:572.519771px;}
.y139_c00001{bottom:572.879771px;}
.y116_c00001{bottom:574.139770px;}
.y8a3_c00001{bottom:574.319770px;}
.yb23_c00001{bottom:574.679770px;}
.y300_c00001{bottom:575.399770px;}
.yab8_c00001{bottom:575.520127px;}
.y573_c00001{bottom:575.579770px;}
.y80b_c00001{bottom:575.939770px;}
.y479_c00001{bottom:576.299769px;}
.ya73_c00001{bottom:576.420126px;}
.y577_c00001{bottom:576.479769px;}
.y2db_c00001{bottom:576.839769px;}
.ya07_c00001{bottom:577.019769px;}
.y47f_c00001{bottom:577.199769px;}
.y367_c00001{bottom:577.379769px;}
.y1b3_c00001{bottom:577.739769px;}
.y3ce_c00001{bottom:577.919769px;}
.ye4_c00001{bottom:578.099769px;}
.ya88_c00001{bottom:578.220126px;}
.y635_c00001{bottom:578.639769px;}
.yf3_c00001{bottom:578.999768px;}
.ya9e_c00001{bottom:579.120125px;}
.yc1f_c00001{bottom:579.359768px;}
.y87a_c00001{bottom:579.899768px;}
.yc07_c00001{bottom:580.259768px;}
.y10b_c00001{bottom:580.439768px;}
.y859_c00001{bottom:580.619768px;}
.y22d_c00001{bottom:580.979768px;}
.y3a0_c00001{bottom:581.159768px;}
.y8e_c00001{bottom:581.339767px;}
.y5ad_c00001{bottom:581.699767px;}
.y3c1_c00001{bottom:581.879767px;}
.y409_c00001{bottom:582.419767px;}
.y5cb_c00001{bottom:582.599767px;}
.y93d_c00001{bottom:582.600600px;}
.y692_c00001{bottom:582.779767px;}
.y50c_c00001{bottom:583.319767px;}
.y259_c00001{bottom:583.859766px;}
.y543_c00001{bottom:584.219766px;}
.y5d_c00001{bottom:584.399766px;}
.ya5c_c00001{bottom:584.520123px;}
.yb0b_c00001{bottom:584.579766px;}
.y70c_c00001{bottom:584.759766px;}
.yc47_c00001{bottom:585.119766px;}
.y669_c00001{bottom:585.299766px;}
.y755_c00001{bottom:585.839766px;}
.y90f_c00001{bottom:586.019766px;}
.y62b_c00001{bottom:586.739765px;}
.y8c6_c00001{bottom:587.099765px;}
.y4d8_c00001{bottom:587.100600px;}
.y6eb_c00001{bottom:587.279765px;}
.y93c_c00001{bottom:587.819765px;}
.y9b9_c00001{bottom:588.179765px;}
.y5d9_c00001{bottom:588.359765px;}
.yba7_c00001{bottom:588.539765px;}
.y82f_c00001{bottom:588.719765px;}
.ybcd_c00001{bottom:589.259764px;}
.yc69_c00001{bottom:589.439764px;}
.y2e6_c00001{bottom:589.619764px;}
.y3b6_c00001{bottom:589.799764px;}
.y9f7_c00001{bottom:589.979764px;}
.ya9_c00001{bottom:590.159764px;}
.y3b_c00001{bottom:590.339764px;}
.y3f8_c00001{bottom:590.879764px;}
.y12_c00001{bottom:591.239764px;}
.y25a_c00001{bottom:591.419763px;}
.ybe5_c00001{bottom:592.139763px;}
.yad1_c00001{bottom:592.260120px;}
.yb8a_c00001{bottom:592.319763px;}
.y26d_c00001{bottom:592.499763px;}
.y912_c00001{bottom:592.679763px;}
.y984_c00001{bottom:593.039763px;}
.ya45_c00001{bottom:593.160120px;}
.y4e0_c00001{bottom:593.219763px;}
.y80a_c00001{bottom:593.399763px;}
.y878_c00001{bottom:593.400600px;}
.y99d_c00001{bottom:593.579763px;}
.y8a2_c00001{bottom:593.759762px;}
.y157_c00001{bottom:594.479762px;}
.y2cb_c00001{bottom:594.659762px;}
.yb67_c00001{bottom:594.839762px;}
.y634_c00001{bottom:596.279761px;}
.y877_c00001{bottom:596.999761px;}
.y84e_c00001{bottom:597.359761px;}
.y148_c00001{bottom:597.899761px;}
.yae9_c00001{bottom:598.020118px;}
.y2da_c00001{bottom:598.619761px;}
.y3f9_c00001{bottom:599.159760px;}
.y115_c00001{bottom:599.519760px;}
.y72d_c00001{bottom:599.699760px;}
.yc1e_c00001{bottom:600.059760px;}
.y9e9_c00001{bottom:600.239760px;}
.y446_c00001{bottom:600.419760px;}
.y1f5_c00001{bottom:600.779760px;}
.yc06_c00001{bottom:600.959760px;}
.y131_c00001{bottom:601.319759px;}
.yb79_c00001{bottom:601.499759px;}
.y50b_c00001{bottom:601.679759px;}
.y1c4_c00001{bottom:602.039759px;}
.y70b_c00001{bottom:602.219759px;}
.y5ac_c00001{bottom:602.399759px;}
.y668_c00001{bottom:602.759759px;}
.y754_c00001{bottom:603.299759px;}
.y38d_c00001{bottom:603.479759px;}
.y95d_c00001{bottom:603.660600px;}
.y660_c00001{bottom:603.839758px;}
.y138_c00001{bottom:604.019758px;}
.y8eb_c00001{bottom:604.020600px;}
.yab7_c00001{bottom:604.140115px;}
.y542_c00001{bottom:604.199758px;}
.y5ca_c00001{bottom:604.379758px;}
.y8c5_c00001{bottom:604.559758px;}
.y6ea_c00001{bottom:604.739758px;}
.ya72_c00001{bottom:604.860115px;}
.y8e9_c00001{bottom:605.280600px;}
.y59e_c00001{bottom:605.639758px;}
.y258_c00001{bottom:605.819758px;}
.y82e_c00001{bottom:605.999758px;}
.y5c_c00001{bottom:606.179758px;}
.y2ff_c00001{bottom:606.359757px;}
.ybb8_c00001{bottom:606.539757px;}
.ya87_c00001{bottom:606.660114px;}
.y602_c00001{bottom:606.899757px;}
.y820_c00001{bottom:607.079757px;}
.yb48_c00001{bottom:607.439757px;}
.ya9d_c00001{bottom:607.560114px;}
.y90e_c00001{bottom:607.799757px;}
.y9c6_c00001{bottom:607.979757px;}
.ya3a_c00001{bottom:608.339757px;}
.y366_c00001{bottom:608.519757px;}
.y1b2_c00001{bottom:608.699757px;}
.y3cd_c00001{bottom:608.879756px;}
.y27f_c00001{bottom:609.059756px;}
.y8e8_c00001{bottom:609.239756px;}
.y4a6_c00001{bottom:609.419756px;}
.ybfa_c00001{bottom:609.599756px;}
.yf2_c00001{bottom:609.959756px;}
.y911_c00001{bottom:610.139756px;}
.y983_c00001{bottom:610.319756px;}
.y8a1_c00001{bottom:611.039756px;}
.y10a_c00001{bottom:611.399755px;}
.y22c_c00001{bottom:612.119755px;}
.y39f_c00001{bottom:612.299755px;}
.y8d_c00001{bottom:612.479755px;}
.y3c0_c00001{bottom:612.839755px;}
.y3b5_c00001{bottom:613.019755px;}
.y3ed_c00001{bottom:613.379755px;}
.y737_c00001{bottom:613.739755px;}
.y476_c00001{bottom:613.919754px;}
.y809_c00001{bottom:614.099754px;}
.yb0a_c00001{bottom:614.459754px;}
.y1e2_c00001{bottom:615.539754px;}
.ya5b_c00001{bottom:615.660111px;}
.ya17_c00001{bottom:616.259753px;}
.yae8_c00001{bottom:616.920110px;}
.ye3_c00001{bottom:616.979753px;}
.y785_c00001{bottom:617.159753px;}
.y876_c00001{bottom:617.879753px;}
.y858_c00001{bottom:618.599753px;}
.y50a_c00001{bottom:618.779752px;}
.y5ab_c00001{bottom:619.859752px;}
.yc38_c00001{bottom:620.399752px;}
.yc1d_c00001{bottom:620.579752px;}
.y2e5_c00001{bottom:620.759752px;}
.y197_c00001{bottom:621.119752px;}
.ya8_c00001{bottom:621.299751px;}
.y39_c00001{bottom:621.479751px;}
.y3ee_c00001{bottom:621.659751px;}
.y3f7_c00001{bottom:621.839751px;}
.y11_c00001{bottom:622.379751px;}
.y3d8_c00001{bottom:622.739751px;}
.y70a_c00001{bottom:622.919751px;}
.y5d8_c00001{bottom:623.099751px;}
.yad0_c00001{bottom:623.400108px;}
.y26c_c00001{bottom:623.459751px;}
.y62a_c00001{bottom:623.639751px;}
.y2d9_c00001{bottom:623.999750px;}
.ya44_c00001{bottom:624.120107px;}
.y9b8_c00001{bottom:624.359750px;}
.yb3a_c00001{bottom:624.719750px;}
.yb66_c00001{bottom:625.799750px;}
.y93b_c00001{bottom:626.159750px;}
.y4a7_c00001{bottom:626.160600px;}
.yce_c00001{bottom:626.339749px;}
.y35d_c00001{bottom:626.519749px;}
.y82d_c00001{bottom:626.699749px;}
.y982_c00001{bottom:627.599749px;}
.y601_c00001{bottom:627.779749px;}
.y6b8_c00001{bottom:627.960600px;}
.y8a0_c00001{bottom:628.319749px;}
.y27e_c00001{bottom:629.579748px;}
.y3a_c00001{bottom:629.759748px;}
.yba6_c00001{bottom:630.119748px;}
.ybf9_c00001{bottom:630.299748px;}
.y477_c00001{bottom:630.480600px;}
.y4d7_c00001{bottom:630.659748px;}
.y3fe_c00001{bottom:630.839748px;}
.yc68_c00001{bottom:631.019748px;}
.y9e8_c00001{bottom:631.199748px;}
.y4a5_c00001{bottom:631.379747px;}
.y5b_c00001{bottom:631.559747px;}
.y1f4_c00001{bottom:631.739747px;}
.y130_c00001{bottom:632.279747px;}
.yb78_c00001{bottom:632.459747px;}
.yab6_c00001{bottom:632.580104px;}
.y1c3_c00001{bottom:633.179747px;}
.ya71_c00001{bottom:633.300104px;}
.ybe4_c00001{bottom:633.539747px;}
.y7c3_c00001{bottom:634.079746px;}
.y137_c00001{bottom:634.619746px;}
.y3b4_c00001{bottom:634.979746px;}
.ya86_c00001{bottom:635.100103px;}
.y875_c00001{bottom:635.159746px;}
.y784_c00001{bottom:635.519746px;}
.y1e1_c00001{bottom:635.699746px;}
.y2a4_c00001{bottom:635.879746px;}
.ya9c_c00001{bottom:636.000103px;}
.y509_c00001{bottom:636.059746px;}
.y939_c00001{bottom:636.239746px;}
.y72c_c00001{bottom:636.599745px;}
.y5aa_c00001{bottom:637.139745px;}
.y2fe_c00001{bottom:637.499745px;}
.y690_c00001{bottom:637.680600px;}
.y7e1_c00001{bottom:638.579745px;}
.y3ff_c00001{bottom:639.119744px;}
.y156_c00001{bottom:639.299744px;}
.ya39_c00001{bottom:639.479744px;}
.y3cc_c00001{bottom:639.659744px;}
.y1b0_c00001{bottom:639.839744px;}
.yb89_c00001{bottom:640.019744px;}
.y6e9_c00001{bottom:640.379744px;}
.y65f_c00001{bottom:640.559744px;}
.yf1_c00001{bottom:640.739744px;}
.y667_c00001{bottom:640.919744px;}
.y53a_c00001{bottom:641.099744px;}
.y5c9_c00001{bottom:641.279743px;}
.y753_c00001{bottom:641.459743px;}
.ybb7_c00001{bottom:642.179743px;}
.y4d4_c00001{bottom:642.359743px;}
.y109_c00001{bottom:642.539743px;}
.y68f_c00001{bottom:642.899743px;}
.y39e_c00001{bottom:643.259743px;}
.y8c_c00001{bottom:643.439743px;}
.y185_c00001{bottom:643.619743px;}
.y5d7_c00001{bottom:643.799742px;}
.y3bf_c00001{bottom:643.979742px;}
.y82c_c00001{bottom:644.159742px;}
.y9c5_c00001{bottom:644.339742px;}
.y3ec_c00001{bottom:644.519742px;}
.y600_c00001{bottom:645.059742px;}
.y541_c00001{bottom:645.239742px;}
.y910_c00001{bottom:645.419742px;}
.yf_c00001{bottom:645.599742px;}
.y257_c00001{bottom:645.959742px;}
.ya5a_c00001{bottom:646.620098px;}
.y364_c00001{bottom:646.679741px;}
.yc46_c00001{bottom:647.219741px;}
.ya16_c00001{bottom:647.399741px;}
.yc2c_c00001{bottom:647.579741px;}
.y1b1_c00001{bottom:648.119741px;}
.y981_c00001{bottom:648.299741px;}
.y873_c00001{bottom:648.840600px;}
.y633_c00001{bottom:649.019740px;}
.y4d6_c00001{bottom:649.919740px;}
.y27d_c00001{bottom:651.359739px;}
.y2e4_c00001{bottom:651.719739px;}
.yab1_c00001{bottom:652.079739px;}
.ya7_c00001{bottom:652.259739px;}
.y38_c00001{bottom:652.439739px;}
.y783_c00001{bottom:652.799739px;}
.y10_c00001{bottom:653.159739px;}
.y572_c00001{bottom:653.339739px;}
.y408_c00001{bottom:653.699739px;}
.y365_c00001{bottom:654.239738px;}
.yacf_c00001{bottom:654.360095px;}
.y508_c00001{bottom:654.419738px;}
.y26b_c00001{bottom:654.599738px;}
.y1e0_c00001{bottom:654.599775px;}
.yae7_c00001{bottom:654.900095px;}
.y7c2_c00001{bottom:654.959738px;}
.y1df_c00001{bottom:654.959776px;}
.ya43_c00001{bottom:655.260095px;}
.ye2_c00001{bottom:655.679738px;}
.yb39_c00001{bottom:655.859738px;}
.ycc_c00001{bottom:656.399737px;}
.y857_c00001{bottom:656.759737px;}
.y22b_c00001{bottom:656.939737px;}
.y709_c00001{bottom:657.659737px;}
.y5a9_c00001{bottom:657.839737px;}
.y938_c00001{bottom:658.199737px;}
.y7e0_c00001{bottom:659.459736px;}
.y8c4_c00001{bottom:659.819736px;}
.y196_c00001{bottom:659.999736px;}
.y3b3_c00001{bottom:660.179736px;}
.y629_c00001{bottom:660.539736px;}
.y3f6_c00001{bottom:660.719736px;}
.yab5_c00001{bottom:661.020093px;}
.y3ab_c00001{bottom:661.259735px;}
.y114_c00001{bottom:661.439735px;}
.y666_c00001{bottom:661.619735px;}
.y3fd_c00001{bottom:661.799735px;}
.ya70_c00001{bottom:661.920092px;}
.y752_c00001{bottom:662.159735px;}
.y12e_c00001{bottom:662.339735px;}
.y445_c00001{bottom:662.519735px;}
.y540_c00001{bottom:662.699735px;}
.y1f3_c00001{bottom:662.879735px;}
.ybb6_c00001{bottom:663.059735px;}
.y3cb_c00001{bottom:663.239735px;}
.y8e6_c00001{bottom:663.420600px;}
.ya85_c00001{bottom:663.540092px;}
.yb77_c00001{bottom:663.599735px;}
.yb88_c00001{bottom:663.779734px;}
.ycd_c00001{bottom:663.959734px;}
.y1c2_c00001{bottom:664.139734px;}
.ya9b_c00001{bottom:664.440091px;}
.y135_c00001{bottom:665.039734px;}
.y9d8_c00001{bottom:665.579734px;}
.y980_c00001{bottom:665.759734px;}
.y7a5_c00001{bottom:665.939734px;}
.yc67_c00001{bottom:666.119734px;}
.y632_c00001{bottom:666.299733px;}
.y99c_c00001{bottom:666.479733px;}
.y2a3_c00001{bottom:667.019733px;}
.ye_c00001{bottom:667.379733px;}
.y3be_c00001{bottom:667.739733px;}
.yc45_c00001{bottom:667.919733px;}
.y2fd_c00001{bottom:668.459733px;}
.y8e5_c00001{bottom:668.639733px;}
.y736_c00001{bottom:668.999732px;}
.y3ac_c00001{bottom:669.539732px;}
.y808_c00001{bottom:669.719732px;}
.y12f_c00001{bottom:669.899732px;}
.ya06_c00001{bottom:670.079732px;}
.y1de_c00001{bottom:670.259732px;}
.ya38_c00001{bottom:670.439732px;}
.y1af_c00001{bottom:670.799732px;}
.yf0_c00001{bottom:670.979732px;}
.yb2b_c00001{bottom:671.339731px;}
.y507_c00001{bottom:671.699731px;}
.yb65_c00001{bottom:671.879731px;}
.ybcc_c00001{bottom:672.059731px;}
.y7c1_c00001{bottom:672.239731px;}
.y136_c00001{bottom:672.599731px;}
.y27c_c00001{bottom:673.139731px;}
.y8b_c00001{bottom:673.319731px;}
.y108_c00001{bottom:673.499731px;}
.yae6_c00001{bottom:673.980087px;}
.y39d_c00001{bottom:674.219730px;}
.y184_c00001{bottom:674.579730px;}
.ybe3_c00001{bottom:674.939730px;}
.y315_c00001{bottom:675.299730px;}
.y708_c00001{bottom:676.019730px;}
.y7df_c00001{bottom:676.739729px;}
.y65e_c00001{bottom:677.459729px;}
.ya59_c00001{bottom:677.580086px;}
.y5c8_c00001{bottom:677.999729px;}
.y5d6_c00001{bottom:678.539729px;}
.y59d_c00001{bottom:679.259728px;}
.y664_c00001{bottom:679.439728px;}
.y155_c00001{bottom:679.619728px;}
.y937_c00001{bottom:679.979728px;}
.y9c4_c00001{bottom:680.519728px;}
.y81f_c00001{bottom:680.699728px;}
.y93a_c00001{bottom:680.879728px;}
.y89f_c00001{bottom:681.059728px;}
.y95c_c00001{bottom:681.239728px;}
.y2e3_c00001{bottom:681.599727px;}
.ycb_c00001{bottom:681.779727px;}
.y82b_c00001{bottom:682.139727px;}
.yc37_c00001{bottom:682.499727px;}
.yc5a_c00001{bottom:682.859727px;}
.y5ff_c00001{bottom:683.039727px;}
.y7a4_c00001{bottom:683.219727px;}
.ya6_c00001{bottom:683.399727px;}
.y37_c00001{bottom:683.579727px;}
.y99b_c00001{bottom:683.759726px;}
.y631_c00001{bottom:684.299726px;}
.y147_c00001{bottom:684.839726px;}
.y3ca_c00001{bottom:685.019726px;}
.yace_c00001{bottom:685.500083px;}
.y26a_c00001{bottom:685.559726px;}
.y4d3_c00001{bottom:685.919726px;}
.ya42_c00001{bottom:686.220083px;}
.yba5_c00001{bottom:686.459725px;}
.y4d5_c00001{bottom:686.819725px;}
.y665_c00001{bottom:686.999725px;}
.y12d_c00001{bottom:687.539725px;}
.y974_c00001{bottom:687.719725px;}
.yc44_c00001{bottom:688.619725px;}
.y4a4_c00001{bottom:688.979724px;}
.yab4_c00001{bottom:689.460081px;}
.y7c0_c00001{bottom:689.519724px;}
.y735_c00001{bottom:689.879724px;}
.y475_c00001{bottom:690.059724px;}
.y776_c00001{bottom:690.239724px;}
.ya6f_c00001{bottom:690.360081px;}
.y134_c00001{bottom:690.419724px;}
.y3eb_c00001{bottom:690.599724px;}
.y3bd_c00001{bottom:690.959724px;}
.y571_c00001{bottom:691.499723px;}
.ya84_c00001{bottom:691.980080px;}
.y3aa_c00001{bottom:692.219723px;}
.y5a8_c00001{bottom:692.399723px;}
.y6b5_c00001{bottom:692.579723px;}
.yd_c00001{bottom:692.759723px;}
.ya9a_c00001{bottom:692.880080px;}
.y339_c00001{bottom:693.299723px;}
.y225_c00001{bottom:693.659723px;}
.y1f2_c00001{bottom:693.839722px;}
.ye1_c00001{bottom:694.559722px;}
.y7de_c00001{bottom:695.099722px;}
.y1c1_c00001{bottom:695.279722px;}
.ybe2_c00001{bottom:695.639722px;}
.yef_c00001{bottom:696.179722px;}
.y6e7_c00001{bottom:696.359721px;}
.y9b7_c00001{bottom:696.719721px;}
.y68e_c00001{bottom:696.899721px;}
.y628_c00001{bottom:697.259721px;}
.y2a2_c00001{bottom:697.979721px;}
.y194_c00001{bottom:698.159721px;}
.y27b_c00001{bottom:698.519721px;}
.y90c_c00001{bottom:698.700600px;}
.y325_c00001{bottom:698.879720px;}
.y3f5_c00001{bottom:699.059720px;}
.y5d5_c00001{bottom:699.239720px;}
.y2fc_c00001{bottom:699.599720px;}
.y539_c00001{bottom:699.779720px;}
.y751_c00001{bottom:700.319720px;}
.y22a_c00001{bottom:700.499720px;}
.y3fc_c00001{bottom:700.679720px;}
.ya05_c00001{bottom:701.219720px;}
.ya37_c00001{bottom:701.579719px;}
.y172_c00001{bottom:701.759719px;}
.y1ae_c00001{bottom:701.939719px;}
.yb2a_c00001{bottom:702.479719px;}
.yb64_c00001{bottom:702.839719px;}
.y8a_c00001{bottom:703.019719px;}
.y106_c00001{bottom:703.379719px;}
.yc59_c00001{bottom:703.559719px;}
.y35c_c00001{bottom:703.739719px;}
.y6e8_c00001{bottom:703.919718px;}
.y7a3_c00001{bottom:704.099718px;}
.y6d6_c00001{bottom:704.279718px;}
.y99a_c00001{bottom:704.459718px;}
.y53f_c00001{bottom:704.639718px;}
.y39c_c00001{bottom:705.359718px;}
.y195_c00001{bottom:705.719718px;}
.y4a3_c00001{bottom:706.079718px;}
.y314_c00001{bottom:706.439717px;}
.y3c9_c00001{bottom:706.799717px;}
.y474_c00001{bottom:707.159717px;}
.y84d_c00001{bottom:707.699717px;}
.y807_c00001{bottom:707.879717px;}
.ya58_c00001{bottom:708.720074px;}
.y6b6_c00001{bottom:709.140600px;}
.y506_c00001{bottom:709.679716px;}
.y72b_c00001{bottom:710.219716px;}
.y107_c00001{bottom:710.939716px;}
.yb87_c00001{bottom:711.299715px;}
.y782_c00001{bottom:711.659715px;}
.yae5_c00001{bottom:711.780072px;}
.y856_c00001{bottom:712.199715px;}
.y34e_c00001{bottom:712.379715px;}
.y363_c00001{bottom:712.739715px;}
.y23b_c00001{bottom:712.919715px;}
.yb4_c00001{bottom:713.279715px;}
.ybcb_c00001{bottom:713.459715px;}
.y707_c00001{bottom:713.999714px;}
.y65d_c00001{bottom:714.179714px;}
.ya5_c00001{bottom:714.359714px;}
.y36_c00001{bottom:714.539714px;}
.y5c7_c00001{bottom:714.899714px;}
.y663_c00001{bottom:715.079714px;}
.y95b_c00001{bottom:715.619714px;}
.y59c_c00001{bottom:716.159714px;}
.y8c3_c00001{bottom:716.339713px;}
.yacd_c00001{bottom:716.460070px;}
.y269_c00001{bottom:716.699713px;}
.ya41_c00001{bottom:717.360070px;}
.y6e6_c00001{bottom:717.419713px;}
.y68d_c00001{bottom:717.599713px;}
.y5fe_c00001{bottom:717.779713px;}
.yab3_c00001{bottom:717.900070px;}
.yb38_c00001{bottom:717.959713px;}
.yb76_c00001{bottom:718.499713px;}
.ya6e_c00001{bottom:718.800069px;}
.y630_c00001{bottom:719.039712px;}
.y89e_c00001{bottom:719.219712px;}
.y182_c00001{bottom:719.399712px;}
.y193_c00001{bottom:720.119712px;}
.y82a_c00001{bottom:720.299712px;}
.ya83_c00001{bottom:720.420069px;}
.yb5_c00001{bottom:720.839712px;}
.y97f_c00001{bottom:721.199712px;}
.ya99_c00001{bottom:721.320068px;}
.y7a2_c00001{bottom:721.379711px;}
.y2e2_c00001{bottom:721.919711px;}
.y8e3_c00001{bottom:722.820600px;}
.y9e7_c00001{bottom:723.179711px;}
.y3a9_c00001{bottom:723.359711px;}
.yc43_c00001{bottom:724.079710px;}
.y4d2_c00001{bottom:724.259710px;}
.yc1c_c00001{bottom:724.439710px;}
.y224_c00001{bottom:724.619710px;}
.y1f1_c00001{bottom:724.979710px;}
.y806_c00001{bottom:725.159710px;}
.y473_c00001{bottom:725.519710px;}
.y6d5_c00001{bottom:726.059710px;}
.y1c0_c00001{bottom:726.239710px;}
.y183_c00001{bottom:726.959709px;}
.y505_c00001{bottom:727.139709px;}
.y7bf_c00001{bottom:727.679709px;}
.yba4_c00001{bottom:727.859709px;}
.y734_c00001{bottom:728.039709px;}
.yc66_c00001{bottom:728.399709px;}
.y872_c00001{bottom:728.579709px;}
.y105_c00001{bottom:728.759708px;}
.y2a1_c00001{bottom:729.119708px;}
.y32f_c00001{bottom:729.479708px;}
.y855_c00001{bottom:729.659708px;}
.y89_c00001{bottom:729.839708px;}
.y2fb_c00001{bottom:730.559708px;}
.y5a7_c00001{bottom:730.739708px;}
.yae4_c00001{bottom:730.860065px;}
.ya03_c00001{bottom:731.099708px;}
.y706_c00001{bottom:731.459707px;}
.y3f4_c00001{bottom:731.999707px;}
.y3c8_c00001{bottom:732.179707px;}
.ya36_c00001{bottom:732.539707px;}
.y1ad_c00001{bottom:732.899707px;}
.y9b6_c00001{bottom:733.079707px;}
.ye0_c00001{bottom:733.439707px;}
.y8c2_c00001{bottom:733.619707px;}
.yb50_c00001{bottom:733.799706px;}
.y5d4_c00001{bottom:733.979706px;}
.y627_c00001{bottom:734.159706px;}
.y171_c00001{bottom:734.519706px;}
.y6e5_c00001{bottom:734.879706px;}
.y68c_c00001{bottom:735.059706px;}
.yb86_c00001{bottom:735.239706px;}
.y5fd_c00001{bottom:736.139706px;}
.y39b_c00001{bottom:736.319705px;}
.y538_c00001{bottom:736.499705px;}
.y62f_c00001{bottom:737.039705px;}
.y829_c00001{bottom:737.759705px;}
.y3bc_c00001{bottom:738.119705px;}
.yb3_c00001{bottom:738.479705px;}
.ya04_c00001{bottom:738.659705px;}
.y3fb_c00001{bottom:739.019704px;}
.y999_c00001{bottom:739.199704px;}
.y934_c00001{bottom:739.379704px;}
.yc2b_c00001{bottom:739.739704px;}
.y229_c00001{bottom:740.639704px;}
.y909_c00001{bottom:741.539703px;}
.y7a1_c00001{bottom:742.259703px;}
.y472_c00001{bottom:742.799703px;}
.y4d1_c00001{bottom:743.519703px;}
.y4a2_c00001{bottom:744.239702px;}
.y245_c00001{bottom:744.419702px;}
.y84c_c00001{bottom:744.599702px;}
.y324_c00001{bottom:744.959702px;}
.yc1b_c00001{bottom:745.139702px;}
.y504_c00001{bottom:745.319702px;}
.ya4_c00001{bottom:745.499702px;}
.y35_c00001{bottom:745.679702px;}
.y805_c00001{bottom:745.859702px;}
.y871_c00001{bottom:746.039702px;}
.y56f_c00001{bottom:746.400600px;}
.y3a8_c00001{bottom:746.579701px;}
.yb47_c00001{bottom:746.759701px;}
.y854_c00001{bottom:746.939701px;}
.y72a_c00001{bottom:747.119701px;}
.ya32_c00001{bottom:747.240058px;}
.y6b3_c00001{bottom:747.300600px;}
.y781_c00001{bottom:747.479701px;}
.ya57_c00001{bottom:747.600058px;}
.y268_c00001{bottom:747.659701px;}
.y5a6_c00001{bottom:747.839701px;}
.ya6d_c00001{bottom:747.960058px;}
.y6d4_c00001{bottom:748.019701px;}
.ya40_c00001{bottom:748.320058px;}
.y7be_c00001{bottom:748.379701px;}
.y9e6_c00001{bottom:748.559701px;}
.y407_c00001{bottom:748.919700px;}
.ya82_c00001{bottom:749.040057px;}
.yc65_c00001{bottom:749.099700px;}
.yb75_c00001{bottom:749.459700px;}
.y35b_c00001{bottom:749.639700px;}
.ya98_c00001{bottom:749.760057px;}
.y218_c00001{bottom:750.899700px;}
.y8bd_c00001{bottom:751.259699px;}
.y56e_c00001{bottom:751.619699px;}
.y5c6_c00001{bottom:751.799699px;}
.y6b2_c00001{bottom:752.159699px;}
.y29f_c00001{bottom:752.339699px;}
.y313_c00001{bottom:752.519699px;}
.y59b_c00001{bottom:752.879699px;}
.y5fc_c00001{bottom:753.419699px;}
.y95a_c00001{bottom:753.779698px;}
.y81e_c00001{bottom:754.499698px;}
.y5d3_c00001{bottom:754.679698px;}
.ybca_c00001{bottom:754.859698px;}
.y223_c00001{bottom:755.759698px;}
.y1f0_c00001{bottom:755.939698px;}
.y935_c00001{bottom:755.940600px;}
.ya02_c00001{bottom:756.479697px;}
.y46a_c00001{bottom:757.199697px;}
.y1bf_c00001{bottom:757.379697px;}
.ybe1_c00001{bottom:757.739697px;}
.y34d_c00001{bottom:758.459697px;}
.y959_c00001{bottom:758.819696px;}
.yb85_c00001{bottom:758.999696px;}
.y97e_c00001{bottom:759.179696px;}
.y7a0_c00001{bottom:759.539696px;}
.y181_c00001{bottom:759.719696px;}
.y2a0_c00001{bottom:759.899696px;}
.y471_c00001{bottom:760.079696px;}
.y192_c00001{bottom:760.259696px;}
.y4d0_c00001{bottom:760.799696px;}
.y933_c00001{bottom:761.159696px;}
.y973_c00001{bottom:761.519695px;}
.y2fa_c00001{bottom:761.699695px;}
.y503_c00001{bottom:762.599695px;}
.y2b8_c00001{bottom:762.959695px;}
.y53e_c00001{bottom:763.139695px;}
.y804_c00001{bottom:763.319695px;}
.ya35_c00001{bottom:763.679695px;}
.y5a_c00001{bottom:763.859694px;}
.y1ac_c00001{bottom:764.039694px;}
.y780_c00001{bottom:764.579694px;}
.yb4f_c00001{bottom:764.759694px;}
.yb63_c00001{bottom:764.939694px;}
.y4a1_c00001{bottom:765.119694px;}
.y170_c00001{bottom:765.479694px;}
.yc58_c00001{bottom:765.659694px;}
.y7bd_c00001{bottom:765.839694px;}
.y733_c00001{bottom:766.199694px;}
.ybb5_c00001{bottom:766.559693px;}
.y870_c00001{bottom:766.739693px;}
.y39a_c00001{bottom:767.459693px;}
.y3a7_c00001{bottom:768.359693px;}
.yb22_c00001{bottom:768.539693px;}
.y5a5_c00001{bottom:768.719693px;}
.y9b5_c00001{bottom:769.259692px;}
.y705_c00001{bottom:769.619692px;}
.yc64_c00001{bottom:769.799692px;}
.y5fb_c00001{bottom:770.699692px;}
.y626_c00001{bottom:770.879692px;}
.y8c1_c00001{bottom:771.599691px;}
.y3fa_c00001{bottom:772.139691px;}
.ya13_c00001{bottom:772.319691px;}
.ydf_c00001{bottom:772.499691px;}
.y6e4_c00001{bottom:772.859691px;}
.y68b_c00001{bottom:773.219691px;}
.y537_c00001{bottom:773.399691px;}
.y65c_c00001{bottom:773.579691px;}
.y29e_c00001{bottom:774.119690px;}
.y89d_c00001{bottom:774.659690px;}
.y32d_c00001{bottom:774.839690px;}
.y62e_c00001{bottom:775.019690px;}
.yc2a_c00001{bottom:775.379690px;}
.y244_c00001{bottom:775.559690px;}
.y828_c00001{bottom:775.919690px;}
.y4cc_c00001{bottom:776.279689px;}
.ya3_c00001{bottom:776.459689px;}
.y34_c00001{bottom:776.639689px;}
.y79f_c00001{bottom:776.819689px;}
.y998_c00001{bottom:777.359689px;}
.yb46_c00001{bottom:777.719689px;}
.ybe0_c00001{bottom:778.439689px;}
.y267_c00001{bottom:778.799688px;}
.y469_c00001{bottom:779.159688px;}
.y502_c00001{bottom:779.879688px;}
.y90a_c00001{bottom:779.880600px;}
.yb37_c00001{bottom:780.059688px;}
.yc42_c00001{bottom:780.419688px;}
.yb74_c00001{bottom:780.599688px;}
.y470_c00001{bottom:780.779688px;}
.y84b_c00001{bottom:781.319687px;}
.y4cf_c00001{bottom:781.499687px;}
.y853_c00001{bottom:782.219687px;}
.y32e_c00001{bottom:782.399687px;}
.yb84_c00001{bottom:782.759687px;}
.y7dd_c00001{bottom:782.939687px;}
.y322_c00001{bottom:783.119687px;}
.y20d_c00001{bottom:783.299687px;}
.y732_c00001{bottom:783.479687px;}
.y729_c00001{bottom:783.839686px;}
.y803_c00001{bottom:784.019686px;}
.y86f_c00001{bottom:784.199686px;}
.y53d_c00001{bottom:784.559686px;}
.y6d3_c00001{bottom:784.739686px;}
.y908_c00001{bottom:785.099686px;}
.y77f_c00001{bottom:785.459686px;}
.y56c_c00001{bottom:785.460600px;}
.y5a4_c00001{bottom:785.999686px;}
.yc57_c00001{bottom:786.359685px;}
.ya25_c00001{bottom:786.480042px;}
.y7bc_c00001{bottom:786.539685px;}
.y444_c00001{bottom:786.719685px;}
.y56a_c00001{bottom:786.720600px;}
.y406_c00001{bottom:787.079685px;}
.y8e2_c00001{bottom:787.259685px;}
.y359_c00001{bottom:787.979685px;}
.y1be_c00001{bottom:788.339685px;}
.y5c5_c00001{bottom:788.519685px;}
.y8c0_c00001{bottom:789.059684px;}
.y5d2_c00001{bottom:789.239684px;}
.y826_c00001{bottom:789.600600px;}
.y59a_c00001{bottom:789.779684px;}
.yba3_c00001{bottom:789.959684px;}
.y6e3_c00001{bottom:790.319684px;}
.yc63_c00001{bottom:790.499684px;}
.y323_c00001{bottom:790.679684px;}
.y399_c00001{bottom:791.219684px;}
.y5fa_c00001{bottom:791.399683px;}
.y89c_c00001{bottom:791.939683px;}
.y6b1_c00001{bottom:792.119683px;}
.y2f9_c00001{bottom:792.659683px;}
.y291_c00001{bottom:792.839683px;}
.y2b7_c00001{bottom:793.199683px;}
.y68a_c00001{bottom:793.919682px;}
.y112_c00001{bottom:794.099682px;}
.y997_c00001{bottom:794.639682px;}
.y59_c00001{bottom:794.819682px;}
.y1ab_c00001{bottom:794.999682px;}
.y35a_c00001{bottom:795.539682px;}
.y958_c00001{bottom:795.719682px;}
.yb4e_c00001{bottom:795.899682px;}
.yb62_c00001{bottom:796.079682px;}
.ybc9_c00001{bottom:796.259681px;}
.y16f_c00001{bottom:796.619681px;}
.y217_c00001{bottom:796.979681px;}
.y311_c00001{bottom:797.339681px;}
.y79e_c00001{bottom:797.519681px;}
.y4cb_c00001{bottom:798.059681px;}
.y46f_c00001{bottom:798.239681px;}
.y4ce_c00001{bottom:798.959680px;}
.ybdf_c00001{bottom:799.139680px;}
.y29d_c00001{bottom:799.499680px;}
.y4a0_c00001{bottom:799.679680px;}
.y7dc_c00001{bottom:800.399680px;}
.y775_c00001{bottom:800.759680px;}
.y468_c00001{bottom:800.939680px;}
.y222_c00001{bottom:801.479679px;}
.y113_c00001{bottom:801.659679px;}
.ydd_c00001{bottom:802.379679px;}
.y77e_c00001{bottom:802.739679px;}
.y9f1_c00001{bottom:803.279679px;}
.y7bb_c00001{bottom:803.999678px;}
.y731_c00001{bottom:804.359678px;}
.y34c_c00001{bottom:804.539678px;}
.y312_c00001{bottom:804.899678px;}
.y9b4_c00001{bottom:805.439678px;}
.yb83_c00001{bottom:806.519677px;}
.yc56_c00001{bottom:807.059677px;}
.yc1a_c00001{bottom:807.239677px;}
.y6e2_c00001{bottom:807.419677px;}
.ya2_c00001{bottom:807.599677px;}
.y33_c00001{bottom:807.779677px;}
.y1ef_c00001{bottom:807.959677px;}
.y5f9_c00001{bottom:808.859676px;}
.y38c_c00001{bottom:809.039676px;}
.y8e1_c00001{bottom:809.219676px;}
.y358_c00001{bottom:809.759676px;}
.yde_c00001{bottom:809.939676px;}
.y536_c00001{bottom:810.119676px;}
.yba2_c00001{bottom:810.659676px;}
.yb36_c00001{bottom:811.019676px;}
.y65a_c00001{bottom:811.199676px;}
.y689_c00001{bottom:811.379675px;}
.yb73_c00001{bottom:811.559675px;}
.y2ca_c00001{bottom:811.919675px;}
.y89b_c00001{bottom:812.639675px;}
.y256_c00001{bottom:812.999675px;}
.y146_c00001{bottom:813.719675px;}
.y825_c00001{bottom:813.899674px;}
.y849_c00001{bottom:814.260600px;}
.y398_c00001{bottom:814.439674px;}
.y97d_c00001{bottom:814.619674px;}
.y750_c00001{bottom:814.799674px;}
.y79d_c00001{bottom:814.979674px;}
.y32c_c00001{bottom:815.159674px;}
.y996_c00001{bottom:815.339674px;}
.y46e_c00001{bottom:815.519674px;}
.yc41_c00001{bottom:816.059674px;}
.y4cd_c00001{bottom:816.239674px;}
.ybc8_c00001{bottom:816.959673px;}
.y215_c00001{bottom:817.319673px;}
.y3a6_c00001{bottom:817.499673px;}
.y7db_c00001{bottom:817.679673px;}
.y443_c00001{bottom:817.859673px;}
.y848_c00001{bottom:819.119672px;}
.y111_c00001{bottom:819.479672px;}
.y4ca_c00001{bottom:819.839672px;}
.y36e_c00001{bottom:820.019672px;}
.y405_c00001{bottom:820.199672px;}
.y243_c00001{bottom:820.379672px;}
.y9d7_c00001{bottom:820.559672px;}
.y728_c00001{bottom:820.739672px;}
.y7ba_c00001{bottom:821.279671px;}
.y6d2_c00001{bottom:821.639671px;}
.y2b6_c00001{bottom:821.819671px;}
.y220_c00001{bottom:822.179671px;}
.y905_c00001{bottom:822.719671px;}
.yc_c00001{bottom:822.899671px;}
.y53c_c00001{bottom:823.079671px;}
.y932_c00001{bottom:823.259671px;}
.y77d_c00001{bottom:823.619671px;}
.y290_c00001{bottom:823.799670px;}
.y266_c00001{bottom:823.979670px;}
.y216_c00001{bottom:824.879670px;}
.ya24_c00001{bottom:825.360027px;}
.y5c4_c00001{bottom:825.419670px;}
.yaae_c00001{bottom:825.599670px;}
.y58_c00001{bottom:825.779670px;}
.y435_c00001{bottom:825.959670px;}
.y599_c00001{bottom:826.499669px;}
.yb61_c00001{bottom:827.039669px;}
.y8bf_c00001{bottom:827.219669px;}
.y5a3_c00001{bottom:827.399669px;}
.y16d_c00001{bottom:827.579669px;}
.yc55_c00001{bottom:827.759669px;}
.y567_c00001{bottom:828.119669px;}
.y6e1_c00001{bottom:828.299669px;}
.y688_c00001{bottom:828.659669px;}
.y20c_c00001{bottom:829.199668px;}
.y221_c00001{bottom:829.739668px;}
.y89a_c00001{bottom:830.099668px;}
.y6b0_c00001{bottom:830.279668px;}
.yb82_c00001{bottom:830.459668px;}
.y5d1_c00001{bottom:830.819668px;}
.y824_c00001{bottom:831.359667px;}
.ybf8_c00001{bottom:831.719667px;}
.yc29_c00001{bottom:831.899667px;}
.y97c_c00001{bottom:832.079667px;}
.y74f_c00001{bottom:832.259667px;}
.y957_c00001{bottom:832.619667px;}
.y995_c00001{bottom:832.799667px;}
.y659_c00001{bottom:832.979667px;}
.y65b_c00001{bottom:833.519667px;}
.y411_c00001{bottom:834.779666px;}
.y972_c00001{bottom:835.139666px;}
.ydc_c00001{bottom:835.319666px;}
.y34b_c00001{bottom:835.499666px;}
.y16e_c00001{bottom:835.859666px;}
.y46d_c00001{bottom:836.219666px;}
.y397_c00001{bottom:836.399665px;}
.yc40_c00001{bottom:836.939665px;}
.y774_c00001{bottom:837.479665px;}
.y310_c00001{bottom:837.659665px;}
.y49f_c00001{bottom:837.839665px;}
.y7da_c00001{bottom:838.379665px;}
.ya1_c00001{bottom:838.559665px;}
.y32_c00001{bottom:838.739665px;}
.y802_c00001{bottom:839.639664px;}
.yb45_c00001{bottom:839.819664px;}
.y38a_c00001{bottom:840.359664px;}
.ybde_c00001{bottom:840.539664px;}
.y145_c00001{bottom:840.899664px;}
.y9b3_c00001{bottom:841.619663px;}
.y7b9_c00001{bottom:841.979663px;}
.yb35_c00001{bottom:842.159663px;}
.y730_c00001{bottom:842.519663px;}
.yb72_c00001{bottom:842.699663px;}
.y2c9_c00001{bottom:842.879663px;}
.y5f8_c00001{bottom:843.239663px;}
.y2b5_c00001{bottom:843.599663px;}
.y255_c00001{bottom:843.959662px;}
.y625_c00001{bottom:844.499662px;}
.y568_c00001{bottom:844.680600px;}
.y321_c00001{bottom:845.219662px;}
.y62d_c00001{bottom:845.399662px;}
.y6e0_c00001{bottom:845.579662px;}
.y704_c00001{bottom:845.759662px;}
.y687_c00001{bottom:845.939662px;}
.yb21_c00001{bottom:846.299661px;}
.y8e0_c00001{bottom:846.659661px;}
.y1aa_c00001{bottom:847.019661px;}
.y899_c00001{bottom:847.379661px;}
.y5d0_c00001{bottom:848.459661px;}
.y38b_c00001{bottom:848.639661px;}
.y442_c00001{bottom:848.819660px;}
.yc19_c00001{bottom:848.999660px;}
.y97b_c00001{bottom:849.179660px;}
.y265_c00001{bottom:849.359660px;}
.y566_c00001{bottom:849.899660px;}
.y357_c00001{bottom:850.079660px;}
.y36d_c00001{bottom:851.159660px;}
.y9d6_c00001{bottom:851.519659px;}
.y12c_c00001{bottom:851.879659px;}
.yba1_c00001{bottom:852.059659px;}
.ybf7_c00001{bottom:852.599659px;}
.y74e_c00001{bottom:852.959659px;}
.y79c_c00001{bottom:853.139659px;}
.y46c_c00001{bottom:853.679659px;}
.yb_c00001{bottom:854.039658px;}
.yb81_c00001{bottom:854.219658px;}
.y890_c00001{bottom:854.579658px;}
.y28f_c00001{bottom:854.759658px;}
.y49e_c00001{bottom:855.119658px;}
.y7d9_c00001{bottom:855.839658px;}
.y434_c00001{bottom:856.739657px;}
.y57_c00001{bottom:856.919657px;}
.y459_c00001{bottom:857.099657px;}
.y727_c00001{bottom:857.459657px;}
.y1bc_c00001{bottom:857.639657px;}
.yb60_c00001{bottom:858.179657px;}
.y6d1_c00001{bottom:858.359657px;}
.y847_c00001{bottom:859.079656px;}
.y7b8_c00001{bottom:859.439656px;}
.y72f_c00001{bottom:859.799656px;}
.y20b_c00001{bottom:860.339656px;}
.ybdd_c00001{bottom:861.239656px;}
.y906_c00001{bottom:861.240600px;}
.y8bc_c00001{bottom:861.599655px;}
.y396_c00001{bottom:861.779655px;}
.y5c3_c00001{bottom:862.139655px;}
.y21f_c00001{bottom:862.319655px;}
.y8be_c00001{bottom:862.499655px;}
.y6df_c00001{bottom:862.859655px;}
.y703_c00001{bottom:863.039655px;}
.y931_c00001{bottom:863.219655px;}
.y241_c00001{bottom:863.759654px;}
.y5f7_c00001{bottom:863.939654px;}
.y598_c00001{bottom:864.299654px;}
.y81d_c00001{bottom:864.839654px;}
.y1bd_c00001{bottom:865.199654px;}
.y2b4_c00001{bottom:865.379654px;}
.y904_c00001{bottom:866.459653px;}
.y686_c00001{bottom:866.639653px;}
.y5cf_c00001{bottom:866.819653px;}
.yc28_c00001{bottom:867.359653px;}
.y1a9_c00001{bottom:867.719653px;}
.y898_c00001{bottom:868.079653px;}
.y994_c00001{bottom:868.259653px;}
.y6ad_c00001{bottom:868.619653px;}
.yc54_c00001{bottom:869.159652px;}
.yca_c00001{bottom:869.519652px;}
.ya0_c00001{bottom:869.699652px;}
.y31_c00001{bottom:869.879652px;}
.y954_c00001{bottom:870.059652px;}
.y658_c00001{bottom:870.419652px;}
.y46b_c00001{bottom:870.779652px;}
.y501_c00001{bottom:870.959652px;}
.y242_c00001{bottom:871.319651px;}
.y389_c00001{bottom:871.499651px;}
.y971_c00001{bottom:871.859651px;}
.yc3f_c00001{bottom:872.579651px;}
.yba0_c00001{bottom:872.759651px;}
.yb4d_c00001{bottom:872.939651px;}
.yc6f_c00001{bottom:873.299651px;}
.y49d_c00001{bottom:873.479651px;}
.y2c8_c00001{bottom:873.659651px;}
.y34a_c00001{bottom:873.839650px;}
.y79b_c00001{bottom:874.019650px;}
.y773_c00001{bottom:874.379650px;}
.y467_c00001{bottom:874.559650px;}
.y410_c00001{bottom:874.919650px;}
.y7d8_c00001{bottom:876.539649px;}
.y7b7_c00001{bottom:876.719649px;}
.y623_c00001{bottom:877.440600px;}
.y86e_c00001{bottom:877.619649px;}
.y801_c00001{bottom:877.799649px;}
.y9b2_c00001{bottom:877.979649px;}
.y77c_c00001{bottom:879.059648px;}
.y1bb_c00001{bottom:879.419648px;}
.y16c_c00001{bottom:879.599648px;}
.y441_c00001{bottom:879.779648px;}
.y702_c00001{bottom:880.319648px;}
.y6de_c00001{bottom:881.219648px;}
.y5f6_c00001{bottom:881.399647px;}
.y622_c00001{bottom:882.299647px;}
.y9d5_c00001{bottom:882.659647px;}
.y12b_c00001{bottom:882.839647px;}
.y3ea_c00001{bottom:883.739647px;}
.y535_c00001{bottom:883.919646px;}
.y5ce_c00001{bottom:884.099646px;}
.y53b_c00001{bottom:884.819646px;}
.ya_c00001{bottom:884.999646px;}
.y6ae_c00001{bottom:885.180600px;}
.yc79_c00001{bottom:885.359646px;}
.y28e_c00001{bottom:885.539646px;}
.y2f8_c00001{bottom:885.899646px;}
.y2b2_c00001{bottom:887.159645px;}
.y97a_c00001{bottom:887.339645px;}
.y563_c00001{bottom:887.519645px;}
.y433_c00001{bottom:887.699645px;}
.y55_c00001{bottom:887.879645px;}
.y458_c00001{bottom:888.059645px;}
.yc27_c00001{bottom:888.239645px;}
.y657_c00001{bottom:888.599645px;}
.y191_c00001{bottom:888.959644px;}
.y500_c00001{bottom:889.139644px;}
.y36c_c00001{bottom:889.319644px;}
.yc53_c00001{bottom:889.859644px;}
.y254_c00001{bottom:890.039644px;}
.y6ac_c00001{bottom:890.399644px;}
.y49c_c00001{bottom:890.759644px;}
.y74d_c00001{bottom:891.119644px;}
.y79a_c00001{bottom:891.299643px;}
.y953_c00001{bottom:891.839643px;}
.yb9f_c00001{bottom:893.459643px;}
.y7d7_c00001{bottom:893.999642px;}
.y726_c00001{bottom:894.359642px;}
.y4c9_c00001{bottom:894.539642px;}
.y2b3_c00001{bottom:894.719642px;}
.y86d_c00001{bottom:895.079642px;}
.y6d0_c00001{bottom:895.259642px;}
.y56_c00001{bottom:896.159642px;}
.ybdc_c00001{bottom:896.699641px;}
.y240_c00001{bottom:896.879641px;}
.y2c7_c00001{bottom:897.239641px;}
.y77b_c00001{bottom:897.419641px;}
.y9c3_c00001{bottom:897.779641px;}
.y104_c00001{bottom:898.319641px;}
.y6dd_c00001{bottom:898.499641px;}
.y5f5_c00001{bottom:898.679641px;}
.y5c2_c00001{bottom:899.039640px;}
.y20a_c00001{bottom:899.219640px;}
.ybc7_c00001{bottom:899.759640px;}
.y16b_c00001{bottom:900.299640px;}
.yc9_c00001{bottom:900.479640px;}
.y9f_c00001{bottom:900.659640px;}
.y30_c00001{bottom:900.839640px;}
.y388_c00001{bottom:901.019640px;}
.y685_c00001{bottom:901.199640px;}
.y5cd_c00001{bottom:901.379639px;}
.y81c_c00001{bottom:901.739639px;}
.yb44_c00001{bottom:901.919639px;}
.y897_c00001{bottom:902.819639px;}
.y903_c00001{bottom:904.079638px;}
.y564_c00001{bottom:904.080600px;}
.y597_c00001{bottom:904.259638px;}
.y979_c00001{bottom:904.619638px;}
.y1ba_c00001{bottom:904.799638px;}
.y656_c00001{bottom:905.699638px;}
.y28c_c00001{bottom:906.239638px;}
.y4ff_c00001{bottom:906.419637px;}
.y49b_c00001{bottom:908.039637px;}
.y9_c00001{bottom:908.219637px;}
.y74c_c00001{bottom:908.579637px;}
.y955_c00001{bottom:908.580600px;}
.y970_c00001{bottom:908.759636px;}
.y2b1_c00001{bottom:908.939636px;}
.y562_c00001{bottom:909.299636px;}
.y6ab_c00001{bottom:909.839636px;}
.y348_c00001{bottom:910.559636px;}
.y36b_c00001{bottom:911.099636px;}
.y7d6_c00001{bottom:911.279635px;}
.y466_c00001{bottom:911.459635px;}
.y799_c00001{bottom:912.179635px;}
.y1a7_c00001{bottom:912.359635px;}
.y28d_c00001{bottom:913.799634px;}
.y12a_c00001{bottom:913.979634px;}
.yb9e_c00001{bottom:914.159634px;}
.y77a_c00001{bottom:914.699634px;}
.y7b6_c00001{bottom:914.879634px;}
.y653_c00001{bottom:915.239634px;}
.y6dc_c00001{bottom:915.779634px;}
.y701_c00001{bottom:915.959634px;}
.y9d4_c00001{bottom:916.139634px;}
.y2f7_c00001{bottom:916.859633px;}
.y349_c00001{bottom:918.119633px;}
.y432_c00001{bottom:918.839632px;}
.y54_c00001{bottom:919.019632px;}
.y457_c00001{bottom:919.199632px;}
.y5f4_c00001{bottom:919.379632px;}
.y372_c00001{bottom:919.739632px;}
.y1a8_c00001{bottom:919.919632px;}
.y190_c00001{bottom:920.099632px;}
.ybc6_c00001{bottom:920.459632px;}
.y8b9_c00001{bottom:920.999632px;}
.y896_c00001{bottom:921.179632px;}
.y532_c00001{bottom:921.359631px;}
.y3e9_c00001{bottom:922.079631px;}
.y621_c00001{bottom:922.259631px;}
.y208_c00001{bottom:922.439631px;}
.y387_c00001{bottom:923.159631px;}
.y4fe_c00001{bottom:923.699631px;}
.yb20_c00001{bottom:923.879630px;}
.yc78_c00001{bottom:924.239630px;}
.y28b_c00001{bottom:925.319630px;}
.y144_c00001{bottom:925.499630px;}
.yb80_c00001{bottom:925.679630px;}
.y49a_c00001{bottom:926.219630px;}
.y2c6_c00001{bottom:926.579629px;}
.y6aa_c00001{bottom:927.119629px;}
.y8df_c00001{bottom:928.199629px;}
.y74b_c00001{bottom:929.279628px;}
.y798_c00001{bottom:929.459628px;}
.y103_c00001{bottom:929.639628px;}
.y209_c00001{bottom:929.999628px;}
.y7_c00001{bottom:930.179628px;}
.y2b0_c00001{bottom:930.899628px;}
.y16a_c00001{bottom:931.079628px;}
.yc52_c00001{bottom:931.259627px;}
.y1a6_c00001{bottom:931.259665px;}
.yc8_c00001{bottom:931.619627px;}
.y1a5_c00001{bottom:931.619665px;}
.y76_c00001{bottom:931.799627px;}
.y2f_c00001{bottom:931.979627px;}
.ybb4_c00001{bottom:932.159627px;}
.y347_c00001{bottom:932.519627px;}
.y779_c00001{bottom:933.059627px;}
.y700_c00001{bottom:933.239627px;}
.y6db_c00001{bottom:933.959626px;}
.y4c8_c00001{bottom:934.499626px;}
.yb9d_c00001{bottom:934.859626px;}
.y88f_c00001{bottom:935.039626px;}
.yb5f_c00001{bottom:935.219626px;}
.y5c1_c00001{bottom:935.759626px;}
.y253_c00001{bottom:936.119626px;}
.y5cc_c00001{bottom:936.659625px;}
.y5f3_c00001{bottom:936.839625px;}
.y652_c00001{bottom:937.019625px;}
.y8ba_c00001{bottom:937.560600px;}
.y8_c00001{bottom:937.739625px;}
.y895_c00001{bottom:938.279625px;}
.y81b_c00001{bottom:938.459625px;}
.y684_c00001{bottom:939.359624px;}
.y92e_c00001{bottom:939.719624px;}
.y2c5_c00001{bottom:940.799624px;}
.ybc5_c00001{bottom:941.159624px;}
.y4fd_c00001{bottom:942.059623px;}
.y596_c00001{bottom:942.419623px;}
.y8b8_c00001{bottom:942.779623px;}
.y823_c00001{bottom:942.959623px;}
.y531_c00001{bottom:943.319623px;}
.y499_c00001{bottom:943.499623px;}
.y3e8_c00001{bottom:943.859622px;}
.y207_c00001{bottom:944.219622px;}
.y464_c00001{bottom:944.220600px;}
.y129_c00001{bottom:944.939622px;}
.y6a9_c00001{bottom:945.479622px;}
.y1a4_c00001{bottom:946.559621px;}
.y74a_c00001{bottom:946.739621px;}
.y1a3_c00001{bottom:946.919621px;}
.y2f6_c00001{bottom:947.999621px;}
.y463_c00001{bottom:949.079620px;}
.y7d5_c00001{bottom:949.439620px;}
.y431_c00001{bottom:949.799620px;}
.y53_c00001{bottom:949.979620px;}
.y456_c00001{bottom:950.159620px;}
.y778_c00001{bottom:950.339620px;}
.y7b5_c00001{bottom:950.519620px;}
.yb71_c00001{bottom:950.699620px;}
.y6da_c00001{bottom:951.239620px;}
.y36a_c00001{bottom:951.419619px;}
.y6ff_c00001{bottom:951.599619px;}
.y725_c00001{bottom:951.779619px;}
.y6_c00001{bottom:951.959619px;}
.y992_c00001{bottom:951.960600px;}
.yc6e_c00001{bottom:952.139619px;}
.y9d3_c00001{bottom:952.319619px;}
.ybb3_c00001{bottom:952.859619px;}
.ybdb_c00001{bottom:953.399619px;}
.y800_c00001{bottom:953.939618px;}
.y5f2_c00001{bottom:954.119618px;}
.y846_c00001{bottom:955.559618px;}
.y2af_c00001{bottom:956.279617px;}
.y92f_c00001{bottom:956.280600px;}
.y683_c00001{bottom:956.639617px;}
.yaff_c00001{bottom:957.539617px;}
.y651_c00001{bottom:958.799616px;}
.y894_c00001{bottom:959.159616px;}
.y4fc_c00001{bottom:959.339616px;}
.y533_c00001{bottom:959.880600px;}
.y978_c00001{bottom:960.059616px;}
.y620_c00001{bottom:960.419616px;}
.y102_c00001{bottom:960.779616px;}
.y655_c00001{bottom:961.139616px;}
.y92d_c00001{bottom:961.499615px;}
.y498_c00001{bottom:961.859615px;}
.yc7_c00001{bottom:962.579615px;}
.y75_c00001{bottom:962.759615px;}
.y2e_c00001{bottom:962.939615px;}
.y168_c00001{bottom:964.559614px;}
.y530_c00001{bottom:965.099614px;}
.yb29_c00001{bottom:965.819614px;}
.y18e_c00001{bottom:966.179614px;}
.yb5e_c00001{bottom:966.359613px;}
.y749_c00001{bottom:967.439613px;}
.y8de_c00001{bottom:968.159613px;}
.y55f_c00001{bottom:968.699613px;}
.y6cf_c00001{bottom:968.879612px;}
.y724_c00001{bottom:969.239612px;}
.y28a_c00001{bottom:969.599612px;}
.y386_c00001{bottom:970.139612px;}
.y9c2_c00001{bottom:970.319612px;}
.ybf6_c00001{bottom:971.039612px;}
.y7b4_c00001{bottom:971.219612px;}
.y7ff_c00001{bottom:971.399611px;}
.y6d9_c00001{bottom:971.939611px;}
.y169_c00001{bottom:972.119611px;}
.y346_c00001{bottom:972.659611px;}
.y845_c00001{bottom:972.839611px;}
.y4fa_c00001{bottom:972.840600px;}
.ybb2_c00001{bottom:973.559611px;}
.y682_c00001{bottom:973.919610px;}
.ybda_c00001{bottom:974.279610px;}
.y18f_c00001{bottom:974.459610px;}
.y5f1_c00001{bottom:974.819610px;}
.y81a_c00001{bottom:975.359610px;}
.y128_c00001{bottom:976.079610px;}
.y991_c00001{bottom:976.259609px;}
.y4f9_c00001{bottom:976.439609px;}
.y3e7_c00001{bottom:976.979609px;}
.y5_c00001{bottom:977.159609px;}
.y9b1_c00001{bottom:977.520600px;}
.y822_c00001{bottom:977.699609px;}
.y9af_c00001{bottom:977.700600px;}
.y2f5_c00001{bottom:978.959608px;}
.y497_c00001{bottom:979.139608px;}
.y8b7_c00001{bottom:980.579608px;}
.y593_c00001{bottom:980.759608px;}
.y430_c00001{bottom:980.939608px;}
.y52_c00001{bottom:981.119608px;}
.y455_c00001{bottom:981.299607px;}
.y252_c00001{bottom:982.199607px;}
.y902_c00001{bottom:982.379607px;}
.y206_c00001{bottom:984.359606px;}
.y52f_c00001{bottom:984.539606px;}
.y772_c00001{bottom:984.719606px;}
.y748_c00001{bottom:984.899606px;}
.y560_c00001{bottom:985.440600px;}
.y777_c00001{bottom:985.619606px;}
.y61f_c00001{bottom:986.159606px;}
.y7d4_c00001{bottom:987.599605px;}
.y9d2_c00001{bottom:988.319605px;}
.y7b3_c00001{bottom:988.679605px;}
.y6d8_c00001{bottom:989.399604px;}
.y6fe_c00001{bottom:989.579604px;}
.y723_c00001{bottom:989.939604px;}
.y5c0_c00001{bottom:990.119604px;}
.y55e_c00001{bottom:990.659604px;}
.yc3e_c00001{bottom:991.019604px;}
.y101_c00001{bottom:991.379603px;}
.ybf5_c00001{bottom:991.739603px;}
.y7fe_c00001{bottom:992.099603px;}
.y5f0_c00001{bottom:992.279603px;}
.yc5_c00001{bottom:992.639603px;}
.y844_c00001{bottom:993.539603px;}
.y893_c00001{bottom:993.719603px;}
.y74_c00001{bottom:993.899602px;}
.y2d_c00001{bottom:994.079602px;}
.ybb1_c00001{bottom:994.259602px;}
.y4f8_c00001{bottom:994.799602px;}
.y92c_c00001{bottom:995.160600px;}
.y650_c00001{bottom:995.699602px;}
.y92a_c00001{bottom:996.420600px;}
.y654_c00001{bottom:996.599601px;}
.yb28_c00001{bottom:996.779601px;}
.yb9c_c00001{bottom:996.959601px;}
.y167_c00001{bottom:997.139601px;}
.yb5d_c00001{bottom:997.319601px;}
.y594_c00001{bottom:997.320600px;}
.y496_c00001{bottom:997.499601px;}
.y6a8_c00001{bottom:998.039601px;}
.y977_c00001{bottom:998.219601px;}
.y61d_c00001{bottom:998.759600px;}
.yc6_c00001{bottom:1000.199600px;}
.y929_c00001{bottom:1000.379600px;}
.yb1f_c00001{bottom:1001.459599px;}
.y52e_c00001{bottom:1001.819599px;}
.y9f6_c00001{bottom:1002.359599px;}
.y592_c00001{bottom:1002.539599px;}
.y5be_c00001{bottom:1002.719599px;}
.y841_c00001{bottom:1004.159598px;}
.y404_c00001{bottom:1005.419598px;}
.y747_c00001{bottom:1005.599598px;}
.y6ce_c00001{bottom:1005.779598px;}
.y126_c00001{bottom:1005.959598px;}
.y8dd_c00001{bottom:1006.319597px;}
.y9c1_c00001{bottom:1006.499597px;}
.y6fd_c00001{bottom:1006.859597px;}
.y4c6_c00001{bottom:1007.040600px;}
.y722_c00001{bottom:1007.399597px;}
.y7d3_c00001{bottom:1008.299597px;}
.y88e_c00001{bottom:1008.839596px;}
.y86c_c00001{bottom:1009.379596px;}
.y5ef_c00001{bottom:1009.559596px;}
.y2f4_c00001{bottom:1010.099596px;}
.y843_c00001{bottom:1010.999596px;}
.y143_c00001{bottom:1011.719595px;}
.y42f_c00001{bottom:1011.899595px;}
.y51_c00001{bottom:1012.079595px;}
.y454_c00001{bottom:1012.259595px;}
.ybf4_c00001{bottom:1012.439595px;}
.y821_c00001{bottom:1012.979595px;}
.y127_c00001{bottom:1013.519595px;}
.y495_c00001{bottom:1014.599594px;}
.ybb0_c00001{bottom:1014.959594px;}
.y64f_c00001{bottom:1015.139594px;}
.y976_c00001{bottom:1015.499594px;}
.y9ad_c00001{bottom:1016.400600px;}
.y529_c00001{bottom:1017.119593px;}
.yb9b_c00001{bottom:1017.659593px;}
.yc4_c00001{bottom:1017.839593px;}
.ybc4_c00001{bottom:1018.199593px;}
.y96f_c00001{bottom:1019.099592px;}
.yafe_c00001{bottom:1019.639592px;}
.y462_c00001{bottom:1020.179592px;}
.y61c_c00001{bottom:1020.539592px;}
.y61e_c00001{bottom:1021.439591px;}
.yff_c00001{bottom:1021.619591px;}
.y52d_c00001{bottom:1022.519591px;}
.y771_c00001{bottom:1022.879591px;}
.y746_c00001{bottom:1023.059591px;}
.y6fc_c00001{bottom:1024.139590px;}
.y37b_c00001{bottom:1024.499590px;}
.y9d1_c00001{bottom:1024.679590px;}
.y73_c00001{bottom:1024.859590px;}
.y2b_c00001{bottom:1025.039590px;}
.y5bf_c00001{bottom:1025.399590px;}
.y7d2_c00001{bottom:1025.759590px;}
.y840_c00001{bottom:1025.939590px;}
.y7b2_c00001{bottom:1026.659589px;}
.y681_c00001{bottom:1026.839589px;}
.y6a6_c00001{bottom:1026.839889px;}
.y55d_c00001{bottom:1027.379589px;}
.y6d7_c00001{bottom:1027.559589px;}
.y7fd_c00001{bottom:1027.919589px;}
.y721_c00001{bottom:1028.099589px;}
.y166_c00001{bottom:1028.279589px;}
.yb5c_c00001{bottom:1028.459589px;}
.y100_c00001{bottom:1029.179588px;}
.y4f7_c00001{bottom:1029.359588px;}
.y5ee_c00001{bottom:1030.259588px;}
.y125_c00001{bottom:1031.159588px;}
.y819_c00001{bottom:1031.519587px;}
.y494_c00001{bottom:1031.879587px;}
.y64e_c00001{bottom:1032.239587px;}
.y6a7_c00001{bottom:1032.779587px;}
.ybf3_c00001{bottom:1033.139587px;}
.y2c_c00001{bottom:1033.319587px;}
.yc51_c00001{bottom:1035.299586px;}
.y55a_c00001{bottom:1035.659586px;}
.y590_c00001{bottom:1036.200600px;}
.y901_c00001{bottom:1037.100600px;}
.y58e_c00001{bottom:1037.460600px;}
.y927_c00001{bottom:1037.999585px;}
.y952_c00001{bottom:1038.359585px;}
.y528_c00001{bottom:1039.079584px;}
.y52c_c00001{bottom:1039.979584px;}
.yb1e_c00001{bottom:1040.159584px;}
.yc77_c00001{bottom:1040.519584px;}
.yb43_c00001{bottom:1041.059584px;}
.yb9a_c00001{bottom:1041.239584px;}
.y58d_c00001{bottom:1041.419583px;}
.y900_c00001{bottom:1042.319583px;}
.y6cd_c00001{bottom:1042.499583px;}
.y9c0_c00001{bottom:1042.679583px;}
.y42e_c00001{bottom:1043.039583px;}
.y50_c00001{bottom:1043.219583px;}
.y453_c00001{bottom:1043.399583px;}
.y745_c00001{bottom:1043.759582px;}
.y5bd_c00001{bottom:1043.939582px;}
.y8da_c00001{bottom:1044.659582px;}
.y55c_c00001{bottom:1044.839582px;}
.y7fc_c00001{bottom:1045.019582px;}
.y720_c00001{bottom:1045.559582px;}
.y4c4_c00001{bottom:1045.920600px;}
.y7d1_c00001{bottom:1046.459581px;}
.y892_c00001{bottom:1046.639581px;}
.yfe_c00001{bottom:1046.999581px;}
.y680_c00001{bottom:1047.539581px;}
.y4f6_c00001{bottom:1047.719581px;}
.y818_c00001{bottom:1048.799580px;}
.y493_c00001{bottom:1050.239580px;}
.y64d_c00001{bottom:1050.599580px;}
.yafd_c00001{bottom:1050.779580px;}
.y770_c00001{bottom:1050.959580px;}
.y4c3_c00001{bottom:1051.139580px;}
.ybc3_c00001{bottom:1053.659579px;}
.ybf2_c00001{bottom:1053.839578px;}
.y61a_c00001{bottom:1054.200600px;}
.y928_c00001{bottom:1054.560600px;}
.y618_c00001{bottom:1055.460600px;}
.yaca_c00001{bottom:1055.639578px;}
.yaf6_c00001{bottom:1055.819578px;}
.y72_c00001{bottom:1055.999578px;}
.y2a_c00001{bottom:1056.179578px;}
.ybaf_c00001{bottom:1056.359577px;}
.y975_c00001{bottom:1056.899577px;}
.y52b_c00001{bottom:1057.079577px;}
.y559_c00001{bottom:1057.439577px;}
.y8b6_c00001{bottom:1058.699577px;}
.yb27_c00001{bottom:1058.879576px;}
.y165_c00001{bottom:1059.239576px;}
.y617_c00001{bottom:1059.419576px;}
.y926_c00001{bottom:1059.779576px;}
.y951_c00001{bottom:1060.319576px;}
.y527_c00001{bottom:1060.859576px;}
.y9d0_c00001{bottom:1061.039576px;}
.y5bc_c00001{bottom:1061.219576px;}
.y8db_c00001{bottom:1061.220600px;}
.y6fb_c00001{bottom:1062.299575px;}
.y83f_c00001{bottom:1062.659575px;}
.y842_c00001{bottom:1063.559575px;}
.y6a5_c00001{bottom:1063.559875px;}
.y71f_c00001{bottom:1063.919574px;}
.y2f3_c00001{bottom:1064.459574px;}
.y7b1_c00001{bottom:1064.819574px;}
.y4f5_c00001{bottom:1064.999574px;}
.yb99_c00001{bottom:1065.179574px;}
.y8d9_c00001{bottom:1066.439573px;}
.y817_c00001{bottom:1067.159573px;}
.y891_c00001{bottom:1067.339573px;}
.y492_c00001{bottom:1067.519573px;}
.y64c_c00001{bottom:1067.879573px;}
.yb7f_c00001{bottom:1072.199571px;}
.y27a_c00001{bottom:1073.819570px;}
.y42d_c00001{bottom:1073.999570px;}
.y4f_c00001{bottom:1074.179570px;}
.y452_c00001{bottom:1074.359570px;}
.ybc2_c00001{bottom:1074.539570px;}
.y8fe_c00001{bottom:1076.160600px;}
.y76f_c00001{bottom:1076.879569px;}
.ybae_c00001{bottom:1077.059569px;}
.y8fc_c00001{bottom:1077.420600px;}
.y9ac_c00001{bottom:1078.500600px;}
.y9aa_c00001{bottom:1078.680600px;}
.y9bf_c00001{bottom:1078.859568px;}
.y58a_c00001{bottom:1079.039568px;}
.y558_c00001{bottom:1079.399568px;}
.y6fa_c00001{bottom:1079.579568px;}
.y55b_c00001{bottom:1080.299568px;}
.y71e_c00001{bottom:1081.019568px;}
.y8fb_c00001{bottom:1081.379567px;}
.yafc_c00001{bottom:1081.739567px;}
.y5bb_c00001{bottom:1081.919567px;}
.y4f4_c00001{bottom:1082.099567px;}
.y88d_c00001{bottom:1082.459567px;}
.y7fb_c00001{bottom:1082.999567px;}
.y816_c00001{bottom:1084.439566px;}
.y7d0_c00001{bottom:1084.619566px;}
.y491_c00001{bottom:1084.799566px;}
.y8d8_c00001{bottom:1085.879566px;}
.y338_c00001{bottom:1086.599565px;}
.y41b_c00001{bottom:1086.779565px;}
.y71_c00001{bottom:1086.959565px;}
.y29_c00001{bottom:1087.139565px;}
.yb98_c00001{bottom:1088.579565px;}
.y4c0_c00001{bottom:1088.759564px;}
.y164_c00001{bottom:1090.379564px;}
.y96c_c00001{bottom:1093.619863px;}
.y264_c00001{bottom:1095.239562px;}
.y58b_c00001{bottom:1095.600600px;}
.y614_c00001{bottom:1097.039561px;}
.y3d7_c00001{bottom:1097.219561px;}
.y924_c00001{bottom:1097.399561px;}
.y1a2_c00001{bottom:1097.579561px;}
.ybad_c00001{bottom:1097.759561px;}
.y52a_c00001{bottom:1098.479561px;}
.y5ba_c00001{bottom:1099.379560px;}
.y6f9_c00001{bottom:1100.279560px;}
.y7fa_c00001{bottom:1100.459560px;}
.y6a4_c00001{bottom:1100.459860px;}
.y589_c00001{bottom:1100.819560px;}
.y71d_c00001{bottom:1101.899559px;}
.y7cf_c00001{bottom:1102.079559px;}
.y76e_c00001{bottom:1102.799559px;}
.y4f3_c00001{bottom:1102.979559px;}
.y490_c00001{bottom:1103.159559px;}
.y64b_c00001{bottom:1103.339559px;}
.y279_c00001{bottom:1104.959558px;}
.y42c_c00001{bottom:1105.139558px;}
.y4e_c00001{bottom:1105.319558px;}
.y4c1_c00001{bottom:1105.320600px;}
.y1dd_c00001{bottom:1105.499558px;}
.y4bf_c00001{bottom:1110.539556px;}
.y6cb_c00001{bottom:1112.160600px;}
.yb97_c00001{bottom:1112.339555px;}
.y3f3_c00001{bottom:1113.599555px;}
.y615_c00001{bottom:1113.600600px;}
.y9f0_c00001{bottom:1113.779554px;}
.y925_c00001{bottom:1113.960600px;}
.yafb_c00001{bottom:1115.039554px;}
.y9be_c00001{bottom:1115.219554px;}
.y96b_c00001{bottom:1115.399854px;}
.ybc1_c00001{bottom:1115.939554px;}
.y71a_c00001{bottom:1115.940600px;}
.y557_c00001{bottom:1117.019553px;}
.yee_c00001{bottom:1117.739553px;}
.y41a_c00001{bottom:1117.919553px;}
.y70_c00001{bottom:1118.099553px;}
.y28_c00001{bottom:1118.279553px;}
.ybd9_c00001{bottom:1118.459553px;}
.y613_c00001{bottom:1118.819552px;}
.y71c_c00001{bottom:1119.179552px;}
.y815_c00001{bottom:1119.719552px;}
.y5b9_c00001{bottom:1120.079552px;}
.y48f_c00001{bottom:1120.259552px;}
.y7f9_c00001{bottom:1121.159552px;}
.y8d7_c00001{bottom:1121.339551px;}
.y3b2_c00001{bottom:1126.379549px;}
.y525_c00001{bottom:1130.520600px;}
.y96d_c00001{bottom:1131.960600px;}
.y9cf_c00001{bottom:1133.399547px;}
.y586_c00001{bottom:1134.300600px;}
.y524_c00001{bottom:1135.379546px;}
.y88_c00001{bottom:1135.919546px;}
.y42b_c00001{bottom:1136.099546px;}
.y4d_c00001{bottom:1136.279545px;}
.y451_c00001{bottom:1136.459545px;}
.ybc0_c00001{bottom:1136.639545px;}
.y6a3_c00001{bottom:1137.179845px;}
.y588_c00001{bottom:1137.539545px;}
.y64a_c00001{bottom:1138.079545px;}
.y6f8_c00001{bottom:1138.439545px;}
.y4be_c00001{bottom:1138.619545px;}
.y6d_c00001{bottom:1156.979537px;}
.y25_c00001{bottom:1157.159537px;}
.y2_c00001{bottom:1175.879530px;}
.y428_c00001{bottom:1176.059530px;}
.y6c_c00001{bottom:1195.859522px;}
.y1_c00001{bottom:1196.039522px;}
.y427_c00001{bottom:1196.219522px;}
.h1c_c00001{height:16.920000px;}
.h22_c00001{height:17.820000px;}
.h1d_c00001{height:18.000000px;}
.h1e_c00001{height:18.720000px;}
.h21_c00001{height:19.980000px;}
.h1a_c00001{height:20.160000px;}
.h17_c00001{height:21.600000px;}
.h27_c00001{height:26.217411px;}
.h10_c00001{height:30.341238px;}
.h14_c00001{height:32.064597px;}
.hc_c00001{height:34.439752px;}
.h7_c00001{height:38.158578px;}
.h5_c00001{height:40.985140px;}
.h12_c00001{height:45.885892px;}
.h9_c00001{height:47.321348px;}
.hb_c00001{height:47.344903px;}
.h16_c00001{height:48.616856px;}
.h8_c00001{height:49.284472px;}
.h18_c00001{height:49.359355px;}
.h11_c00001{height:52.312479px;}
.h24_c00001{height:52.998026px;}
.h2_c00001{height:54.628572px;}
.hf_c00001{height:55.283805px;}
.h23_c00001{height:55.353845px;}
.h15_c00001{height:58.621969px;}
.h1_c00001{height:58.651148px;}
.h1f_c00001{height:59.378882px;}
.hd_c00001{height:60.226851px;}
.h19_c00001{height:62.327788px;}
.he_c00001{height:64.978568px;}
.h4_c00001{height:65.010911px;}
.h13_c00001{height:66.757473px;}
.h1b_c00001{height:69.086222px;}
.h6_c00001{height:70.628878px;}
.h3_c00001{height:70.664034px;}
.ha_c00001{height:72.562471px;}
.h2a_c00001{height:74.039033px;}
.h20_c00001{height:75.093720px;}
.h26_c00001{height:82.635787px;}
.h28_c00001{height:82.676920px;}
.h25_c00001{height:84.898091px;}
.h29_c00001{height:892.500000px;}
.h0_c00001{height:1263.000000px;}
.wa_c00001{width:6.840000px;}
.w8_c00001{width:7.380000px;}
.we_c00001{width:7.740000px;}
.w9_c00001{width:8.100000px;}
.w3_c00001{width:8.280000px;}
.w1_c00001{width:9.000000px;}
.w4_c00001{width:9.720000px;}
.wf_c00001{width:51.660000px;}
.wc_c00001{width:88.560000px;}
.wd_c00001{width:108.900000px;}
.w7_c00001{width:158.400000px;}
.w2_c00001{width:212.580000px;}
.w6_c00001{width:345.420000px;}
.wb_c00001{width:353.700000px;}
.w5_c00001{width:460.620000px;}
.w0_c00001{width:892.500000px;}
.w10_c00001{width:1263.000000px;}
.x0_c00001{left:0.000000px;}
.x100_c00001{left:106.545857px;}
.x10f_c00001{left:116.999773px;}
.x5_c00001{left:127.800262px;}
.xca_c00001{left:130.319948px;}
.xb0_c00001{left:131.579947px;}
.xaa_c00001{left:133.379947px;}
.x67_c00001{left:134.639946px;}
.x1f_c00001{left:137.159945px;}
.x81_c00001{left:138.779944px;}
.x7_c00001{left:141.299943px;}
.x12_c00001{left:142.379943px;}
.x26_c00001{left:143.459943px;}
.x95_c00001{left:146.159942px;}
.x27_c00001{left:147.239941px;}
.x11_c00001{left:148.679941px;}
.x3d_c00001{left:150.119940px;}
.x83_c00001{left:151.200474px;}
.x29_c00001{left:152.459939px;}
.x65_c00001{left:154.439938px;}
.x6e_c00001{left:155.519938px;}
.xc_c00001{left:156.779937px;}
.x11b_c00001{left:157.859937px;}
.x10b_c00001{left:159.825874px;}
.xd9_c00001{left:161.819935px;}
.x3a_c00001{left:163.439935px;}
.xac_c00001{left:165.599934px;}
.x23_c00001{left:168.479933px;}
.xde_c00001{left:169.559773px;}
.x61_c00001{left:170.819932px;}
.xee_c00001{left:175.499930px;}
.xb_c00001{left:180.899928px;}
.x1_c00001{left:181.979927px;}
.x4b_c00001{left:185.939926px;}
.x30_c00001{left:187.199925px;}
.x34_c00001{left:190.439924px;}
.x58_c00001{left:192.059923px;}
.x111_c00001{left:194.399922px;}
.x38_c00001{left:196.199922px;}
.x5f_c00001{left:197.639921px;}
.x99_c00001{left:200.699920px;}
.x52_c00001{left:202.139919px;}
.x46_c00001{left:204.479918px;}
.x119_c00001{left:207.720570px;}
.x11a_c00001{left:209.159916px;}
.x5d_c00001{left:213.299915px;}
.x55_c00001{left:214.379914px;}
.xf7_c00001{left:215.999914px;}
.xf9_c00001{left:218.159913px;}
.x8c_c00001{left:221.939911px;}
.x120_c00001{left:229.679908px;}
.x117_c00001{left:233.279907px;}
.xf8_c00001{left:234.359906px;}
.xe8_c00001{left:236.160000px;}
.xa0_c00001{left:237.239905px;}
.x114_c00001{left:240.119904px;}
.x42_c00001{left:241.199904px;}
.x24_c00001{left:243.359903px;}
.x9c_c00001{left:244.799902px;}
.xa3_c00001{left:247.139901px;}
.x116_c00001{left:249.299900px;}
.xb8_c00001{left:251.279751px;}
.xe3_c00001{left:252.719899px;}
.x71_c00001{left:255.419898px;}
.x7f_c00001{left:259.559896px;}
.x25_c00001{left:261.719895px;}
.x112_c00001{left:268.365884px;}
.xfc_c00001{left:271.079892px;}
.x72_c00001{left:273.779890px;}
.xe4_c00001{left:279.719950px;}
.x96_c00001{left:282.779887px;}
.xb2_c00001{left:285.839886px;}
.x92_c00001{left:290.519884px;}
.x7a_c00001{left:293.219883px;}
.xc7_c00001{left:295.559882px;}
.x77_c00001{left:298.979880px;}
.xb9_c00001{left:300.960123px;}
.x106_c00001{left:302.746379px;}
.x7b_c00001{left:304.919873px;}
.xe5_c00001{left:306.720001px;}
.x10e_c00001{left:311.026376px;}
.x10a_c00001{left:315.166374px;}
.x78_c00001{left:317.339873px;}
.xd1_c00001{left:322.019871px;}
.xd4_c00001{left:325.799259px;}
.xc1_c00001{left:327.599869px;}
.x2_c00001{left:329.219408px;}
.x84_c00001{left:331.739867px;}
.xe6_c00001{left:332.820331px;}
.x20_c00001{left:334.080537px;}
.x110_c00001{left:336.584909px;}
.xea_c00001{left:340.559864px;}
.xbf_c00001{left:341.999863px;}
.xd2_c00001{left:346.319861px;}
.x10c_c00001{left:349.005352px;}
.x8_c00001{left:350.280814px;}
.x108_c00001{left:353.146359px;}
.xbb_c00001{left:357.659379px;}
.xd3_c00001{left:364.679854px;}
.xa7_c00001{left:366.119854px;}
.xb3_c00001{left:367.559584px;}
.xd8_c00001{left:373.139851px;}
.x19_c00001{left:374.940472px;}
.xfa_c00001{left:378.539849px;}
.xd_c00001{left:381.060647px;}
.xc5_c00001{left:382.139847px;}
.x11c_c00001{left:383.399847px;}
.xa8_c00001{left:384.479846px;}
.x11d_c00001{left:385.559846px;}
.x104_c00001{left:390.047986px;}
.xb5_c00001{left:392.038766px;}
.x87_c00001{left:394.199842px;}
.xfb_c00001{left:396.899841px;}
.x6b_c00001{left:398.879840px;}
.xc6_c00001{left:400.499840px;}
.x75_c00001{left:403.199429px;}
.xcb_c00001{left:408.239837px;}
.xad_c00001{left:410.218966px;}
.x4c_c00001{left:413.819834px;}
.x8e_c00001{left:415.260285px;}
.x6c_c00001{left:417.239833px;}
.xfe_c00001{left:418.859919px;}
.xcf_c00001{left:421.199832px;}
.xbe_c00001{left:423.539831px;}
.xcc_c00001{left:426.599829px;}
.xce_c00001{left:428.579829px;}
.xe9_c00001{left:430.019828px;}
.x4_c00001{left:434.159826px;}
.xf1_c00001{left:437.760000px;}
.xd0_c00001{left:439.559824px;}
.xd6_c00001{left:442.619823px;}
.x17_c00001{left:444.419822px;}
.x1c_c00001{left:446.579895px;}
.xe2_c00001{left:455.580000px;}
.xf0_c00001{left:458.099817px;}
.x69_c00001{left:461.159816px;}
.x18_c00001{left:462.779815px;}
.x4d_c00001{left:463.859814px;}
.xae_c00001{left:467.459813px;}
.x11e_c00001{left:468.719813px;}
.x62_c00001{left:471.419811px;}
.x4f_c00001{left:473.219811px;}
.xff_c00001{left:474.299810px;}
.x6a_c00001{left:476.819809px;}
.x74_c00001{left:478.439809px;}
.x4e_c00001{left:479.519808px;}
.xf6_c00001{left:481.859807px;}
.xaf_c00001{left:483.119807px;}
.xb6_c00001{left:485.459806px;}
.x76_c00001{left:486.719805px;}
.xe_c00001{left:496.619801px;}
.xb7_c00001{left:501.119800px;}
.x1a_c00001{left:502.739799px;}
.x13_c00001{left:507.599797px;}
.xf2_c00001{left:508.680000px;}
.xb4_c00001{left:510.119796px;}
.xf_c00001{left:512.279795px;}
.xef_c00001{left:513.540000px;}
.x1b_c00001{left:518.399793px;}
.xbc_c00001{left:519.839792px;}
.xda_c00001{left:522.179791px;}
.x14_c00001{left:525.959790px;}
.x9_c00001{left:527.219789px;}
.xbd_c00001{left:535.499786px;}
.xdb_c00001{left:540.539784px;}
.xa_c00001{left:542.879783px;}
.x15_c00001{left:545.579782px;}
.x11f_c00001{left:548.819780px;}
.xc0_c00001{left:551.159780px;}
.x21_c00001{left:559.079776px;}
.xa6_c00001{left:561.419539px;}
.xdf_c00001{left:562.499775px;}
.x16_c00001{left:563.939774px;}
.xd5_c00001{left:567.359773px;}
.xc8_c00001{left:568.799772px;}
.xeb_c00001{left:572.580000px;}
.xba_c00001{left:576.719769px;}
.x41_c00001{left:579.599768px;}
.x91_c00001{left:581.039768px;}
.x22_c00001{left:587.160382px;}
.x60_c00001{left:590.039112px;}
.xb1_c00001{left:592.019763px;}
.x97_c00001{left:594.899762px;}
.xf4_c00001{left:596.159762px;}
.xc2_c00001{left:600.119760px;}
.x8f_c00001{left:602.279759px;}
.x7c_c00001{left:604.979084px;}
.x80_c00001{left:608.219757px;}
.x98_c00001{left:610.559756px;}
.x9d_c00001{left:612.179755px;}
.xc3_c00001{left:618.479753px;}
.x90_c00001{left:620.639752px;}
.x93_c00001{left:622.439751px;}
.xe1_c00001{left:626.759749px;}
.x9e_c00001{left:627.839749px;}
.xa4_c00001{left:630.539748px;}
.x63_c00001{left:632.339747px;}
.xdc_c00001{left:633.779746px;}
.xf3_c00001{left:636.119746px;}
.x48_c00001{left:637.199745px;}
.xa1_c00001{left:640.439744px;}
.xed_c00001{left:643.319743px;}
.xa5_c00001{left:646.199742px;}
.x86_c00001{left:647.999392px;}
.xf5_c00001{left:649.259740px;}
.x57_c00001{left:651.419739px;}
.x49_c00001{left:652.859739px;}
.x50_c00001{left:653.939738px;}
.x51_c00001{left:655.919738px;}
.xe7_c00001{left:657.900000px;}
.x7d_c00001{left:659.699736px;}
.x82_c00001{left:665.999734px;}
.xc4_c00001{left:667.079733px;}
.x79_c00001{left:669.419336px;}
.x85_c00001{left:670.500349px;}
.x1e_c00001{left:671.579559px;}
.x73_c00001{left:674.999121px;}
.x9a_c00001{left:676.799729px;}
.x7e_c00001{left:678.059729px;}
.xa9_c00001{left:679.319728px;}
.x39_c00001{left:681.479727px;}
.xcd_c00001{left:682.919727px;}
.x94_c00001{left:685.079726px;}
.x35_c00001{left:687.059725px;}
.xdd_c00001{left:689.039089px;}
.x31_c00001{left:690.299724px;}
.x9b_c00001{left:692.459723px;}
.xc9_c00001{left:694.619722px;}
.xec_c00001{left:696.239722px;}
.x2d_c00001{left:697.499721px;}
.xe0_c00001{left:699.659720px;}
.x36_c00001{left:702.719719px;}
.x32_c00001{left:705.959718px;}
.x10_c00001{left:707.579295px;}
.x8d_c00001{left:708.659717px;}
.x6_c00001{left:709.919716px;}
.xd7_c00001{left:712.079979px;}
.x2e_c00001{left:713.159715px;}
.x3b_c00001{left:714.239714px;}
.x2c_c00001{left:716.578626px;}
.x1d_c00001{left:717.659338px;}
.x6f_c00001{left:718.919712px;}
.x66_c00001{left:719.999712px;}
.x4a_c00001{left:723.419711px;}
.x2a_c00001{left:725.039710px;}
.x47_c00001{left:726.299709px;}
.x3e_c00001{left:727.379709px;}
.x53_c00001{left:728.639709px;}
.x28_c00001{left:730.618435px;}
.x56_c00001{left:731.879707px;}
.x5e_c00001{left:732.959707px;}
.x70_c00001{left:734.579706px;}
.x2f_c00001{left:735.839941px;}
.x59_c00001{left:737.999705px;}
.x40_c00001{left:739.079704px;}
.x2b_c00001{left:740.699704px;}
.x33_c00001{left:741.779433px;}
.x3f_c00001{left:743.039703px;}
.x54_c00001{left:744.299702px;}
.x37_c00001{left:745.919987px;}
.x3c_c00001{left:748.079520px;}
.x64_c00001{left:749.879700px;}
.x68_c00001{left:750.959356px;}
.x5c_c00001{left:752.579699px;}
.x45_c00001{left:754.199698px;}
.x5a_c00001{left:755.459698px;}
.x5b_c00001{left:757.619697px;}
.xab_c00001{left:759.779696px;}
.x43_c00001{left:761.579695px;}
.xfd_c00001{left:763.199695px;}
.x44_c00001{left:764.279694px;}
.x3_c00001{left:765.539694px;}
.x8a_c00001{left:766.798809px;}
.x8b_c00001{left:768.958733px;}
.x88_c00001{left:774.540116px;}
.x6d_c00001{left:776.339175px;}
.x89_c00001{left:780.300118px;}
.x115_c00001{left:784.799577px;}
.x113_c00001{left:786.959685px;}
.x9f_c00001{left:789.299684px;}
.x118_c00001{left:793.799682px;}
.xa2_c00001{left:831.959667px;}
.x107_c00001{left:1025.446583px;}
.x109_c00001{left:1029.766088px;}
.x103_c00001{left:1035.884243px;}
.x101_c00001{left:1045.606082px;}
.x105_c00001{left:1048.306081px;}
.x10d_c00001{left:1050.466080px;}
.x102_c00001{left:1156.666037px;}
@media print{
.v1_c00001{vertical-align:-74.239970pt;}
.v2_c00001{vertical-align:-67.839973pt;}
.v0_c00001{vertical-align:0.000000pt;}
.ls3_c00001{letter-spacing:0.000000pt;}
.ls6_c00001{letter-spacing:0.009381pt;}
.lsc_c00001{letter-spacing:0.009440pt;}
.ls5_c00001{letter-spacing:0.009459pt;}
.ls2_c00001{letter-spacing:0.009928pt;}
.ls7_c00001{letter-spacing:0.011218pt;}
.ls0_c00001{letter-spacing:0.011257pt;}
.ls18_c00001{letter-spacing:0.017387pt;}
.lsa_c00001{letter-spacing:0.018878pt;}
.ls28_c00001{letter-spacing:0.018880pt;}
.ls15_c00001{letter-spacing:0.018917pt;}
.ls20_c00001{letter-spacing:0.074769pt;}
.ls1_c00001{letter-spacing:0.136801pt;}
.ls14_c00001{letter-spacing:0.162347pt;}
.ls9_c00001{letter-spacing:0.168228pt;}
.ls8_c00001{letter-spacing:0.168267pt;}
.ls4_c00001{letter-spacing:0.332694pt;}
.lsf_c00001{letter-spacing:0.336457pt;}
.ls17_c00001{letter-spacing:0.336535pt;}
.ls12_c00001{letter-spacing:0.649813pt;}
.ls1e_c00001{letter-spacing:1.443146pt;}
.lsd_c00001{letter-spacing:3.211305pt;}
.ls1a_c00001{letter-spacing:3.851732pt;}
.ls10_c00001{letter-spacing:5.132478pt;}
.ls11_c00001{letter-spacing:5.772851pt;}
.ls1c_c00001{letter-spacing:6.413224pt;}
.lse_c00001{letter-spacing:7.212580pt;}
.ls19_c00001{letter-spacing:8.175143pt;}
.ls21_c00001{letter-spacing:9.446572pt;}
.ls1d_c00001{letter-spacing:9.615089pt;}
.ls1f_c00001{letter-spacing:11.536262pt;}
.ls13_c00001{letter-spacing:13.610608pt;}
.ls29_c00001{letter-spacing:15.378501pt;}
.ls1b_c00001{letter-spacing:15.531780pt;}
.ls26_c00001{letter-spacing:25.113323pt;}
.ls25_c00001{letter-spacing:28.315189pt;}
.ls22_c00001{letter-spacing:30.236308pt;}
.ls27_c00001{letter-spacing:35.359346pt;}
.ls16_c00001{letter-spacing:56.956884pt;}
.ls23_c00001{letter-spacing:57.132244pt;}
.lsb_c00001{letter-spacing:172.911398pt;}
.ls24_c00001{letter-spacing:560.319776pt;}
.ws11_c00001{word-spacing:-21.695991pt;}
.wsa_c00001{word-spacing:-18.571249pt;}
.wse_c00001{word-spacing:-16.018911pt;}
.ws9_c00001{word-spacing:-16.018872pt;}
.ws4_c00001{word-spacing:-15.999994pt;}
.ws8_c00001{word-spacing:-14.719994pt;}
.wsd_c00001{word-spacing:-13.616529pt;}
.wsb_c00001{word-spacing:-13.616451pt;}
.ws7_c00001{word-spacing:-13.279995pt;}
.ws10_c00001{word-spacing:-12.005115pt;}
.ws3_c00001{word-spacing:-11.052689pt;}
.ws0_c00001{word-spacing:-9.291253pt;}
.ws6_c00001{word-spacing:-9.291214pt;}
.ws1_c00001{word-spacing:-8.649924pt;}
.ws5_c00001{word-spacing:-8.389117pt;}
.wsc_c00001{word-spacing:-7.810557pt;}
.wsf_c00001{word-spacing:-7.677966pt;}
.ws2_c00001{word-spacing:0.000000pt;}
._20_c00001{margin-left:-26.715312pt;}
._5_c00001{margin-left:-11.303941pt;}
._13_c00001{margin-left:-9.085617pt;}
._1d_c00001{margin-left:-3.174684pt;}
._1c_c00001{margin-left:-2.182280pt;}
._1_c00001{margin-left:-0.982555pt;}
._0_c00001{width:1.314126pt;}
._f_c00001{width:2.644214pt;}
._8_c00001{width:3.542150pt;}
._11_c00001{width:4.485846pt;}
._12_c00001{width:5.492613pt;}
._10_c00001{width:7.204967pt;}
._4_c00001{width:8.312352pt;}
._9_c00001{width:9.445157pt;}
._b_c00001{width:10.632340pt;}
._a_c00001{width:11.699863pt;}
._16_c00001{width:12.776890pt;}
._2_c00001{width:13.937302pt;}
._3_c00001{width:14.992723pt;}
._38_c00001{width:16.275847pt;}
._7_c00001{width:17.291295pt;}
._6_c00001{width:18.314855pt;}
._1b_c00001{width:19.250191pt;}
._27_c00001{width:20.428073pt;}
._e_c00001{width:21.701298pt;}
._d_c00001{width:22.674749pt;}
._14_c00001{width:23.927776pt;}
._21_c00001{width:25.130132pt;}
._22_c00001{width:26.462678pt;}
._28_c00001{width:27.355556pt;}
._1a_c00001{width:28.703613pt;}
._29_c00001{width:29.724081pt;}
._2f_c00001{width:31.218012pt;}
._1e_c00001{width:32.414387pt;}
._1f_c00001{width:33.368651pt;}
._2e_c00001{width:34.429390pt;}
._35_c00001{width:35.846240pt;}
._37_c00001{width:37.068481pt;}
._33_c00001{width:40.823704pt;}
._c_c00001{width:42.466573pt;}
._39_c00001{width:55.639627pt;}
._3a_c00001{width:56.874061pt;}
._31_c00001{width:62.596496pt;}
._32_c00001{width:64.126428pt;}
._3d_c00001{width:72.688041pt;}
._3e_c00001{width:73.855084pt;}
._2a_c00001{width:76.204989pt;}
._30_c00001{width:99.908440pt;}
._17_c00001{width:132.501635pt;}
._3c_c00001{width:156.911404pt;}
._3b_c00001{width:172.911291pt;}
._15_c00001{width:184.428868pt;}
._36_c00001{width:272.170131pt;}
._25_c00001{width:275.362591pt;}
._24_c00001{width:279.845149pt;}
._26_c00001{width:359.892632pt;}
._2c_c00001{width:411.763474pt;}
._2b_c00001{width:503.977253pt;}
._2d_c00001{width:624.367970pt;}
._18_c00001{width:795.991161pt;}
._19_c00001{width:872.195071pt;}
._23_c00001{width:1101.461426pt;}
._34_c00001{width:1352.948792pt;}
.fs4_c00001{font-size:34.559986pt;}
.fs3_c00001{font-size:37.119985pt;}
.fs5_c00001{font-size:42.879983pt;}
.fs8_c00001{font-size:47.999981pt;}
.fs0_c00001{font-size:53.119979pt;}
.fs7_c00001{font-size:56.137579pt;}
.fs1_c00001{font-size:58.879976pt;}
.fs2_c00001{font-size:63.999974pt;}
.fs6_c00001{font-size:67.635145pt;}
.fs9_c00001{font-size:74.879970pt;}
.fsa_c00001{font-size:95.999962pt;}
.y0_c00001{bottom:0.000000pt;}
.y587_c00001{bottom:2.879062pt;}
.y71b_c00001{bottom:2.879069pt;}
.y4fb_c00001{bottom:3.199119pt;}
.y993_c00001{bottom:3.199127pt;}
.y827_c00001{bottom:3.199185pt;}
.y874_c00001{bottom:3.199235pt;}
.y879_c00001{bottom:3.199254pt;}
.y4eb_c00001{bottom:3.199361pt;}
.y4f1_c00001{bottom:3.199398pt;}
.y54a_c00001{bottom:3.359310pt;}
.y514_c00001{bottom:3.359322pt;}
.y8fd_c00001{bottom:3.519082pt;}
.y619_c00001{bottom:3.519090pt;}
.y58f_c00001{bottom:3.519096pt;}
.y92b_c00001{bottom:3.519111pt;}
.y56b_c00001{bottom:3.519186pt;}
.y8ea_c00001{bottom:3.519250pt;}
.y960_c00001{bottom:3.519271pt;}
.y916_c00001{bottom:3.519276pt;}
.y944_c00001{bottom:3.519300pt;}
.y550_c00001{bottom:3.519338pt;}
.y6c4_c00001{bottom:3.519344pt;}
.y51b_c00001{bottom:3.519363pt;}
.y96e_c00001{bottom:3.999063pt;}
.y616_c00001{bottom:3.999069pt;}
.y4c2_c00001{bottom:3.999072pt;}
.y58c_c00001{bottom:3.999076pt;}
.y9ab_c00001{bottom:3.999082pt;}
.y8ff_c00001{bottom:3.999082pt;}
.y8dc_c00001{bottom:3.999088pt;}
.y61b_c00001{bottom:3.999090pt;}
.y4c5_c00001{bottom:3.999093pt;}
.y591_c00001{bottom:3.999097pt;}
.y9ae_c00001{bottom:3.999104pt;}
.y4c7_c00001{bottom:3.999107pt;}
.y595_c00001{bottom:3.999110pt;}
.y561_c00001{bottom:3.999115pt;}
.y9b0_c00001{bottom:3.999117pt;}
.y534_c00001{bottom:3.999124pt;}
.y930_c00001{bottom:3.999125pt;}
.y8bb_c00001{bottom:3.999132pt;}
.y956_c00001{bottom:3.999142pt;}
.y565_c00001{bottom:3.999144pt;}
.y6af_c00001{bottom:3.999150pt;}
.y907_c00001{bottom:3.999159pt;}
.y569_c00001{bottom:3.999165pt;}
.y56d_c00001{bottom:3.999186pt;}
.y90b_c00001{bottom:3.999188pt;}
.y936_c00001{bottom:3.999196pt;}
.y570_c00001{bottom:3.999200pt;}
.y8e4_c00001{bottom:3.999208pt;}
.y6b7_c00001{bottom:3.999213pt;}
.y90d_c00001{bottom:3.999217pt;}
.y8e7_c00001{bottom:3.999229pt;}
.y691_c00001{bottom:3.999238pt;}
.y478_c00001{bottom:3.999241pt;}
.y4a8_c00001{bottom:3.999242pt;}
.y8ec_c00001{bottom:3.999250pt;}
.y4d9_c00001{bottom:3.999256pt;}
.y93e_c00001{bottom:3.999258pt;}
.y4ab_c00001{bottom:3.999264pt;}
.y6bb_c00001{bottom:3.999271pt;}
.y962_c00001{bottom:3.999272pt;}
.y4ae_c00001{bottom:3.999277pt;}
.y941_c00001{bottom:3.999279pt;}
.y8cb_c00001{bottom:3.999285pt;}
.y91a_c00001{bottom:3.999290pt;}
.y946_c00001{bottom:3.999300pt;}
.y8cd_c00001{bottom:3.999306pt;}
.y948_c00001{bottom:3.999314pt;}
.y54e_c00001{bottom:3.999317pt;}
.y8f2_c00001{bottom:3.999327pt;}
.y518_c00001{bottom:3.999329pt;}
.y4b3_c00001{bottom:3.999333pt;}
.y552_c00001{bottom:3.999338pt;}
.y6c6_c00001{bottom:3.999344pt;}
.y555_c00001{bottom:3.999352pt;}
.y8f6_c00001{bottom:3.999356pt;}
.y6ca_c00001{bottom:3.999358pt;}
.y4b7_c00001{bottom:3.999362pt;}
.y521_c00001{bottom:3.999377pt;}
.y6a0_c00001{bottom:3.999382pt;}
.y8f8_c00001{bottom:3.999385pt;}
.y526_c00001{bottom:4.319063pt;}
.y6cc_c00001{bottom:4.319070pt;}
.y465_c00001{bottom:4.319129pt;}
.y624_c00001{bottom:4.319153pt;}
.y84a_c00001{bottom:4.319175pt;}
.y6b4_c00001{bottom:4.319199pt;}
.y696_c00001{bottom:4.319287pt;}
.y967_c00001{bottom:4.319334pt;}
.y94b_c00001{bottom:4.319363pt;}
.ya27_c00001{bottom:66.773624pt;}
.y6f_c00001{bottom:67.306640pt;}
.y4_c00001{bottom:67.306906pt;}
.y27_c00001{bottom:67.466640pt;}
.y42a_c00001{bottom:67.466906pt;}
.ya26_c00001{bottom:100.693610pt;}
.y6e_c00001{bottom:101.226626pt;}
.y3_c00001{bottom:101.226893pt;}
.y26_c00001{bottom:101.386626pt;}
.y429_c00001{bottom:101.386893pt;}
.y67f_c00001{bottom:118.186886pt;}
.y23a_c00001{bottom:118.346619pt;}
.y24_c00001{bottom:118.346886pt;}
.y48e_c00001{bottom:118.506619pt;}
.y205_c00001{bottom:118.506886pt;}
.y87_c00001{bottom:118.666619pt;}
.y9e_c00001{bottom:118.666886pt;}
.y4c_c00001{bottom:118.826619pt;}
.y30f_c00001{bottom:118.826886pt;}
.y88c_c00001{bottom:120.426618pt;}
.y356_c00001{bottom:120.586618pt;}
.y4f2_c00001{bottom:121.546618pt;}
.y9ce_c00001{bottom:121.866885pt;}
.y7f8_c00001{bottom:122.506618pt;}
.y8fa_c00001{bottom:122.666618pt;}
.y923_c00001{bottom:122.986617pt;}
.y7b0_c00001{bottom:123.466617pt;}
.y5b8_c00001{bottom:123.786617pt;}
.y8d6_c00001{bottom:123.946617pt;}
.y23_c00001{bottom:124.426884pt;}
.yb96_c00001{bottom:124.586617pt;}
.y204_c00001{bottom:124.586883pt;}
.y30e_c00001{bottom:124.906883pt;}
.yc36_c00001{bottom:125.066617pt;}
.y950_c00001{bottom:125.386617pt;}
.yc3_c00001{bottom:125.386883pt;}
.y45e_c00001{bottom:125.546883pt;}
.y83e_c00001{bottom:126.026616pt;}
.yab0_c00001{bottom:126.826616pt;}
.y585_c00001{bottom:126.986616pt;}
.ya2d_c00001{bottom:127.146616pt;}
.y4bd_c00001{bottom:127.626616pt;}
.y6a2_c00001{bottom:127.786616pt;}
.yb5b_c00001{bottom:127.946615pt;}
.ya3f_c00001{bottom:128.053599pt;}
.y744_c00001{bottom:128.426615pt;}
.y649_c00001{bottom:128.586615pt;}
.y5ed_c00001{bottom:129.066615pt;}
.ya6c_c00001{bottom:129.333599pt;}
.yb30_c00001{bottom:129.386615pt;}
.y797_c00001{bottom:129.546615pt;}
.y163_c00001{bottom:129.706615pt;}
.ya31_c00001{bottom:131.253598pt;}
.y719_c00001{bottom:131.306614pt;}
.yae3_c00001{bottom:131.733598pt;}
.y426_c00001{bottom:131.786614pt;}
.yac7_c00001{bottom:132.213598pt;}
.y767_c00001{bottom:132.426614pt;}
.ya34_c00001{bottom:132.853598pt;}
.y1ee_c00001{bottom:132.906614pt;}
.ya81_c00001{bottom:133.013597pt;}
.y180_c00001{bottom:133.706613pt;}
.y461_c00001{bottom:133.866613pt;}
.y22_c00001{bottom:134.026613pt;}
.y86b_c00001{bottom:134.186613pt;}
.ya97_c00001{bottom:134.453597pt;}
.y1dc_c00001{bottom:134.506613pt;}
.y86_c00001{bottom:134.666613pt;}
.y4b_c00001{bottom:134.826613pt;}
.yb2_c00001{bottom:134.986613pt;}
.ya12_c00001{bottom:135.146613pt;}
.yaad_c00001{bottom:135.253597pt;}
.y2ae_c00001{bottom:135.306613pt;}
.y110_c00001{bottom:135.626612pt;}
.ya29_c00001{bottom:135.733596pt;}
.y88b_c00001{bottom:135.786612pt;}
.y9a9_c00001{bottom:135.946612pt;}
.yacc_c00001{bottom:136.106612pt;}
.y8b5_c00001{bottom:136.266612pt;}
.y9bd_c00001{bottom:136.426612pt;}
.y385_c00001{bottom:137.066612pt;}
.y337_c00001{bottom:137.226612pt;}
.y2f2_c00001{bottom:137.706612pt;}
.ya55_c00001{bottom:138.026611pt;}
.ya0e_c00001{bottom:138.186611pt;}
.y523_c00001{bottom:138.346611pt;}
.y355_c00001{bottom:138.666611pt;}
.y7af_c00001{bottom:138.986611pt;}
.y1a1_c00001{bottom:139.786611pt;}
.y48d_c00001{bottom:139.946611pt;}
.yadf_c00001{bottom:140.053595pt;}
.y5b7_c00001{bottom:140.106611pt;}
.y419_c00001{bottom:140.266611pt;}
.y85_c00001{bottom:140.746610pt;}
.y4a_c00001{bottom:140.906610pt;}
.y320_c00001{bottom:141.066610pt;}
.y83d_c00001{bottom:141.386610pt;}
.y142_c00001{bottom:141.706610pt;}
.ya11_c00001{bottom:141.866610pt;}
.ya53_c00001{bottom:142.133594pt;}
.y584_c00001{bottom:142.346610pt;}
.yc35_c00001{bottom:143.466609pt;}
.ya6a_c00001{bottom:143.733593pt;}
.y336_c00001{bottom:143.946609pt;}
.ya0d_c00001{bottom:144.266609pt;}
.yb1d_c00001{bottom:144.426609pt;}
.y5ec_c00001{bottom:144.586609pt;}
.y76d_c00001{bottom:144.746609pt;}
.yac9_c00001{bottom:144.906609pt;}
.y814_c00001{bottom:145.066609pt;}
.y354_c00001{bottom:145.386609pt;}
.yb52_c00001{bottom:145.546608pt;}
.yb95_c00001{bottom:145.706608pt;}
.yc3d_c00001{bottom:146.186608pt;}
.y718_c00001{bottom:146.826608pt;}
.y3e6_c00001{bottom:146.986608pt;}
.y67e_c00001{bottom:147.786608pt;}
.y450_c00001{bottom:147.946607pt;}
.ya2f_c00001{bottom:148.053591pt;}
.y17f_c00001{bottom:149.066607pt;}
.y460_c00001{bottom:149.226607pt;}
.y239_c00001{bottom:149.386607pt;}
.y9e5_c00001{bottom:149.546607pt;}
.y263_c00001{bottom:149.866607pt;}
.y21_c00001{bottom:150.026607pt;}
.y49_c00001{bottom:150.186607pt;}
.y124_c00001{bottom:150.346607pt;}
.y30d_c00001{bottom:150.506606pt;}
.y29c_c00001{bottom:150.666606pt;}
.y84_c00001{bottom:150.826606pt;}
.y9d_c00001{bottom:150.986606pt;}
.ya10_c00001{bottom:151.146606pt;}
.y31f_c00001{bottom:151.306606pt;}
.y1ed_c00001{bottom:151.466606pt;}
.y10f_c00001{bottom:151.626606pt;}
.ya6b_c00001{bottom:151.733590pt;}
.yb05_c00001{bottom:151.946606pt;}
.ybbf_c00001{bottom:152.266606pt;}
.y141_c00001{bottom:152.426606pt;}
.y203_c00001{bottom:152.586606pt;}
.y384_c00001{bottom:153.226605pt;}
.yb1_c00001{bottom:153.386605pt;}
.ya09_c00001{bottom:153.546605pt;}
.y67d_c00001{bottom:153.866605pt;}
.y8f9_c00001{bottom:154.026605pt;}
.y289_c00001{bottom:154.186605pt;}
.ya3e_c00001{bottom:154.293589pt;}
.y335_c00001{bottom:154.666605pt;}
.ya30_c00001{bottom:154.933589pt;}
.y17e_c00001{bottom:155.146605pt;}
.ya33_c00001{bottom:155.253589pt;}
.y45f_c00001{bottom:155.306605pt;}
.y362_c00001{bottom:155.466604pt;}
.ybd8_c00001{bottom:155.786604pt;}
.y20_c00001{bottom:156.106604pt;}
.y7f7_c00001{bottom:156.426604pt;}
.y83c_c00001{bottom:156.746604pt;}
.y922_c00001{bottom:156.906604pt;}
.y278_c00001{bottom:157.066604pt;}
.y30c_c00001{bottom:157.226604pt;}
.y7ae_c00001{bottom:157.386604pt;}
.yac6_c00001{bottom:157.493588pt;}
.yc2_c00001{bottom:157.546604pt;}
.y9c_c00001{bottom:157.706604pt;}
.ya23_c00001{bottom:158.026603pt;}
.ya28_c00001{bottom:158.293587pt;}
.y4ba_c00001{bottom:158.346603pt;}
.y6a1_c00001{bottom:159.146603pt;}
.y425_c00001{bottom:159.306603pt;}
.ya96_c00001{bottom:159.733587pt;}
.y5eb_c00001{bottom:159.786603pt;}
.y383_c00001{bottom:159.946603pt;}
.yb0_c00001{bottom:160.106603pt;}
.y743_c00001{bottom:160.266603pt;}
.y94d_c00001{bottom:160.426602pt;}
.yaac_c00001{bottom:160.533586pt;}
.y648_c00001{bottom:162.346602pt;}
.y3e5_c00001{bottom:162.666602pt;}
.yacb_c00001{bottom:162.986601pt;}
.y796_c00001{bottom:163.466601pt;}
.y612_c00001{bottom:163.946601pt;}
.y921_c00001{bottom:164.106601pt;}
.y44f_c00001{bottom:164.266601pt;}
.y17d_c00001{bottom:164.426601pt;}
.ya1b_c00001{bottom:164.586601pt;}
.y1b9_c00001{bottom:165.226601pt;}
.y1f_c00001{bottom:165.386601pt;}
.y48_c00001{bottom:165.546600pt;}
.y6b_c00001{bottom:165.706600pt;}
.y29b_c00001{bottom:165.866600pt;}
.ya2c_c00001{bottom:166.026600pt;}
.y18d_c00001{bottom:166.186600pt;}
.y1d3_c00001{bottom:166.346600pt;}
.y9f5_c00001{bottom:166.506600pt;}
.y32b_c00001{bottom:166.666600pt;}
.y23f_c00001{bottom:166.826600pt;}
.yc1_c00001{bottom:167.146600pt;}
.y31e_c00001{bottom:167.306600pt;}
.y4f0_c00001{bottom:167.627200pt;}
.yade_c00001{bottom:167.733584pt;}
.y30b_c00001{bottom:167.786600pt;}
.y202_c00001{bottom:168.106599pt;}
.y2ad_c00001{bottom:168.266599pt;}
.y1db_c00001{bottom:168.426599pt;}
.ya52_c00001{bottom:168.533583pt;}
.y9bc_c00001{bottom:168.586599pt;}
.y123_c00001{bottom:168.746599pt;}
.yb42_c00001{bottom:168.906599pt;}
.ya69_c00001{bottom:169.013583pt;}
.y9b_c00001{bottom:169.066599pt;}
.y3e4_c00001{bottom:169.386599pt;}
.ydb_c00001{bottom:169.706599pt;}
.ya2e_c00001{bottom:169.813583pt;}
.y1ec_c00001{bottom:169.866599pt;}
.y8b4_c00001{bottom:170.026599pt;}
.y1a0_c00001{bottom:170.506598pt;}
.y162_c00001{bottom:170.666598pt;}
.yaf_c00001{bottom:170.826598pt;}
.y44e_c00001{bottom:170.986598pt;}
.y214_c00001{bottom:171.466598pt;}
.y47_c00001{bottom:171.626598pt;}
.yac8_c00001{bottom:171.786598pt;}
.yb1c_c00001{bottom:171.946598pt;}
.y522_c00001{bottom:172.266598pt;}
.y1d2_c00001{bottom:172.426598pt;}
.ya01_c00001{bottom:172.586598pt;}
.y2d8_c00001{bottom:172.906598pt;}
.y31d_c00001{bottom:173.386597pt;}
.yc18_c00001{bottom:173.546597pt;}
.y10e_c00001{bottom:173.866597pt;}
.y361_c00001{bottom:174.026597pt;}
.ybd7_c00001{bottom:174.186597pt;}
.y4bc_c00001{bottom:174.506597pt;}
.y94f_c00001{bottom:174.666597pt;}
.y201_c00001{bottom:174.826597pt;}
.y83b_c00001{bottom:175.146597pt;}
.y122_c00001{bottom:175.466596pt;}
.y742_c00001{bottom:175.626596pt;}
.y813_c00001{bottom:175.946596pt;}
.y262_c00001{bottom:176.266596pt;}
.ybac_c00001{bottom:176.426596pt;}
.y67c_c00001{bottom:176.586596pt;}
.yaf5_c00001{bottom:177.333580pt;}
.y4b9_c00001{bottom:177.866596pt;}
.ya3d_c00001{bottom:178.133579pt;}
.y5ea_c00001{bottom:178.346595pt;}
.y795_c00001{bottom:178.666595pt;}
.yb04_c00001{bottom:179.466595pt;}
.y17c_c00001{bottom:179.946595pt;}
.y3e3_c00001{bottom:180.106595pt;}
.y19f_c00001{bottom:180.586594pt;}
.y1e_c00001{bottom:180.746594pt;}
.y9e4_c00001{bottom:180.906594pt;}
.y251_c00001{bottom:181.066594pt;}
.y2c4_c00001{bottom:181.226594pt;}
.yb51_c00001{bottom:181.386594pt;}
.y213_c00001{bottom:181.546594pt;}
.y46_c00001{bottom:181.706594pt;}
.y288_c00001{bottom:181.866594pt;}
.ya00_c00001{bottom:182.026594pt;}
.y45d_c00001{bottom:182.346594pt;}
.y1d1_c00001{bottom:182.506594pt;}
.y67b_c00001{bottom:182.666594pt;}
.yac5_c00001{bottom:182.773578pt;}
.y31c_c00001{bottom:182.826594pt;}
.yc0_c00001{bottom:182.986593pt;}
.y7ce_c00001{bottom:183.146593pt;}
.yc05_c00001{bottom:183.306593pt;}
.y920_c00001{bottom:183.466593pt;}
.ya80_c00001{bottom:183.573577pt;}
.y2d7_c00001{bottom:183.626593pt;}
.yc62_c00001{bottom:183.786593pt;}
.y48c_c00001{bottom:184.426593pt;}
.y10d_c00001{bottom:184.586593pt;}
.y345_c00001{bottom:184.746593pt;}
.y121_c00001{bottom:184.906593pt;}
.ya95_c00001{bottom:185.013577pt;}
.y8b3_c00001{bottom:185.386593pt;}
.yda_c00001{bottom:185.546592pt;}
.yaab_c00001{bottom:185.813576pt;}
.y353_c00001{bottom:186.186592pt;}
.y3c7_c00001{bottom:186.346592pt;}
.y86a_c00001{bottom:186.506592pt;}
.y17b_c00001{bottom:186.666592pt;}
.y1d_c00001{bottom:186.826592pt;}
.y424_c00001{bottom:186.986592pt;}
.y4ef_c00001{bottom:187.146592pt;}
.y6a_c00001{bottom:187.786592pt;}
.yb94_c00001{bottom:187.946591pt;}
.y88a_c00001{bottom:188.106591pt;}
.y29a_c00001{bottom:188.266591pt;}
.y395_c00001{bottom:188.586591pt;}
.ya15_c00001{bottom:188.746591pt;}
.y32a_c00001{bottom:188.906591pt;}
.ybbe_c00001{bottom:189.066591pt;}
.y9f4_c00001{bottom:189.386591pt;}
.ybf_c00001{bottom:189.706591pt;}
.y382_c00001{bottom:189.866591pt;}
.y7f6_c00001{bottom:190.346591pt;}
.y83a_c00001{bottom:190.666590pt;}
.y371_c00001{bottom:190.986590pt;}
.y7ad_c00001{bottom:191.306590pt;}
.y360_c00001{bottom:191.466590pt;}
.y37a_c00001{bottom:191.626590pt;}
.y83_c00001{bottom:191.786590pt;}
.yd9_c00001{bottom:192.266590pt;}
.y227_c00001{bottom:192.426590pt;}
.ybd6_c00001{bottom:192.586590pt;}
.y2f1_c00001{bottom:192.906590pt;}
.y94c_c00001{bottom:193.226589pt;}
.ya2b_c00001{bottom:193.546589pt;}
.y5e9_c00001{bottom:193.706589pt;}
.y13f_c00001{bottom:193.866589pt;}
.ya68_c00001{bottom:194.293573pt;}
.ybab_c00001{bottom:194.346589pt;}
.y583_c00001{bottom:194.506589pt;}
.y18b_c00001{bottom:194.986589pt;}
.yadd_c00001{bottom:195.253573pt;}
.y1da_c00001{bottom:195.946588pt;}
.ya51_c00001{bottom:196.053572pt;}
.y647_c00001{bottom:196.266588pt;}
.y414_c00001{bottom:196.426588pt;}
.yb41_c00001{bottom:196.586588pt;}
.y1c_c00001{bottom:196.906588pt;}
.ya0f_c00001{bottom:197.066588pt;}
.y794_c00001{bottom:197.226588pt;}
.y17a_c00001{bottom:197.386588pt;}
.y69_c00001{bottom:197.706588pt;}
.ya21_c00001{bottom:198.026587pt;}
.y440_c00001{bottom:198.186587pt;}
.y7cd_c00001{bottom:198.346587pt;}
.yb70_c00001{bottom:198.506587pt;}
.y394_c00001{bottom:198.666587pt;}
.y299_c00001{bottom:198.986587pt;}
.y228_c00001{bottom:199.146587pt;}
.ya14_c00001{bottom:199.466587pt;}
.y31b_c00001{bottom:199.626587pt;}
.y48b_c00001{bottom:199.786587pt;}
.y990_c00001{bottom:200.106587pt;}
.y766_c00001{bottom:200.266587pt;}
.ybe_c00001{bottom:200.426586pt;}
.y140_c00001{bottom:200.586586pt;}
.y8b2_c00001{bottom:200.746586pt;}
.y120_c00001{bottom:200.906586pt;}
.y2d5_c00001{bottom:201.386586pt;}
.y8f7_c00001{bottom:201.387200pt;}
.yc3c_c00001{bottom:201.546586pt;}
.y18c_c00001{bottom:201.706586pt;}
.yd8_c00001{bottom:201.866586pt;}
.y869_c00001{bottom:202.026586pt;}
.y8d5_c00001{bottom:202.186586pt;}
.y4ee_c00001{bottom:202.346586pt;}
.y91f_c00001{bottom:202.826586pt;}
.y250_c00001{bottom:202.986585pt;}
.y9e3_c00001{bottom:203.146585pt;}
.y2ac_c00001{bottom:203.306585pt;}
.yed_c00001{bottom:203.466585pt;}
.y2c3_c00001{bottom:203.626585pt;}
.y261_c00001{bottom:203.946585pt;}
.y200_c00001{bottom:204.266585pt;}
.y44d_c00001{bottom:204.426585pt;}
.ya22_c00001{bottom:204.746585pt;}
.y9ff_c00001{bottom:205.066585pt;}
.y67a_c00001{bottom:205.226585pt;}
.y839_c00001{bottom:206.026584pt;}
.y51f_c00001{bottom:206.346584pt;}
.y3b1_c00001{bottom:206.506584pt;}
.y69f_c00001{bottom:206.507200pt;}
.yb17_c00001{bottom:206.666584pt;}
.y7ac_c00001{bottom:206.826584pt;}
.yb03_c00001{bottom:207.146584pt;}
.yc50_c00001{bottom:207.306584pt;}
.ybbd_c00001{bottom:207.466584pt;}
.y11f_c00001{bottom:207.626584pt;}
.y309_c00001{bottom:207.946583pt;}
.yac4_c00001{bottom:208.053567pt;}
.y2d6_c00001{bottom:208.106583pt;}
.ya1f_c00001{bottom:208.426583pt;}
.y7f5_c00001{bottom:208.746583pt;}
.ya7f_c00001{bottom:208.853567pt;}
.y5e8_c00001{bottom:209.066583pt;}
.y418_c00001{bottom:209.226583pt;}
.y287_c00001{bottom:209.386583pt;}
.yae2_c00001{bottom:209.546583pt;}
.y3d6_c00001{bottom:209.866583pt;}
.y370_c00001{bottom:210.346583pt;}
.ya94_c00001{bottom:210.453566pt;}
.y4b8_c00001{bottom:210.506582pt;}
.yfd_c00001{bottom:210.666582pt;}
.y6f7_c00001{bottom:210.826582pt;}
.y1b8_c00001{bottom:210.986582pt;}
.yaaa_c00001{bottom:211.093566pt;}
.y69e_c00001{bottom:211.146582pt;}
.y4bb_c00001{bottom:211.306582pt;}
.y161_c00001{bottom:211.466582pt;}
.y646_c00001{bottom:211.786582pt;}
.y344_c00001{bottom:212.266582pt;}
.y611_c00001{bottom:212.586582pt;}
.y793_c00001{bottom:212.746582pt;}
.y24f_c00001{bottom:213.066581pt;}
.y9a_c00001{bottom:213.226581pt;}
.ybf1_c00001{bottom:213.386581pt;}
.y2c2_c00001{bottom:213.546581pt;}
.y9a8_c00001{bottom:213.706581pt;}
.y3c6_c00001{bottom:214.026581pt;}
.y18a_c00001{bottom:214.506581pt;}
.y19e_c00001{bottom:214.666581pt;}
.y48a_c00001{bottom:214.986581pt;}
.y9fe_c00001{bottom:215.146581pt;}
.y30a_c00001{bottom:215.306581pt;}
.y98f_c00001{bottom:215.466580pt;}
.yb14_c00001{bottom:215.626580pt;}
.y413_c00001{bottom:215.786580pt;}
.yc76_c00001{bottom:215.946580pt;}
.y13e_c00001{bottom:216.426580pt;}
.y7cc_c00001{bottom:216.906580pt;}
.y868_c00001{bottom:217.386580pt;}
.yd7_c00001{bottom:217.706580pt;}
.y11e_c00001{bottom:218.346579pt;}
.y9cd_c00001{bottom:218.506579pt;}
.y2e1_c00001{bottom:218.666579pt;}
.y765_c00001{bottom:218.826579pt;}
.y8cf_c00001{bottom:218.986579pt;}
.y379_c00001{bottom:219.146579pt;}
.y82_c00001{bottom:219.466579pt;}
.ya67_c00001{bottom:219.573563pt;}
.yc04_c00001{bottom:220.266579pt;}
.y2f0_c00001{bottom:220.586578pt;}
.y2d4_c00001{bottom:220.746578pt;}
.y9f3_c00001{bottom:221.066578pt;}
.y520_c00001{bottom:221.067200pt;}
.ya2a_c00001{bottom:221.226578pt;}
.yc12_c00001{bottom:221.386578pt;}
.y679_c00001{bottom:221.546578pt;}
.y3e1_c00001{bottom:221.706578pt;}
.y403_c00001{bottom:221.866578pt;}
.y889_c00001{bottom:222.026578pt;}
.y44c_c00001{bottom:222.346578pt;}
.yadc_c00001{bottom:222.933561pt;}
.y277_c00001{bottom:223.146577pt;}
.ya20_c00001{bottom:223.306577pt;}
.ya50_c00001{bottom:223.573561pt;}
.y1d9_c00001{bottom:223.626577pt;}
.yb4c_c00001{bottom:223.946577pt;}
.yb40_c00001{bottom:224.106577pt;}
.y7f4_c00001{bottom:224.266577pt;}
.yd6_c00001{bottom:224.426577pt;}
.y1eb_c00001{bottom:224.906577pt;}
.y7ab_c00001{bottom:225.226577pt;}
.y76c_c00001{bottom:225.386577pt;}
.y51e_c00001{bottom:225.706576pt;}
.y43f_c00001{bottom:225.866576pt;}
.y6f6_c00001{bottom:226.026576pt;}
.y94e_c00001{bottom:226.666576pt;}
.ya1e_c00001{bottom:226.986576pt;}
.y237_c00001{bottom:227.146576pt;}
.y5e7_c00001{bottom:227.466576pt;}
.y792_c00001{bottom:227.946575pt;}
.yaf4_c00001{bottom:228.053559pt;}
.y226_c00001{bottom:228.106575pt;}
.yc17_c00001{bottom:228.266575pt;}
.yb56_c00001{bottom:228.426575pt;}
.y3e2_c00001{bottom:229.066575pt;}
.ybd5_c00001{bottom:229.386575pt;}
.y2c1_c00001{bottom:229.546575pt;}
.y645_c00001{bottom:229.866575pt;}
.y369_c00001{bottom:230.346575pt;}
.y1b7_c00001{bottom:230.506574pt;}
.y1b_c00001{bottom:230.666574pt;}
.y8ab_c00001{bottom:230.826574pt;}
.y2ab_c00001{bottom:230.986574pt;}
.y9f2_c00001{bottom:231.146574pt;}
.y35f_c00001{bottom:231.306574pt;}
.y260_c00001{bottom:231.466574pt;}
.y1d0_c00001{bottom:231.626574pt;}
.y968_c00001{bottom:231.946574pt;}
.y9a7_c00001{bottom:232.106574pt;}
.y7cb_c00001{bottom:232.266574pt;}
.y9e2_c00001{bottom:232.906574pt;}
.y5b6_c00001{bottom:233.066573pt;}
.yac3_c00001{bottom:233.333557pt;}
.y556_c00001{bottom:233.546573pt;}
.y98e_c00001{bottom:233.866573pt;}
.y4ed_c00001{bottom:234.026573pt;}
.ya7e_c00001{bottom:234.133557pt;}
.y764_c00001{bottom:234.186573pt;}
.yb16_c00001{bottom:234.346573pt;}
.y238_c00001{bottom:234.506573pt;}
.yae_c00001{bottom:234.666573pt;}
.yb26_c00001{bottom:234.826573pt;}
.y19d_c00001{bottom:235.466572pt;}
.ya93_c00001{bottom:235.733556pt;}
.y867_c00001{bottom:235.786572pt;}
.y154_c00001{bottom:235.946572pt;}
.y8d4_c00001{bottom:236.106572pt;}
.yaa9_c00001{bottom:236.373556pt;}
.yb34_c00001{bottom:236.426572pt;}
.y91e_c00001{bottom:236.906572pt;}
.yaaf_c00001{bottom:237.226572pt;}
.y45c_c00001{bottom:237.546572pt;}
.y3d5_c00001{bottom:237.706572pt;}
.yec_c00001{bottom:238.026571pt;}
.yb5a_c00001{bottom:238.346571pt;}
.yfc_c00001{bottom:238.666571pt;}
.yc61_c00001{bottom:238.986571pt;}
.y160_c00001{bottom:239.146571pt;}
.y580_c00001{bottom:239.306571pt;}
.y8f4_c00001{bottom:239.466571pt;}
.y3f2_c00001{bottom:239.786571pt;}
.y343_c00001{bottom:239.946571pt;}
.yc6d_c00001{bottom:240.266571pt;}
.y67_c00001{bottom:240.426570pt;}
.ybc_c00001{bottom:240.586570pt;}
.y99_c00001{bottom:240.746570pt;}
.y3b0_c00001{bottom:240.906570pt;}
.y23d_c00001{bottom:241.226570pt;}
.y582_c00001{bottom:241.386570pt;}
.y3c5_c00001{bottom:241.546570pt;}
.y678_c00001{bottom:241.866570pt;}
.y423_c00001{bottom:242.186570pt;}
.y11d_c00001{bottom:242.506570pt;}
.y7f3_c00001{bottom:242.666570pt;}
.y368_c00001{bottom:242.986569pt;}
.y2d3_c00001{bottom:243.146569pt;}
.y741_c00001{bottom:243.306569pt;}
.yb13_c00001{bottom:243.626569pt;}
.y1b6_c00001{bottom:243.786569pt;}
.y4b5_c00001{bottom:243.946569pt;}
.yc4f_c00001{bottom:244.106569pt;}
.ya1a_c00001{bottom:244.266569pt;}
.y69c_c00001{bottom:244.586569pt;}
.yb55_c00001{bottom:244.746569pt;}
.ya66_c00001{bottom:244.853553pt;}
.y412_c00001{bottom:245.066569pt;}
.y644_c00001{bottom:245.706568pt;}
.y51d_c00001{bottom:245.866568pt;}
.y36f_c00001{bottom:246.026568pt;}
.y791_c00001{bottom:246.506568pt;}
.y489_c00001{bottom:246.666568pt;}
.y378_c00001{bottom:246.826568pt;}
.y81_c00001{bottom:246.986568pt;}
.y68_c00001{bottom:247.146568pt;}
.ybd_c00001{bottom:247.306568pt;}
.y298_c00001{bottom:247.626568pt;}
.ybd4_c00001{bottom:247.786568pt;}
.y23e_c00001{bottom:247.946567pt;}
.y2ef_c00001{bottom:248.106567pt;}
.yab2_c00001{bottom:248.426567pt;}
.y717_c00001{bottom:248.586567pt;}
.y45_c00001{bottom:248.746567pt;}
.y3e0_c00001{bottom:249.226567pt;}
.y4ec_c00001{bottom:249.386567pt;}
.y189_c00001{bottom:249.546567pt;}
.y8b1_c00001{bottom:250.026567pt;}
.y40f_c00001{bottom:250.346567pt;}
.yadb_c00001{bottom:250.453550pt;}
.yc75_c00001{bottom:250.506566pt;}
.y276_c00001{bottom:250.666566pt;}
.y7ca_c00001{bottom:250.826566pt;}
.y1d8_c00001{bottom:251.146566pt;}
.ya4f_c00001{bottom:251.253550pt;}
.y866_c00001{bottom:251.306566pt;}
.yd5_c00001{bottom:251.466566pt;}
.y2aa_c00001{bottom:251.626566pt;}
.yb3f_c00001{bottom:251.786566pt;}
.yc03_c00001{bottom:251.946566pt;}
.ya1d_c00001{bottom:252.266566pt;}
.y1ea_c00001{bottom:252.586566pt;}
.y6c8_c00001{bottom:252.746566pt;}
.y888_c00001{bottom:252.906566pt;}
.yb6f_c00001{bottom:253.706565pt;}
.y91d_c00001{bottom:254.026565pt;}
.y24e_c00001{bottom:254.346565pt;}
.y8d3_c00001{bottom:254.506565pt;}
.y236_c00001{bottom:254.826565pt;}
.y838_c00001{bottom:255.146565pt;}
.y94a_c00001{bottom:255.147200pt;}
.y51a_c00001{bottom:255.627200pt;}
.y286_c00001{bottom:255.786564pt;}
.y7aa_c00001{bottom:256.106564pt;}
.yc3b_c00001{bottom:257.066564pt;}
.yc60_c00001{bottom:257.386564pt;}
.y9ef_c00001{bottom:257.546564pt;}
.y1fe_c00001{bottom:258.026563pt;}
.y1a_c00001{bottom:258.186563pt;}
.y5e6_c00001{bottom:258.346563pt;}
.yac2_c00001{bottom:258.613547pt;}
.y4b6_c00001{bottom:258.667200pt;}
.y740_c00001{bottom:258.826563pt;}
.y1ce_c00001{bottom:259.146563pt;}
.y610_c00001{bottom:259.306563pt;}
.y69d_c00001{bottom:259.307200pt;}
.ya7d_c00001{bottom:259.413547pt;}
.y2e0_c00001{bottom:259.466563pt;}
.y66_c00001{bottom:259.946563pt;}
.y677_c00001{bottom:260.266563pt;}
.y9e0_c00001{bottom:260.586562pt;}
.ya92_c00001{bottom:261.013546pt;}
.y51c_c00001{bottom:261.226562pt;}
.y96a_c00001{bottom:261.386562pt;}
.y643_c00001{bottom:261.546562pt;}
.y4ea_c00001{bottom:261.547200pt;}
.yaa8_c00001{bottom:261.653546pt;}
.yc26_c00001{bottom:261.706562pt;}
.y790_c00001{bottom:261.866562pt;}
.y3c4_c00001{bottom:262.346562pt;}
.yc4e_c00001{bottom:262.506562pt;}
.ybbc_c00001{bottom:262.666562pt;}
.y488_c00001{bottom:262.986561pt;}
.ybb_c00001{bottom:263.146561pt;}
.y4b4_c00001{bottom:263.306561pt;}
.y153_c00001{bottom:263.626561pt;}
.y69b_c00001{bottom:263.946561pt;}
.y5b5_c00001{bottom:264.586561pt;}
.y4e9_c00001{bottom:264.746561pt;}
.yb4b_c00001{bottom:264.906561pt;}
.y45b_c00001{bottom:265.066561pt;}
.y3d4_c00001{bottom:265.226561pt;}
.y1ff_c00001{bottom:265.386561pt;}
.y43e_c00001{bottom:265.706560pt;}
.yfb_c00001{bottom:266.186560pt;}
.y1cf_c00001{bottom:266.506560pt;}
.yad_c00001{bottom:266.666560pt;}
.y716_c00001{bottom:266.986560pt;}
.y342_c00001{bottom:267.466560pt;}
.y6c9_c00001{bottom:267.467200pt;}
.y9e1_c00001{bottom:267.946559pt;}
.y763_c00001{bottom:268.106559pt;}
.y98_c00001{bottom:268.426559pt;}
.ybf0_c00001{bottom:268.746559pt;}
.y887_c00001{bottom:269.066559pt;}
.yb25_c00001{bottom:269.386559pt;}
.y422_c00001{bottom:269.706559pt;}
.y8d2_c00001{bottom:270.026559pt;}
.yc02_c00001{bottom:270.506558pt;}
.y23c_c00001{bottom:270.666558pt;}
.y2a9_c00001{bottom:270.986558pt;}
.yb12_c00001{bottom:271.146558pt;}
.ya65_c00001{bottom:271.253542pt;}
.yb7e_c00001{bottom:271.626558pt;}
.y9fd_c00001{bottom:271.786558pt;}
.y57f_c00001{bottom:271.946558pt;}
.y6c7_c00001{bottom:272.106558pt;}
.yeb_c00001{bottom:272.426558pt;}
.yb93_c00001{bottom:272.586558pt;}
.y581_c00001{bottom:272.746558pt;}
.y7f2_c00001{bottom:273.546557pt;}
.y8f5_c00001{bottom:273.547200pt;}
.y837_c00001{bottom:273.706557pt;}
.y2c0_c00001{bottom:274.186557pt;}
.y377_c00001{bottom:274.346557pt;}
.y7a9_c00001{bottom:274.506557pt;}
.y80_c00001{bottom:274.666557pt;}
.y297_c00001{bottom:275.146557pt;}
.y6f5_c00001{bottom:275.306557pt;}
.y3af_c00001{bottom:275.466556pt;}
.y2ee_c00001{bottom:275.786556pt;}
.y44_c00001{bottom:276.426556pt;}
.y21e_c00001{bottom:276.586556pt;}
.y5e5_c00001{bottom:276.746556pt;}
.y19b_c00001{bottom:276.906556pt;}
.y642_c00001{bottom:277.226556pt;}
.yb33_c00001{bottom:277.386556pt;}
.y60f_c00001{bottom:277.706556pt;}
.yada_c00001{bottom:278.133539pt;}
.y8f3_c00001{bottom:278.186555pt;}
.y275_c00001{bottom:278.346555pt;}
.yaf3_c00001{bottom:278.613539pt;}
.ya1c_c00001{bottom:278.666555pt;}
.ya4e_c00001{bottom:278.773539pt;}
.y18_c00001{bottom:278.826555pt;}
.yb59_c00001{bottom:279.146555pt;}
.y65_c00001{bottom:279.306555pt;}
.y5b4_c00001{bottom:279.946555pt;}
.y1e9_c00001{bottom:280.106555pt;}
.y78f_c00001{bottom:280.426554pt;}
.y3f1_c00001{bottom:280.746554pt;}
.yc4d_c00001{bottom:280.906554pt;}
.y4e8_c00001{bottom:281.066554pt;}
.yb6e_c00001{bottom:281.226554pt;}
.y9a6_c00001{bottom:281.386554pt;}
.ybaa_c00001{bottom:281.546554pt;}
.y3c3_c00001{bottom:281.706554pt;}
.y235_c00001{bottom:282.346554pt;}
.y554_c00001{bottom:282.347200pt;}
.yac_c00001{bottom:282.506554pt;}
.y9cc_c00001{bottom:282.826554pt;}
.y98d_c00001{bottom:283.146553pt;}
.y285_c00001{bottom:283.306553pt;}
.y13d_c00001{bottom:283.466553pt;}
.y19c_c00001{bottom:283.626553pt;}
.yc16_c00001{bottom:283.786553pt;}
.yac1_c00001{bottom:283.893537pt;}
.y8b0_c00001{bottom:283.946553pt;}
.y40e_c00001{bottom:284.266553pt;}
.y886_c00001{bottom:284.426553pt;}
.ybd3_c00001{bottom:284.586553pt;}
.ya7c_c00001{bottom:284.693537pt;}
.y7c9_c00001{bottom:284.746553pt;}
.yc74_c00001{bottom:284.906553pt;}
.y865_c00001{bottom:285.066553pt;}
.y8d1_c00001{bottom:285.226553pt;}
.y19_c00001{bottom:285.546552pt;}
.yb09_c00001{bottom:285.866552pt;}
.y7ea_c00001{bottom:286.186552pt;}
.ya91_c00001{bottom:286.293536pt;}
.y35e_c00001{bottom:286.346552pt;}
.y25f_c00001{bottom:286.666552pt;}
.y1cd_c00001{bottom:286.826552pt;}
.y553_c00001{bottom:286.986552pt;}
.yaa7_c00001{bottom:287.093536pt;}
.ybef_c00001{bottom:287.146552pt;}
.y9df_c00001{bottom:288.106551pt;}
.y7f1_c00001{bottom:288.906551pt;}
.y836_c00001{bottom:289.066551pt;}
.yb15_c00001{bottom:289.546551pt;}
.yb02_c00001{bottom:289.866551pt;}
.y179_c00001{bottom:290.026551pt;}
.y3df_c00001{bottom:290.186551pt;}
.y2a7_c00001{bottom:290.346551pt;}
.y308_c00001{bottom:290.666550pt;}
.y152_c00001{bottom:291.146550pt;}
.y6f4_c00001{bottom:291.626550pt;}
.y519_c00001{bottom:291.946550pt;}
.y5e4_c00001{bottom:292.266550pt;}
.y212_c00001{bottom:292.426550pt;}
.y641_c00001{bottom:292.586550pt;}
.y43c_c00001{bottom:292.746550pt;}
.y3d3_c00001{bottom:292.906550pt;}
.y76b_c00001{bottom:293.066549pt;}
.y60e_c00001{bottom:293.226549pt;}
.y328_c00001{bottom:293.546549pt;}
.yfa_c00001{bottom:293.866549pt;}
.yc5f_c00001{bottom:294.186549pt;}
.y15f_c00001{bottom:294.346549pt;}
.y376_c00001{bottom:294.986549pt;}
.y341_c00001{bottom:295.146549pt;}
.y24d_c00001{bottom:295.306549pt;}
.yaf2_c00001{bottom:295.413533pt;}
.y78e_c00001{bottom:295.786548pt;}
.y97_c00001{bottom:295.946548pt;}
.y4e7_c00001{bottom:296.266548pt;}
.y69a_c00001{bottom:296.426548pt;}
.y487_c00001{bottom:296.746548pt;}
.y9a5_c00001{bottom:296.906548pt;}
.y2a8_c00001{bottom:297.066548pt;}
.y1d7_c00001{bottom:297.386548pt;}
.y969_c00001{bottom:298.186547pt;}
.y17_c00001{bottom:298.346547pt;}
.yc25_c00001{bottom:298.506547pt;}
.y98c_c00001{bottom:298.666547pt;}
.ya64_c00001{bottom:298.773531pt;}
.yb11_c00001{bottom:298.826547pt;}
.yb7d_c00001{bottom:299.146547pt;}
.y8af_c00001{bottom:299.306547pt;}
.y9fc_c00001{bottom:299.466547pt;}
.y885_c00001{bottom:299.786547pt;}
.yba9_c00001{bottom:299.946547pt;}
.y43d_c00001{bottom:300.106547pt;}
.y329_c00001{bottom:300.266547pt;}
.y2df_c00001{bottom:300.426546pt;}
.y864_c00001{bottom:300.586546pt;}
.y715_c00001{bottom:300.906546pt;}
.y2bf_c00001{bottom:301.706546pt;}
.y64_c00001{bottom:301.866546pt;}
.y762_c00001{bottom:302.026546pt;}
.y7f_c00001{bottom:302.186546pt;}
.y6c5_c00001{bottom:302.187200pt;}
.y296_c00001{bottom:302.506546pt;}
.ybd2_c00001{bottom:302.986545pt;}
.y2ed_c00001{bottom:303.306545pt;}
.y6c3_c00001{bottom:303.307200pt;}
.yae1_c00001{bottom:303.626545pt;}
.y40d_c00001{bottom:303.786545pt;}
.y43_c00001{bottom:303.946545pt;}
.y3c2_c00001{bottom:304.106545pt;}
.y21d_c00001{bottom:304.266545pt;}
.y835_c00001{bottom:304.426545pt;}
.yb32_c00001{bottom:304.906545pt;}
.y57d_c00001{bottom:305.386545pt;}
.ybee_c00001{bottom:305.546544pt;}
.yad9_c00001{bottom:305.653528pt;}
.y7e9_c00001{bottom:305.706544pt;}
.y274_c00001{bottom:305.866544pt;}
.ya4d_c00001{bottom:306.453528pt;}
.y6c2_c00001{bottom:306.826544pt;}
.yea_c00001{bottom:306.986544pt;}
.yb53_c00001{bottom:307.146544pt;}
.y7f0_c00001{bottom:307.306544pt;}
.y5e3_c00001{bottom:307.626544pt;}
.y1e8_c00001{bottom:307.786544pt;}
.y640_c00001{bottom:307.946543pt;}
.yb2f_c00001{bottom:308.426543pt;}
.y60d_c00001{bottom:308.586543pt;}
.y381_c00001{bottom:309.066543pt;}
.yac0_c00001{bottom:309.333527pt;}
.y676_c00001{bottom:309.546543pt;}
.y2a6_c00001{bottom:309.706543pt;}
.yc34_c00001{bottom:309.866543pt;}
.ya7b_c00001{bottom:309.973527pt;}
.y234_c00001{bottom:310.026543pt;}
.y211_c00001{bottom:310.826542pt;}
.y31a_c00001{bottom:311.146542pt;}
.ya90_c00001{bottom:311.573526pt;}
.y4e6_c00001{bottom:311.626542pt;}
.y486_c00001{bottom:312.266542pt;}
.yaa6_c00001{bottom:312.373526pt;}
.y19a_c00001{bottom:312.586542pt;}
.y417_c00001{bottom:312.746542pt;}
.y327_c00001{bottom:313.066541pt;}
.y1fd_c00001{bottom:313.226541pt;}
.yc11_c00001{bottom:313.386541pt;}
.yb08_c00001{bottom:313.546541pt;}
.y351_c00001{bottom:313.706541pt;}
.y98b_c00001{bottom:313.866541pt;}
.yc6c_c00001{bottom:314.186541pt;}
.y1cc_c00001{bottom:314.346541pt;}
.y375_c00001{bottom:314.506541pt;}
.y3f0_c00001{bottom:314.826541pt;}
.yb92_c00001{bottom:314.986541pt;}
.y9cb_c00001{bottom:315.146541pt;}
.y9de_c00001{bottom:315.626540pt;}
.y863_c00001{bottom:315.946540pt;}
.y4b1_c00001{bottom:316.106540pt;}
.y714_c00001{bottom:316.426540pt;}
.yc24_c00001{bottom:316.746540pt;}
.y551_c00001{bottom:316.907200pt;}
.y8ce_c00001{bottom:317.066540pt;}
.y178_c00001{bottom:317.546540pt;}
.y8ae_c00001{bottom:317.706540pt;}
.y3de_c00001{bottom:317.866540pt;}
.y54f_c00001{bottom:318.027200pt;}
.y884_c00001{bottom:318.186539pt;}
.y307_c00001{bottom:318.346539pt;}
.y7c8_c00001{bottom:318.666539pt;}
.y151_c00001{bottom:318.826539pt;}
.y8d0_c00001{bottom:319.146539pt;}
.yc73_c00001{bottom:319.466539pt;}
.yb4a_c00001{bottom:320.106539pt;}
.y43b_c00001{bottom:320.266539pt;}
.y352_c00001{bottom:320.426538pt;}
.y761_c00001{bottom:320.586538pt;}
.y16_c00001{bottom:320.746538pt;}
.yc15_c00001{bottom:320.906538pt;}
.y334_c00001{bottom:321.066538pt;}
.yf9_c00001{bottom:321.386538pt;}
.yd4_c00001{bottom:321.546538pt;}
.y15e_c00001{bottom:321.866538pt;}
.yb6d_c00001{bottom:322.186538pt;}
.y340_c00001{bottom:322.666538pt;}
.y24c_c00001{bottom:322.826538pt;}
.y4df_c00001{bottom:322.986537pt;}
.y6f3_c00001{bottom:323.306537pt;}
.y294_c00001{bottom:323.466537pt;}
.y96_c00001{bottom:323.626537pt;}
.y7a8_c00001{bottom:323.786537pt;}
.y63f_c00001{bottom:323.946537pt;}
.y57c_c00001{bottom:324.746537pt;}
.y421_c00001{bottom:324.906537pt;}
.y675_c00001{bottom:325.066537pt;}
.y516_c00001{bottom:325.226537pt;}
.y5e2_c00001{bottom:326.026536pt;}
.yb10_c00001{bottom:326.346536pt;}
.ya63_c00001{bottom:326.453520pt;}
.y73f_c00001{bottom:326.666536pt;}
.y966_c00001{bottom:326.667200pt;}
.yb7c_c00001{bottom:326.826536pt;}
.y5b3_c00001{bottom:326.986536pt;}
.y4e5_c00001{bottom:327.946535pt;}
.y485_c00001{bottom:328.586535pt;}
.y20f_c00001{bottom:328.746535pt;}
.y949_c00001{bottom:328.906535pt;}
.y2be_c00001{bottom:329.066535pt;}
.yaf1_c00001{bottom:329.173519pt;}
.y44b_c00001{bottom:329.226535pt;}
.y284_c00001{bottom:329.546535pt;}
.y78d_c00001{bottom:329.706535pt;}
.y7e_c00001{bottom:329.866535pt;}
.y295_c00001{bottom:330.186535pt;}
.y3ae_c00001{bottom:330.666534pt;}
.y4b2_c00001{bottom:330.827200pt;}
.y2ec_c00001{bottom:330.986534pt;}
.yae0_c00001{bottom:331.306534pt;}
.y42_c00001{bottom:331.626534pt;}
.yc10_c00001{bottom:331.786534pt;}
.y2a5_c00001{bottom:332.266534pt;}
.yb31_c00001{bottom:332.586534pt;}
.y350_c00001{bottom:333.066533pt;}
.y8ad_c00001{bottom:333.226533pt;}
.yad8_c00001{bottom:333.333517pt;}
.y273_c00001{bottom:333.546533pt;}
.y883_c00001{bottom:333.706533pt;}
.ya4c_c00001{bottom:333.973517pt;}
.y7c7_c00001{bottom:334.026533pt;}
.y862_c00001{bottom:334.346533pt;}
.yb3e_c00001{bottom:334.506533pt;}
.yabf_c00001{bottom:334.613517pt;}
.y713_c00001{bottom:334.826533pt;}
.ya7a_c00001{bottom:335.253517pt;}
.y1e7_c00001{bottom:335.306533pt;}
.y210_c00001{bottom:335.466532pt;}
.y760_c00001{bottom:335.946532pt;}
.yb91_c00001{bottom:336.106532pt;}
.ybbb_c00001{bottom:336.266532pt;}
.y380_c00001{bottom:336.586532pt;}
.ya8f_c00001{bottom:336.853516pt;}
.y1d5_c00001{bottom:337.066532pt;}
.y233_c00001{bottom:337.546532pt;}
.yaa5_c00001{bottom:337.653516pt;}
.y7e8_c00001{bottom:338.346531pt;}
.y6f2_c00001{bottom:338.506531pt;}
.y319_c00001{bottom:338.666531pt;}
.yc01_c00001{bottom:338.986531pt;}
.y7a7_c00001{bottom:339.306531pt;}
.y57e_c00001{bottom:339.467200pt;}
.y63e_c00001{bottom:339.626531pt;}
.ybd1_c00001{bottom:339.786531pt;}
.y517_c00001{bottom:340.107200pt;}
.y674_c00001{bottom:340.266531pt;}
.y374_c00001{bottom:340.426530pt;}
.y1fc_c00001{bottom:340.746530pt;}
.yb07_c00001{bottom:341.066530pt;}
.y7ef_c00001{bottom:341.226530pt;}
.ye9_c00001{bottom:341.386530pt;}
.y5e1_c00001{bottom:341.546530pt;}
.y25e_c00001{bottom:341.866530pt;}
.y1cb_c00001{bottom:342.026530pt;}
.y76a_c00001{bottom:342.346530pt;}
.y60c_c00001{bottom:342.506530pt;}
.y293_c00001{bottom:342.826530pt;}
.y5b2_c00001{bottom:343.146529pt;}
.y4e4_c00001{bottom:343.306529pt;}
.y699_c00001{bottom:343.626529pt;}
.y1d6_c00001{bottom:343.786529pt;}
.y3ef_c00001{bottom:344.106529pt;}
.y515_c00001{bottom:344.746529pt;}
.ya0c_c00001{bottom:344.906529pt;}
.y21c_c00001{bottom:345.066529pt;}
.y177_c00001{bottom:345.226529pt;}
.y3dd_c00001{bottom:345.386529pt;}
.y98a_c00001{bottom:345.546528pt;}
.y306_c00001{bottom:345.866528pt;}
.y8f1_c00001{bottom:345.867200pt;}
.yaf0_c00001{bottom:346.133512pt;}
.y9a4_c00001{bottom:346.186528pt;}
.y150_c00001{bottom:346.346528pt;}
.y416_c00001{bottom:346.826528pt;}
.y9ca_c00001{bottom:347.306528pt;}
.ya56_c00001{bottom:347.626528pt;}
.yb49_c00001{bottom:347.786528pt;}
.y43a_c00001{bottom:347.946527pt;}
.y3d2_c00001{bottom:348.106527pt;}
.y78c_c00001{bottom:348.266527pt;}
.yc23_c00001{bottom:348.426527pt;}
.y47e_c00001{bottom:348.586527pt;}
.y326_c00001{bottom:348.746527pt;}
.yd3_c00001{bottom:349.066527pt;}
.yc5e_c00001{bottom:349.386527pt;}
.y15d_c00001{bottom:349.546527pt;}
.yb6c_c00001{bottom:349.706527pt;}
.y861_c00001{bottom:349.866527pt;}
.y2bd_c00001{bottom:350.026527pt;}
.yc0f_c00001{bottom:350.186527pt;}
.y33f_c00001{bottom:350.346527pt;}
.y8f0_c00001{bottom:350.506526pt;}
.y13c_c00001{bottom:350.666526pt;}
.yc6b_c00001{bottom:350.986526pt;}
.y95_c00001{bottom:351.146526pt;}
.y420_c00001{bottom:352.586526pt;}
.yb54_c00001{bottom:352.746526pt;}
.y91c_c00001{bottom:353.866525pt;}
.ya62_c00001{bottom:353.973509pt;}
.yb0f_c00001{bottom:354.026525pt;}
.yb7b_c00001{bottom:354.346525pt;}
.y75f_c00001{bottom:354.506525pt;}
.y9fb_c00001{bottom:354.666525pt;}
.y63d_c00001{bottom:354.826525pt;}
.y54c_c00001{bottom:354.986525pt;}
.y673_c00001{bottom:355.626524pt;}
.y4de_c00001{bottom:356.266524pt;}
.y7ee_c00001{bottom:356.746524pt;}
.y5e0_c00001{bottom:356.906524pt;}
.y283_c00001{bottom:357.226524pt;}
.y7d_c00001{bottom:357.386524pt;}
.y7a6_c00001{bottom:357.706524pt;}
.y60b_c00001{bottom:357.866524pt;}
.y6c1_c00001{bottom:358.026523pt;}
.ybd0_c00001{bottom:358.186523pt;}
.y2eb_c00001{bottom:358.506523pt;}
.y4e3_c00001{bottom:358.666523pt;}
.y513_c00001{bottom:358.667200pt;}
.y41_c00001{bottom:359.146523pt;}
.y1d4_c00001{bottom:359.626523pt;}
.yabe_c00001{bottom:359.893507pt;}
.yc33_c00001{bottom:360.106523pt;}
.y73e_c00001{bottom:360.586522pt;}
.ya79_c00001{bottom:360.693506pt;}
.ybed_c00001{bottom:360.746522pt;}
.yad7_c00001{bottom:360.853506pt;}
.y812_c00001{bottom:360.906522pt;}
.y272_c00001{bottom:361.066522pt;}
.y57b_c00001{bottom:361.386522pt;}
.y9a3_c00001{bottom:361.546522pt;}
.ya4b_c00001{bottom:361.653506pt;}
.y8aa_c00001{bottom:361.866522pt;}
.y333_c00001{bottom:362.026522pt;}
.ya8e_c00001{bottom:362.133506pt;}
.y292_c00001{bottom:362.186522pt;}
.y402_c00001{bottom:362.346522pt;}
.yaa4_c00001{bottom:362.933505pt;}
.y1e6_c00001{bottom:362.986521pt;}
.y21a_c00001{bottom:363.306521pt;}
.y78b_c00001{bottom:363.626521pt;}
.y24b_c00001{bottom:363.786521pt;}
.y20e_c00001{bottom:363.946521pt;}
.y37f_c00001{bottom:364.266521pt;}
.y373_c00001{bottom:364.586521pt;}
.y232_c00001{bottom:365.226521pt;}
.y7c6_c00001{bottom:365.706520pt;}
.y415_c00001{bottom:366.186520pt;}
.y965_c00001{bottom:366.506520pt;}
.yc22_c00001{bottom:366.986520pt;}
.y882_c00001{bottom:367.466520pt;}
.yb06_c00001{bottom:367.626520pt;}
.yc5d_c00001{bottom:367.786520pt;}
.y9ee_c00001{bottom:367.946519pt;}
.y860_c00001{bottom:368.266519pt;}
.y1fb_c00001{bottom:368.426519pt;}
.yc0e_c00001{bottom:368.586519pt;}
.y34f_c00001{bottom:368.746519pt;}
.y4b0_c00001{bottom:369.066519pt;}
.y2bb_c00001{bottom:369.386519pt;}
.y1ca_c00001{bottom:369.546519pt;}
.y54d_c00001{bottom:369.707200pt;}
.y75e_c00001{bottom:369.866519pt;}
.y21b_c00001{bottom:370.026519pt;}
.y6f1_c00001{bottom:370.186519pt;}
.yb01_c00001{bottom:370.346519pt;}
.y9dd_c00001{bottom:370.826518pt;}
.y7e7_c00001{bottom:371.146518pt;}
.y7ed_c00001{bottom:371.946518pt;}
.y834_c00001{bottom:372.266518pt;}
.y3ad_c00001{bottom:372.426518pt;}
.y176_c00001{bottom:372.746518pt;}
.yc4c_c00001{bottom:372.906518pt;}
.y3dc_c00001{bottom:373.066517pt;}
.y6c0_c00001{bottom:373.226517pt;}
.y63c_c00001{bottom:373.386517pt;}
.y305_c00001{bottom:373.546517pt;}
.y5b1_c00001{bottom:373.866517pt;}
.y14f_c00001{bottom:374.026517pt;}
.y54b_c00001{bottom:374.346517pt;}
.y4e2_c00001{bottom:374.826517pt;}
.y5df_c00001{bottom:375.306517pt;}
.y439_c00001{bottom:375.466516pt;}
.y3d1_c00001{bottom:375.626516pt;}
.yc00_c00001{bottom:375.786516pt;}
.ye8_c00001{bottom:375.946516pt;}
.y2bc_c00001{bottom:376.106516pt;}
.y60a_c00001{bottom:376.266516pt;}
.y811_c00001{bottom:376.426516pt;}
.yf8_c00001{bottom:376.586516pt;}
.yd2_c00001{bottom:376.746516pt;}
.ya0b_c00001{bottom:376.906516pt;}
.y15c_c00001{bottom:377.066516pt;}
.y512_c00001{bottom:377.226516pt;}
.yb6b_c00001{bottom:377.386516pt;}
.y484_c00001{bottom:377.706516pt;}
.y947_c00001{bottom:377.707200pt;}
.y33e_c00001{bottom:377.866516pt;}
.yb90_c00001{bottom:378.506515pt;}
.y94_c00001{bottom:378.826515pt;}
.y73d_c00001{bottom:378.986515pt;}
.ybec_c00001{bottom:379.146515pt;}
.y989_c00001{bottom:379.306515pt;}
.y318_c00001{bottom:379.466515pt;}
.yaef_c00001{bottom:379.733499pt;}
.y9a2_c00001{bottom:379.946515pt;}
.y41f_c00001{bottom:380.106515pt;}
.y47d_c00001{bottom:381.386514pt;}
.yb0e_c00001{bottom:381.546514pt;}
.ya61_c00001{bottom:381.653498pt;}
.y78a_c00001{bottom:382.186514pt;}
.y2de_c00001{bottom:382.346514pt;}
.y881_c00001{bottom:382.986513pt;}
.y2d2_c00001{bottom:383.306513pt;}
.y85f_c00001{bottom:383.786513pt;}
.y8ef_c00001{bottom:383.946513pt;}
.y7c5_c00001{bottom:384.106513pt;}
.y712_c00001{bottom:384.266513pt;}
.y282_c00001{bottom:384.746513pt;}
.y37d_c00001{bottom:384.906513pt;}
.y7c_c00001{bottom:385.066513pt;}
.yabd_c00001{bottom:385.173497pt;}
.y75d_c00001{bottom:385.226513pt;}
.y6be_c00001{bottom:385.706512pt;}
.yc3a_c00001{bottom:385.866512pt;}
.ya78_c00001{bottom:385.973496pt;}
.y2ea_c00001{bottom:386.186512pt;}
.y6f0_c00001{bottom:386.506512pt;}
.y40_c00001{bottom:386.826512pt;}
.yc0d_c00001{bottom:386.986512pt;}
.ya8d_c00001{bottom:387.413496pt;}
.y91b_c00001{bottom:387.786512pt;}
.yba_c00001{bottom:388.106511pt;}
.yaa3_c00001{bottom:388.213495pt;}
.y549_c00001{bottom:388.267200pt;}
.yc72_c00001{bottom:388.426511pt;}
.yad6_c00001{bottom:388.533495pt;}
.yb58_c00001{bottom:388.586511pt;}
.y271_c00001{bottom:388.746511pt;}
.y2ba_c00001{bottom:388.906511pt;}
.ya4a_c00001{bottom:389.173495pt;}
.y672_c00001{bottom:389.546511pt;}
.yb3d_c00001{bottom:389.706511pt;}
.y4dd_c00001{bottom:390.186511pt;}
.y1e5_c00001{bottom:390.506510pt;}
.y393_c00001{bottom:390.666510pt;}
.y5de_c00001{bottom:390.826510pt;}
.yc4b_c00001{bottom:391.306510pt;}
.y24a_c00001{bottom:391.466510pt;}
.y37e_c00001{bottom:391.626510pt;}
.y609_c00001{bottom:391.786510pt;}
.y317_c00001{bottom:392.106510pt;}
.ya0a_c00001{bottom:392.586510pt;}
.y231_c00001{bottom:392.746510pt;}
.y483_c00001{bottom:393.066509pt;}
.y9bb_c00001{bottom:394.026509pt;}
.yb00_c00001{bottom:394.186509pt;}
.y73c_c00001{bottom:394.506509pt;}
.y988_c00001{bottom:394.826509pt;}
.y401_c00001{bottom:394.986509pt;}
.y8ac_c00001{bottom:395.306509pt;}
.y9a1_c00001{bottom:395.466508pt;}
.y11c_c00001{bottom:395.626508pt;}
.y1fa_c00001{bottom:395.946508pt;}
.yaee_c00001{bottom:396.693492pt;}
.yc32_c00001{bottom:396.906508pt;}
.y25d_c00001{bottom:397.066508pt;}
.y1c9_c00001{bottom:397.226508pt;}
.y789_c00001{bottom:397.546508pt;}
.y8cc_c00001{bottom:398.027200pt;}
.y880_c00001{bottom:398.346507pt;}
.y9dc_c00001{bottom:398.506507pt;}
.y219_c00001{bottom:398.986507pt;}
.y7c4_c00001{bottom:399.626507pt;}
.y964_c00001{bottom:400.426506pt;}
.y3db_c00001{bottom:400.586506pt;}
.y304_c00001{bottom:401.066506pt;}
.y14e_c00001{bottom:401.546506pt;}
.y6ef_c00001{bottom:401.866506pt;}
.y711_c00001{bottom:402.666506pt;}
.y332_c00001{bottom:402.826506pt;}
.y438_c00001{bottom:403.146505pt;}
.yd0_c00001{bottom:403.306505pt;}
.y75c_c00001{bottom:403.626505pt;}
.y7e6_c00001{bottom:403.786505pt;}
.yc21_c00001{bottom:403.946505pt;}
.y63b_c00001{bottom:404.106505pt;}
.yf7_c00001{bottom:404.266505pt;}
.yb2e_c00001{bottom:404.426505pt;}
.y44a_c00001{bottom:404.586505pt;}
.y63_c00001{bottom:404.746505pt;}
.y671_c00001{bottom:404.906505pt;}
.y6bd_c00001{bottom:405.066505pt;}
.yc0c_c00001{bottom:405.386505pt;}
.y33d_c00001{bottom:405.546504pt;}
.y7a_c00001{bottom:405.706504pt;}
.y7ec_c00001{bottom:405.866504pt;}
.y5dd_c00001{bottom:406.026504pt;}
.y3a5_c00001{bottom:406.186504pt;}
.y92_c00001{bottom:406.346504pt;}
.y548_c00001{bottom:406.826504pt;}
.y608_c00001{bottom:407.146504pt;}
.yb24_c00001{bottom:407.306504pt;}
.y41e_c00001{bottom:407.786504pt;}
.y511_c00001{bottom:408.746503pt;}
.ya60_c00001{bottom:409.173487pt;}
.yb0d_c00001{bottom:409.226503pt;}
.yc4a_c00001{bottom:409.706503pt;}
.y9fa_c00001{bottom:409.866503pt;}
.yd1_c00001{bottom:410.026503pt;}
.y810_c00001{bottom:410.186503pt;}
.yabc_c00001{bottom:410.453486pt;}
.ye7_c00001{bottom:410.506502pt;}
.y2d1_c00001{bottom:410.826502pt;}
.ya77_c00001{bottom:411.253486pt;}
.y2b9_c00001{bottom:411.306502pt;}
.y482_c00001{bottom:411.466502pt;}
.y9c9_c00001{bottom:411.626502pt;}
.y8a9_c00001{bottom:411.786502pt;}
.yafa_c00001{bottom:412.106502pt;}
.y945_c00001{bottom:412.267200pt;}
.y7b_c00001{bottom:412.426502pt;}
.ybff_c00001{bottom:412.586502pt;}
.ya8c_c00001{bottom:412.693486pt;}
.y174_c00001{bottom:412.746502pt;}
.y73b_c00001{bottom:412.906502pt;}
.ybcf_c00001{bottom:413.386501pt;}
.y943_c00001{bottom:413.387200pt;}
.yaa2_c00001{bottom:413.493485pt;}
.y57a_c00001{bottom:413.546501pt;}
.y93_c00001{bottom:413.706501pt;}
.y3bb_c00001{bottom:413.866501pt;}
.y47c_c00001{bottom:414.026501pt;}
.y3f_c00001{bottom:414.346501pt;}
.y13b_c00001{bottom:414.666501pt;}
.y697_c00001{bottom:414.986501pt;}
.yc31_c00001{bottom:415.306501pt;}
.yb9_c00001{bottom:415.786500pt;}
.ybeb_c00001{bottom:415.946500pt;}
.yad5_c00001{bottom:416.053484pt;}
.y698_c00001{bottom:416.106500pt;}
.y270_c00001{bottom:416.266500pt;}
.y87f_c00001{bottom:416.746500pt;}
.ya49_c00001{bottom:416.853484pt;}
.y942_c00001{bottom:416.906500pt;}
.yb3c_c00001{bottom:417.386500pt;}
.y85e_c00001{bottom:417.546500pt;}
.y15b_c00001{bottom:418.026499pt;}
.y1e4_c00001{bottom:418.186499pt;}
.y391_c00001{bottom:418.666499pt;}
.y75b_c00001{bottom:419.146499pt;}
.y175_c00001{bottom:419.466499pt;}
.y8ee_c00001{bottom:419.626499pt;}
.y63a_c00001{bottom:420.106499pt;}
.y230_c00001{bottom:420.266499pt;}
.yb1b_c00001{bottom:420.426498pt;}
.yb8f_c00001{bottom:420.746498pt;}
.y187_c00001{bottom:420.906498pt;}
.y670_c00001{bottom:421.226498pt;}
.y833_c00001{bottom:421.546498pt;}
.y918_c00001{bottom:421.866498pt;}
.yc20_c00001{bottom:422.346498pt;}
.y769_c00001{bottom:422.506498pt;}
.yc39_c00001{bottom:422.666498pt;}
.yc71_c00001{bottom:422.826498pt;}
.yc5c_c00001{bottom:422.986497pt;}
.y9ed_c00001{bottom:423.146497pt;}
.y11b_c00001{bottom:423.306497pt;}
.y1f9_c00001{bottom:423.626497pt;}
.yc0b_c00001{bottom:423.786497pt;}
.y4dc_c00001{bottom:424.106497pt;}
.y400_c00001{bottom:424.266497pt;}
.y510_c00001{bottom:424.586497pt;}
.y1c8_c00001{bottom:424.746497pt;}
.y79_c00001{bottom:425.066497pt;}
.y607_c00001{bottom:425.546496pt;}
.y80f_c00001{bottom:425.706496pt;}
.ycf_c00001{bottom:425.866496pt;}
.y392_c00001{bottom:426.026496pt;}
.y9ba_c00001{bottom:426.186496pt;}
.y852_c00001{bottom:426.666496pt;}
.y37c_c00001{bottom:426.826496pt;}
.y481_c00001{bottom:426.986496pt;}
.y8a8_c00001{bottom:427.146496pt;}
.y188_c00001{bottom:427.626496pt;}
.y316_c00001{bottom:427.946495pt;}
.yc49_c00001{bottom:428.106495pt;}
.y3da_c00001{bottom:428.266495pt;}
.y73a_c00001{bottom:428.426495pt;}
.y303_c00001{bottom:428.586495pt;}
.y14d_c00001{bottom:429.226495pt;}
.ya3c_c00001{bottom:430.346495pt;}
.yaed_c00001{bottom:430.453478pt;}
.y437_c00001{bottom:430.666494pt;}
.y3d0_c00001{bottom:430.826494pt;}
.ybfe_c00001{bottom:430.986494pt;}
.y249_c00001{bottom:431.306494pt;}
.y788_c00001{bottom:431.466494pt;}
.yf6_c00001{bottom:431.786494pt;}
.yb2d_c00001{bottom:432.106494pt;}
.y449_c00001{bottom:432.266494pt;}
.y62_c00001{bottom:432.426494pt;}
.y85d_c00001{bottom:432.906494pt;}
.y33c_c00001{bottom:433.066493pt;}
.y710_c00001{bottom:433.546493pt;}
.yc30_c00001{bottom:433.706493pt;}
.y3a3_c00001{bottom:433.866493pt;}
.y91_c00001{bottom:434.026493pt;}
.y5a2_c00001{bottom:434.186493pt;}
.ybea_c00001{bottom:434.346493pt;}
.y75a_c00001{bottom:434.506493pt;}
.y41d_c00001{bottom:435.626492pt;}
.yabb_c00001{bottom:435.733476pt;}
.y639_c00001{bottom:435.786492pt;}
.y8c9_c00001{bottom:436.106492pt;}
.ya76_c00001{bottom:436.533476pt;}
.y7e5_c00001{bottom:436.586492pt;}
.y919_c00001{bottom:436.587200pt;}
.y66e_c00001{bottom:436.746492pt;}
.ya5f_c00001{bottom:436.853476pt;}
.y7eb_c00001{bottom:437.386492pt;}
.y6bc_c00001{bottom:437.866492pt;}
.y45a_c00001{bottom:438.026491pt;}
.ya8b_c00001{bottom:438.133475pt;}
.y2d0_c00001{bottom:438.186491pt;}
.y8a7_c00001{bottom:438.346491pt;}
.y4af_c00001{bottom:438.506491pt;}
.y6bf_c00001{bottom:438.666491pt;}
.yaa1_c00001{bottom:438.773475pt;}
.y5b0_c00001{bottom:439.306491pt;}
.yaf9_c00001{bottom:439.626491pt;}
.y281_c00001{bottom:439.946491pt;}
.y5dc_c00001{bottom:440.106491pt;}
.y576_c00001{bottom:440.266491pt;}
.y50f_c00001{bottom:440.906490pt;}
.y606_c00001{bottom:441.066490pt;}
.y3a4_c00001{bottom:441.226490pt;}
.y2e9_c00001{bottom:441.386490pt;}
.y3ba_c00001{bottom:441.546490pt;}
.ya54_c00001{bottom:441.706490pt;}
.yb8e_c00001{bottom:441.866490pt;}
.y3e_c00001{bottom:442.026490pt;}
.yc0a_c00001{bottom:442.186490pt;}
.yb7_c00001{bottom:442.346490pt;}
.y15_c00001{bottom:442.826490pt;}
.yc6a_c00001{bottom:442.986489pt;}
.y66f_c00001{bottom:443.466489pt;}
.yad4_c00001{bottom:443.733473pt;}
.y331_c00001{bottom:443.786489pt;}
.y26f_c00001{bottom:443.946489pt;}
.y80e_c00001{bottom:444.106489pt;}
.y695_c00001{bottom:444.267200pt;}
.ya48_c00001{bottom:444.373473pt;}
.y9a0_c00001{bottom:444.746489pt;}
.ye6_c00001{bottom:444.906489pt;}
.y15a_c00001{bottom:445.706488pt;}
.yb6a_c00001{bottom:445.866488pt;}
.y851_c00001{bottom:446.026488pt;}
.y390_c00001{bottom:446.186488pt;}
.yc48_c00001{bottom:446.506488pt;}
.ybba_c00001{bottom:446.666488pt;}
.y47b_c00001{bottom:446.826488pt;}
.y547_c00001{bottom:446.986488pt;}
.yaec_c00001{bottom:447.253472pt;}
.y87e_c00001{bottom:447.626488pt;}
.yb1a_c00001{bottom:447.946487pt;}
.y85c_c00001{bottom:448.266487pt;}
.y173_c00001{bottom:448.426487pt;}
.y694_c00001{bottom:448.586487pt;}
.yb8_c00001{bottom:449.066487pt;}
.y963_c00001{bottom:449.227200pt;}
.ybfd_c00001{bottom:449.386487pt;}
.yc14_c00001{bottom:449.706487pt;}
.y579_c00001{bottom:449.866487pt;}
.y62c_c00001{bottom:450.186487pt;}
.y93f_c00001{bottom:450.346487pt;}
.y9ec_c00001{bottom:450.666486pt;}
.y11a_c00001{bottom:450.826486pt;}
.y8ca_c00001{bottom:450.827200pt;}
.y1f8_c00001{bottom:451.146486pt;}
.y78_c00001{bottom:451.466486pt;}
.y133_c00001{bottom:451.786486pt;}
.y70f_c00001{bottom:451.946486pt;}
.yc2f_c00001{bottom:452.106486pt;}
.y25c_c00001{bottom:452.266486pt;}
.y1c7_c00001{bottom:452.426486pt;}
.ybe9_c00001{bottom:452.746486pt;}
.y759_c00001{bottom:452.906486pt;}
.y66d_c00001{bottom:453.386485pt;}
.y5a1_c00001{bottom:453.546485pt;}
.y9da_c00001{bottom:453.706485pt;}
.y7e4_c00001{bottom:453.866485pt;}
.y6ee_c00001{bottom:454.186485pt;}
.y5af_c00001{bottom:454.826485pt;}
.y5db_c00001{bottom:455.306485pt;}
.y832_c00001{bottom:455.466484pt;}
.y40b_c00001{bottom:455.626484pt;}
.y3d9_c00001{bottom:455.786484pt;}
.y199_c00001{bottom:456.106484pt;}
.y302_c00001{bottom:456.266484pt;}
.y605_c00001{bottom:456.426484pt;}
.y186_c00001{bottom:456.586484pt;}
.y14c_c00001{bottom:457.066484pt;}
.yc70_c00001{bottom:457.386484pt;}
.y8a6_c00001{bottom:457.706484pt;}
.y4db_c00001{bottom:458.026483pt;}
.y436_c00001{bottom:458.346483pt;}
.y1b5_c00001{bottom:458.506483pt;}
.y987_c00001{bottom:459.306483pt;}
.yf5_c00001{bottom:459.466483pt;}
.y575_c00001{bottom:459.626483pt;}
.y448_c00001{bottom:459.786483pt;}
.y61_c00001{bottom:459.946483pt;}
.yc09_c00001{bottom:460.586482pt;}
.y33b_c00001{bottom:460.746482pt;}
.yaba_c00001{bottom:461.013466pt;}
.y9db_c00001{bottom:461.066482pt;}
.y22f_c00001{bottom:461.226482pt;}
.y3a2_c00001{bottom:461.386482pt;}
.y90_c00001{bottom:461.546482pt;}
.ya75_c00001{bottom:461.813466pt;}
.y739_c00001{bottom:462.346482pt;}
.y40c_c00001{bottom:462.986481pt;}
.yb8d_c00001{bottom:463.146481pt;}
.ya8a_c00001{bottom:463.413465pt;}
.yaa0_c00001{bottom:464.053465pt;}
.y2dd_c00001{bottom:464.266481pt;}
.ya5e_c00001{bottom:464.373465pt;}
.yb0c_c00001{bottom:464.426481pt;}
.yb6_c00001{bottom:464.906481pt;}
.ya19_c00001{bottom:465.066481pt;}
.y940_c00001{bottom:465.067200pt;}
.y787_c00001{bottom:465.226481pt;}
.y850_c00001{bottom:465.386481pt;}
.y2cf_c00001{bottom:465.706480pt;}
.y87d_c00001{bottom:466.026480pt;}
.y546_c00001{bottom:466.666480pt;}
.y9f9_c00001{bottom:466.826480pt;}
.y638_c00001{bottom:467.146480pt;}
.yaf8_c00001{bottom:467.306480pt;}
.y70e_c00001{bottom:467.466480pt;}
.yc13_c00001{bottom:468.106479pt;}
.y758_c00001{bottom:468.426479pt;}
.ybce_c00001{bottom:468.586479pt;}
.y2e8_c00001{bottom:468.906479pt;}
.y3b8_c00001{bottom:469.066479pt;}
.y4ad_c00001{bottom:469.067200pt;}
.y7e3_c00001{bottom:469.226479pt;}
.yab_c00001{bottom:469.386479pt;}
.y3d_c00001{bottom:469.546479pt;}
.y66c_c00001{bottom:469.706479pt;}
.y247_c00001{bottom:470.026479pt;}
.y41c_c00001{bottom:470.186479pt;}
.y14_c00001{bottom:470.346479pt;}
.yc2e_c00001{bottom:470.506478pt;}
.ybe8_c00001{bottom:471.146478pt;}
.y917_c00001{bottom:471.147200pt;}
.yad3_c00001{bottom:471.253462pt;}
.y662_c00001{bottom:471.306478pt;}
.y119_c00001{bottom:471.466478pt;}
.ya47_c00001{bottom:472.053462pt;}
.yb3b_c00001{bottom:472.266478pt;}
.y915_c00001{bottom:472.267200pt;}
.y8c8_c00001{bottom:472.746478pt;}
.y5a0_c00001{bottom:472.906478pt;}
.yb2c_c00001{bottom:473.066477pt;}
.y159_c00001{bottom:473.226477pt;}
.y1e3_c00001{bottom:473.386477pt;}
.yb69_c00001{bottom:473.546477pt;}
.y4ac_c00001{bottom:473.706477pt;}
.y38f_c00001{bottom:473.866477pt;}
.y604_c00001{bottom:474.826477pt;}
.y77_c00001{bottom:475.146477pt;}
.yb19_c00001{bottom:475.626476pt;}
.y914_c00001{bottom:475.786476pt;}
.y9c8_c00001{bottom:476.106476pt;}
.y480_c00001{bottom:476.266476pt;}
.y3b9_c00001{bottom:476.426476pt;}
.y248_c00001{bottom:476.746476pt;}
.y986_c00001{bottom:477.866476pt;}
.y80d_c00001{bottom:478.026475pt;}
.yc5b_c00001{bottom:478.186475pt;}
.y9eb_c00001{bottom:478.346475pt;}
.y99f_c00001{bottom:478.506475pt;}
.y1f7_c00001{bottom:478.826475pt;}
.y574_c00001{bottom:478.986475pt;}
.y132_c00001{bottom:479.306475pt;}
.ye5_c00001{bottom:479.466475pt;}
.y47a_c00001{bottom:479.626475pt;}
.y1c6_c00001{bottom:479.946475pt;}
.y60_c00001{bottom:480.746474pt;}
.yaeb_c00001{bottom:481.013458pt;}
.y578_c00001{bottom:481.066474pt;}
.y9d9_c00001{bottom:481.226474pt;}
.y87c_c00001{bottom:481.546474pt;}
.y13a_c00001{bottom:481.706474pt;}
.y85b_c00001{bottom:482.186474pt;}
.y637_c00001{bottom:482.986473pt;}
.y40a_c00001{bottom:483.306473pt;}
.y14a_c00001{bottom:483.626473pt;}
.y301_c00001{bottom:483.786473pt;}
.y961_c00001{bottom:483.787200pt;}
.y693_c00001{bottom:484.106473pt;}
.yb8c_c00001{bottom:484.266473pt;}
.y545_c00001{bottom:484.426473pt;}
.y330_c00001{bottom:484.746473pt;}
.y95f_c00001{bottom:484.907200pt;}
.y66b_c00001{bottom:485.226473pt;}
.ya08_c00001{bottom:485.386473pt;}
.ya3b_c00001{bottom:485.546472pt;}
.y1b4_c00001{bottom:485.866472pt;}
.y3cf_c00001{bottom:486.026472pt;}
.y6ba_c00001{bottom:486.027200pt;}
.y280_c00001{bottom:486.186472pt;}
.yab9_c00001{bottom:486.293456pt;}
.y25b_c00001{bottom:486.346472pt;}
.ybfc_c00001{bottom:486.506472pt;}
.y2cd_c00001{bottom:486.666472pt;}
.y757_c00001{bottom:486.826472pt;}
.yf4_c00001{bottom:486.986472pt;}
.ya74_c00001{bottom:487.093456pt;}
.y447_c00001{bottom:487.466472pt;}
.y7e2_c00001{bottom:487.626472pt;}
.y50e_c00001{bottom:487.786472pt;}
.y10c_c00001{bottom:487.946471pt;}
.y6ed_c00001{bottom:488.106471pt;}
.y33a_c00001{bottom:488.266471pt;}
.y95e_c00001{bottom:488.426471pt;}
.ya89_c00001{bottom:488.693455pt;}
.y22e_c00001{bottom:488.906471pt;}
.y3a1_c00001{bottom:489.066471pt;}
.y8f_c00001{bottom:489.226471pt;}
.ya9f_c00001{bottom:489.333455pt;}
.y831_c00001{bottom:489.386471pt;}
.ybe7_c00001{bottom:489.546471pt;}
.y14b_c00001{bottom:490.346471pt;}
.y6b9_c00001{bottom:490.666470pt;}
.y117_c00001{bottom:490.986470pt;}
.y8a4_c00001{bottom:491.146470pt;}
.yba8_c00001{bottom:491.626470pt;}
.y2dc_c00001{bottom:491.786470pt;}
.y4da_c00001{bottom:491.946470pt;}
.ya5d_c00001{bottom:492.053454pt;}
.ya18_c00001{bottom:492.586470pt;}
.y913_c00001{bottom:493.066469pt;}
.y2ce_c00001{bottom:493.386469pt;}
.y80c_c00001{bottom:493.546469pt;}
.y99e_c00001{bottom:493.866469pt;}
.yaf7_c00001{bottom:494.186469pt;}
.y38e_c00001{bottom:494.506469pt;}
.yb57_c00001{bottom:495.146469pt;}
.y4e1_c00001{bottom:495.946468pt;}
.y738_c00001{bottom:496.266468pt;}
.y2e7_c00001{bottom:496.586468pt;}
.y3b7_c00001{bottom:496.746468pt;}
.y198_c00001{bottom:496.906468pt;}
.yaa_c00001{bottom:497.066468pt;}
.y3c_c00001{bottom:497.226468pt;}
.yc08_c00001{bottom:497.386468pt;}
.y118_c00001{bottom:497.706468pt;}
.yaea_c00001{bottom:497.813452pt;}
.y13_c00001{bottom:498.026467pt;}
.y84f_c00001{bottom:498.186467pt;}
.y636_c00001{bottom:498.346467pt;}
.yad2_c00001{bottom:498.933451pt;}
.y26e_c00001{bottom:498.986467pt;}
.y786_c00001{bottom:499.146467pt;}
.y246_c00001{bottom:499.306467pt;}
.ya46_c00001{bottom:499.573451pt;}
.y544_c00001{bottom:499.626467pt;}
.y87b_c00001{bottom:499.946467pt;}
.y5e_c00001{bottom:500.106467pt;}
.y72e_c00001{bottom:500.426466pt;}
.y85a_c00001{bottom:500.586466pt;}
.y158_c00001{bottom:500.906466pt;}
.yb68_c00001{bottom:501.066466pt;}
.y70d_c00001{bottom:501.386466pt;}
.y5ae_c00001{bottom:501.706466pt;}
.y66a_c00001{bottom:501.866466pt;}
.ybb9_c00001{bottom:502.026466pt;}
.yb18_c00001{bottom:502.186466pt;}
.y8ed_c00001{bottom:502.187200pt;}
.y756_c00001{bottom:502.346466pt;}
.y50d_c00001{bottom:503.146465pt;}
.y8c7_c00001{bottom:503.306465pt;}
.y6ec_c00001{bottom:503.626465pt;}
.y4aa_c00001{bottom:503.787200pt;}
.y661_c00001{bottom:503.946465pt;}
.y9f8_c00001{bottom:504.266465pt;}
.y5da_c00001{bottom:504.586465pt;}
.ybfb_c00001{bottom:504.906465pt;}
.yb8b_c00001{bottom:505.386465pt;}
.y768_c00001{bottom:505.546464pt;}
.y59f_c00001{bottom:505.706464pt;}
.y9ea_c00001{bottom:505.866464pt;}
.y8a5_c00001{bottom:505.867200pt;}
.y2cc_c00001{bottom:506.186464pt;}
.y1f6_c00001{bottom:506.346464pt;}
.y5f_c00001{bottom:506.826464pt;}
.yb7a_c00001{bottom:507.146464pt;}
.yc2d_c00001{bottom:507.306464pt;}
.y1c5_c00001{bottom:507.626464pt;}
.y830_c00001{bottom:507.786464pt;}
.ybe6_c00001{bottom:507.946463pt;}
.y9c7_c00001{bottom:508.266463pt;}
.y4a9_c00001{bottom:508.426463pt;}
.y985_c00001{bottom:508.586463pt;}
.y603_c00001{bottom:508.746463pt;}
.y149_c00001{bottom:508.906463pt;}
.y139_c00001{bottom:509.226463pt;}
.y116_c00001{bottom:510.346463pt;}
.y8a3_c00001{bottom:510.506462pt;}
.yb23_c00001{bottom:510.826462pt;}
.y300_c00001{bottom:511.466462pt;}
.yab8_c00001{bottom:511.573446pt;}
.y573_c00001{bottom:511.626462pt;}
.y80b_c00001{bottom:511.946462pt;}
.y479_c00001{bottom:512.266462pt;}
.ya73_c00001{bottom:512.373446pt;}
.y577_c00001{bottom:512.426462pt;}
.y2db_c00001{bottom:512.746462pt;}
.ya07_c00001{bottom:512.906462pt;}
.y47f_c00001{bottom:513.066461pt;}
.y367_c00001{bottom:513.226461pt;}
.y1b3_c00001{bottom:513.546461pt;}
.y3ce_c00001{bottom:513.706461pt;}
.ye4_c00001{bottom:513.866461pt;}
.ya88_c00001{bottom:513.973445pt;}
.y635_c00001{bottom:514.346461pt;}
.yf3_c00001{bottom:514.666461pt;}
.ya9e_c00001{bottom:514.773445pt;}
.yc1f_c00001{bottom:514.986461pt;}
.y87a_c00001{bottom:515.466460pt;}
.yc07_c00001{bottom:515.786460pt;}
.y10b_c00001{bottom:515.946460pt;}
.y859_c00001{bottom:516.106460pt;}
.y22d_c00001{bottom:516.426460pt;}
.y3a0_c00001{bottom:516.586460pt;}
.y8e_c00001{bottom:516.746460pt;}
.y5ad_c00001{bottom:517.066460pt;}
.y3c1_c00001{bottom:517.226460pt;}
.y409_c00001{bottom:517.706460pt;}
.y5cb_c00001{bottom:517.866460pt;}
.y93d_c00001{bottom:517.867200pt;}
.y692_c00001{bottom:518.026459pt;}
.y50c_c00001{bottom:518.506459pt;}
.y259_c00001{bottom:518.986459pt;}
.y543_c00001{bottom:519.306459pt;}
.y5d_c00001{bottom:519.466459pt;}
.ya5c_c00001{bottom:519.573443pt;}
.yb0b_c00001{bottom:519.626459pt;}
.y70c_c00001{bottom:519.786459pt;}
.yc47_c00001{bottom:520.106459pt;}
.y669_c00001{bottom:520.266459pt;}
.y755_c00001{bottom:520.746458pt;}
.y90f_c00001{bottom:520.906458pt;}
.y62b_c00001{bottom:521.546458pt;}
.y8c6_c00001{bottom:521.866458pt;}
.y4d8_c00001{bottom:521.867200pt;}
.y6eb_c00001{bottom:522.026458pt;}
.y93c_c00001{bottom:522.506458pt;}
.y9b9_c00001{bottom:522.826458pt;}
.y5d9_c00001{bottom:522.986457pt;}
.yba7_c00001{bottom:523.146457pt;}
.y82f_c00001{bottom:523.306457pt;}
.ybcd_c00001{bottom:523.786457pt;}
.yc69_c00001{bottom:523.946457pt;}
.y2e6_c00001{bottom:524.106457pt;}
.y3b6_c00001{bottom:524.266457pt;}
.y9f7_c00001{bottom:524.426457pt;}
.ya9_c00001{bottom:524.586457pt;}
.y3b_c00001{bottom:524.746457pt;}
.y3f8_c00001{bottom:525.226457pt;}
.y12_c00001{bottom:525.546456pt;}
.y25a_c00001{bottom:525.706456pt;}
.ybe5_c00001{bottom:526.346456pt;}
.yad1_c00001{bottom:526.453440pt;}
.yb8a_c00001{bottom:526.506456pt;}
.y26d_c00001{bottom:526.666456pt;}
.y912_c00001{bottom:526.826456pt;}
.y984_c00001{bottom:527.146456pt;}
.ya45_c00001{bottom:527.253440pt;}
.y4e0_c00001{bottom:527.306456pt;}
.y80a_c00001{bottom:527.466456pt;}
.y878_c00001{bottom:527.467200pt;}
.y99d_c00001{bottom:527.626456pt;}
.y8a2_c00001{bottom:527.786456pt;}
.y157_c00001{bottom:528.426455pt;}
.y2cb_c00001{bottom:528.586455pt;}
.yb67_c00001{bottom:528.746455pt;}
.y634_c00001{bottom:530.026455pt;}
.y877_c00001{bottom:530.666454pt;}
.y84e_c00001{bottom:530.986454pt;}
.y148_c00001{bottom:531.466454pt;}
.yae9_c00001{bottom:531.573438pt;}
.y2da_c00001{bottom:532.106454pt;}
.y3f9_c00001{bottom:532.586454pt;}
.y115_c00001{bottom:532.906454pt;}
.y72d_c00001{bottom:533.066453pt;}
.yc1e_c00001{bottom:533.386453pt;}
.y9e9_c00001{bottom:533.546453pt;}
.y446_c00001{bottom:533.706453pt;}
.y1f5_c00001{bottom:534.026453pt;}
.yc06_c00001{bottom:534.186453pt;}
.y131_c00001{bottom:534.506453pt;}
.yb79_c00001{bottom:534.666453pt;}
.y50b_c00001{bottom:534.826453pt;}
.y1c4_c00001{bottom:535.146453pt;}
.y70b_c00001{bottom:535.306453pt;}
.y5ac_c00001{bottom:535.466452pt;}
.y668_c00001{bottom:535.786452pt;}
.y754_c00001{bottom:536.266452pt;}
.y38d_c00001{bottom:536.426452pt;}
.y95d_c00001{bottom:536.587200pt;}
.y660_c00001{bottom:536.746452pt;}
.y138_c00001{bottom:536.906452pt;}
.y8eb_c00001{bottom:536.907200pt;}
.yab7_c00001{bottom:537.013436pt;}
.y542_c00001{bottom:537.066452pt;}
.y5ca_c00001{bottom:537.226452pt;}
.y8c5_c00001{bottom:537.386452pt;}
.y6ea_c00001{bottom:537.546452pt;}
.ya72_c00001{bottom:537.653436pt;}
.y8e9_c00001{bottom:538.027200pt;}
.y59e_c00001{bottom:538.346451pt;}
.y258_c00001{bottom:538.506451pt;}
.y82e_c00001{bottom:538.666451pt;}
.y5c_c00001{bottom:538.826451pt;}
.y2ff_c00001{bottom:538.986451pt;}
.ybb8_c00001{bottom:539.146451pt;}
.ya87_c00001{bottom:539.253435pt;}
.y602_c00001{bottom:539.466451pt;}
.y820_c00001{bottom:539.626451pt;}
.yb48_c00001{bottom:539.946451pt;}
.ya9d_c00001{bottom:540.053435pt;}
.y90e_c00001{bottom:540.266451pt;}
.y9c6_c00001{bottom:540.426450pt;}
.ya3a_c00001{bottom:540.746450pt;}
.y366_c00001{bottom:540.906450pt;}
.y1b2_c00001{bottom:541.066450pt;}
.y3cd_c00001{bottom:541.226450pt;}
.y27f_c00001{bottom:541.386450pt;}
.y8e8_c00001{bottom:541.546450pt;}
.y4a6_c00001{bottom:541.706450pt;}
.ybfa_c00001{bottom:541.866450pt;}
.yf2_c00001{bottom:542.186450pt;}
.y911_c00001{bottom:542.346450pt;}
.y983_c00001{bottom:542.506450pt;}
.y8a1_c00001{bottom:543.146449pt;}
.y10a_c00001{bottom:543.466449pt;}
.y22c_c00001{bottom:544.106449pt;}
.y39f_c00001{bottom:544.266449pt;}
.y8d_c00001{bottom:544.426449pt;}
.y3c0_c00001{bottom:544.746449pt;}
.y3b5_c00001{bottom:544.906449pt;}
.y3ed_c00001{bottom:545.226449pt;}
.y737_c00001{bottom:545.546448pt;}
.y476_c00001{bottom:545.706448pt;}
.y809_c00001{bottom:545.866448pt;}
.yb0a_c00001{bottom:546.186448pt;}
.y1e2_c00001{bottom:547.146448pt;}
.ya5b_c00001{bottom:547.253432pt;}
.ya17_c00001{bottom:547.786448pt;}
.yae8_c00001{bottom:548.373431pt;}
.ye3_c00001{bottom:548.426447pt;}
.y785_c00001{bottom:548.586447pt;}
.y876_c00001{bottom:549.226447pt;}
.y858_c00001{bottom:549.866447pt;}
.y50a_c00001{bottom:550.026447pt;}
.y5ab_c00001{bottom:550.986446pt;}
.yc38_c00001{bottom:551.466446pt;}
.yc1d_c00001{bottom:551.626446pt;}
.y2e5_c00001{bottom:551.786446pt;}
.y197_c00001{bottom:552.106446pt;}
.ya8_c00001{bottom:552.266446pt;}
.y39_c00001{bottom:552.426446pt;}
.y3ee_c00001{bottom:552.586446pt;}
.y3f7_c00001{bottom:552.746446pt;}
.y11_c00001{bottom:553.226445pt;}
.y3d8_c00001{bottom:553.546445pt;}
.y70a_c00001{bottom:553.706445pt;}
.y5d8_c00001{bottom:553.866445pt;}
.yad0_c00001{bottom:554.133429pt;}
.y26c_c00001{bottom:554.186445pt;}
.y62a_c00001{bottom:554.346445pt;}
.y2d9_c00001{bottom:554.666445pt;}
.ya44_c00001{bottom:554.773429pt;}
.y9b8_c00001{bottom:554.986445pt;}
.yb3a_c00001{bottom:555.306445pt;}
.yb66_c00001{bottom:556.266444pt;}
.y93b_c00001{bottom:556.586444pt;}
.y4a7_c00001{bottom:556.587200pt;}
.yce_c00001{bottom:556.746444pt;}
.y35d_c00001{bottom:556.906444pt;}
.y82d_c00001{bottom:557.066444pt;}
.y982_c00001{bottom:557.866444pt;}
.y601_c00001{bottom:558.026443pt;}
.y6b8_c00001{bottom:558.187200pt;}
.y8a0_c00001{bottom:558.506443pt;}
.y27e_c00001{bottom:559.626443pt;}
.y3a_c00001{bottom:559.786443pt;}
.yba6_c00001{bottom:560.106443pt;}
.ybf9_c00001{bottom:560.266443pt;}
.y477_c00001{bottom:560.427200pt;}
.y4d7_c00001{bottom:560.586442pt;}
.y3fe_c00001{bottom:560.746442pt;}
.yc68_c00001{bottom:560.906442pt;}
.y9e8_c00001{bottom:561.066442pt;}
.y4a5_c00001{bottom:561.226442pt;}
.y5b_c00001{bottom:561.386442pt;}
.y1f4_c00001{bottom:561.546442pt;}
.y130_c00001{bottom:562.026442pt;}
.yb78_c00001{bottom:562.186442pt;}
.yab6_c00001{bottom:562.293426pt;}
.y1c3_c00001{bottom:562.826442pt;}
.ya71_c00001{bottom:562.933425pt;}
.ybe4_c00001{bottom:563.146441pt;}
.y7c3_c00001{bottom:563.626441pt;}
.y137_c00001{bottom:564.106441pt;}
.y3b4_c00001{bottom:564.426441pt;}
.ya86_c00001{bottom:564.533425pt;}
.y875_c00001{bottom:564.586441pt;}
.y784_c00001{bottom:564.906441pt;}
.y1e1_c00001{bottom:565.066441pt;}
.y2a4_c00001{bottom:565.226441pt;}
.ya9c_c00001{bottom:565.333425pt;}
.y509_c00001{bottom:565.386441pt;}
.y939_c00001{bottom:565.546440pt;}
.y72c_c00001{bottom:565.866440pt;}
.y5aa_c00001{bottom:566.346440pt;}
.y2fe_c00001{bottom:566.666440pt;}
.y690_c00001{bottom:566.827200pt;}
.y7e1_c00001{bottom:567.626440pt;}
.y3ff_c00001{bottom:568.106439pt;}
.y156_c00001{bottom:568.266439pt;}
.ya39_c00001{bottom:568.426439pt;}
.y3cc_c00001{bottom:568.586439pt;}
.y1b0_c00001{bottom:568.746439pt;}
.yb89_c00001{bottom:568.906439pt;}
.y6e9_c00001{bottom:569.226439pt;}
.y65f_c00001{bottom:569.386439pt;}
.yf1_c00001{bottom:569.546439pt;}
.y667_c00001{bottom:569.706439pt;}
.y53a_c00001{bottom:569.866439pt;}
.y5c9_c00001{bottom:570.026439pt;}
.y753_c00001{bottom:570.186439pt;}
.ybb7_c00001{bottom:570.826438pt;}
.y4d4_c00001{bottom:570.986438pt;}
.y109_c00001{bottom:571.146438pt;}
.y68f_c00001{bottom:571.466438pt;}
.y39e_c00001{bottom:571.786438pt;}
.y8c_c00001{bottom:571.946438pt;}
.y185_c00001{bottom:572.106438pt;}
.y5d7_c00001{bottom:572.266438pt;}
.y3bf_c00001{bottom:572.426438pt;}
.y82c_c00001{bottom:572.586438pt;}
.y9c5_c00001{bottom:572.746438pt;}
.y3ec_c00001{bottom:572.906438pt;}
.y600_c00001{bottom:573.386437pt;}
.y541_c00001{bottom:573.546437pt;}
.y910_c00001{bottom:573.706437pt;}
.yf_c00001{bottom:573.866437pt;}
.y257_c00001{bottom:574.186437pt;}
.ya5a_c00001{bottom:574.773421pt;}
.y364_c00001{bottom:574.826437pt;}
.yc46_c00001{bottom:575.306437pt;}
.ya16_c00001{bottom:575.466436pt;}
.yc2c_c00001{bottom:575.626436pt;}
.y1b1_c00001{bottom:576.106436pt;}
.y981_c00001{bottom:576.266436pt;}
.y873_c00001{bottom:576.747200pt;}
.y633_c00001{bottom:576.906436pt;}
.y4d6_c00001{bottom:577.706436pt;}
.y27d_c00001{bottom:578.986435pt;}
.y2e4_c00001{bottom:579.306435pt;}
.yab1_c00001{bottom:579.626435pt;}
.ya7_c00001{bottom:579.786435pt;}
.y38_c00001{bottom:579.946435pt;}
.y783_c00001{bottom:580.266435pt;}
.y10_c00001{bottom:580.586434pt;}
.y572_c00001{bottom:580.746434pt;}
.y408_c00001{bottom:581.066434pt;}
.y365_c00001{bottom:581.546434pt;}
.yacf_c00001{bottom:581.653418pt;}
.y508_c00001{bottom:581.706434pt;}
.y26b_c00001{bottom:581.866434pt;}
.y1e0_c00001{bottom:581.866467pt;}
.yae7_c00001{bottom:582.133418pt;}
.y7c2_c00001{bottom:582.186434pt;}
.y1df_c00001{bottom:582.186467pt;}
.ya43_c00001{bottom:582.453418pt;}
.ye2_c00001{bottom:582.826434pt;}
.yb39_c00001{bottom:582.986433pt;}
.ycc_c00001{bottom:583.466433pt;}
.y857_c00001{bottom:583.786433pt;}
.y22b_c00001{bottom:583.946433pt;}
.y709_c00001{bottom:584.586433pt;}
.y5a9_c00001{bottom:584.746433pt;}
.y938_c00001{bottom:585.066433pt;}
.y7e0_c00001{bottom:586.186432pt;}
.y8c4_c00001{bottom:586.506432pt;}
.y196_c00001{bottom:586.666432pt;}
.y3b3_c00001{bottom:586.826432pt;}
.y629_c00001{bottom:587.146432pt;}
.y3f6_c00001{bottom:587.306432pt;}
.yab5_c00001{bottom:587.573416pt;}
.y3ab_c00001{bottom:587.786432pt;}
.y114_c00001{bottom:587.946431pt;}
.y666_c00001{bottom:588.106431pt;}
.y3fd_c00001{bottom:588.266431pt;}
.ya70_c00001{bottom:588.373415pt;}
.y752_c00001{bottom:588.586431pt;}
.y12e_c00001{bottom:588.746431pt;}
.y445_c00001{bottom:588.906431pt;}
.y540_c00001{bottom:589.066431pt;}
.y1f3_c00001{bottom:589.226431pt;}
.ybb6_c00001{bottom:589.386431pt;}
.y3cb_c00001{bottom:589.546431pt;}
.y8e6_c00001{bottom:589.707200pt;}
.ya85_c00001{bottom:589.813415pt;}
.yb77_c00001{bottom:589.866431pt;}
.yb88_c00001{bottom:590.026431pt;}
.ycd_c00001{bottom:590.186431pt;}
.y1c2_c00001{bottom:590.346431pt;}
.ya9b_c00001{bottom:590.613414pt;}
.y135_c00001{bottom:591.146430pt;}
.y9d8_c00001{bottom:591.626430pt;}
.y980_c00001{bottom:591.786430pt;}
.y7a5_c00001{bottom:591.946430pt;}
.yc67_c00001{bottom:592.106430pt;}
.y632_c00001{bottom:592.266430pt;}
.y99c_c00001{bottom:592.426430pt;}
.y2a3_c00001{bottom:592.906430pt;}
.ye_c00001{bottom:593.226429pt;}
.y3be_c00001{bottom:593.546429pt;}
.yc45_c00001{bottom:593.706429pt;}
.y2fd_c00001{bottom:594.186429pt;}
.y8e5_c00001{bottom:594.346429pt;}
.y736_c00001{bottom:594.666429pt;}
.y3ac_c00001{bottom:595.146429pt;}
.y808_c00001{bottom:595.306429pt;}
.y12f_c00001{bottom:595.466428pt;}
.ya06_c00001{bottom:595.626428pt;}
.y1de_c00001{bottom:595.786428pt;}
.ya38_c00001{bottom:595.946428pt;}
.y1af_c00001{bottom:596.266428pt;}
.yf0_c00001{bottom:596.426428pt;}
.yb2b_c00001{bottom:596.746428pt;}
.y507_c00001{bottom:597.066428pt;}
.yb65_c00001{bottom:597.226428pt;}
.ybcc_c00001{bottom:597.386428pt;}
.y7c1_c00001{bottom:597.546428pt;}
.y136_c00001{bottom:597.866428pt;}
.y27c_c00001{bottom:598.346427pt;}
.y8b_c00001{bottom:598.506427pt;}
.y108_c00001{bottom:598.666427pt;}
.yae6_c00001{bottom:599.093411pt;}
.y39d_c00001{bottom:599.306427pt;}
.y184_c00001{bottom:599.626427pt;}
.ybe3_c00001{bottom:599.946427pt;}
.y315_c00001{bottom:600.266427pt;}
.y708_c00001{bottom:600.906426pt;}
.y7df_c00001{bottom:601.546426pt;}
.y65e_c00001{bottom:602.186426pt;}
.ya59_c00001{bottom:602.293410pt;}
.y5c8_c00001{bottom:602.666426pt;}
.y5d6_c00001{bottom:603.146425pt;}
.y59d_c00001{bottom:603.786425pt;}
.y664_c00001{bottom:603.946425pt;}
.y155_c00001{bottom:604.106425pt;}
.y937_c00001{bottom:604.426425pt;}
.y9c4_c00001{bottom:604.906425pt;}
.y81f_c00001{bottom:605.066425pt;}
.y93a_c00001{bottom:605.226425pt;}
.y89f_c00001{bottom:605.386425pt;}
.y95c_c00001{bottom:605.546424pt;}
.y2e3_c00001{bottom:605.866424pt;}
.ycb_c00001{bottom:606.026424pt;}
.y82b_c00001{bottom:606.346424pt;}
.yc37_c00001{bottom:606.666424pt;}
.yc5a_c00001{bottom:606.986424pt;}
.y5ff_c00001{bottom:607.146424pt;}
.y7a4_c00001{bottom:607.306424pt;}
.ya6_c00001{bottom:607.466424pt;}
.y37_c00001{bottom:607.626424pt;}
.y99b_c00001{bottom:607.786424pt;}
.y631_c00001{bottom:608.266423pt;}
.y147_c00001{bottom:608.746423pt;}
.y3ca_c00001{bottom:608.906423pt;}
.yace_c00001{bottom:609.333407pt;}
.y26a_c00001{bottom:609.386423pt;}
.y4d3_c00001{bottom:609.706423pt;}
.ya42_c00001{bottom:609.973407pt;}
.yba5_c00001{bottom:610.186423pt;}
.y4d5_c00001{bottom:610.506422pt;}
.y665_c00001{bottom:610.666422pt;}
.y12d_c00001{bottom:611.146422pt;}
.y974_c00001{bottom:611.306422pt;}
.yc44_c00001{bottom:612.106422pt;}
.y4a4_c00001{bottom:612.426422pt;}
.yab4_c00001{bottom:612.853406pt;}
.y7c0_c00001{bottom:612.906422pt;}
.y735_c00001{bottom:613.226421pt;}
.y475_c00001{bottom:613.386421pt;}
.y776_c00001{bottom:613.546421pt;}
.ya6f_c00001{bottom:613.653405pt;}
.y134_c00001{bottom:613.706421pt;}
.y3eb_c00001{bottom:613.866421pt;}
.y3bd_c00001{bottom:614.186421pt;}
.y571_c00001{bottom:614.666421pt;}
.ya84_c00001{bottom:615.093405pt;}
.y3aa_c00001{bottom:615.306421pt;}
.y5a8_c00001{bottom:615.466420pt;}
.y6b5_c00001{bottom:615.626420pt;}
.yd_c00001{bottom:615.786420pt;}
.ya9a_c00001{bottom:615.893404pt;}
.y339_c00001{bottom:616.266420pt;}
.y225_c00001{bottom:616.586420pt;}
.y1f2_c00001{bottom:616.746420pt;}
.ye1_c00001{bottom:617.386420pt;}
.y7de_c00001{bottom:617.866420pt;}
.y1c1_c00001{bottom:618.026419pt;}
.ybe2_c00001{bottom:618.346419pt;}
.yef_c00001{bottom:618.826419pt;}
.y6e7_c00001{bottom:618.986419pt;}
.y9b7_c00001{bottom:619.306419pt;}
.y68e_c00001{bottom:619.466419pt;}
.y628_c00001{bottom:619.786419pt;}
.y2a2_c00001{bottom:620.426418pt;}
.y194_c00001{bottom:620.586418pt;}
.y27b_c00001{bottom:620.906418pt;}
.y90c_c00001{bottom:621.067200pt;}
.y325_c00001{bottom:621.226418pt;}
.y3f5_c00001{bottom:621.386418pt;}
.y5d5_c00001{bottom:621.546418pt;}
.y2fc_c00001{bottom:621.866418pt;}
.y539_c00001{bottom:622.026418pt;}
.y751_c00001{bottom:622.506418pt;}
.y22a_c00001{bottom:622.666418pt;}
.y3fc_c00001{bottom:622.826418pt;}
.ya05_c00001{bottom:623.306417pt;}
.ya37_c00001{bottom:623.626417pt;}
.y172_c00001{bottom:623.786417pt;}
.y1ae_c00001{bottom:623.946417pt;}
.yb2a_c00001{bottom:624.426417pt;}
.yb64_c00001{bottom:624.746417pt;}
.y8a_c00001{bottom:624.906417pt;}
.y106_c00001{bottom:625.226417pt;}
.yc59_c00001{bottom:625.386417pt;}
.y35c_c00001{bottom:625.546416pt;}
.y6e8_c00001{bottom:625.706416pt;}
.y7a3_c00001{bottom:625.866416pt;}
.y6d6_c00001{bottom:626.026416pt;}
.y99a_c00001{bottom:626.186416pt;}
.y53f_c00001{bottom:626.346416pt;}
.y39c_c00001{bottom:626.986416pt;}
.y195_c00001{bottom:627.306416pt;}
.y4a3_c00001{bottom:627.626416pt;}
.y314_c00001{bottom:627.946415pt;}
.y3c9_c00001{bottom:628.266415pt;}
.y474_c00001{bottom:628.586415pt;}
.y84d_c00001{bottom:629.066415pt;}
.y807_c00001{bottom:629.226415pt;}
.ya58_c00001{bottom:629.973399pt;}
.y6b6_c00001{bottom:630.347200pt;}
.y506_c00001{bottom:630.826414pt;}
.y72b_c00001{bottom:631.306414pt;}
.y107_c00001{bottom:631.946414pt;}
.yb87_c00001{bottom:632.266414pt;}
.y782_c00001{bottom:632.586414pt;}
.yae5_c00001{bottom:632.693398pt;}
.y856_c00001{bottom:633.066413pt;}
.y34e_c00001{bottom:633.226413pt;}
.y363_c00001{bottom:633.546413pt;}
.y23b_c00001{bottom:633.706413pt;}
.yb4_c00001{bottom:634.026413pt;}
.ybcb_c00001{bottom:634.186413pt;}
.y707_c00001{bottom:634.666413pt;}
.y65d_c00001{bottom:634.826413pt;}
.ya5_c00001{bottom:634.986413pt;}
.y36_c00001{bottom:635.146413pt;}
.y5c7_c00001{bottom:635.466412pt;}
.y663_c00001{bottom:635.626412pt;}
.y95b_c00001{bottom:636.106412pt;}
.y59c_c00001{bottom:636.586412pt;}
.y8c3_c00001{bottom:636.746412pt;}
.yacd_c00001{bottom:636.853396pt;}
.y269_c00001{bottom:637.066412pt;}
.ya41_c00001{bottom:637.653396pt;}
.y6e6_c00001{bottom:637.706412pt;}
.y68d_c00001{bottom:637.866412pt;}
.y5fe_c00001{bottom:638.026411pt;}
.yab3_c00001{bottom:638.133395pt;}
.yb38_c00001{bottom:638.186411pt;}
.yb76_c00001{bottom:638.666411pt;}
.ya6e_c00001{bottom:638.933395pt;}
.y630_c00001{bottom:639.146411pt;}
.y89e_c00001{bottom:639.306411pt;}
.y182_c00001{bottom:639.466411pt;}
.y193_c00001{bottom:640.106411pt;}
.y82a_c00001{bottom:640.266411pt;}
.ya83_c00001{bottom:640.373395pt;}
.yb5_c00001{bottom:640.746410pt;}
.y97f_c00001{bottom:641.066410pt;}
.ya99_c00001{bottom:641.173394pt;}
.y7a2_c00001{bottom:641.226410pt;}
.y2e2_c00001{bottom:641.706410pt;}
.y8e3_c00001{bottom:642.507200pt;}
.y9e7_c00001{bottom:642.826410pt;}
.y3a9_c00001{bottom:642.986409pt;}
.yc43_c00001{bottom:643.626409pt;}
.y4d2_c00001{bottom:643.786409pt;}
.yc1c_c00001{bottom:643.946409pt;}
.y224_c00001{bottom:644.106409pt;}
.y1f1_c00001{bottom:644.426409pt;}
.y806_c00001{bottom:644.586409pt;}
.y473_c00001{bottom:644.906409pt;}
.y6d5_c00001{bottom:645.386409pt;}
.y1c0_c00001{bottom:645.546408pt;}
.y183_c00001{bottom:646.186408pt;}
.y505_c00001{bottom:646.346408pt;}
.y7bf_c00001{bottom:646.826408pt;}
.yba4_c00001{bottom:646.986408pt;}
.y734_c00001{bottom:647.146408pt;}
.yc66_c00001{bottom:647.466408pt;}
.y872_c00001{bottom:647.626408pt;}
.y105_c00001{bottom:647.786408pt;}
.y2a1_c00001{bottom:648.106407pt;}
.y32f_c00001{bottom:648.426407pt;}
.y855_c00001{bottom:648.586407pt;}
.y89_c00001{bottom:648.746407pt;}
.y2fb_c00001{bottom:649.386407pt;}
.y5a7_c00001{bottom:649.546407pt;}
.yae4_c00001{bottom:649.653391pt;}
.ya03_c00001{bottom:649.866407pt;}
.y706_c00001{bottom:650.186407pt;}
.y3f4_c00001{bottom:650.666406pt;}
.y3c8_c00001{bottom:650.826406pt;}
.ya36_c00001{bottom:651.146406pt;}
.y1ad_c00001{bottom:651.466406pt;}
.y9b6_c00001{bottom:651.626406pt;}
.ye0_c00001{bottom:651.946406pt;}
.y8c2_c00001{bottom:652.106406pt;}
.yb50_c00001{bottom:652.266406pt;}
.y5d4_c00001{bottom:652.426406pt;}
.y627_c00001{bottom:652.586406pt;}
.y171_c00001{bottom:652.906406pt;}
.y6e5_c00001{bottom:653.226405pt;}
.y68c_c00001{bottom:653.386405pt;}
.yb86_c00001{bottom:653.546405pt;}
.y5fd_c00001{bottom:654.346405pt;}
.y39b_c00001{bottom:654.506405pt;}
.y538_c00001{bottom:654.666405pt;}
.y62f_c00001{bottom:655.146405pt;}
.y829_c00001{bottom:655.786404pt;}
.y3bc_c00001{bottom:656.106404pt;}
.yb3_c00001{bottom:656.426404pt;}
.ya04_c00001{bottom:656.586404pt;}
.y3fb_c00001{bottom:656.906404pt;}
.y999_c00001{bottom:657.066404pt;}
.y934_c00001{bottom:657.226404pt;}
.yc2b_c00001{bottom:657.546404pt;}
.y229_c00001{bottom:658.346403pt;}
.y909_c00001{bottom:659.146403pt;}
.y7a1_c00001{bottom:659.786403pt;}
.y472_c00001{bottom:660.266403pt;}
.y4d1_c00001{bottom:660.906402pt;}
.y4a2_c00001{bottom:661.546402pt;}
.y245_c00001{bottom:661.706402pt;}
.y84c_c00001{bottom:661.866402pt;}
.y324_c00001{bottom:662.186402pt;}
.yc1b_c00001{bottom:662.346402pt;}
.y504_c00001{bottom:662.506402pt;}
.ya4_c00001{bottom:662.666402pt;}
.y35_c00001{bottom:662.826402pt;}
.y805_c00001{bottom:662.986401pt;}
.y871_c00001{bottom:663.146401pt;}
.y56f_c00001{bottom:663.467200pt;}
.y3a8_c00001{bottom:663.626401pt;}
.yb47_c00001{bottom:663.786401pt;}
.y854_c00001{bottom:663.946401pt;}
.y72a_c00001{bottom:664.106401pt;}
.ya32_c00001{bottom:664.213385pt;}
.y6b3_c00001{bottom:664.267200pt;}
.y781_c00001{bottom:664.426401pt;}
.ya57_c00001{bottom:664.533385pt;}
.y268_c00001{bottom:664.586401pt;}
.y5a6_c00001{bottom:664.746401pt;}
.ya6d_c00001{bottom:664.853385pt;}
.y6d4_c00001{bottom:664.906401pt;}
.ya40_c00001{bottom:665.173385pt;}
.y7be_c00001{bottom:665.226401pt;}
.y9e6_c00001{bottom:665.386401pt;}
.y407_c00001{bottom:665.706400pt;}
.ya82_c00001{bottom:665.813384pt;}
.yc65_c00001{bottom:665.866400pt;}
.yb75_c00001{bottom:666.186400pt;}
.y35b_c00001{bottom:666.346400pt;}
.ya98_c00001{bottom:666.453384pt;}
.y218_c00001{bottom:667.466400pt;}
.y8bd_c00001{bottom:667.786400pt;}
.y56e_c00001{bottom:668.106399pt;}
.y5c6_c00001{bottom:668.266399pt;}
.y6b2_c00001{bottom:668.586399pt;}
.y29f_c00001{bottom:668.746399pt;}
.y313_c00001{bottom:668.906399pt;}
.y59b_c00001{bottom:669.226399pt;}
.y5fc_c00001{bottom:669.706399pt;}
.y95a_c00001{bottom:670.026399pt;}
.y81e_c00001{bottom:670.666398pt;}
.y5d3_c00001{bottom:670.826398pt;}
.ybca_c00001{bottom:670.986398pt;}
.y223_c00001{bottom:671.786398pt;}
.y1f0_c00001{bottom:671.946398pt;}
.y935_c00001{bottom:671.947200pt;}
.ya02_c00001{bottom:672.426398pt;}
.y46a_c00001{bottom:673.066397pt;}
.y1bf_c00001{bottom:673.226397pt;}
.ybe1_c00001{bottom:673.546397pt;}
.y34d_c00001{bottom:674.186397pt;}
.y959_c00001{bottom:674.506397pt;}
.yb85_c00001{bottom:674.666397pt;}
.y97e_c00001{bottom:674.826397pt;}
.y7a0_c00001{bottom:675.146397pt;}
.y181_c00001{bottom:675.306397pt;}
.y2a0_c00001{bottom:675.466396pt;}
.y471_c00001{bottom:675.626396pt;}
.y192_c00001{bottom:675.786396pt;}
.y4d0_c00001{bottom:676.266396pt;}
.y933_c00001{bottom:676.586396pt;}
.y973_c00001{bottom:676.906396pt;}
.y2fa_c00001{bottom:677.066396pt;}
.y503_c00001{bottom:677.866396pt;}
.y2b8_c00001{bottom:678.186395pt;}
.y53e_c00001{bottom:678.346395pt;}
.y804_c00001{bottom:678.506395pt;}
.ya35_c00001{bottom:678.826395pt;}
.y5a_c00001{bottom:678.986395pt;}
.y1ac_c00001{bottom:679.146395pt;}
.y780_c00001{bottom:679.626395pt;}
.yb4f_c00001{bottom:679.786395pt;}
.yb63_c00001{bottom:679.946395pt;}
.y4a1_c00001{bottom:680.106395pt;}
.y170_c00001{bottom:680.426394pt;}
.yc58_c00001{bottom:680.586394pt;}
.y7bd_c00001{bottom:680.746394pt;}
.y733_c00001{bottom:681.066394pt;}
.ybb5_c00001{bottom:681.386394pt;}
.y870_c00001{bottom:681.546394pt;}
.y39a_c00001{bottom:682.186394pt;}
.y3a7_c00001{bottom:682.986393pt;}
.yb22_c00001{bottom:683.146393pt;}
.y5a5_c00001{bottom:683.306393pt;}
.y9b5_c00001{bottom:683.786393pt;}
.y705_c00001{bottom:684.106393pt;}
.yc64_c00001{bottom:684.266393pt;}
.y5fb_c00001{bottom:685.066393pt;}
.y626_c00001{bottom:685.226393pt;}
.y8c1_c00001{bottom:685.866392pt;}
.y3fa_c00001{bottom:686.346392pt;}
.ya13_c00001{bottom:686.506392pt;}
.ydf_c00001{bottom:686.666392pt;}
.y6e4_c00001{bottom:686.986392pt;}
.y68b_c00001{bottom:687.306392pt;}
.y537_c00001{bottom:687.466392pt;}
.y65c_c00001{bottom:687.626392pt;}
.y29e_c00001{bottom:688.106391pt;}
.y89d_c00001{bottom:688.586391pt;}
.y32d_c00001{bottom:688.746391pt;}
.y62e_c00001{bottom:688.906391pt;}
.yc2a_c00001{bottom:689.226391pt;}
.y244_c00001{bottom:689.386391pt;}
.y828_c00001{bottom:689.706391pt;}
.y4cc_c00001{bottom:690.026391pt;}
.ya3_c00001{bottom:690.186391pt;}
.y34_c00001{bottom:690.346391pt;}
.y79f_c00001{bottom:690.506390pt;}
.y998_c00001{bottom:690.986390pt;}
.yb46_c00001{bottom:691.306390pt;}
.ybe0_c00001{bottom:691.946390pt;}
.y267_c00001{bottom:692.266390pt;}
.y469_c00001{bottom:692.586390pt;}
.y502_c00001{bottom:693.226389pt;}
.y90a_c00001{bottom:693.227200pt;}
.yb37_c00001{bottom:693.386389pt;}
.yc42_c00001{bottom:693.706389pt;}
.yb74_c00001{bottom:693.866389pt;}
.y470_c00001{bottom:694.026389pt;}
.y84b_c00001{bottom:694.506389pt;}
.y4cf_c00001{bottom:694.666389pt;}
.y853_c00001{bottom:695.306389pt;}
.y32e_c00001{bottom:695.466388pt;}
.yb84_c00001{bottom:695.786388pt;}
.y7dd_c00001{bottom:695.946388pt;}
.y322_c00001{bottom:696.106388pt;}
.y20d_c00001{bottom:696.266388pt;}
.y732_c00001{bottom:696.426388pt;}
.y729_c00001{bottom:696.746388pt;}
.y803_c00001{bottom:696.906388pt;}
.y86f_c00001{bottom:697.066388pt;}
.y53d_c00001{bottom:697.386388pt;}
.y6d3_c00001{bottom:697.546388pt;}
.y908_c00001{bottom:697.866388pt;}
.y77f_c00001{bottom:698.186387pt;}
.y56c_c00001{bottom:698.187200pt;}
.y5a4_c00001{bottom:698.666387pt;}
.yc57_c00001{bottom:698.986387pt;}
.ya25_c00001{bottom:699.093371pt;}
.y7bc_c00001{bottom:699.146387pt;}
.y444_c00001{bottom:699.306387pt;}
.y56a_c00001{bottom:699.307200pt;}
.y406_c00001{bottom:699.626387pt;}
.y8e2_c00001{bottom:699.786387pt;}
.y359_c00001{bottom:700.426386pt;}
.y1be_c00001{bottom:700.746386pt;}
.y5c5_c00001{bottom:700.906386pt;}
.y8c0_c00001{bottom:701.386386pt;}
.y5d2_c00001{bottom:701.546386pt;}
.y826_c00001{bottom:701.867200pt;}
.y59a_c00001{bottom:702.026386pt;}
.yba3_c00001{bottom:702.186386pt;}
.y6e3_c00001{bottom:702.506386pt;}
.yc63_c00001{bottom:702.666386pt;}
.y323_c00001{bottom:702.826386pt;}
.y399_c00001{bottom:703.306385pt;}
.y5fa_c00001{bottom:703.466385pt;}
.y89c_c00001{bottom:703.946385pt;}
.y6b1_c00001{bottom:704.106385pt;}
.y2f9_c00001{bottom:704.586385pt;}
.y291_c00001{bottom:704.746385pt;}
.y2b7_c00001{bottom:705.066385pt;}
.y68a_c00001{bottom:705.706384pt;}
.y112_c00001{bottom:705.866384pt;}
.y997_c00001{bottom:706.346384pt;}
.y59_c00001{bottom:706.506384pt;}
.y1ab_c00001{bottom:706.666384pt;}
.y35a_c00001{bottom:707.146384pt;}
.y958_c00001{bottom:707.306384pt;}
.yb4e_c00001{bottom:707.466384pt;}
.yb62_c00001{bottom:707.626384pt;}
.ybc9_c00001{bottom:707.786384pt;}
.y16f_c00001{bottom:708.106383pt;}
.y217_c00001{bottom:708.426383pt;}
.y311_c00001{bottom:708.746383pt;}
.y79e_c00001{bottom:708.906383pt;}
.y4cb_c00001{bottom:709.386383pt;}
.y46f_c00001{bottom:709.546383pt;}
.y4ce_c00001{bottom:710.186383pt;}
.ybdf_c00001{bottom:710.346383pt;}
.y29d_c00001{bottom:710.666382pt;}
.y4a0_c00001{bottom:710.826382pt;}
.y7dc_c00001{bottom:711.466382pt;}
.y775_c00001{bottom:711.786382pt;}
.y468_c00001{bottom:711.946382pt;}
.y222_c00001{bottom:712.426382pt;}
.y113_c00001{bottom:712.586382pt;}
.ydd_c00001{bottom:713.226381pt;}
.y77e_c00001{bottom:713.546381pt;}
.y9f1_c00001{bottom:714.026381pt;}
.y7bb_c00001{bottom:714.666381pt;}
.y731_c00001{bottom:714.986381pt;}
.y34c_c00001{bottom:715.146381pt;}
.y312_c00001{bottom:715.466380pt;}
.y9b4_c00001{bottom:715.946380pt;}
.yb83_c00001{bottom:716.906380pt;}
.yc56_c00001{bottom:717.386380pt;}
.yc1a_c00001{bottom:717.546380pt;}
.y6e2_c00001{bottom:717.706380pt;}
.ya2_c00001{bottom:717.866380pt;}
.y33_c00001{bottom:718.026379pt;}
.y1ef_c00001{bottom:718.186379pt;}
.y5f9_c00001{bottom:718.986379pt;}
.y38c_c00001{bottom:719.146379pt;}
.y8e1_c00001{bottom:719.306379pt;}
.y358_c00001{bottom:719.786379pt;}
.yde_c00001{bottom:719.946379pt;}
.y536_c00001{bottom:720.106379pt;}
.yba2_c00001{bottom:720.586378pt;}
.yb36_c00001{bottom:720.906378pt;}
.y65a_c00001{bottom:721.066378pt;}
.y689_c00001{bottom:721.226378pt;}
.yb73_c00001{bottom:721.386378pt;}
.y2ca_c00001{bottom:721.706378pt;}
.y89b_c00001{bottom:722.346378pt;}
.y256_c00001{bottom:722.666378pt;}
.y146_c00001{bottom:723.306377pt;}
.y825_c00001{bottom:723.466377pt;}
.y849_c00001{bottom:723.787200pt;}
.y398_c00001{bottom:723.946377pt;}
.y97d_c00001{bottom:724.106377pt;}
.y750_c00001{bottom:724.266377pt;}
.y79d_c00001{bottom:724.426377pt;}
.y32c_c00001{bottom:724.586377pt;}
.y996_c00001{bottom:724.746377pt;}
.y46e_c00001{bottom:724.906377pt;}
.yc41_c00001{bottom:725.386377pt;}
.y4cd_c00001{bottom:725.546376pt;}
.ybc8_c00001{bottom:726.186376pt;}
.y215_c00001{bottom:726.506376pt;}
.y3a6_c00001{bottom:726.666376pt;}
.y7db_c00001{bottom:726.826376pt;}
.y443_c00001{bottom:726.986376pt;}
.y848_c00001{bottom:728.106375pt;}
.y111_c00001{bottom:728.426375pt;}
.y4ca_c00001{bottom:728.746375pt;}
.y36e_c00001{bottom:728.906375pt;}
.y405_c00001{bottom:729.066375pt;}
.y243_c00001{bottom:729.226375pt;}
.y9d7_c00001{bottom:729.386375pt;}
.y728_c00001{bottom:729.546375pt;}
.y7ba_c00001{bottom:730.026375pt;}
.y6d2_c00001{bottom:730.346375pt;}
.y2b6_c00001{bottom:730.506374pt;}
.y220_c00001{bottom:730.826374pt;}
.y905_c00001{bottom:731.306374pt;}
.yc_c00001{bottom:731.466374pt;}
.y53c_c00001{bottom:731.626374pt;}
.y932_c00001{bottom:731.786374pt;}
.y77d_c00001{bottom:732.106374pt;}
.y290_c00001{bottom:732.266374pt;}
.y266_c00001{bottom:732.426374pt;}
.y216_c00001{bottom:733.226373pt;}
.ya24_c00001{bottom:733.653357pt;}
.y5c4_c00001{bottom:733.706373pt;}
.yaae_c00001{bottom:733.866373pt;}
.y58_c00001{bottom:734.026373pt;}
.y435_c00001{bottom:734.186373pt;}
.y599_c00001{bottom:734.666373pt;}
.yb61_c00001{bottom:735.146373pt;}
.y8bf_c00001{bottom:735.306373pt;}
.y5a3_c00001{bottom:735.466372pt;}
.y16d_c00001{bottom:735.626372pt;}
.yc55_c00001{bottom:735.786372pt;}
.y567_c00001{bottom:736.106372pt;}
.y6e1_c00001{bottom:736.266372pt;}
.y688_c00001{bottom:736.586372pt;}
.y20c_c00001{bottom:737.066372pt;}
.y221_c00001{bottom:737.546372pt;}
.y89a_c00001{bottom:737.866372pt;}
.y6b0_c00001{bottom:738.026371pt;}
.yb82_c00001{bottom:738.186371pt;}
.y5d1_c00001{bottom:738.506371pt;}
.y824_c00001{bottom:738.986371pt;}
.ybf8_c00001{bottom:739.306371pt;}
.yc29_c00001{bottom:739.466371pt;}
.y97c_c00001{bottom:739.626371pt;}
.y74f_c00001{bottom:739.786371pt;}
.y957_c00001{bottom:740.106371pt;}
.y995_c00001{bottom:740.266371pt;}
.y659_c00001{bottom:740.426370pt;}
.y65b_c00001{bottom:740.906370pt;}
.y411_c00001{bottom:742.026370pt;}
.y972_c00001{bottom:742.346370pt;}
.ydc_c00001{bottom:742.506370pt;}
.y34b_c00001{bottom:742.666370pt;}
.y16e_c00001{bottom:742.986369pt;}
.y46d_c00001{bottom:743.306369pt;}
.y397_c00001{bottom:743.466369pt;}
.yc40_c00001{bottom:743.946369pt;}
.y774_c00001{bottom:744.426369pt;}
.y310_c00001{bottom:744.586369pt;}
.y49f_c00001{bottom:744.746369pt;}
.y7da_c00001{bottom:745.226369pt;}
.ya1_c00001{bottom:745.386369pt;}
.y32_c00001{bottom:745.546368pt;}
.y802_c00001{bottom:746.346368pt;}
.yb45_c00001{bottom:746.506368pt;}
.y38a_c00001{bottom:746.986368pt;}
.ybde_c00001{bottom:747.146368pt;}
.y145_c00001{bottom:747.466368pt;}
.y9b3_c00001{bottom:748.106367pt;}
.y7b9_c00001{bottom:748.426367pt;}
.yb35_c00001{bottom:748.586367pt;}
.y730_c00001{bottom:748.906367pt;}
.yb72_c00001{bottom:749.066367pt;}
.y2c9_c00001{bottom:749.226367pt;}
.y5f8_c00001{bottom:749.546367pt;}
.y2b5_c00001{bottom:749.866367pt;}
.y255_c00001{bottom:750.186367pt;}
.y625_c00001{bottom:750.666366pt;}
.y568_c00001{bottom:750.827200pt;}
.y321_c00001{bottom:751.306366pt;}
.y62d_c00001{bottom:751.466366pt;}
.y6e0_c00001{bottom:751.626366pt;}
.y704_c00001{bottom:751.786366pt;}
.y687_c00001{bottom:751.946366pt;}
.yb21_c00001{bottom:752.266366pt;}
.y8e0_c00001{bottom:752.586366pt;}
.y1aa_c00001{bottom:752.906366pt;}
.y899_c00001{bottom:753.226365pt;}
.y5d0_c00001{bottom:754.186365pt;}
.y38b_c00001{bottom:754.346365pt;}
.y442_c00001{bottom:754.506365pt;}
.yc19_c00001{bottom:754.666365pt;}
.y97b_c00001{bottom:754.826365pt;}
.y265_c00001{bottom:754.986365pt;}
.y566_c00001{bottom:755.466364pt;}
.y357_c00001{bottom:755.626364pt;}
.y36d_c00001{bottom:756.586364pt;}
.y9d6_c00001{bottom:756.906364pt;}
.y12c_c00001{bottom:757.226364pt;}
.yba1_c00001{bottom:757.386364pt;}
.ybf7_c00001{bottom:757.866364pt;}
.y74e_c00001{bottom:758.186363pt;}
.y79c_c00001{bottom:758.346363pt;}
.y46c_c00001{bottom:758.826363pt;}
.yb_c00001{bottom:759.146363pt;}
.yb81_c00001{bottom:759.306363pt;}
.y890_c00001{bottom:759.626363pt;}
.y28f_c00001{bottom:759.786363pt;}
.y49e_c00001{bottom:760.106363pt;}
.y7d9_c00001{bottom:760.746362pt;}
.y434_c00001{bottom:761.546362pt;}
.y57_c00001{bottom:761.706362pt;}
.y459_c00001{bottom:761.866362pt;}
.y727_c00001{bottom:762.186362pt;}
.y1bc_c00001{bottom:762.346362pt;}
.yb60_c00001{bottom:762.826362pt;}
.y6d1_c00001{bottom:762.986361pt;}
.y847_c00001{bottom:763.626361pt;}
.y7b8_c00001{bottom:763.946361pt;}
.y72f_c00001{bottom:764.266361pt;}
.y20b_c00001{bottom:764.746361pt;}
.ybdd_c00001{bottom:765.546360pt;}
.y906_c00001{bottom:765.547200pt;}
.y8bc_c00001{bottom:765.866360pt;}
.y396_c00001{bottom:766.026360pt;}
.y5c3_c00001{bottom:766.346360pt;}
.y21f_c00001{bottom:766.506360pt;}
.y8be_c00001{bottom:766.666360pt;}
.y6df_c00001{bottom:766.986360pt;}
.y703_c00001{bottom:767.146360pt;}
.y931_c00001{bottom:767.306360pt;}
.y241_c00001{bottom:767.786360pt;}
.y5f7_c00001{bottom:767.946359pt;}
.y598_c00001{bottom:768.266359pt;}
.y81d_c00001{bottom:768.746359pt;}
.y1bd_c00001{bottom:769.066359pt;}
.y2b4_c00001{bottom:769.226359pt;}
.y904_c00001{bottom:770.186359pt;}
.y686_c00001{bottom:770.346359pt;}
.y5cf_c00001{bottom:770.506358pt;}
.yc28_c00001{bottom:770.986358pt;}
.y1a9_c00001{bottom:771.306358pt;}
.y898_c00001{bottom:771.626358pt;}
.y994_c00001{bottom:771.786358pt;}
.y6ad_c00001{bottom:772.106358pt;}
.yc54_c00001{bottom:772.586358pt;}
.yca_c00001{bottom:772.906358pt;}
.ya0_c00001{bottom:773.066357pt;}
.y31_c00001{bottom:773.226357pt;}
.y954_c00001{bottom:773.386357pt;}
.y658_c00001{bottom:773.706357pt;}
.y46b_c00001{bottom:774.026357pt;}
.y501_c00001{bottom:774.186357pt;}
.y242_c00001{bottom:774.506357pt;}
.y389_c00001{bottom:774.666357pt;}
.y971_c00001{bottom:774.986357pt;}
.yc3f_c00001{bottom:775.626356pt;}
.yba0_c00001{bottom:775.786356pt;}
.yb4d_c00001{bottom:775.946356pt;}
.yc6f_c00001{bottom:776.266356pt;}
.y49d_c00001{bottom:776.426356pt;}
.y2c8_c00001{bottom:776.586356pt;}
.y34a_c00001{bottom:776.746356pt;}
.y79b_c00001{bottom:776.906356pt;}
.y773_c00001{bottom:777.226356pt;}
.y467_c00001{bottom:777.386356pt;}
.y410_c00001{bottom:777.706356pt;}
.y7d8_c00001{bottom:779.146355pt;}
.y7b7_c00001{bottom:779.306355pt;}
.y623_c00001{bottom:779.947200pt;}
.y86e_c00001{bottom:780.106355pt;}
.y801_c00001{bottom:780.266355pt;}
.y9b2_c00001{bottom:780.426354pt;}
.y77c_c00001{bottom:781.386354pt;}
.y1bb_c00001{bottom:781.706354pt;}
.y16c_c00001{bottom:781.866354pt;}
.y441_c00001{bottom:782.026354pt;}
.y702_c00001{bottom:782.506354pt;}
.y6de_c00001{bottom:783.306353pt;}
.y5f6_c00001{bottom:783.466353pt;}
.y622_c00001{bottom:784.266353pt;}
.y9d5_c00001{bottom:784.586353pt;}
.y12b_c00001{bottom:784.746353pt;}
.y3ea_c00001{bottom:785.546352pt;}
.y535_c00001{bottom:785.706352pt;}
.y5ce_c00001{bottom:785.866352pt;}
.y53b_c00001{bottom:786.506352pt;}
.ya_c00001{bottom:786.666352pt;}
.y6ae_c00001{bottom:786.827200pt;}
.yc79_c00001{bottom:786.986352pt;}
.y28e_c00001{bottom:787.146352pt;}
.y2f8_c00001{bottom:787.466352pt;}
.y2b2_c00001{bottom:788.586351pt;}
.y97a_c00001{bottom:788.746351pt;}
.y563_c00001{bottom:788.906351pt;}
.y433_c00001{bottom:789.066351pt;}
.y55_c00001{bottom:789.226351pt;}
.y458_c00001{bottom:789.386351pt;}
.yc27_c00001{bottom:789.546351pt;}
.y657_c00001{bottom:789.866351pt;}
.y191_c00001{bottom:790.186351pt;}
.y500_c00001{bottom:790.346351pt;}
.y36c_c00001{bottom:790.506350pt;}
.yc53_c00001{bottom:790.986350pt;}
.y254_c00001{bottom:791.146350pt;}
.y6ac_c00001{bottom:791.466350pt;}
.y49c_c00001{bottom:791.786350pt;}
.y74d_c00001{bottom:792.106350pt;}
.y79a_c00001{bottom:792.266350pt;}
.y953_c00001{bottom:792.746350pt;}
.yb9f_c00001{bottom:794.186349pt;}
.y7d7_c00001{bottom:794.666349pt;}
.y726_c00001{bottom:794.986349pt;}
.y4c9_c00001{bottom:795.146349pt;}
.y2b3_c00001{bottom:795.306349pt;}
.y86d_c00001{bottom:795.626348pt;}
.y6d0_c00001{bottom:795.786348pt;}
.y56_c00001{bottom:796.586348pt;}
.ybdc_c00001{bottom:797.066348pt;}
.y240_c00001{bottom:797.226348pt;}
.y2c7_c00001{bottom:797.546348pt;}
.y77b_c00001{bottom:797.706348pt;}
.y9c3_c00001{bottom:798.026347pt;}
.y104_c00001{bottom:798.506347pt;}
.y6dd_c00001{bottom:798.666347pt;}
.y5f5_c00001{bottom:798.826347pt;}
.y5c2_c00001{bottom:799.146347pt;}
.y20a_c00001{bottom:799.306347pt;}
.ybc7_c00001{bottom:799.786347pt;}
.y16b_c00001{bottom:800.266347pt;}
.yc9_c00001{bottom:800.426346pt;}
.y9f_c00001{bottom:800.586346pt;}
.y30_c00001{bottom:800.746346pt;}
.y388_c00001{bottom:800.906346pt;}
.y685_c00001{bottom:801.066346pt;}
.y5cd_c00001{bottom:801.226346pt;}
.y81c_c00001{bottom:801.546346pt;}
.yb44_c00001{bottom:801.706346pt;}
.y897_c00001{bottom:802.506346pt;}
.y903_c00001{bottom:803.626345pt;}
.y564_c00001{bottom:803.627200pt;}
.y597_c00001{bottom:803.786345pt;}
.y979_c00001{bottom:804.106345pt;}
.y1ba_c00001{bottom:804.266345pt;}
.y656_c00001{bottom:805.066345pt;}
.y28c_c00001{bottom:805.546344pt;}
.y4ff_c00001{bottom:805.706344pt;}
.y49b_c00001{bottom:807.146344pt;}
.y9_c00001{bottom:807.306344pt;}
.y74c_c00001{bottom:807.626344pt;}
.y955_c00001{bottom:807.627200pt;}
.y970_c00001{bottom:807.786344pt;}
.y2b1_c00001{bottom:807.946343pt;}
.y562_c00001{bottom:808.266343pt;}
.y6ab_c00001{bottom:808.746343pt;}
.y348_c00001{bottom:809.386343pt;}
.y36b_c00001{bottom:809.866343pt;}
.y7d6_c00001{bottom:810.026343pt;}
.y466_c00001{bottom:810.186343pt;}
.y799_c00001{bottom:810.826342pt;}
.y1a7_c00001{bottom:810.986342pt;}
.y28d_c00001{bottom:812.266342pt;}
.y12a_c00001{bottom:812.426342pt;}
.yb9e_c00001{bottom:812.586342pt;}
.y77a_c00001{bottom:813.066341pt;}
.y7b6_c00001{bottom:813.226341pt;}
.y653_c00001{bottom:813.546341pt;}
.y6dc_c00001{bottom:814.026341pt;}
.y701_c00001{bottom:814.186341pt;}
.y9d4_c00001{bottom:814.346341pt;}
.y2f7_c00001{bottom:814.986341pt;}
.y349_c00001{bottom:816.106340pt;}
.y432_c00001{bottom:816.746340pt;}
.y54_c00001{bottom:816.906340pt;}
.y457_c00001{bottom:817.066340pt;}
.y5f4_c00001{bottom:817.226340pt;}
.y372_c00001{bottom:817.546340pt;}
.y1a8_c00001{bottom:817.706340pt;}
.y190_c00001{bottom:817.866340pt;}
.ybc6_c00001{bottom:818.186339pt;}
.y8b9_c00001{bottom:818.666339pt;}
.y896_c00001{bottom:818.826339pt;}
.y532_c00001{bottom:818.986339pt;}
.y3e9_c00001{bottom:819.626339pt;}
.y621_c00001{bottom:819.786339pt;}
.y208_c00001{bottom:819.946339pt;}
.y387_c00001{bottom:820.586338pt;}
.y4fe_c00001{bottom:821.066338pt;}
.yb20_c00001{bottom:821.226338pt;}
.yc78_c00001{bottom:821.546338pt;}
.y28b_c00001{bottom:822.506338pt;}
.y144_c00001{bottom:822.666338pt;}
.yb80_c00001{bottom:822.826338pt;}
.y49a_c00001{bottom:823.306337pt;}
.y2c6_c00001{bottom:823.626337pt;}
.y6aa_c00001{bottom:824.106337pt;}
.y8df_c00001{bottom:825.066337pt;}
.y74b_c00001{bottom:826.026336pt;}
.y798_c00001{bottom:826.186336pt;}
.y103_c00001{bottom:826.346336pt;}
.y209_c00001{bottom:826.666336pt;}
.y7_c00001{bottom:826.826336pt;}
.y2b0_c00001{bottom:827.466336pt;}
.y16a_c00001{bottom:827.626336pt;}
.yc52_c00001{bottom:827.786336pt;}
.y1a6_c00001{bottom:827.786368pt;}
.yc8_c00001{bottom:828.106335pt;}
.y1a5_c00001{bottom:828.106369pt;}
.y76_c00001{bottom:828.266335pt;}
.y2f_c00001{bottom:828.426335pt;}
.ybb4_c00001{bottom:828.586335pt;}
.y347_c00001{bottom:828.906335pt;}
.y779_c00001{bottom:829.386335pt;}
.y700_c00001{bottom:829.546335pt;}
.y6db_c00001{bottom:830.186335pt;}
.y4c8_c00001{bottom:830.666334pt;}
.yb9d_c00001{bottom:830.986334pt;}
.y88f_c00001{bottom:831.146334pt;}
.yb5f_c00001{bottom:831.306334pt;}
.y5c1_c00001{bottom:831.786334pt;}
.y253_c00001{bottom:832.106334pt;}
.y5cc_c00001{bottom:832.586334pt;}
.y5f3_c00001{bottom:832.746334pt;}
.y652_c00001{bottom:832.906334pt;}
.y8ba_c00001{bottom:833.387200pt;}
.y8_c00001{bottom:833.546333pt;}
.y895_c00001{bottom:834.026333pt;}
.y81b_c00001{bottom:834.186333pt;}
.y684_c00001{bottom:834.986333pt;}
.y92e_c00001{bottom:835.306333pt;}
.y2c5_c00001{bottom:836.266332pt;}
.ybc5_c00001{bottom:836.586332pt;}
.y4fd_c00001{bottom:837.386332pt;}
.y596_c00001{bottom:837.706332pt;}
.y8b8_c00001{bottom:838.026331pt;}
.y823_c00001{bottom:838.186331pt;}
.y531_c00001{bottom:838.506331pt;}
.y499_c00001{bottom:838.666331pt;}
.y3e8_c00001{bottom:838.986331pt;}
.y207_c00001{bottom:839.306331pt;}
.y464_c00001{bottom:839.307200pt;}
.y129_c00001{bottom:839.946331pt;}
.y6a9_c00001{bottom:840.426330pt;}
.y1a4_c00001{bottom:841.386330pt;}
.y74a_c00001{bottom:841.546330pt;}
.y1a3_c00001{bottom:841.706330pt;}
.y2f6_c00001{bottom:842.666330pt;}
.y463_c00001{bottom:843.626329pt;}
.y7d5_c00001{bottom:843.946329pt;}
.y431_c00001{bottom:844.266329pt;}
.y53_c00001{bottom:844.426329pt;}
.y456_c00001{bottom:844.586329pt;}
.y778_c00001{bottom:844.746329pt;}
.y7b5_c00001{bottom:844.906329pt;}
.yb71_c00001{bottom:845.066329pt;}
.y6da_c00001{bottom:845.546328pt;}
.y36a_c00001{bottom:845.706328pt;}
.y6ff_c00001{bottom:845.866328pt;}
.y725_c00001{bottom:846.026328pt;}
.y6_c00001{bottom:846.186328pt;}
.y992_c00001{bottom:846.187200pt;}
.yc6e_c00001{bottom:846.346328pt;}
.y9d3_c00001{bottom:846.506328pt;}
.ybb3_c00001{bottom:846.986328pt;}
.ybdb_c00001{bottom:847.466328pt;}
.y800_c00001{bottom:847.946327pt;}
.y5f2_c00001{bottom:848.106327pt;}
.y846_c00001{bottom:849.386327pt;}
.y2af_c00001{bottom:850.026327pt;}
.y92f_c00001{bottom:850.027200pt;}
.y683_c00001{bottom:850.346327pt;}
.yaff_c00001{bottom:851.146326pt;}
.y651_c00001{bottom:852.266326pt;}
.y894_c00001{bottom:852.586326pt;}
.y4fc_c00001{bottom:852.746326pt;}
.y533_c00001{bottom:853.227200pt;}
.y978_c00001{bottom:853.386325pt;}
.y620_c00001{bottom:853.706325pt;}
.y102_c00001{bottom:854.026325pt;}
.y655_c00001{bottom:854.346325pt;}
.y92d_c00001{bottom:854.666325pt;}
.y498_c00001{bottom:854.986325pt;}
.yc7_c00001{bottom:855.626324pt;}
.y75_c00001{bottom:855.786324pt;}
.y2e_c00001{bottom:855.946324pt;}
.y168_c00001{bottom:857.386324pt;}
.y530_c00001{bottom:857.866324pt;}
.yb29_c00001{bottom:858.506323pt;}
.y18e_c00001{bottom:858.826323pt;}
.yb5e_c00001{bottom:858.986323pt;}
.y749_c00001{bottom:859.946323pt;}
.y8de_c00001{bottom:860.586322pt;}
.y55f_c00001{bottom:861.066322pt;}
.y6cf_c00001{bottom:861.226322pt;}
.y724_c00001{bottom:861.546322pt;}
.y28a_c00001{bottom:861.866322pt;}
.y386_c00001{bottom:862.346322pt;}
.y9c2_c00001{bottom:862.506322pt;}
.ybf6_c00001{bottom:863.146321pt;}
.y7b4_c00001{bottom:863.306321pt;}
.y7ff_c00001{bottom:863.466321pt;}
.y6d9_c00001{bottom:863.946321pt;}
.y169_c00001{bottom:864.106321pt;}
.y346_c00001{bottom:864.586321pt;}
.y845_c00001{bottom:864.746321pt;}
.y4fa_c00001{bottom:864.747200pt;}
.ybb2_c00001{bottom:865.386321pt;}
.y682_c00001{bottom:865.706320pt;}
.ybda_c00001{bottom:866.026320pt;}
.y18f_c00001{bottom:866.186320pt;}
.y5f1_c00001{bottom:866.506320pt;}
.y81a_c00001{bottom:866.986320pt;}
.y128_c00001{bottom:867.626320pt;}
.y991_c00001{bottom:867.786320pt;}
.y4f9_c00001{bottom:867.946319pt;}
.y3e7_c00001{bottom:868.426319pt;}
.y5_c00001{bottom:868.586319pt;}
.y9b1_c00001{bottom:868.907200pt;}
.y822_c00001{bottom:869.066319pt;}
.y9af_c00001{bottom:869.067200pt;}
.y2f5_c00001{bottom:870.186319pt;}
.y497_c00001{bottom:870.346319pt;}
.y8b7_c00001{bottom:871.626318pt;}
.y593_c00001{bottom:871.786318pt;}
.y430_c00001{bottom:871.946318pt;}
.y52_c00001{bottom:872.106318pt;}
.y455_c00001{bottom:872.266318pt;}
.y252_c00001{bottom:873.066317pt;}
.y902_c00001{bottom:873.226317pt;}
.y206_c00001{bottom:874.986317pt;}
.y52f_c00001{bottom:875.146317pt;}
.y772_c00001{bottom:875.306317pt;}
.y748_c00001{bottom:875.466316pt;}
.y560_c00001{bottom:875.947200pt;}
.y777_c00001{bottom:876.106316pt;}
.y61f_c00001{bottom:876.586316pt;}
.y7d4_c00001{bottom:877.866316pt;}
.y9d2_c00001{bottom:878.506315pt;}
.y7b3_c00001{bottom:878.826315pt;}
.y6d8_c00001{bottom:879.466315pt;}
.y6fe_c00001{bottom:879.626315pt;}
.y723_c00001{bottom:879.946315pt;}
.y5c0_c00001{bottom:880.106315pt;}
.y55e_c00001{bottom:880.586314pt;}
.yc3e_c00001{bottom:880.906314pt;}
.y101_c00001{bottom:881.226314pt;}
.ybf5_c00001{bottom:881.546314pt;}
.y7fe_c00001{bottom:881.866314pt;}
.y5f0_c00001{bottom:882.026314pt;}
.yc5_c00001{bottom:882.346314pt;}
.y844_c00001{bottom:883.146313pt;}
.y893_c00001{bottom:883.306313pt;}
.y74_c00001{bottom:883.466313pt;}
.y2d_c00001{bottom:883.626313pt;}
.ybb1_c00001{bottom:883.786313pt;}
.y4f8_c00001{bottom:884.266313pt;}
.y92c_c00001{bottom:884.587200pt;}
.y650_c00001{bottom:885.066313pt;}
.y92a_c00001{bottom:885.707200pt;}
.y654_c00001{bottom:885.866312pt;}
.yb28_c00001{bottom:886.026312pt;}
.yb9c_c00001{bottom:886.186312pt;}
.y167_c00001{bottom:886.346312pt;}
.yb5d_c00001{bottom:886.506312pt;}
.y594_c00001{bottom:886.507200pt;}
.y496_c00001{bottom:886.666312pt;}
.y6a8_c00001{bottom:887.146312pt;}
.y977_c00001{bottom:887.306312pt;}
.y61d_c00001{bottom:887.786312pt;}
.yc6_c00001{bottom:889.066311pt;}
.y929_c00001{bottom:889.226311pt;}
.yb1f_c00001{bottom:890.186311pt;}
.y52e_c00001{bottom:890.506310pt;}
.y9f6_c00001{bottom:890.986310pt;}
.y592_c00001{bottom:891.146310pt;}
.y5be_c00001{bottom:891.306310pt;}
.y841_c00001{bottom:892.586310pt;}
.y404_c00001{bottom:893.706309pt;}
.y747_c00001{bottom:893.866309pt;}
.y6ce_c00001{bottom:894.026309pt;}
.y126_c00001{bottom:894.186309pt;}
.y8dd_c00001{bottom:894.506309pt;}
.y9c1_c00001{bottom:894.666309pt;}
.y6fd_c00001{bottom:894.986309pt;}
.y4c6_c00001{bottom:895.147200pt;}
.y722_c00001{bottom:895.466308pt;}
.y7d3_c00001{bottom:896.266308pt;}
.y88e_c00001{bottom:896.746308pt;}
.y86c_c00001{bottom:897.226308pt;}
.y5ef_c00001{bottom:897.386308pt;}
.y2f4_c00001{bottom:897.866308pt;}
.y843_c00001{bottom:898.666307pt;}
.y143_c00001{bottom:899.306307pt;}
.y42f_c00001{bottom:899.466307pt;}
.y51_c00001{bottom:899.626307pt;}
.y454_c00001{bottom:899.786307pt;}
.ybf4_c00001{bottom:899.946307pt;}
.y821_c00001{bottom:900.426306pt;}
.y127_c00001{bottom:900.906306pt;}
.y495_c00001{bottom:901.866306pt;}
.ybb0_c00001{bottom:902.186306pt;}
.y64f_c00001{bottom:902.346306pt;}
.y976_c00001{bottom:902.666306pt;}
.y9ad_c00001{bottom:903.467200pt;}
.y529_c00001{bottom:904.106305pt;}
.yb9b_c00001{bottom:904.586305pt;}
.yc4_c00001{bottom:904.746305pt;}
.ybc4_c00001{bottom:905.066305pt;}
.y96f_c00001{bottom:905.866304pt;}
.yafe_c00001{bottom:906.346304pt;}
.y462_c00001{bottom:906.826304pt;}
.y61c_c00001{bottom:907.146304pt;}
.y61e_c00001{bottom:907.946303pt;}
.yff_c00001{bottom:908.106303pt;}
.y52d_c00001{bottom:908.906303pt;}
.y771_c00001{bottom:909.226303pt;}
.y746_c00001{bottom:909.386303pt;}
.y6fc_c00001{bottom:910.346303pt;}
.y37b_c00001{bottom:910.666302pt;}
.y9d1_c00001{bottom:910.826302pt;}
.y73_c00001{bottom:910.986302pt;}
.y2b_c00001{bottom:911.146302pt;}
.y5bf_c00001{bottom:911.466302pt;}
.y7d2_c00001{bottom:911.786302pt;}
.y840_c00001{bottom:911.946302pt;}
.y7b2_c00001{bottom:912.586302pt;}
.y681_c00001{bottom:912.746302pt;}
.y6a6_c00001{bottom:912.746568pt;}
.y55d_c00001{bottom:913.226301pt;}
.y6d7_c00001{bottom:913.386301pt;}
.y7fd_c00001{bottom:913.706301pt;}
.y721_c00001{bottom:913.866301pt;}
.y166_c00001{bottom:914.026301pt;}
.yb5c_c00001{bottom:914.186301pt;}
.y100_c00001{bottom:914.826301pt;}
.y4f7_c00001{bottom:914.986301pt;}
.y5ee_c00001{bottom:915.786300pt;}
.y125_c00001{bottom:916.586300pt;}
.y819_c00001{bottom:916.906300pt;}
.y494_c00001{bottom:917.226300pt;}
.y64e_c00001{bottom:917.546300pt;}
.y6a7_c00001{bottom:918.026299pt;}
.ybf3_c00001{bottom:918.346299pt;}
.y2c_c00001{bottom:918.506299pt;}
.yc51_c00001{bottom:920.266299pt;}
.y55a_c00001{bottom:920.586298pt;}
.y590_c00001{bottom:921.067200pt;}
.y901_c00001{bottom:921.867200pt;}
.y58e_c00001{bottom:922.187200pt;}
.y927_c00001{bottom:922.666298pt;}
.y952_c00001{bottom:922.986297pt;}
.y528_c00001{bottom:923.626297pt;}
.y52c_c00001{bottom:924.426297pt;}
.yb1e_c00001{bottom:924.586297pt;}
.yc77_c00001{bottom:924.906297pt;}
.yb43_c00001{bottom:925.386297pt;}
.yb9a_c00001{bottom:925.546296pt;}
.y58d_c00001{bottom:925.706296pt;}
.y900_c00001{bottom:926.506296pt;}
.y6cd_c00001{bottom:926.666296pt;}
.y9c0_c00001{bottom:926.826296pt;}
.y42e_c00001{bottom:927.146296pt;}
.y50_c00001{bottom:927.306296pt;}
.y453_c00001{bottom:927.466296pt;}
.y745_c00001{bottom:927.786296pt;}
.y5bd_c00001{bottom:927.946295pt;}
.y8da_c00001{bottom:928.586295pt;}
.y55c_c00001{bottom:928.746295pt;}
.y7fc_c00001{bottom:928.906295pt;}
.y720_c00001{bottom:929.386295pt;}
.y4c4_c00001{bottom:929.707200pt;}
.y7d1_c00001{bottom:930.186295pt;}
.y892_c00001{bottom:930.346295pt;}
.yfe_c00001{bottom:930.666294pt;}
.y680_c00001{bottom:931.146294pt;}
.y4f6_c00001{bottom:931.306294pt;}
.y818_c00001{bottom:932.266294pt;}
.y493_c00001{bottom:933.546293pt;}
.y64d_c00001{bottom:933.866293pt;}
.yafd_c00001{bottom:934.026293pt;}
.y770_c00001{bottom:934.186293pt;}
.y4c3_c00001{bottom:934.346293pt;}
.ybc3_c00001{bottom:936.586292pt;}
.ybf2_c00001{bottom:936.746292pt;}
.y61a_c00001{bottom:937.067200pt;}
.y928_c00001{bottom:937.387200pt;}
.y618_c00001{bottom:938.187200pt;}
.yaca_c00001{bottom:938.346291pt;}
.yaf6_c00001{bottom:938.506291pt;}
.y72_c00001{bottom:938.666291pt;}
.y2a_c00001{bottom:938.826291pt;}
.ybaf_c00001{bottom:938.986291pt;}
.y975_c00001{bottom:939.466291pt;}
.y52b_c00001{bottom:939.626291pt;}
.y559_c00001{bottom:939.946291pt;}
.y8b6_c00001{bottom:941.066290pt;}
.yb27_c00001{bottom:941.226290pt;}
.y165_c00001{bottom:941.546290pt;}
.y617_c00001{bottom:941.706290pt;}
.y926_c00001{bottom:942.026290pt;}
.y951_c00001{bottom:942.506290pt;}
.y527_c00001{bottom:942.986289pt;}
.y9d0_c00001{bottom:943.146289pt;}
.y5bc_c00001{bottom:943.306289pt;}
.y8db_c00001{bottom:943.307200pt;}
.y6fb_c00001{bottom:944.266289pt;}
.y83f_c00001{bottom:944.586289pt;}
.y842_c00001{bottom:945.386289pt;}
.y6a5_c00001{bottom:945.386555pt;}
.y71f_c00001{bottom:945.706288pt;}
.y2f3_c00001{bottom:946.186288pt;}
.y7b1_c00001{bottom:946.506288pt;}
.y4f5_c00001{bottom:946.666288pt;}
.yb99_c00001{bottom:946.826288pt;}
.y8d9_c00001{bottom:947.946287pt;}
.y817_c00001{bottom:948.586287pt;}
.y891_c00001{bottom:948.746287pt;}
.y492_c00001{bottom:948.906287pt;}
.y64c_c00001{bottom:949.226287pt;}
.yb7f_c00001{bottom:953.066285pt;}
.y27a_c00001{bottom:954.506285pt;}
.y42d_c00001{bottom:954.666285pt;}
.y4f_c00001{bottom:954.826285pt;}
.y452_c00001{bottom:954.986285pt;}
.ybc2_c00001{bottom:955.146285pt;}
.y8fe_c00001{bottom:956.587200pt;}
.y76f_c00001{bottom:957.226284pt;}
.ybae_c00001{bottom:957.386284pt;}
.y8fc_c00001{bottom:957.707200pt;}
.y9ac_c00001{bottom:958.667200pt;}
.y9aa_c00001{bottom:958.827200pt;}
.y9bf_c00001{bottom:958.986283pt;}
.y58a_c00001{bottom:959.146283pt;}
.y558_c00001{bottom:959.466283pt;}
.y6fa_c00001{bottom:959.626283pt;}
.y55b_c00001{bottom:960.266283pt;}
.y71e_c00001{bottom:960.906282pt;}
.y8fb_c00001{bottom:961.226282pt;}
.yafc_c00001{bottom:961.546282pt;}
.y5bb_c00001{bottom:961.706282pt;}
.y4f4_c00001{bottom:961.866282pt;}
.y88d_c00001{bottom:962.186282pt;}
.y7fb_c00001{bottom:962.666282pt;}
.y816_c00001{bottom:963.946281pt;}
.y7d0_c00001{bottom:964.106281pt;}
.y491_c00001{bottom:964.266281pt;}
.y8d8_c00001{bottom:965.226281pt;}
.y338_c00001{bottom:965.866280pt;}
.y41b_c00001{bottom:966.026280pt;}
.y71_c00001{bottom:966.186280pt;}
.y29_c00001{bottom:966.346280pt;}
.yb98_c00001{bottom:967.626280pt;}
.y4c0_c00001{bottom:967.786280pt;}
.y164_c00001{bottom:969.226279pt;}
.y96c_c00001{bottom:972.106544pt;}
.y264_c00001{bottom:973.546277pt;}
.y58b_c00001{bottom:973.867200pt;}
.y614_c00001{bottom:975.146277pt;}
.y3d7_c00001{bottom:975.306277pt;}
.y924_c00001{bottom:975.466276pt;}
.y1a2_c00001{bottom:975.626276pt;}
.ybad_c00001{bottom:975.786276pt;}
.y52a_c00001{bottom:976.426276pt;}
.y5ba_c00001{bottom:977.226276pt;}
.y6f9_c00001{bottom:978.026275pt;}
.y7fa_c00001{bottom:978.186275pt;}
.y6a4_c00001{bottom:978.186542pt;}
.y589_c00001{bottom:978.506275pt;}
.y71d_c00001{bottom:979.466275pt;}
.y7cf_c00001{bottom:979.626275pt;}
.y76e_c00001{bottom:980.266275pt;}
.y4f3_c00001{bottom:980.426274pt;}
.y490_c00001{bottom:980.586274pt;}
.y64b_c00001{bottom:980.746274pt;}
.y279_c00001{bottom:982.186274pt;}
.y42c_c00001{bottom:982.346274pt;}
.y4e_c00001{bottom:982.506274pt;}
.y4c1_c00001{bottom:982.507200pt;}
.y1dd_c00001{bottom:982.666274pt;}
.y4bf_c00001{bottom:987.146272pt;}
.y6cb_c00001{bottom:988.587200pt;}
.yb97_c00001{bottom:988.746271pt;}
.y3f3_c00001{bottom:989.866271pt;}
.y615_c00001{bottom:989.867200pt;}
.y9f0_c00001{bottom:990.026271pt;}
.y925_c00001{bottom:990.187200pt;}
.yafb_c00001{bottom:991.146270pt;}
.y9be_c00001{bottom:991.306270pt;}
.y96b_c00001{bottom:991.466537pt;}
.ybc1_c00001{bottom:991.946270pt;}
.y71a_c00001{bottom:991.947200pt;}
.y557_c00001{bottom:992.906270pt;}
.yee_c00001{bottom:993.546269pt;}
.y41a_c00001{bottom:993.706269pt;}
.y70_c00001{bottom:993.866269pt;}
.y28_c00001{bottom:994.026269pt;}
.ybd9_c00001{bottom:994.186269pt;}
.y613_c00001{bottom:994.506269pt;}
.y71c_c00001{bottom:994.826269pt;}
.y815_c00001{bottom:995.306269pt;}
.y5b9_c00001{bottom:995.626268pt;}
.y48f_c00001{bottom:995.786268pt;}
.y7f9_c00001{bottom:996.586268pt;}
.y8d7_c00001{bottom:996.746268pt;}
.y3b2_c00001{bottom:1001.226266pt;}
.y525_c00001{bottom:1004.907200pt;}
.y96d_c00001{bottom:1006.187200pt;}
.y9cf_c00001{bottom:1007.466264pt;}
.y586_c00001{bottom:1008.267200pt;}
.y524_c00001{bottom:1009.226263pt;}
.y88_c00001{bottom:1009.706263pt;}
.y42b_c00001{bottom:1009.866263pt;}
.y4d_c00001{bottom:1010.026263pt;}
.y451_c00001{bottom:1010.186263pt;}
.ybc0_c00001{bottom:1010.346263pt;}
.y6a3_c00001{bottom:1010.826529pt;}
.y588_c00001{bottom:1011.146262pt;}
.y64a_c00001{bottom:1011.626262pt;}
.y6f8_c00001{bottom:1011.946262pt;}
.y4be_c00001{bottom:1012.106262pt;}
.y6d_c00001{bottom:1028.426255pt;}
.y25_c00001{bottom:1028.586255pt;}
.y2_c00001{bottom:1045.226249pt;}
.y428_c00001{bottom:1045.386249pt;}
.y6c_c00001{bottom:1062.986241pt;}
.y1_c00001{bottom:1063.146241pt;}
.y427_c00001{bottom:1063.306241pt;}
.h1c_c00001{height:15.040000pt;}
.h22_c00001{height:15.840000pt;}
.h1d_c00001{height:16.000000pt;}
.h1e_c00001{height:16.640000pt;}
.h21_c00001{height:17.760000pt;}
.h1a_c00001{height:17.920000pt;}
.h17_c00001{height:19.200000pt;}
.h27_c00001{height:23.304366pt;}
.h10_c00001{height:26.969989pt;}
.h14_c00001{height:28.501864pt;}
.hc_c00001{height:30.613113pt;}
.h7_c00001{height:33.918736pt;}
.h5_c00001{height:36.431235pt;}
.h12_c00001{height:40.787460pt;}
.h9_c00001{height:42.063421pt;}
.hb_c00001{height:42.084358pt;}
.h16_c00001{height:43.214983pt;}
.h8_c00001{height:43.808420pt;}
.h18_c00001{height:43.874982pt;}
.h11_c00001{height:46.499981pt;}
.h24_c00001{height:47.109356pt;}
.h2_c00001{height:48.558731pt;}
.hf_c00001{height:49.141160pt;}
.h23_c00001{height:49.203418pt;}
.h15_c00001{height:52.108417pt;}
.h1_c00001{height:52.134354pt;}
.h1f_c00001{height:52.781229pt;}
.hd_c00001{height:53.534979pt;}
.h19_c00001{height:55.402478pt;}
.he_c00001{height:57.758727pt;}
.h4_c00001{height:57.787477pt;}
.h13_c00001{height:59.339976pt;}
.h1b_c00001{height:61.409975pt;}
.h6_c00001{height:62.781225pt;}
.h3_c00001{height:62.812475pt;}
.ha_c00001{height:64.499974pt;}
.h2a_c00001{height:65.812474pt;}
.h20_c00001{height:66.749973pt;}
.h26_c00001{height:73.454033pt;}
.h28_c00001{height:73.490596pt;}
.h25_c00001{height:75.464970pt;}
.h29_c00001{height:793.333333pt;}
.h0_c00001{height:1122.666667pt;}
.wa_c00001{width:6.080000pt;}
.w8_c00001{width:6.560000pt;}
.we_c00001{width:6.880000pt;}
.w9_c00001{width:7.200000pt;}
.w3_c00001{width:7.360000pt;}
.w1_c00001{width:8.000000pt;}
.w4_c00001{width:8.640000pt;}
.wf_c00001{width:45.920000pt;}
.wc_c00001{width:78.720000pt;}
.wd_c00001{width:96.800000pt;}
.w7_c00001{width:140.800000pt;}
.w2_c00001{width:188.960000pt;}
.w6_c00001{width:307.040000pt;}
.wb_c00001{width:314.400000pt;}
.w5_c00001{width:409.440000pt;}
.w0_c00001{width:793.333333pt;}
.w10_c00001{width:1122.666667pt;}
.x0_c00001{left:0.000000pt;}
.x100_c00001{left:94.707429pt;}
.x10f_c00001{left:103.999798pt;}
.x5_c00001{left:113.600233pt;}
.xca_c00001{left:115.839954pt;}
.xb0_c00001{left:116.959953pt;}
.xaa_c00001{left:118.559953pt;}
.x67_c00001{left:119.679952pt;}
.x1f_c00001{left:121.919951pt;}
.x81_c00001{left:123.359951pt;}
.x7_c00001{left:125.599950pt;}
.x12_c00001{left:126.559949pt;}
.x26_c00001{left:127.519949pt;}
.x95_c00001{left:129.919948pt;}
.x27_c00001{left:130.879948pt;}
.x11_c00001{left:132.159947pt;}
.x3d_c00001{left:133.439947pt;}
.x83_c00001{left:134.400421pt;}
.x29_c00001{left:135.519946pt;}
.x65_c00001{left:137.279945pt;}
.x6e_c00001{left:138.239945pt;}
.xc_c00001{left:139.359944pt;}
.x11b_c00001{left:140.319944pt;}
.x10b_c00001{left:142.067444pt;}
.xd9_c00001{left:143.839942pt;}
.x3a_c00001{left:145.279942pt;}
.xac_c00001{left:147.199941pt;}
.x23_c00001{left:149.759940pt;}
.xde_c00001{left:150.719798pt;}
.x61_c00001{left:151.839939pt;}
.xee_c00001{left:155.999938pt;}
.xb_c00001{left:160.799936pt;}
.x1_c00001{left:161.759935pt;}
.x4b_c00001{left:165.279934pt;}
.x30_c00001{left:166.399933pt;}
.x34_c00001{left:169.279932pt;}
.x58_c00001{left:170.719932pt;}
.x111_c00001{left:172.799931pt;}
.x38_c00001{left:174.399930pt;}
.x5f_c00001{left:175.679930pt;}
.x99_c00001{left:178.399929pt;}
.x52_c00001{left:179.679928pt;}
.x46_c00001{left:181.759927pt;}
.x119_c00001{left:184.640506pt;}
.x11a_c00001{left:185.919926pt;}
.x5d_c00001{left:189.599924pt;}
.x55_c00001{left:190.559924pt;}
.xf7_c00001{left:191.999923pt;}
.xf9_c00001{left:193.919922pt;}
.x8c_c00001{left:197.279921pt;}
.x120_c00001{left:204.159918pt;}
.x117_c00001{left:207.359917pt;}
.xf8_c00001{left:208.319917pt;}
.xe8_c00001{left:209.920000pt;}
.xa0_c00001{left:210.879916pt;}
.x114_c00001{left:213.439915pt;}
.x42_c00001{left:214.399914pt;}
.x24_c00001{left:216.319913pt;}
.x9c_c00001{left:217.599913pt;}
.xa3_c00001{left:219.679912pt;}
.x116_c00001{left:221.599911pt;}
.xb8_c00001{left:223.359779pt;}
.xe3_c00001{left:224.639910pt;}
.x71_c00001{left:227.039909pt;}
.x7f_c00001{left:230.719908pt;}
.x25_c00001{left:232.639907pt;}
.x112_c00001{left:238.547453pt;}
.xfc_c00001{left:240.959904pt;}
.x72_c00001{left:243.359903pt;}
.xe4_c00001{left:248.639955pt;}
.x96_c00001{left:251.359899pt;}
.xb2_c00001{left:254.079898pt;}
.x92_c00001{left:258.239897pt;}
.x7a_c00001{left:260.639896pt;}
.xc7_c00001{left:262.719895pt;}
.x77_c00001{left:265.759894pt;}
.xb9_c00001{left:267.520109pt;}
.x106_c00001{left:269.107892pt;}
.x7b_c00001{left:271.039887pt;}
.xe5_c00001{left:272.640001pt;}
.x10e_c00001{left:276.467889pt;}
.x10a_c00001{left:280.147888pt;}
.x78_c00001{left:282.079887pt;}
.xd1_c00001{left:286.239886pt;}
.xd4_c00001{left:289.599341pt;}
.xc1_c00001{left:291.199884pt;}
.x2_c00001{left:292.639474pt;}
.x84_c00001{left:294.879882pt;}
.xe6_c00001{left:295.840295pt;}
.x20_c00001{left:296.960478pt;}
.x110_c00001{left:299.186586pt;}
.xea_c00001{left:302.719879pt;}
.xbf_c00001{left:303.999878pt;}
.xd2_c00001{left:307.839877pt;}
.x10c_c00001{left:310.226979pt;}
.x8_c00001{left:311.360724pt;}
.x108_c00001{left:313.907874pt;}
.xbb_c00001{left:317.919448pt;}
.xd3_c00001{left:324.159870pt;}
.xa7_c00001{left:325.439870pt;}
.xb3_c00001{left:326.719630pt;}
.xd8_c00001{left:331.679867pt;}
.x19_c00001{left:333.280419pt;}
.xfa_c00001{left:336.479865pt;}
.xd_c00001{left:338.720575pt;}
.xc5_c00001{left:339.679864pt;}
.x11c_c00001{left:340.799864pt;}
.xa8_c00001{left:341.759863pt;}
.x11d_c00001{left:342.719863pt;}
.x104_c00001{left:346.709321pt;}
.xb5_c00001{left:348.478903pt;}
.x87_c00001{left:350.399860pt;}
.xfb_c00001{left:352.799859pt;}
.x6b_c00001{left:354.559858pt;}
.xc6_c00001{left:355.999858pt;}
.x75_c00001{left:358.399492pt;}
.xcb_c00001{left:362.879855pt;}
.xad_c00001{left:364.639081pt;}
.x4c_c00001{left:367.839853pt;}
.x8e_c00001{left:369.120253pt;}
.x6c_c00001{left:370.879852pt;}
.xfe_c00001{left:372.319928pt;}
.xcf_c00001{left:374.399850pt;}
.xbe_c00001{left:376.479849pt;}
.xcc_c00001{left:379.199848pt;}
.xce_c00001{left:380.959848pt;}
.xe9_c00001{left:382.239847pt;}
.x4_c00001{left:385.919846pt;}
.xf1_c00001{left:389.120000pt;}
.xd0_c00001{left:390.719844pt;}
.xd6_c00001{left:393.439843pt;}
.x17_c00001{left:395.039842pt;}
.x1c_c00001{left:396.959907pt;}
.xe2_c00001{left:404.960000pt;}
.xf0_c00001{left:407.199837pt;}
.x69_c00001{left:409.919836pt;}
.x18_c00001{left:411.359835pt;}
.x4d_c00001{left:412.319835pt;}
.xae_c00001{left:415.519834pt;}
.x11e_c00001{left:416.639833pt;}
.x62_c00001{left:419.039832pt;}
.x4f_c00001{left:420.639832pt;}
.xff_c00001{left:421.599831pt;}
.x6a_c00001{left:423.839830pt;}
.x74_c00001{left:425.279830pt;}
.x4e_c00001{left:426.239830pt;}
.xf6_c00001{left:428.319829pt;}
.xaf_c00001{left:429.439828pt;}
.xb6_c00001{left:431.519827pt;}
.x76_c00001{left:432.639827pt;}
.xe_c00001{left:441.439823pt;}
.xb7_c00001{left:445.439822pt;}
.x1a_c00001{left:446.879821pt;}
.x13_c00001{left:451.199820pt;}
.xf2_c00001{left:452.160000pt;}
.xb4_c00001{left:453.439819pt;}
.xf_c00001{left:455.359818pt;}
.xef_c00001{left:456.480000pt;}
.x1b_c00001{left:460.799816pt;}
.xbc_c00001{left:462.079815pt;}
.xda_c00001{left:464.159814pt;}
.x14_c00001{left:467.519813pt;}
.x9_c00001{left:468.639813pt;}
.xbd_c00001{left:475.999810pt;}
.xdb_c00001{left:480.479808pt;}
.xa_c00001{left:482.559807pt;}
.x15_c00001{left:484.959806pt;}
.x11f_c00001{left:487.839805pt;}
.xc0_c00001{left:489.919804pt;}
.x21_c00001{left:496.959801pt;}
.xa6_c00001{left:499.039590pt;}
.xdf_c00001{left:499.999800pt;}
.x16_c00001{left:501.279799pt;}
.xd5_c00001{left:504.319798pt;}
.xc8_c00001{left:505.599798pt;}
.xeb_c00001{left:508.960000pt;}
.xba_c00001{left:512.639795pt;}
.x41_c00001{left:515.199794pt;}
.x91_c00001{left:516.479793pt;}
.x22_c00001{left:521.920340pt;}
.x60_c00001{left:524.479210pt;}
.xb1_c00001{left:526.239790pt;}
.x97_c00001{left:528.799788pt;}
.xf4_c00001{left:529.919788pt;}
.xc2_c00001{left:533.439787pt;}
.x8f_c00001{left:535.359786pt;}
.x7c_c00001{left:537.759186pt;}
.x80_c00001{left:540.639784pt;}
.x98_c00001{left:542.719783pt;}
.x9d_c00001{left:544.159782pt;}
.xc3_c00001{left:549.759780pt;}
.x90_c00001{left:551.679779pt;}
.x93_c00001{left:553.279779pt;}
.xe1_c00001{left:557.119777pt;}
.x9e_c00001{left:558.079777pt;}
.xa4_c00001{left:560.479776pt;}
.x63_c00001{left:562.079775pt;}
.xdc_c00001{left:563.359775pt;}
.xf3_c00001{left:565.439774pt;}
.x48_c00001{left:566.399773pt;}
.xa1_c00001{left:569.279772pt;}
.xed_c00001{left:571.839771pt;}
.xa5_c00001{left:574.399770pt;}
.x86_c00001{left:575.999459pt;}
.xf5_c00001{left:577.119769pt;}
.x57_c00001{left:579.039768pt;}
.x49_c00001{left:580.319768pt;}
.x50_c00001{left:581.279767pt;}
.x51_c00001{left:583.039767pt;}
.xe7_c00001{left:584.800000pt;}
.x7d_c00001{left:586.399765pt;}
.x82_c00001{left:591.999763pt;}
.xc4_c00001{left:592.959763pt;}
.x79_c00001{left:595.039409pt;}
.x85_c00001{left:596.000311pt;}
.x1e_c00001{left:596.959608pt;}
.x73_c00001{left:599.999219pt;}
.x9a_c00001{left:601.599759pt;}
.x7e_c00001{left:602.719759pt;}
.xa9_c00001{left:603.839758pt;}
.x39_c00001{left:605.759758pt;}
.xcd_c00001{left:607.039757pt;}
.x94_c00001{left:608.959756pt;}
.x35_c00001{left:610.719756pt;}
.xdd_c00001{left:612.479190pt;}
.x31_c00001{left:613.599755pt;}
.x9b_c00001{left:615.519754pt;}
.xc9_c00001{left:617.439753pt;}
.xec_c00001{left:618.879752pt;}
.x2d_c00001{left:619.999752pt;}
.xe0_c00001{left:621.919751pt;}
.x36_c00001{left:624.639750pt;}
.x32_c00001{left:627.519749pt;}
.x10_c00001{left:628.959373pt;}
.x8d_c00001{left:629.919748pt;}
.x6_c00001{left:631.039748pt;}
.xd7_c00001{left:632.959981pt;}
.x2e_c00001{left:633.919746pt;}
.x3b_c00001{left:634.879746pt;}
.x2c_c00001{left:636.958779pt;}
.x1d_c00001{left:637.919411pt;}
.x6f_c00001{left:639.039744pt;}
.x66_c00001{left:639.999744pt;}
.x4a_c00001{left:643.039743pt;}
.x2a_c00001{left:644.479742pt;}
.x47_c00001{left:645.599742pt;}
.x3e_c00001{left:646.559741pt;}
.x53_c00001{left:647.679741pt;}
.x28_c00001{left:649.438609pt;}
.x56_c00001{left:650.559740pt;}
.x5e_c00001{left:651.519739pt;}
.x70_c00001{left:652.959739pt;}
.x2f_c00001{left:654.079948pt;}
.x59_c00001{left:655.999738pt;}
.x40_c00001{left:656.959737pt;}
.x2b_c00001{left:658.399737pt;}
.x33_c00001{left:659.359496pt;}
.x3f_c00001{left:660.479736pt;}
.x54_c00001{left:661.599735pt;}
.x37_c00001{left:663.039988pt;}
.x3c_c00001{left:664.959573pt;}
.x64_c00001{left:666.559733pt;}
.x68_c00001{left:667.519428pt;}
.x5c_c00001{left:668.959732pt;}
.x45_c00001{left:670.399732pt;}
.x5a_c00001{left:671.519731pt;}
.x5b_c00001{left:673.439731pt;}
.xab_c00001{left:675.359730pt;}
.x43_c00001{left:676.959729pt;}
.xfd_c00001{left:678.399729pt;}
.x44_c00001{left:679.359728pt;}
.x3_c00001{left:680.479728pt;}
.x8a_c00001{left:681.598941pt;}
.x8b_c00001{left:683.518874pt;}
.x88_c00001{left:688.480103pt;}
.x6d_c00001{left:690.079267pt;}
.x89_c00001{left:693.600105pt;}
.x115_c00001{left:697.599624pt;}
.x113_c00001{left:699.519720pt;}
.x9f_c00001{left:701.599719pt;}
.x118_c00001{left:705.599718pt;}
.xa2_c00001{left:739.519704pt;}
.x107_c00001{left:911.508074pt;}
.x109_c00001{left:915.347634pt;}
.x103_c00001{left:920.785993pt;}
.x101_c00001{left:929.427628pt;}
.x105_c00001{left:931.827627pt;}
.x10d_c00001{left:933.747627pt;}
.x102_c00001{left:1028.147589pt;}
}




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